// @generated by protobuf-ts 2.9.6 // @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 { 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 { 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(api.ActorCreatedRequest) returns (api.ActorCreatedResponse); */ created(input: ActorCreatedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: Deleted(api.ActorDeletedRequest) returns (api.ActorDeletedResponse); */ deleted(input: ActorDeletedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: SnapshotCompleted(api.ActorSnapshotCompletedRequest) returns (api.ActorSnapshotCompletedResponse); */ snapshotCompleted(input: ActorSnapshotCompletedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: AttachmentAdded(api.ActorAttachmentAddedRequest) returns (api.ActorAttachmentAddedResponse); */ attachmentAdded(input: ActorAttachmentAddedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: AttachmentRemoved(api.ActorAttachmentRemovedRequest) returns (api.ActorAttachmentRemovedResponse); */ attachmentRemoved(input: ActorAttachmentRemovedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: ClaimAdded(api.ActorClaimAddedRequest) returns (api.ActorClaimAddedResponse); */ claimAdded(input: ActorClaimAddedRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: MetaDataUpdated(api.ActorMetaDataUpdatedRequest) returns (api.ActorMetaDataUpdatedResponse); */ metaDataUpdated(input: ActorMetaDataUpdatedRequest, 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(api.ActorCreatedRequest) returns (api.ActorCreatedResponse); */ 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: Deleted(api.ActorDeletedRequest) returns (api.ActorDeletedResponse); */ deleted(input: ActorDeletedRequest, 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: SnapshotCompleted(api.ActorSnapshotCompletedRequest) returns (api.ActorSnapshotCompletedResponse); */ snapshotCompleted(input: ActorSnapshotCompletedRequest, 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: AttachmentAdded(api.ActorAttachmentAddedRequest) returns (api.ActorAttachmentAddedResponse); */ attachmentAdded(input: ActorAttachmentAddedRequest, 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: AttachmentRemoved(api.ActorAttachmentRemovedRequest) returns (api.ActorAttachmentRemovedResponse); */ attachmentRemoved(input: ActorAttachmentRemovedRequest, 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: ClaimAdded(api.ActorClaimAddedRequest) returns (api.ActorClaimAddedResponse); */ claimAdded(input: ActorClaimAddedRequest, 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: MetaDataUpdated(api.ActorMetaDataUpdatedRequest) returns (api.ActorMetaDataUpdatedResponse); */ metaDataUpdated(input: ActorMetaDataUpdatedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[6], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } }