You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -37,13 +37,9 @@ import type { CreateSettingsRequest } from "./site";
|
||||
import type { DeleteSettingsResult } from "./site";
|
||||
import type { DeleteSettingsRequest } from "./site";
|
||||
import type { RescheduleAppointmentRequest } from "./site";
|
||||
import type { ForceUpdateAppointmentRequest } from "./site";
|
||||
import type { UpdateAppointmentNoReferenceRequest } from "./site";
|
||||
import type { UpdateAppointmentRequest } from "./site";
|
||||
import type { CancelAppointmentResponse } from "./site";
|
||||
import type { CancelAppointmentRequest } from "./site";
|
||||
import type { ForceBookAppointmentRequest } from "./site";
|
||||
import type { BookAppointmentNoReferenceRequest } from "./site";
|
||||
import type { BookAppointmentResponse } from "./site";
|
||||
import type { BookAppointmentRequest } from "./site";
|
||||
import type { CheckAppointmentCommissionResponse } from "./site";
|
||||
@@ -119,11 +115,11 @@ export interface ISiteServiceClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: BookAppointmentNoReference
|
||||
*/
|
||||
bookAppointmentNoReference(input: BookAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<BookAppointmentNoReferenceRequest, BookAppointmentResponse>;
|
||||
bookAppointmentNoReference(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: ForceBookAppointment
|
||||
*/
|
||||
forceBookAppointment(input: ForceBookAppointmentRequest, options?: RpcOptions): UnaryCall<ForceBookAppointmentRequest, BookAppointmentResponse>;
|
||||
forceBookAppointment(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CancelAppointment
|
||||
*/
|
||||
@@ -135,11 +131,11 @@ export interface ISiteServiceClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: UpdateAppointmentNoReference
|
||||
*/
|
||||
updateAppointmentNoReference(input: UpdateAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentNoReferenceRequest, BookAppointmentResponse>;
|
||||
updateAppointmentNoReference(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: ForceUpdateAppointment
|
||||
*/
|
||||
forceUpdateAppointment(input: ForceUpdateAppointmentRequest, options?: RpcOptions): UnaryCall<ForceUpdateAppointmentRequest, BookAppointmentResponse>;
|
||||
forceUpdateAppointment(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: RescheduleAppointment
|
||||
*/
|
||||
@@ -302,16 +298,16 @@ export class SiteServiceClient implements ISiteServiceClient, ServiceInfo {
|
||||
/**
|
||||
* @generated from protobuf rpc: BookAppointmentNoReference
|
||||
*/
|
||||
bookAppointmentNoReference(input: BookAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<BookAppointmentNoReferenceRequest, BookAppointmentResponse> {
|
||||
bookAppointmentNoReference(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[11], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<BookAppointmentNoReferenceRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
return stackIntercept<BookAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ForceBookAppointment
|
||||
*/
|
||||
forceBookAppointment(input: ForceBookAppointmentRequest, options?: RpcOptions): UnaryCall<ForceBookAppointmentRequest, BookAppointmentResponse> {
|
||||
forceBookAppointment(input: BookAppointmentRequest, options?: RpcOptions): UnaryCall<BookAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[12], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ForceBookAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
return stackIntercept<BookAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CancelAppointment
|
||||
@@ -330,16 +326,16 @@ export class SiteServiceClient implements ISiteServiceClient, ServiceInfo {
|
||||
/**
|
||||
* @generated from protobuf rpc: UpdateAppointmentNoReference
|
||||
*/
|
||||
updateAppointmentNoReference(input: UpdateAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentNoReferenceRequest, BookAppointmentResponse> {
|
||||
updateAppointmentNoReference(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[15], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<UpdateAppointmentNoReferenceRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
return stackIntercept<UpdateAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ForceUpdateAppointment
|
||||
*/
|
||||
forceUpdateAppointment(input: ForceUpdateAppointmentRequest, options?: RpcOptions): UnaryCall<ForceUpdateAppointmentRequest, BookAppointmentResponse> {
|
||||
forceUpdateAppointment(input: UpdateAppointmentRequest, options?: RpcOptions): UnaryCall<UpdateAppointmentRequest, BookAppointmentResponse> {
|
||||
const method = this.methods[16], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ForceUpdateAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
return stackIntercept<UpdateAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: RescheduleAppointment
|
||||
|
||||
Reference in New Issue
Block a user