Latest generation

This commit is contained in:
ci core model
2026-01-26 15:23:00 +00:00
parent 7726d11dd7
commit c75dc8231c
6 changed files with 310 additions and 12 deletions

View File

@@ -4,6 +4,8 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { AppointmentInputAPI } from "./appointmentInput";
import type { AppointmentRedetectedResponse } from "./appointmentInput";
import type { AppointmentRedetectedRequest } from "./appointmentInput";
import type { AppointmentCustomFieldsUpdatedResponse } from "./appointmentInput";
import type { AppointmentCustomFieldsUpdatedRequest } from "./appointmentInput";
import type { AppointmentSanitisedResponse } from "./appointmentInput";
@@ -134,6 +136,10 @@ export interface IAppointmentInputAPIClient {
* @generated from protobuf rpc: CustomFieldsUpdated
*/
customFieldsUpdated(input: AppointmentCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall<AppointmentCustomFieldsUpdatedRequest, AppointmentCustomFieldsUpdatedResponse>;
/**
* @generated from protobuf rpc: Redetected
*/
redetected(input: AppointmentRedetectedRequest, options?: RpcOptions): UnaryCall<AppointmentRedetectedRequest, AppointmentRedetectedResponse>;
}
/**
*
@@ -287,4 +293,11 @@ export class AppointmentInputAPIClient implements IAppointmentInputAPIClient, Se
const method = this.methods[19], opt = this._transport.mergeOptions(options);
return stackIntercept<AppointmentCustomFieldsUpdatedRequest, AppointmentCustomFieldsUpdatedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: Redetected
*/
redetected(input: AppointmentRedetectedRequest, options?: RpcOptions): UnaryCall<AppointmentRedetectedRequest, AppointmentRedetectedResponse> {
const method = this.methods[20], opt = this._transport.mergeOptions(options);
return stackIntercept<AppointmentRedetectedRequest, AppointmentRedetectedResponse>("unary", this._transport, method, opt, input);
}
}