Latest generation

This commit is contained in:
ci core model
2025-11-04 10:03:04 +00:00
parent 17b05b7d7c
commit c4db25883c
4 changed files with 128 additions and 3 deletions

View File

@@ -4,6 +4,8 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ProjectService } from "./proj";
import type { IsProjectExistResult } from "./proj";
import type { IsProjectExistRequest } from "./proj";
import type { CleanDeletedProjectsResult } from "./proj";
import type { CleanDeletedProjectsRequest } from "./proj";
import type { DeleteProjectInDBResult } from "./proj";
@@ -87,6 +89,10 @@ export interface IProjectServiceClient {
* @generated from protobuf rpc: CleanDeletedProjects
*/
cleanDeletedProjects(input: CleanDeletedProjectsRequest, options?: RpcOptions): UnaryCall<CleanDeletedProjectsRequest, CleanDeletedProjectsResult>;
/**
* @generated from protobuf rpc: IsProjectExist
*/
isProjectExist(input: IsProjectExistRequest, options?: RpcOptions): UnaryCall<IsProjectExistRequest, IsProjectExistResult>;
}
/**
* @generated from protobuf service api.ProjectService
@@ -188,4 +194,11 @@ export class ProjectServiceClient implements IProjectServiceClient, ServiceInfo
const method = this.methods[12], opt = this._transport.mergeOptions(options);
return stackIntercept<CleanDeletedProjectsRequest, CleanDeletedProjectsResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: IsProjectExist
*/
isProjectExist(input: IsProjectExistRequest, options?: RpcOptions): UnaryCall<IsProjectExistRequest, IsProjectExistResult> {
const method = this.methods[13], opt = this._transport.mergeOptions(options);
return stackIntercept<IsProjectExistRequest, IsProjectExistResult>("unary", this._transport, method, opt, input);
}
}