You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
||||
import { BookingService } from "./siteBooking";
|
||||
import type { LockBookingResponse } from "./siteBooking";
|
||||
import type { LockBookingRequest } from "./siteBooking";
|
||||
import type { CheckBookingAppointmentEditableResponse } from "./siteBooking";
|
||||
import type { CheckBookingAppointmentEditableRequest } from "./siteBooking";
|
||||
import type { RescheduleBookingAppointmentRequest } from "./siteBooking";
|
||||
@@ -78,6 +80,10 @@ export interface IBookingServiceClient {
|
||||
* @generated from protobuf rpc: CheckAppointmentEditable
|
||||
*/
|
||||
checkAppointmentEditable(input: CheckBookingAppointmentEditableRequest, options?: RpcOptions): UnaryCall<CheckBookingAppointmentEditableRequest, CheckBookingAppointmentEditableResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: LockBooking
|
||||
*/
|
||||
lockBooking(input: LockBookingRequest, options?: RpcOptions): UnaryCall<LockBookingRequest, LockBookingResponse>;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf service api.BookingService
|
||||
@@ -186,4 +192,11 @@ export class BookingServiceClient implements IBookingServiceClient, ServiceInfo
|
||||
const method = this.methods[13], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CheckBookingAppointmentEditableRequest, CheckBookingAppointmentEditableResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: LockBooking
|
||||
*/
|
||||
lockBooking(input: LockBookingRequest, options?: RpcOptions): UnaryCall<LockBookingRequest, LockBookingResponse> {
|
||||
const method = this.methods[14], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<LockBookingRequest, LockBookingResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user