You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.14.0-SNAPSHOT-260615081039",
|
||||
"version": "1.14.0-SNAPSHOT-260616085436",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
207
site.client.ts
207
site.client.ts
@@ -20,8 +20,6 @@ import type { GetActorAuthorisationResponse } from "./site";
|
||||
import type { GetActorAuthorisationRequest } from "./site";
|
||||
import type { ListAllowedSitesResponse } from "./site";
|
||||
import type { ListAllowedSitesRequest } from "./site";
|
||||
import type { ListSitesAuthorizedForBookingResponse } from "./site";
|
||||
import type { ListSitesAuthorizedForBookingRequest } from "./site";
|
||||
import type { GetBasicSettingsResponse } from "./site";
|
||||
import type { GetBasicSettingsRequest } from "./site";
|
||||
import type { GetUnitsResponse } from "./site";
|
||||
@@ -30,18 +28,8 @@ import type { CreateSettingsResponse } from "./site";
|
||||
import type { CreateSettingsRequest } from "./site";
|
||||
import type { DeleteSettingsResult } from "./site";
|
||||
import type { DeleteSettingsRequest } from "./site";
|
||||
import type { RescheduleAppointmentRequest } from "./site";
|
||||
import type { WMSUpdateAppointmentRequest } from "./site";
|
||||
import type { UpdateAppointmentRequest } from "./site";
|
||||
import type { CancelAppointmentResponse } from "./site";
|
||||
import type { CancelAppointmentRequest } from "./site";
|
||||
import type { BookAppointmentResponse } from "./site";
|
||||
import type { BookAppointmentRequest } from "./site";
|
||||
import type { CheckAppointmentCommissionResponse } from "./site";
|
||||
import type { CheckAppointmentCommissionRequest } from "./site";
|
||||
import type { GetAllSlotsResponse } from "./site";
|
||||
import type { GetAvailableSlotsResponse } from "./site";
|
||||
import type { GetAvailableSlotsRequest } from "./site";
|
||||
import type { DeleteInstructionDocumentResponse } from "./site";
|
||||
import type { DeleteInstructionDocumentRequest } from "./site";
|
||||
import type { UploadInstructionDocumentResponse } from "./site";
|
||||
@@ -85,70 +73,10 @@ export interface ISiteServiceClient {
|
||||
* @generated from protobuf rpc: DeleteInstructionDocument
|
||||
*/
|
||||
deleteInstructionDocument(input: DeleteInstructionDocumentRequest, options?: RpcOptions): UnaryCall<DeleteInstructionDocumentRequest, DeleteInstructionDocumentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: GetAvailableSlots
|
||||
*/
|
||||
getAvailableSlots(input: GetAvailableSlotsRequest, options?: RpcOptions): UnaryCall<GetAvailableSlotsRequest, GetAvailableSlotsResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: GetAllSlots
|
||||
*/
|
||||
getAllSlots(input: GetAvailableSlotsRequest, options?: RpcOptions): UnaryCall<GetAvailableSlotsRequest, GetAllSlotsResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CheckAppointmentCommission
|
||||
*/
|
||||
checkAppointmentCommission(input: CheckAppointmentCommissionRequest, options?: RpcOptions): UnaryCall<CheckAppointmentCommissionRequest, CheckAppointmentCommissionResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: BookAppointment
|
||||
*/
|
||||
bookAppointment(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: BookAppointmentNoReference
|
||||
*/
|
||||
bookAppointmentNoReference(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: ForceBookAppointment
|
||||
*/
|
||||
forceBookAppointment(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: CancelAppointment
|
||||
*/
|
||||
cancelAppointment(input: CancelAppointmentRequest, options?: RpcOptions): UnaryCall<CancelAppointmentRequest, CancelAppointmentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: UpdateAppointment
|
||||
*/
|
||||
updateAppointment(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: UpdateAppointmentNoReference
|
||||
*/
|
||||
updateAppointmentNoReference(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: ForceUpdateAppointment
|
||||
*/
|
||||
forceUpdateAppointment(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: WMSUpdateAppointment
|
||||
*/
|
||||
wMSUpdateAppointment(input: WMSUpdateAppointmentRequest, options?: RpcOptions): UnaryCall<WMSUpdateAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: RescheduleAppointment
|
||||
*/
|
||||
rescheduleAppointment(input: RescheduleAppointmentRequest, options?: RpcOptions): UnaryCall<RescheduleAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: ForceRescheduleAppointment
|
||||
*/
|
||||
forceRescheduleAppointment(input: RescheduleAppointmentRequest, options?: RpcOptions): UnaryCall<RescheduleAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteSettings
|
||||
*/
|
||||
@@ -165,11 +93,6 @@ export interface ISiteServiceClient {
|
||||
* @generated from protobuf rpc: GetBasicSettings
|
||||
*/
|
||||
getBasicSettings(input: GetBasicSettingsRequest, options?: RpcOptions): UnaryCall<GetBasicSettingsRequest, GetBasicSettingsResponse>;
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: ListSitesAuthorizedForBooking
|
||||
*/
|
||||
listSitesAuthorizedForBooking(input: ListSitesAuthorizedForBookingRequest, options?: RpcOptions): UnaryCall<ListSitesAuthorizedForBookingRequest, ListSitesAuthorizedForBookingResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: ListAllowedSites
|
||||
*/
|
||||
@@ -254,199 +177,95 @@ export class SiteServiceClient implements ISiteServiceClient, ServiceInfo {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeleteInstructionDocumentRequest, DeleteInstructionDocumentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: GetAvailableSlots
|
||||
*/
|
||||
getAvailableSlots(input: GetAvailableSlotsRequest, options?: RpcOptions): UnaryCall<GetAvailableSlotsRequest, GetAvailableSlotsResponse> {
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetAvailableSlotsRequest, GetAvailableSlotsResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: GetAllSlots
|
||||
*/
|
||||
getAllSlots(input: GetAvailableSlotsRequest, options?: RpcOptions): UnaryCall<GetAvailableSlotsRequest, GetAllSlotsResponse> {
|
||||
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetAvailableSlotsRequest, GetAllSlotsResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CheckAppointmentCommission
|
||||
*/
|
||||
checkAppointmentCommission(input: CheckAppointmentCommissionRequest, options?: RpcOptions): UnaryCall<CheckAppointmentCommissionRequest, CheckAppointmentCommissionResponse> {
|
||||
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CheckAppointmentCommissionRequest, CheckAppointmentCommissionResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: BookAppointment
|
||||
*/
|
||||
bookAppointment(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[9], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<BookAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: BookAppointmentNoReference
|
||||
*/
|
||||
bookAppointmentNoReference(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[10], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<BookAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: ForceBookAppointment
|
||||
*/
|
||||
forceBookAppointment(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[11], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<BookAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: CancelAppointment
|
||||
*/
|
||||
cancelAppointment(input: CancelAppointmentRequest, options?: RpcOptions): UnaryCall<CancelAppointmentRequest, CancelAppointmentResponse> {
|
||||
const method = this.methods[12], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CancelAppointmentRequest, CancelAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: UpdateAppointment
|
||||
*/
|
||||
updateAppointment(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[13], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<UpdateAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: UpdateAppointmentNoReference
|
||||
*/
|
||||
updateAppointmentNoReference(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[14], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<UpdateAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: ForceUpdateAppointment
|
||||
*/
|
||||
forceUpdateAppointment(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[15], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<UpdateAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: WMSUpdateAppointment
|
||||
*/
|
||||
wMSUpdateAppointment(input: WMSUpdateAppointmentRequest, options?: RpcOptions): UnaryCall<WMSUpdateAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[16], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<WMSUpdateAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: RescheduleAppointment
|
||||
*/
|
||||
rescheduleAppointment(input: RescheduleAppointmentRequest, options?: RpcOptions): UnaryCall<RescheduleAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[17], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<RescheduleAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: ForceRescheduleAppointment
|
||||
*/
|
||||
forceRescheduleAppointment(input: RescheduleAppointmentRequest, options?: RpcOptions): UnaryCall<RescheduleAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[18], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<RescheduleAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteSettings
|
||||
*/
|
||||
deleteSettings(input: DeleteSettingsRequest, options?: RpcOptions): UnaryCall<DeleteSettingsRequest, DeleteSettingsResult> {
|
||||
const method = this.methods[19], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeleteSettingsRequest, DeleteSettingsResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CreateSettings
|
||||
*/
|
||||
createSettings(input: CreateSettingsRequest, options?: RpcOptions): UnaryCall<CreateSettingsRequest, CreateSettingsResponse> {
|
||||
const method = this.methods[20], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CreateSettingsRequest, CreateSettingsResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetUnits
|
||||
*/
|
||||
getUnits(input: GetUnitsRequest, options?: RpcOptions): UnaryCall<GetUnitsRequest, GetUnitsResponse> {
|
||||
const method = this.methods[21], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[9], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetUnitsRequest, GetUnitsResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetBasicSettings
|
||||
*/
|
||||
getBasicSettings(input: GetBasicSettingsRequest, options?: RpcOptions): UnaryCall<GetBasicSettingsRequest, GetBasicSettingsResponse> {
|
||||
const method = this.methods[22], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[10], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetBasicSettingsRequest, GetBasicSettingsResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @deprecated
|
||||
* @generated from protobuf rpc: ListSitesAuthorizedForBooking
|
||||
*/
|
||||
listSitesAuthorizedForBooking(input: ListSitesAuthorizedForBookingRequest, options?: RpcOptions): UnaryCall<ListSitesAuthorizedForBookingRequest, ListSitesAuthorizedForBookingResponse> {
|
||||
const method = this.methods[23], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListSitesAuthorizedForBookingRequest, ListSitesAuthorizedForBookingResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListAllowedSites
|
||||
*/
|
||||
listAllowedSites(input: ListAllowedSitesRequest, options?: RpcOptions): UnaryCall<ListAllowedSitesRequest, ListAllowedSitesResponse> {
|
||||
const method = this.methods[24], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[11], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListAllowedSitesRequest, ListAllowedSitesResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetActorAuthorisation
|
||||
*/
|
||||
getActorAuthorisation(input: GetActorAuthorisationRequest, options?: RpcOptions): UnaryCall<GetActorAuthorisationRequest, GetActorAuthorisationResponse> {
|
||||
const method = this.methods[25], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[12], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetActorAuthorisationRequest, GetActorAuthorisationResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetBookingSegmentations
|
||||
*/
|
||||
getBookingSegmentations(input: GetBookingSegmentationsRequest, options?: RpcOptions): UnaryCall<GetBookingSegmentationsRequest, GetBookingSegmentationsResponse> {
|
||||
const method = this.methods[26], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[13], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetBookingSegmentationsRequest, GetBookingSegmentationsResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ResolveSite
|
||||
*/
|
||||
resolveSite(input: ResolveSiteRequest, options?: RpcOptions): UnaryCall<ResolveSiteRequest, ResolveSiteResponse> {
|
||||
const method = this.methods[27], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[14], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ResolveSiteRequest, ResolveSiteResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: InitBookerProfile
|
||||
*/
|
||||
initBookerProfile(input: InitBookerProfileRequest, options?: RpcOptions): UnaryCall<InitBookerProfileRequest, InitBookerProfileResponse> {
|
||||
const method = this.methods[28], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[15], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<InitBookerProfileRequest, InitBookerProfileResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetBookingContext
|
||||
*/
|
||||
getBookingContext(input: GetBookingContextRequest, options?: RpcOptions): UnaryCall<GetBookingContextRequest, GetBookingContextResponse> {
|
||||
const method = this.methods[29], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[16], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetBookingContextRequest, GetBookingContextResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetMyBookingContext
|
||||
*/
|
||||
getMyBookingContext(input: GetMyBookingContextRequest, options?: RpcOptions): UnaryCall<GetMyBookingContextRequest, GetMyBookingContextResponse> {
|
||||
const method = this.methods[30], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[17], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetMyBookingContextRequest, GetMyBookingContextResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListSettings
|
||||
*/
|
||||
listSettings(input: ListSettingsRequest, options?: RpcOptions): UnaryCall<ListSettingsRequest, ListSettingsResponse> {
|
||||
const method = this.methods[31], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[18], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListSettingsRequest, ListSettingsResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user