You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -32,8 +32,8 @@ import type { AppointmentCarrierInformationUpdatedResponse } from "./appointment
|
||||
import type { AppointmentCarrierInformationUpdatedRequest } from "./appointmentInput";
|
||||
import type { AppointmentCommissionsUpdatedResponse } from "./appointmentInput";
|
||||
import type { AppointmentCommissionsUpdatedRequest } from "./appointmentInput";
|
||||
import type { AppointmentDateUpdatedResponse } from "./appointmentInput";
|
||||
import type { AppointmentDateUpdatedRequest } from "./appointmentInput";
|
||||
import type { AppointmentSlotUpdatedResponse } from "./appointmentInput";
|
||||
import type { AppointmentSlotUpdatedRequest } from "./appointmentInput";
|
||||
import type { AppointmentCanceledResponse } from "./appointmentInput";
|
||||
import type { AppointmentCanceledRequest } from "./appointmentInput";
|
||||
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -57,9 +57,9 @@ export interface IAppointmentInputAPIClient {
|
||||
*/
|
||||
canceled(input: AppointmentCanceledRequest, options?: RpcOptions): UnaryCall<AppointmentCanceledRequest, AppointmentCanceledResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: DateUpdated
|
||||
* @generated from protobuf rpc: SlotUpdated
|
||||
*/
|
||||
dateUpdated(input: AppointmentDateUpdatedRequest, options?: RpcOptions): UnaryCall<AppointmentDateUpdatedRequest, AppointmentDateUpdatedResponse>;
|
||||
slotUpdated(input: AppointmentSlotUpdatedRequest, options?: RpcOptions): UnaryCall<AppointmentSlotUpdatedRequest, AppointmentSlotUpdatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CommissionsUpdated
|
||||
*/
|
||||
@@ -144,11 +144,11 @@ export class AppointmentInputAPIClient implements IAppointmentInputAPIClient, Se
|
||||
return stackIntercept<AppointmentCanceledRequest, AppointmentCanceledResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DateUpdated
|
||||
* @generated from protobuf rpc: SlotUpdated
|
||||
*/
|
||||
dateUpdated(input: AppointmentDateUpdatedRequest, options?: RpcOptions): UnaryCall<AppointmentDateUpdatedRequest, AppointmentDateUpdatedResponse> {
|
||||
slotUpdated(input: AppointmentSlotUpdatedRequest, options?: RpcOptions): UnaryCall<AppointmentSlotUpdatedRequest, AppointmentSlotUpdatedResponse> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<AppointmentDateUpdatedRequest, AppointmentDateUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
return stackIntercept<AppointmentSlotUpdatedRequest, AppointmentSlotUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CommissionsUpdated
|
||||
|
||||
Reference in New Issue
Block a user