Latest generation

This commit is contained in:
ci core model
2025-10-03 14:29:18 +00:00
parent 49115fd1f1
commit 97566d4520
35 changed files with 1176 additions and 7397 deletions

View File

@@ -9,11 +9,11 @@ import type { FindMineQuery } from "./appointmentQuery";
import type { CountLinesResult } from "./shared";
import type { CountLinesQuery } from "./shared";
import type { GetKPIDataResult } from "./clickhouse";
import type { GetKPIDataSiteQuery } from "./clickhouse";
import type { GetKPIDataQuery } from "./clickhouse";
import type { ExtractResult } from "./shared";
import type { ExtractSiteQuery } from "./shared";
import type { ExtractQuery } from "./shared";
import type { ElementByMatchResult } from "./shared";
import type { ElementByMatchSiteQuery } from "./shared";
import type { ElementByMatchQuery } from "./shared";
import type { AppointmentByMatchResult } from "./appointmentQuery";
import type { AppointmentByMatchQuery } from "./appointmentQuery";
import type { AppointmentByFilterResult } from "./appointmentQuery";
@@ -42,15 +42,15 @@ export interface IAppointmentQueryClient {
/**
* @generated from protobuf rpc: FindMatchingFieldElements
*/
findMatchingFieldElements(input: ElementByMatchSiteQuery, options?: RpcOptions): UnaryCall<ElementByMatchSiteQuery, ElementByMatchResult>;
findMatchingFieldElements(input: ElementByMatchQuery, options?: RpcOptions): UnaryCall<ElementByMatchQuery, ElementByMatchResult>;
/**
* @generated from protobuf rpc: Extract
*/
extract(input: ExtractSiteQuery, options?: RpcOptions): UnaryCall<ExtractSiteQuery, ExtractResult>;
extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult>;
/**
* @generated from protobuf rpc: GetKPIData
*/
getKPIData(input: GetKPIDataSiteQuery, options?: RpcOptions): UnaryCall<GetKPIDataSiteQuery, GetKPIDataResult>;
getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult>;
/**
* @generated from protobuf rpc: CountLines
*/
@@ -93,23 +93,23 @@ export class AppointmentQueryClient implements IAppointmentQueryClient, ServiceI
/**
* @generated from protobuf rpc: FindMatchingFieldElements
*/
findMatchingFieldElements(input: ElementByMatchSiteQuery, options?: RpcOptions): UnaryCall<ElementByMatchSiteQuery, ElementByMatchResult> {
findMatchingFieldElements(input: ElementByMatchQuery, options?: RpcOptions): UnaryCall<ElementByMatchQuery, ElementByMatchResult> {
const method = this.methods[3], opt = this._transport.mergeOptions(options);
return stackIntercept<ElementByMatchSiteQuery, ElementByMatchResult>("unary", this._transport, method, opt, input);
return stackIntercept<ElementByMatchQuery, ElementByMatchResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: Extract
*/
extract(input: ExtractSiteQuery, options?: RpcOptions): UnaryCall<ExtractSiteQuery, ExtractResult> {
extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult> {
const method = this.methods[4], opt = this._transport.mergeOptions(options);
return stackIntercept<ExtractSiteQuery, ExtractResult>("unary", this._transport, method, opt, input);
return stackIntercept<ExtractQuery, ExtractResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: GetKPIData
*/
getKPIData(input: GetKPIDataSiteQuery, options?: RpcOptions): UnaryCall<GetKPIDataSiteQuery, GetKPIDataResult> {
getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult> {
const method = this.methods[5], opt = this._transport.mergeOptions(options);
return stackIntercept<GetKPIDataSiteQuery, GetKPIDataResult>("unary", this._transport, method, opt, input);
return stackIntercept<GetKPIDataQuery, GetKPIDataResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CountLines