Latest generation

This commit is contained in:
ci core model
2025-10-30 11:06:05 +00:00
parent a6a8b470a5
commit 6f519317ae
3 changed files with 139 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 { SiteService } from "./site";
import type { NextSiteCounterResponse } from "./site";
import type { NextSiteCounterRequest } from "./site";
import type { ClearAliasesOfProjectResponse } from "./site";
import type { ClearAliasesOfProjectRequest } from "./site";
import type { ClearAliasesOfSiteResponse } from "./site";
@@ -186,6 +188,10 @@ export interface ISiteServiceClient {
* @generated from protobuf rpc: ClearAliasesOfProject
*/
clearAliasesOfProject(input: ClearAliasesOfProjectRequest, options?: RpcOptions): UnaryCall<ClearAliasesOfProjectRequest, ClearAliasesOfProjectResponse>;
/**
* @generated from protobuf rpc: NextSiteCounter
*/
nextSiteCounter(input: NextSiteCounterRequest, options?: RpcOptions): UnaryCall<NextSiteCounterRequest, NextSiteCounterResponse>;
}
/**
* @generated from protobuf service api.SiteService
@@ -413,4 +419,11 @@ export class SiteServiceClient implements ISiteServiceClient, ServiceInfo {
const method = this.methods[30], opt = this._transport.mergeOptions(options);
return stackIntercept<ClearAliasesOfProjectRequest, ClearAliasesOfProjectResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: NextSiteCounter
*/
nextSiteCounter(input: NextSiteCounterRequest, options?: RpcOptions): UnaryCall<NextSiteCounterRequest, NextSiteCounterResponse> {
const method = this.methods[31], opt = this._transport.mergeOptions(options);
return stackIntercept<NextSiteCounterRequest, NextSiteCounterResponse>("unary", this._transport, method, opt, input);
}
}