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 { StockQuery } from "./stockQuery";
|
||||
import type { ExtractResult } from "./shared";
|
||||
import type { ExtractQuery } from "./shared";
|
||||
import type { FindKPIDataResult } from "./clickhouse";
|
||||
import type { FindKPIDataQuery } from "./clickhouse";
|
||||
import type { CountLinesResult } from "./shared";
|
||||
@@ -70,6 +72,10 @@ export interface IStockQueryClient {
|
||||
* @generated from protobuf rpc: FindKPIData
|
||||
*/
|
||||
findKPIData(input: FindKPIDataQuery, options?: RpcOptions): UnaryCall<FindKPIDataQuery, FindKPIDataResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Extract
|
||||
*/
|
||||
extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult>;
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -149,4 +155,11 @@ export class StockQueryClient implements IStockQueryClient, ServiceInfo {
|
||||
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<FindKPIDataQuery, FindKPIDataResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Extract
|
||||
*/
|
||||
extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult> {
|
||||
const method = this.methods[9], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ExtractQuery, ExtractResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user