Latest generation

This commit is contained in:
ci core model
2025-10-03 14:29:18 +00:00
parent 49115fd1f1
commit 97566d4520
35 changed files with 1176 additions and 7397 deletions

View File

@@ -4,9 +4,6 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { AttachmentServiceV2 } from "./attachmentV2";
import type { DeleteAllAttachmentsOnSiteV2Request } from "./attachmentV2";
import type { ListAttachmentsOnSiteV2Response } from "./attachmentV2";
import type { ListAttachmentsOnSiteV2Request } from "./attachmentV2";
import type { DeleteAllAttachmentsV2Response } from "./attachmentV2";
import type { DeleteAllAttachmentsV2Request } from "./attachmentV2";
import type { ShareAttachmentV2Response } from "./attachmentV2";
@@ -56,14 +53,6 @@ export interface IAttachmentServiceV2Client {
* @generated from protobuf rpc: DeleteAll
*/
deleteAll(input: DeleteAllAttachmentsV2Request, options?: RpcOptions): UnaryCall<DeleteAllAttachmentsV2Request, DeleteAllAttachmentsV2Response>;
/**
* @generated from protobuf rpc: ListOnSite
*/
listOnSite(input: ListAttachmentsOnSiteV2Request, options?: RpcOptions): UnaryCall<ListAttachmentsOnSiteV2Request, ListAttachmentsOnSiteV2Response>;
/**
* @generated from protobuf rpc: DeleteAllSite
*/
deleteAllSite(input: DeleteAllAttachmentsOnSiteV2Request, options?: RpcOptions): UnaryCall<DeleteAllAttachmentsOnSiteV2Request, DeleteAllAttachmentsV2Response>;
}
/**
* @generated from protobuf service api.AttachmentServiceV2
@@ -123,18 +112,4 @@ export class AttachmentServiceV2Client implements IAttachmentServiceV2Client, Se
const method = this.methods[6], opt = this._transport.mergeOptions(options);
return stackIntercept<DeleteAllAttachmentsV2Request, DeleteAllAttachmentsV2Response>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: ListOnSite
*/
listOnSite(input: ListAttachmentsOnSiteV2Request, options?: RpcOptions): UnaryCall<ListAttachmentsOnSiteV2Request, ListAttachmentsOnSiteV2Response> {
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<ListAttachmentsOnSiteV2Request, ListAttachmentsOnSiteV2Response>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: DeleteAllSite
*/
deleteAllSite(input: DeleteAllAttachmentsOnSiteV2Request, options?: RpcOptions): UnaryCall<DeleteAllAttachmentsOnSiteV2Request, DeleteAllAttachmentsV2Response> {
const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<DeleteAllAttachmentsOnSiteV2Request, DeleteAllAttachmentsV2Response>("unary", this._transport, method, opt, input);
}
}