You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "executionflowQuery.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -20,19 +20,19 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IExecutionflowQueryClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.ExecutionflowByIdQuery) returns (api.ExecutionflowByIdResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: ExecutionflowByIdQuery, options?: RpcOptions): UnaryCall<ExecutionflowByIdQuery, ExecutionflowByIdResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: GetKPIData(api.GetKPIDataQuery) returns (api.GetKPIDataResult);
|
||||
* @generated from protobuf rpc: GetKPIData
|
||||
*/
|
||||
getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CountLines(api.CountLinesQuery) returns (api.CountLinesResult);
|
||||
* @generated from protobuf rpc: CountLines
|
||||
*/
|
||||
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.ExecutionflowByFilterQuery) returns (api.ExecutionflowByFilterResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: ExecutionflowByFilterQuery, options?: RpcOptions): UnaryCall<ExecutionflowByFilterQuery, ExecutionflowByFilterResult>;
|
||||
}
|
||||
@@ -46,28 +46,28 @@ export class ExecutionflowQueryClient implements IExecutionflowQueryClient, Serv
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.ExecutionflowByIdQuery) returns (api.ExecutionflowByIdResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: ExecutionflowByIdQuery, options?: RpcOptions): UnaryCall<ExecutionflowByIdQuery, ExecutionflowByIdResult> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ExecutionflowByIdQuery, ExecutionflowByIdResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetKPIData(api.GetKPIDataQuery) returns (api.GetKPIDataResult);
|
||||
* @generated from protobuf rpc: GetKPIData
|
||||
*/
|
||||
getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetKPIDataQuery, GetKPIDataResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CountLines(api.CountLinesQuery) returns (api.CountLinesResult);
|
||||
* @generated from protobuf rpc: CountLines
|
||||
*/
|
||||
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.ExecutionflowByFilterQuery) returns (api.ExecutionflowByFilterResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: ExecutionflowByFilterQuery, options?: RpcOptions): UnaryCall<ExecutionflowByFilterQuery, ExecutionflowByFilterResult> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user