You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -6,6 +6,8 @@ import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
||||
import { SiteService } from "./site";
|
||||
import type { ListSettingsResponse } from "./site";
|
||||
import type { ListSettingsRequest } from "./site";
|
||||
import type { CheckAppointmentModifiableResponse } from "./site";
|
||||
import type { CheckAppointmentModifiableRequest } from "./site";
|
||||
import type { GetMyBookingContextResponse } from "./site";
|
||||
import type { GetMyBookingContextRequest } from "./site";
|
||||
import type { GetBookingContextResponse } from "./site";
|
||||
@@ -209,6 +211,10 @@ export interface ISiteServiceClient {
|
||||
* @generated from protobuf rpc: GetMyBookingContext
|
||||
*/
|
||||
getMyBookingContext(input: GetMyBookingContextRequest, options?: RpcOptions): UnaryCall<GetMyBookingContextRequest, GetMyBookingContextResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CheckAppointmentModifiable
|
||||
*/
|
||||
checkAppointmentModifiable(input: CheckAppointmentModifiableRequest, options?: RpcOptions): UnaryCall<CheckAppointmentModifiableRequest, CheckAppointmentModifiableResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: ListSettings
|
||||
*/
|
||||
@@ -468,11 +474,18 @@ export class SiteServiceClient implements ISiteServiceClient, ServiceInfo {
|
||||
const method = this.methods[34], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetMyBookingContextRequest, GetMyBookingContextResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CheckAppointmentModifiable
|
||||
*/
|
||||
checkAppointmentModifiable(input: CheckAppointmentModifiableRequest, options?: RpcOptions): UnaryCall<CheckAppointmentModifiableRequest, CheckAppointmentModifiableResponse> {
|
||||
const method = this.methods[35], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CheckAppointmentModifiableRequest, CheckAppointmentModifiableResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListSettings
|
||||
*/
|
||||
listSettings(input: ListSettingsRequest, options?: RpcOptions): UnaryCall<ListSettingsRequest, ListSettingsResponse> {
|
||||
const method = this.methods[35], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[36], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListSettingsRequest, ListSettingsResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user