Latest generation

This commit is contained in:
ci core model
2026-02-26 15:28:52 +00:00
parent 186eb5803f
commit 185153e725
3 changed files with 116 additions and 2 deletions

View File

@@ -4,6 +4,8 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ModelService } from "./model";
import type { ListEntitiesResult } from "./model";
import type { ListEntitiesRequest } from "./model";
import type { GetEntitiesResult } from "./model";
import type { GetEntitiesRequest } from "./model";
import type { GetEntityModelResult } from "./model";
@@ -37,6 +39,10 @@ export interface IModelServiceClient {
* @generated from protobuf rpc: GetEntitiesWithDataRestriction
*/
getEntitiesWithDataRestriction(input: GetEntitiesRequest, options?: RpcOptions): UnaryCall<GetEntitiesRequest, GetEntitiesResult>;
/**
* @generated from protobuf rpc: ListEntities
*/
listEntities(input: ListEntitiesRequest, options?: RpcOptions): UnaryCall<ListEntitiesRequest, ListEntitiesResult>;
}
/**
* @generated from protobuf service api.ModelService
@@ -82,4 +88,11 @@ export class ModelServiceClient implements IModelServiceClient, ServiceInfo {
const method = this.methods[4], opt = this._transport.mergeOptions(options);
return stackIntercept<GetEntitiesRequest, GetEntitiesResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: ListEntities
*/
listEntities(input: ListEntitiesRequest, options?: RpcOptions): UnaryCall<ListEntitiesRequest, ListEntitiesResult> {
const method = this.methods[5], opt = this._transport.mergeOptions(options);
return stackIntercept<ListEntitiesRequest, ListEntitiesResult>("unary", this._transport, method, opt, input);
}
}