You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user