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 { 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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user