Latest generation

This commit is contained in:
ci core model
2026-05-28 08:13:32 +00:00
parent b5ebc4997e
commit 5dc7b22fdf
18 changed files with 1763 additions and 285 deletions

View File

@@ -4,6 +4,8 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ExecutionflowInputAPI } from "./executionflowInput";
import type { ExecutionflowAppointmentUpdatedResponse } from "./executionflowInput";
import type { ExecutionflowAppointmentUpdatedRequest } from "./executionflowInput";
import type { ExecutionflowCustomFieldsUpdatedResponse } from "./executionflowInput";
import type { ExecutionflowCustomFieldsUpdatedRequest } from "./executionflowInput";
import type { ExecutionflowSanitisedResponse } from "./executionflowInput";
@@ -212,6 +214,10 @@ export interface IExecutionflowInputAPIClient {
* @generated from protobuf rpc: CustomFieldsUpdated
*/
customFieldsUpdated(input: ExecutionflowCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall<ExecutionflowCustomFieldsUpdatedRequest, ExecutionflowCustomFieldsUpdatedResponse>;
/**
* @generated from protobuf rpc: AppointmentUpdated
*/
appointmentUpdated(input: ExecutionflowAppointmentUpdatedRequest, options?: RpcOptions): UnaryCall<ExecutionflowAppointmentUpdatedRequest, ExecutionflowAppointmentUpdatedResponse>;
}
/**
*
@@ -456,4 +462,11 @@ export class ExecutionflowInputAPIClient implements IExecutionflowInputAPIClient
const method = this.methods[32], opt = this._transport.mergeOptions(options);
return stackIntercept<ExecutionflowCustomFieldsUpdatedRequest, ExecutionflowCustomFieldsUpdatedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: AppointmentUpdated
*/
appointmentUpdated(input: ExecutionflowAppointmentUpdatedRequest, options?: RpcOptions): UnaryCall<ExecutionflowAppointmentUpdatedRequest, ExecutionflowAppointmentUpdatedResponse> {
const method = this.methods[33], opt = this._transport.mergeOptions(options);
return stackIntercept<ExecutionflowAppointmentUpdatedRequest, ExecutionflowAppointmentUpdatedResponse>("unary", this._transport, method, opt, input);
}
}