Latest generation

This commit is contained in:
ci core model
2025-10-09 08:13:24 +00:00
parent 29355aa653
commit 653a5d19b7
3 changed files with 322 additions and 2 deletions

View File

@@ -4,6 +4,8 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ActorInputAPI } from "./actorInput";
import type { ActorAppointmentConfigurationUpdatedResponse } from "./actorInput";
import type { ActorAppointmentConfigurationUpdatedRequest } from "./actorInput";
import type { ActorMetaDataUpdatedResponse } from "./actorInput";
import type { ActorMetaDataUpdatedRequest } from "./actorInput";
import type { ActorClaimAddedResponse } from "./actorInput";
@@ -62,6 +64,10 @@ export interface IActorInputAPIClient {
* @generated from protobuf rpc: MetaDataUpdated
*/
metaDataUpdated(input: ActorMetaDataUpdatedRequest, options?: RpcOptions): UnaryCall<ActorMetaDataUpdatedRequest, ActorMetaDataUpdatedResponse>;
/**
* @generated from protobuf rpc: AppointmentConfigurationUpdated
*/
appointmentConfigurationUpdated(input: ActorAppointmentConfigurationUpdatedRequest, options?: RpcOptions): UnaryCall<ActorAppointmentConfigurationUpdatedRequest, ActorAppointmentConfigurationUpdatedResponse>;
}
/**
*
@@ -131,4 +137,11 @@ export class ActorInputAPIClient implements IActorInputAPIClient, ServiceInfo {
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorMetaDataUpdatedRequest, ActorMetaDataUpdatedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: AppointmentConfigurationUpdated
*/
appointmentConfigurationUpdated(input: ActorAppointmentConfigurationUpdatedRequest, options?: RpcOptions): UnaryCall<ActorAppointmentConfigurationUpdatedRequest, ActorAppointmentConfigurationUpdatedResponse> {
const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorAppointmentConfigurationUpdatedRequest, ActorAppointmentConfigurationUpdatedResponse>("unary", this._transport, method, opt, input);
}
}