Latest generation

This commit is contained in:
ci core model
2026-02-17 15:20:24 +00:00
parent 5418229663
commit 8a8f58f400
5 changed files with 316 additions and 85 deletions

View File

@@ -12,6 +12,8 @@ import type { CreateScopeResult } from "./api";
import type { CreateScopeRequest } from "./api";
import type { RegisterPackageResult } from "./api";
import type { RegisterPackageRequest } from "./api";
import type { ListUserRPTsResponse } from "./api";
import type { ListUserRPTsRequest } from "./api";
import type { ListUserUIPermissionsResult } from "./api";
import type { ListUserUIPermissionsRequest } from "./api";
import type { GetUIPermissionsResult } from "./api";
@@ -37,6 +39,10 @@ export interface IAPIServiceClient {
* @generated from protobuf rpc: ListUserUIPermissions
*/
listUserUIPermissions(input: ListUserUIPermissionsRequest, options?: RpcOptions): UnaryCall<ListUserUIPermissionsRequest, ListUserUIPermissionsResult>;
/**
* @generated from protobuf rpc: ListUserRPTs
*/
listUserRPTs(input: ListUserRPTsRequest, options?: RpcOptions): UnaryCall<ListUserRPTsRequest, ListUserRPTsResponse>;
/**
* @generated from protobuf rpc: RegisterPackage
*/
@@ -84,32 +90,39 @@ export class APIServiceClient implements IAPIServiceClient, ServiceInfo {
const method = this.methods[2], opt = this._transport.mergeOptions(options);
return stackIntercept<ListUserUIPermissionsRequest, ListUserUIPermissionsResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: ListUserRPTs
*/
listUserRPTs(input: ListUserRPTsRequest, options?: RpcOptions): UnaryCall<ListUserRPTsRequest, ListUserRPTsResponse> {
const method = this.methods[3], opt = this._transport.mergeOptions(options);
return stackIntercept<ListUserRPTsRequest, ListUserRPTsResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: RegisterPackage
*/
registerPackage(input: RegisterPackageRequest, options?: RpcOptions): UnaryCall<RegisterPackageRequest, RegisterPackageResult> {
const method = this.methods[3], opt = this._transport.mergeOptions(options);
const method = this.methods[4], opt = this._transport.mergeOptions(options);
return stackIntercept<RegisterPackageRequest, RegisterPackageResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CreateScope
*/
createScope(input: CreateScopeRequest, options?: RpcOptions): UnaryCall<CreateScopeRequest, CreateScopeResult> {
const method = this.methods[4], opt = this._transport.mergeOptions(options);
const method = this.methods[5], opt = this._transport.mergeOptions(options);
return stackIntercept<CreateScopeRequest, CreateScopeResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: DeleteScope
*/
deleteScope(input: DeleteScopeRequest, options?: RpcOptions): UnaryCall<DeleteScopeRequest, DeleteScopeResult> {
const method = this.methods[5], opt = this._transport.mergeOptions(options);
const method = this.methods[6], opt = this._transport.mergeOptions(options);
return stackIntercept<DeleteScopeRequest, DeleteScopeResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CleanScope
*/
cleanScope(input: CleanScopeRequest, options?: RpcOptions): UnaryCall<CleanScopeRequest, CleanScopeResult> {
const method = this.methods[6], opt = this._transport.mergeOptions(options);
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<CleanScopeRequest, CleanScopeResult>("unary", this._transport, method, opt, input);
}
}