// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name,keep_enum_prefix // @generated from protobuf file "actorInput.proto" (package "api", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import { ActorInputAPI } from "./actorInput"; import type { ActorCustomFieldsUpdatedResponse } from "./actorInput"; import type { ActorCustomFieldsUpdatedRequest } from "./actorInput"; import type { ActorSanitisedResponse } from "./actorInput"; import type { ActorSanitisedRequest } 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"; import type { ActorClaimAddedRequest } from "./actorInput"; import type { ActorAttachmentRemovedResponse } from "./actorInput"; import type { ActorAttachmentRemovedRequest } from "./actorInput"; import type { ActorAttachmentAddedResponse } from "./actorInput"; import type { ActorAttachmentAddedRequest } from "./actorInput"; import type { ActorSnapshotCompletedResponse } from "./actorInput"; import type { ActorSnapshotCompletedRequest } from "./actorInput"; import type { ActorDeletedResponse } from "./actorInput"; import type { ActorDeletedRequest } from "./actorInput"; import type { ActorCreatedv2Response } from "./actorInput"; import type { ActorCreatedv2Request } from "./actorInput"; import { stackIntercept } from "@protobuf-ts/runtime-rpc"; import type { ActorCreatedResponse } from "./actorInput"; import type { ActorCreatedRequest } from "./actorInput"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * * API-server services * * @generated from protobuf service api.ActorInputAPI */ export interface IActorInputAPIClient { /** * @generated from protobuf rpc: Created */ created(input: ActorCreatedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: Createdv2 */ createdv2(input: ActorCreatedv2Request, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: Deleted */ deleted(input: ActorDeletedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: SnapshotCompleted */ snapshotCompleted(input: ActorSnapshotCompletedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: AttachmentAdded */ attachmentAdded(input: ActorAttachmentAddedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: AttachmentRemoved */ attachmentRemoved(input: ActorAttachmentRemovedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: ClaimAdded */ claimAdded(input: ActorClaimAddedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: MetaDataUpdated */ metaDataUpdated(input: ActorMetaDataUpdatedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: AppointmentConfigurationUpdated */ appointmentConfigurationUpdated(input: ActorAppointmentConfigurationUpdatedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: Sanitised */ sanitised(input: ActorSanitisedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: CustomFieldsUpdated */ customFieldsUpdated(input: ActorCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall; } /** * * API-server services * * @generated from protobuf service api.ActorInputAPI */ export class ActorInputAPIClient implements IActorInputAPIClient, ServiceInfo { typeName = ActorInputAPI.typeName; methods = ActorInputAPI.methods; options = ActorInputAPI.options; constructor(private readonly _transport: RpcTransport) { } /** * @generated from protobuf rpc: Created */ created(input: ActorCreatedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[0], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: Createdv2 */ createdv2(input: ActorCreatedv2Request, options?: RpcOptions): UnaryCall { const method = this.methods[1], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: Deleted */ deleted(input: ActorDeletedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[2], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: SnapshotCompleted */ snapshotCompleted(input: ActorSnapshotCompletedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[3], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: AttachmentAdded */ attachmentAdded(input: ActorAttachmentAddedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[4], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: AttachmentRemoved */ attachmentRemoved(input: ActorAttachmentRemovedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[5], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: ClaimAdded */ claimAdded(input: ActorClaimAddedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[6], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: MetaDataUpdated */ metaDataUpdated(input: ActorMetaDataUpdatedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[7], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: AppointmentConfigurationUpdated */ appointmentConfigurationUpdated(input: ActorAppointmentConfigurationUpdatedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[8], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: Sanitised */ sanitised(input: ActorSanitisedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[9], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: CustomFieldsUpdated */ customFieldsUpdated(input: ActorCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[10], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } }