Latest generation

This commit is contained in:
ci core model
2025-03-24 09:23:00 +00:00
parent ecaa268c66
commit 83ee1ac60b
4 changed files with 419 additions and 10 deletions

View File

@@ -16,6 +16,8 @@ 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";
@@ -32,6 +34,10 @@ export interface IActorInputAPIClient {
* @generated from protobuf rpc: Created(api.ActorCreatedRequest) returns (api.ActorCreatedResponse);
*/
created(input: ActorCreatedRequest, options?: RpcOptions): UnaryCall<ActorCreatedRequest, ActorCreatedResponse>;
/**
* @generated from protobuf rpc: Createdv2(api.ActorCreatedv2Request) returns (api.ActorCreatedv2Response);
*/
createdv2(input: ActorCreatedv2Request, options?: RpcOptions): UnaryCall<ActorCreatedv2Request, ActorCreatedv2Response>;
/**
* @generated from protobuf rpc: Deleted(api.ActorDeletedRequest) returns (api.ActorDeletedResponse);
*/
@@ -76,46 +82,53 @@ export class ActorInputAPIClient implements IActorInputAPIClient, ServiceInfo {
const method = this.methods[0], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorCreatedRequest, ActorCreatedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: Createdv2(api.ActorCreatedv2Request) returns (api.ActorCreatedv2Response);
*/
createdv2(input: ActorCreatedv2Request, options?: RpcOptions): UnaryCall<ActorCreatedv2Request, ActorCreatedv2Response> {
const method = this.methods[1], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorCreatedv2Request, ActorCreatedv2Response>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: Deleted(api.ActorDeletedRequest) returns (api.ActorDeletedResponse);
*/
deleted(input: ActorDeletedRequest, options?: RpcOptions): UnaryCall<ActorDeletedRequest, ActorDeletedResponse> {
const method = this.methods[1], opt = this._transport.mergeOptions(options);
const method = this.methods[2], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorDeletedRequest, ActorDeletedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: SnapshotCompleted(api.ActorSnapshotCompletedRequest) returns (api.ActorSnapshotCompletedResponse);
*/
snapshotCompleted(input: ActorSnapshotCompletedRequest, options?: RpcOptions): UnaryCall<ActorSnapshotCompletedRequest, ActorSnapshotCompletedResponse> {
const method = this.methods[2], opt = this._transport.mergeOptions(options);
const method = this.methods[3], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorSnapshotCompletedRequest, ActorSnapshotCompletedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: AttachmentAdded(api.ActorAttachmentAddedRequest) returns (api.ActorAttachmentAddedResponse);
*/
attachmentAdded(input: ActorAttachmentAddedRequest, options?: RpcOptions): UnaryCall<ActorAttachmentAddedRequest, ActorAttachmentAddedResponse> {
const method = this.methods[3], opt = this._transport.mergeOptions(options);
const method = this.methods[4], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorAttachmentAddedRequest, ActorAttachmentAddedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: AttachmentRemoved(api.ActorAttachmentRemovedRequest) returns (api.ActorAttachmentRemovedResponse);
*/
attachmentRemoved(input: ActorAttachmentRemovedRequest, options?: RpcOptions): UnaryCall<ActorAttachmentRemovedRequest, ActorAttachmentRemovedResponse> {
const method = this.methods[4], opt = this._transport.mergeOptions(options);
const method = this.methods[5], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorAttachmentRemovedRequest, ActorAttachmentRemovedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: ClaimAdded(api.ActorClaimAddedRequest) returns (api.ActorClaimAddedResponse);
*/
claimAdded(input: ActorClaimAddedRequest, options?: RpcOptions): UnaryCall<ActorClaimAddedRequest, ActorClaimAddedResponse> {
const method = this.methods[5], opt = this._transport.mergeOptions(options);
const method = this.methods[6], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorClaimAddedRequest, ActorClaimAddedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: MetaDataUpdated(api.ActorMetaDataUpdatedRequest) returns (api.ActorMetaDataUpdatedResponse);
*/
metaDataUpdated(input: ActorMetaDataUpdatedRequest, options?: RpcOptions): UnaryCall<ActorMetaDataUpdatedRequest, ActorMetaDataUpdatedResponse> {
const method = this.methods[6], opt = this._transport.mergeOptions(options);
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<ActorMetaDataUpdatedRequest, ActorMetaDataUpdatedResponse>("unary", this._transport, method, opt, input);
}
}