Latest generation

This commit is contained in:
ci core model
2026-09-11 15:03:03 +00:00
parent f535ad32c0
commit f09acd0bd4
5 changed files with 37 additions and 5 deletions

View File

@@ -8,6 +8,8 @@ import type { ExecutionflowByFilterResult } from "./executionflowQuery";
import type { ExecutionflowByFilterQuery } from "./executionflowQuery"; import type { ExecutionflowByFilterQuery } from "./executionflowQuery";
import type { CountLinesResult } from "./shared"; import type { CountLinesResult } from "./shared";
import type { CountLinesQuery } from "./shared"; import type { CountLinesQuery } from "./shared";
import type { GetKPIDataSimpleJSONResult } from "./clickhouse";
import type { GetKPIDataSimpleJSONQuery } from "./clickhouse";
import type { GetKPIDataResult } from "./clickhouse"; import type { GetKPIDataResult } from "./clickhouse";
import type { GetKPIDataQuery } from "./clickhouse"; import type { GetKPIDataQuery } from "./clickhouse";
import { stackIntercept } from "@protobuf-ts/runtime-rpc"; import { stackIntercept } from "@protobuf-ts/runtime-rpc";
@@ -27,6 +29,10 @@ export interface IExecutionflowQueryClient {
* @generated from protobuf rpc: GetKPIData * @generated from protobuf rpc: GetKPIData
*/ */
getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult>; getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult>;
/**
* @generated from protobuf rpc: GetKPIDataSimpleJSON
*/
getKPIDataSimpleJSON(input: GetKPIDataSimpleJSONQuery, options?: RpcOptions): UnaryCall<GetKPIDataSimpleJSONQuery, GetKPIDataSimpleJSONResult>;
/** /**
* @generated from protobuf rpc: CountLines * @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); const method = this.methods[1], opt = this._transport.mergeOptions(options);
return stackIntercept<GetKPIDataQuery, GetKPIDataResult>("unary", this._transport, method, opt, input); return stackIntercept<GetKPIDataQuery, GetKPIDataResult>("unary", this._transport, method, opt, input);
} }
/**
* @generated from protobuf rpc: GetKPIDataSimpleJSON
*/
getKPIDataSimpleJSON(input: GetKPIDataSimpleJSONQuery, options?: RpcOptions): UnaryCall<GetKPIDataSimpleJSONQuery, GetKPIDataSimpleJSONResult> {
const method = this.methods[2], opt = this._transport.mergeOptions(options);
return stackIntercept<GetKPIDataSimpleJSONQuery, GetKPIDataSimpleJSONResult>("unary", this._transport, method, opt, input);
}
/** /**
* @generated from protobuf rpc: CountLines * @generated from protobuf rpc: CountLines
*/ */
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult> { countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult> {
const method = this.methods[2], opt = this._transport.mergeOptions(options); const method = this.methods[3], opt = this._transport.mergeOptions(options);
return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input); return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input);
} }
/** /**
* @generated from protobuf rpc: Find * @generated from protobuf rpc: Find
*/ */
find(input: ExecutionflowByFilterQuery, options?: RpcOptions): UnaryCall<ExecutionflowByFilterQuery, ExecutionflowByFilterResult> { find(input: ExecutionflowByFilterQuery, options?: RpcOptions): UnaryCall<ExecutionflowByFilterQuery, ExecutionflowByFilterResult> {
const method = this.methods[3], opt = this._transport.mergeOptions(options); const method = this.methods[4], opt = this._transport.mergeOptions(options);
return stackIntercept<ExecutionflowByFilterQuery, ExecutionflowByFilterResult>("unary", this._transport, method, opt, input); return stackIntercept<ExecutionflowByFilterQuery, ExecutionflowByFilterResult>("unary", this._transport, method, opt, input);
} }
} }

View File

@@ -3,6 +3,8 @@
// tslint:disable // tslint:disable
import { CountLinesResult } from "./shared"; import { CountLinesResult } from "./shared";
import { CountLinesQuery } from "./shared"; import { CountLinesQuery } from "./shared";
import { GetKPIDataSimpleJSONResult } from "./clickhouse";
import { GetKPIDataSimpleJSONQuery } from "./clickhouse";
import { GetKPIDataResult } from "./clickhouse"; import { GetKPIDataResult } from "./clickhouse";
import { GetKPIDataQuery } from "./clickhouse"; import { GetKPIDataQuery } from "./clickhouse";
import { ServiceType } from "@protobuf-ts/runtime-rpc"; import { ServiceType } from "@protobuf-ts/runtime-rpc";
@@ -502,6 +504,7 @@ export const ExecutionflowQueryOptions = new ExecutionflowQueryOptions$Type();
export const ExecutionflowQuery = new ServiceType("api.ExecutionflowQuery", [ 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: "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: "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: "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 } { 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" }); ], { "api.serviceType": "Query", "api.k8sService": "query-server" });

View File

@@ -8,6 +8,8 @@ import type { CountLinesResult } from "./shared";
import type { CountLinesQuery } from "./shared"; import type { CountLinesQuery } from "./shared";
import type { ExtractResult } from "./shared"; import type { ExtractResult } from "./shared";
import type { ExtractQuery } from "./shared"; import type { ExtractQuery } from "./shared";
import type { GetKPIDataSimpleJSONResult } from "./clickhouse";
import type { GetKPIDataSimpleJSONQuery } from "./clickhouse";
import type { GetKPIDataResult } from "./clickhouse"; import type { GetKPIDataResult } from "./clickhouse";
import type { GetKPIDataQuery } from "./clickhouse"; import type { GetKPIDataQuery } from "./clickhouse";
import type { ElementByMatchResult } from "./shared"; import type { ElementByMatchResult } from "./shared";
@@ -49,6 +51,10 @@ export interface IHandlingunitQueryClient {
* @generated from protobuf rpc: GetKPIData * @generated from protobuf rpc: GetKPIData
*/ */
getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult>; getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult>;
/**
* @generated from protobuf rpc: GetKPIDataSimpleJSON
*/
getKPIDataSimpleJSON(input: GetKPIDataSimpleJSONQuery, options?: RpcOptions): UnaryCall<GetKPIDataSimpleJSONQuery, GetKPIDataSimpleJSONResult>;
/** /**
* @generated from protobuf rpc: Extract * @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); const method = this.methods[5], opt = this._transport.mergeOptions(options);
return stackIntercept<GetKPIDataQuery, GetKPIDataResult>("unary", this._transport, method, opt, input); return stackIntercept<GetKPIDataQuery, GetKPIDataResult>("unary", this._transport, method, opt, input);
} }
/**
* @generated from protobuf rpc: GetKPIDataSimpleJSON
*/
getKPIDataSimpleJSON(input: GetKPIDataSimpleJSONQuery, options?: RpcOptions): UnaryCall<GetKPIDataSimpleJSONQuery, GetKPIDataSimpleJSONResult> {
const method = this.methods[6], opt = this._transport.mergeOptions(options);
return stackIntercept<GetKPIDataSimpleJSONQuery, GetKPIDataSimpleJSONResult>("unary", this._transport, method, opt, input);
}
/** /**
* @generated from protobuf rpc: Extract * @generated from protobuf rpc: Extract
*/ */
extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult> { extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult> {
const method = this.methods[6], opt = this._transport.mergeOptions(options); const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<ExtractQuery, ExtractResult>("unary", this._transport, method, opt, input); return stackIntercept<ExtractQuery, ExtractResult>("unary", this._transport, method, opt, input);
} }
/** /**
* @generated from protobuf rpc: CountLines * @generated from protobuf rpc: CountLines
*/ */
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult> { countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult> {
const method = this.methods[7], opt = this._transport.mergeOptions(options); const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input); return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input);
} }
} }

View File

@@ -5,6 +5,8 @@ import { CountLinesResult } from "./shared";
import { CountLinesQuery } from "./shared"; import { CountLinesQuery } from "./shared";
import { ExtractResult } from "./shared"; import { ExtractResult } from "./shared";
import { ExtractQuery } from "./shared"; import { ExtractQuery } from "./shared";
import { GetKPIDataSimpleJSONResult } from "./clickhouse";
import { GetKPIDataSimpleJSONQuery } from "./clickhouse";
import { GetKPIDataResult } from "./clickhouse"; import { GetKPIDataResult } from "./clickhouse";
import { GetKPIDataQuery } from "./clickhouse"; import { GetKPIDataQuery } from "./clickhouse";
import { ElementByMatchResult } from "./shared"; 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: "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: "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: "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: "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 } { 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" }); ], { "api.serviceType": "Query", "api.k8sService": "query-server" });

View File

@@ -1,6 +1,6 @@
{ {
"name": "@reflex-platform/npm-core-sdk", "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", "description": "npm libs from core model proto files",
"homepage": "", "homepage": "",
"main": "index.ts", "main": "index.ts",