Latest generation

This commit is contained in:
ci core model
2025-10-30 14:06:37 +00:00
parent 6f519317ae
commit c446cd832f
3 changed files with 2 additions and 139 deletions

View File

@@ -4,8 +4,6 @@
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";
@@ -188,10 +186,6 @@ 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
@@ -419,11 +413,4 @@ 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);
}
}