Latest generation

This commit is contained in:
ci core model
2026-02-18 15:36:37 +00:00
parent 62ed43706f
commit 52382a9fd1
3 changed files with 118 additions and 5 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 { SynchronizeUserRPTsResponse } from "./api";
import type { SynchronizeUserRPTsRequest } from "./api";
import type { ListUserRPTsResponse } from "./api";
import type { ListUserRPTsRequest } from "./api";
import type { ListUserUIPermissionsResult } from "./api";
@@ -43,6 +45,10 @@ export interface IAPIServiceClient {
* @generated from protobuf rpc: ListUserRPTs
*/
listUserRPTs(input: ListUserRPTsRequest, options?: RpcOptions): UnaryCall<ListUserRPTsRequest, ListUserRPTsResponse>;
/**
* @generated from protobuf rpc: SynchronizeUserRPTs
*/
synchronizeUserRPTs(input: SynchronizeUserRPTsRequest, options?: RpcOptions): UnaryCall<SynchronizeUserRPTsRequest, SynchronizeUserRPTsResponse>;
/**
* @generated from protobuf rpc: RegisterPackage
*/
@@ -97,32 +103,39 @@ export class APIServiceClient implements IAPIServiceClient, ServiceInfo {
const method = this.methods[3], opt = this._transport.mergeOptions(options);
return stackIntercept<ListUserRPTsRequest, ListUserRPTsResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: SynchronizeUserRPTs
*/
synchronizeUserRPTs(input: SynchronizeUserRPTsRequest, options?: RpcOptions): UnaryCall<SynchronizeUserRPTsRequest, SynchronizeUserRPTsResponse> {
const method = this.methods[4], opt = this._transport.mergeOptions(options);
return stackIntercept<SynchronizeUserRPTsRequest, SynchronizeUserRPTsResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: RegisterPackage
*/
registerPackage(input: RegisterPackageRequest, options?: RpcOptions): UnaryCall<RegisterPackageRequest, RegisterPackageResult> {
const method = this.methods[4], opt = this._transport.mergeOptions(options);
const method = this.methods[5], 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[5], opt = this._transport.mergeOptions(options);
const method = this.methods[6], 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[6], opt = this._transport.mergeOptions(options);
const method = this.methods[7], 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[7], opt = this._transport.mergeOptions(options);
const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<CleanScopeRequest, CleanScopeResult>("unary", this._transport, method, opt, input);
}
}