Latest generation

This commit is contained in:
ci core model
2025-07-28 13:09:26 +00:00
parent aa255ff65e
commit 2450e4bf38
4 changed files with 623 additions and 4 deletions

View File

@@ -4,6 +4,10 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { AppointmentInputAPI } from "./appointmentInput";
import type { AppointmentAssigneesRemovedResponse } from "./appointmentInput";
import type { AppointmentAssigneesRemovedRequest } from "./appointmentInput";
import type { AppointmentAssigneesAddedResponse } from "./appointmentInput";
import type { AppointmentAssigneesAddedRequest } from "./appointmentInput";
import type { AppointmentAttachmentRemovedResponse } from "./appointmentInput";
import type { AppointmentAttachmentRemovedRequest } from "./appointmentInput";
import type { AppointmentAttachmentAddedResponse } from "./appointmentInput";
@@ -98,6 +102,14 @@ export interface IAppointmentInputAPIClient {
* @generated from protobuf rpc: AttachmentRemoved
*/
attachmentRemoved(input: AppointmentAttachmentRemovedRequest, options?: RpcOptions): UnaryCall<AppointmentAttachmentRemovedRequest, AppointmentAttachmentRemovedResponse>;
/**
* @generated from protobuf rpc: AssigneesAdded
*/
assigneesAdded(input: AppointmentAssigneesAddedRequest, options?: RpcOptions): UnaryCall<AppointmentAssigneesAddedRequest, AppointmentAssigneesAddedResponse>;
/**
* @generated from protobuf rpc: AssigneesRemoved
*/
assigneesRemoved(input: AppointmentAssigneesRemovedRequest, options?: RpcOptions): UnaryCall<AppointmentAssigneesRemovedRequest, AppointmentAssigneesRemovedResponse>;
}
/**
*
@@ -209,4 +221,18 @@ export class AppointmentInputAPIClient implements IAppointmentInputAPIClient, Se
const method = this.methods[13], opt = this._transport.mergeOptions(options);
return stackIntercept<AppointmentAttachmentRemovedRequest, AppointmentAttachmentRemovedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: AssigneesAdded
*/
assigneesAdded(input: AppointmentAssigneesAddedRequest, options?: RpcOptions): UnaryCall<AppointmentAssigneesAddedRequest, AppointmentAssigneesAddedResponse> {
const method = this.methods[14], opt = this._transport.mergeOptions(options);
return stackIntercept<AppointmentAssigneesAddedRequest, AppointmentAssigneesAddedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: AssigneesRemoved
*/
assigneesRemoved(input: AppointmentAssigneesRemovedRequest, options?: RpcOptions): UnaryCall<AppointmentAssigneesRemovedRequest, AppointmentAssigneesRemovedResponse> {
const method = this.methods[15], opt = this._transport.mergeOptions(options);
return stackIntercept<AppointmentAssigneesRemovedRequest, AppointmentAssigneesRemovedResponse>("unary", this._transport, method, opt, input);
}
}