Latest generation

This commit is contained in:
ci core model
2026-01-26 15:23:00 +00:00
parent 7726d11dd7
commit c75dc8231c
6 changed files with 310 additions and 12 deletions

View File

@@ -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);
}
}