From f09acd0bd40b12ed072346c30d6212f0f563dd68 Mon Sep 17 00:00:00 2001 From: ci core model Date: Fri, 11 Sep 2026 15:03:03 +0000 Subject: [PATCH] Latest generation --- executionflowQuery.client.ts | 17 +++++++++++++++-- executionflowQuery.ts | 3 +++ handlingunitQuery.client.ts | 17 +++++++++++++++-- handlingunitQuery.ts | 3 +++ package.json | 2 +- 5 files changed, 37 insertions(+), 5 deletions(-) diff --git a/executionflowQuery.client.ts b/executionflowQuery.client.ts index 37f0b99..f4b2874 100644 --- a/executionflowQuery.client.ts +++ b/executionflowQuery.client.ts @@ -8,6 +8,8 @@ import type { ExecutionflowByFilterResult } from "./executionflowQuery"; import type { ExecutionflowByFilterQuery } from "./executionflowQuery"; import type { CountLinesResult } from "./shared"; import type { CountLinesQuery } from "./shared"; +import type { GetKPIDataSimpleJSONResult } from "./clickhouse"; +import type { GetKPIDataSimpleJSONQuery } from "./clickhouse"; import type { GetKPIDataResult } from "./clickhouse"; import type { GetKPIDataQuery } from "./clickhouse"; import { stackIntercept } from "@protobuf-ts/runtime-rpc"; @@ -27,6 +29,10 @@ export interface IExecutionflowQueryClient { * @generated from protobuf rpc: GetKPIData */ getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall; + /** + * @generated from protobuf rpc: GetKPIDataSimpleJSON + */ + getKPIDataSimpleJSON(input: GetKPIDataSimpleJSONQuery, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: CountLines */ @@ -59,18 +65,25 @@ export class ExecutionflowQueryClient implements IExecutionflowQueryClient, Serv const method = this.methods[1], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } + /** + * @generated from protobuf rpc: GetKPIDataSimpleJSON + */ + getKPIDataSimpleJSON(input: GetKPIDataSimpleJSONQuery, options?: RpcOptions): UnaryCall { + const method = this.methods[2], opt = this._transport.mergeOptions(options); + return stackIntercept("unary", this._transport, method, opt, input); + } /** * @generated from protobuf rpc: CountLines */ countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall { - const method = this.methods[2], opt = this._transport.mergeOptions(options); + const method = this.methods[3], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: Find */ find(input: ExecutionflowByFilterQuery, options?: RpcOptions): UnaryCall { - const method = this.methods[3], opt = this._transport.mergeOptions(options); + const method = this.methods[4], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } } diff --git a/executionflowQuery.ts b/executionflowQuery.ts index da7ec0c..210b471 100644 --- a/executionflowQuery.ts +++ b/executionflowQuery.ts @@ -3,6 +3,8 @@ // tslint:disable import { CountLinesResult } from "./shared"; import { CountLinesQuery } from "./shared"; +import { GetKPIDataSimpleJSONResult } from "./clickhouse"; +import { GetKPIDataSimpleJSONQuery } from "./clickhouse"; import { GetKPIDataResult } from "./clickhouse"; import { GetKPIDataQuery } from "./clickhouse"; import { ServiceType } from "@protobuf-ts/runtime-rpc"; @@ -502,6 +504,7 @@ export const ExecutionflowQueryOptions = new ExecutionflowQueryOptions$Type(); export const ExecutionflowQuery = new ServiceType("api.ExecutionflowQuery", [ { name: "GetByIds", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["ExecutionFlow Query"], description: "Get Execution Flows from RefIDs" }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "api.tableName": "executionflowById", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ExecutionflowByIdQuery, O: ExecutionflowByIdResult }, { name: "GetKPIData", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["ExecutionFlow Query"], description: "Get Execution Flows KPI data" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: GetKPIDataQuery, O: GetKPIDataResult }, + { name: "GetKPIDataSimpleJSON", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["ExecutionFlow Query"], summary: "Get Execution Flows KPI data (SimpleJSON)", description: "Get Execution Flows KPI data in SimpleJSON table format, compatible with Grafana SimpleJSON / Infinity datasource" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: GetKPIDataSimpleJSONQuery, O: GetKPIDataSimpleJSONResult }, { name: "CountLines", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["ExecutionFlow Query"], description: "Count lines in database for project" }, "api.rscType": "Platform", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "INTERNAL" } }, I: CountLinesQuery, O: CountLinesResult }, { name: "Find", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["ExecutionFlow Query"], description: "Find Execution flows using search criterias" }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "INTERNAL" } }, I: ExecutionflowByFilterQuery, O: ExecutionflowByFilterResult } ], { "api.serviceType": "Query", "api.k8sService": "query-server" }); diff --git a/handlingunitQuery.client.ts b/handlingunitQuery.client.ts index 372405f..edaf1b9 100644 --- a/handlingunitQuery.client.ts +++ b/handlingunitQuery.client.ts @@ -8,6 +8,8 @@ import type { CountLinesResult } from "./shared"; import type { CountLinesQuery } from "./shared"; import type { ExtractResult } from "./shared"; import type { ExtractQuery } from "./shared"; +import type { GetKPIDataSimpleJSONResult } from "./clickhouse"; +import type { GetKPIDataSimpleJSONQuery } from "./clickhouse"; import type { GetKPIDataResult } from "./clickhouse"; import type { GetKPIDataQuery } from "./clickhouse"; import type { ElementByMatchResult } from "./shared"; @@ -49,6 +51,10 @@ export interface IHandlingunitQueryClient { * @generated from protobuf rpc: GetKPIData */ getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall; + /** + * @generated from protobuf rpc: GetKPIDataSimpleJSON + */ + getKPIDataSimpleJSON(input: GetKPIDataSimpleJSONQuery, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: Extract */ @@ -109,18 +115,25 @@ export class HandlingunitQueryClient implements IHandlingunitQueryClient, Servic const method = this.methods[5], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } + /** + * @generated from protobuf rpc: GetKPIDataSimpleJSON + */ + getKPIDataSimpleJSON(input: GetKPIDataSimpleJSONQuery, options?: RpcOptions): UnaryCall { + const method = this.methods[6], opt = this._transport.mergeOptions(options); + return stackIntercept("unary", this._transport, method, opt, input); + } /** * @generated from protobuf rpc: Extract */ extract(input: ExtractQuery, options?: RpcOptions): UnaryCall { - const method = this.methods[6], opt = this._transport.mergeOptions(options); + const method = this.methods[7], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: CountLines */ countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall { - const method = this.methods[7], opt = this._transport.mergeOptions(options); + const method = this.methods[8], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } } diff --git a/handlingunitQuery.ts b/handlingunitQuery.ts index 4894c54..48a4c6f 100644 --- a/handlingunitQuery.ts +++ b/handlingunitQuery.ts @@ -5,6 +5,8 @@ import { CountLinesResult } from "./shared"; import { CountLinesQuery } from "./shared"; import { ExtractResult } from "./shared"; import { ExtractQuery } from "./shared"; +import { GetKPIDataSimpleJSONResult } from "./clickhouse"; +import { GetKPIDataSimpleJSONQuery } from "./clickhouse"; import { GetKPIDataResult } from "./clickhouse"; import { GetKPIDataQuery } from "./clickhouse"; import { ElementByMatchResult } from "./shared"; @@ -661,6 +663,7 @@ export const HandlingunitQuery = new ServiceType("api.HandlingunitQuery", [ { name: "FindMatchingFieldValues", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "using search criteria & a main field word, find the list of fields containing the searched word (used for auto completion purposes ...) " }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByMatchQuery, O: HandlingunitByMatchResult }, { name: "FindMatchingFieldElements", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "using search criteria & a main field word, find the list of field elements containing the searched word (used for auto completion purposes ...) " }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ElementByMatchQuery, O: ElementByMatchResult }, { name: "GetKPIData", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Get HandlingUnits KPI data" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: GetKPIDataQuery, O: GetKPIDataResult }, + { name: "GetKPIDataSimpleJSON", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], summary: "Get HandlingUnits KPI data (SimpleJSON)", description: "Get HandlingUnits KPI data in SimpleJSON table format, compatible with Grafana SimpleJSON / Infinity datasource" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: GetKPIDataSimpleJSONQuery, O: GetKPIDataSimpleJSONResult }, { name: "Extract", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Schedule a data extraction" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ExtractQuery, O: ExtractResult }, { name: "CountLines", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Count lines in database for project" }, "api.rscType": "Platform", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "api.tags": "PROJECT_ACTIVITY", "google.api.method_visibility": { restriction: "INTERNAL" } }, I: CountLinesQuery, O: CountLinesResult } ], { "api.serviceType": "Query", "api.k8sService": "query-server" }); diff --git a/package.json b/package.json index 2b915f5..18c974c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-core-sdk", - "version": "1.15.0-SNAPSHOT-260911144818", + "version": "1.15.0-SNAPSHOT-260911150231", "description": "npm libs from core model proto files", "homepage": "", "main": "index.ts",