Latest generation

This commit is contained in:
ci core model
2025-10-06 13:51:45 +00:00
parent 3c2aa35e35
commit 158d857eef
3 changed files with 75 additions and 86 deletions

View File

@@ -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