From 81592b09fe9198f4da696e8294bf61b607e86937 Mon Sep 17 00:00:00 2001 From: ci core model Date: Tue, 8 Apr 2025 12:56:21 +0000 Subject: [PATCH] Latest generation --- handlingunitQuery.ts | 2 +- package.json | 2 +- workflow.ts | 15 ++++++++++++++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/handlingunitQuery.ts b/handlingunitQuery.ts index c79396be..2749c8b8 100644 --- a/handlingunitQuery.ts +++ b/handlingunitQuery.ts @@ -478,7 +478,7 @@ export const HandlingunitByMatchResult = new HandlingunitByMatchResult$Type(); * @generated ServiceType for protobuf service api.HandlingunitQuery */ export const HandlingunitQuery = new ServiceType("api.HandlingunitQuery", [ - { name: "GetByIds", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Get HandlingUnits from Ids" }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "api.tableName": "handlingunitById", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByIdQuery, O: HandlingunitByIdResult }, + { name: "GetByIds", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Get HandlingUnits from Ids" }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "api.tableName": "handlingunitByIdv2", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByIdQuery, O: HandlingunitByIdResult }, { name: "Find", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Find Handlingunits using search criterias" }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByFilterQuery, O: HandlingunitByFilterResult }, { name: "FindTracked", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Find Handlingunits with only tracking data using search criterias" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByFilterQuery, O: HandlingunitByFilterResult }, { 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", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByMatchQuery, O: HandlingunitByMatchResult }, diff --git a/package.json b/package.json index dd2d2297..eb1570b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-core-sdk", - "version": "1.11.0-SNAPSHOT-250404115819", + "version": "1.11.0-SNAPSHOT-250408125601", "description": "npm libs from core model proto files", "homepage": "", "main": "index.ts", diff --git a/workflow.ts b/workflow.ts index c06f793d..dc955348 100644 --- a/workflow.ts +++ b/workflow.ts @@ -792,6 +792,10 @@ export interface StartWorkflowAnonymizeDataResult { * @generated from protobuf message api.StartWorkflowUpgradeModelRequest */ export interface StartWorkflowUpgradeModelRequest { + /** + * @generated from protobuf field: string ProjectID = 1 [json_name = "ProjectID"]; + */ + projectID: string; } /** * @generated from protobuf message api.StartWorkflowUpgradeModelResult @@ -3977,10 +3981,13 @@ export const StartWorkflowAnonymizeDataResult = new StartWorkflowAnonymizeDataRe // @generated message type with reflection information, may provide speed optimized methods class StartWorkflowUpgradeModelRequest$Type extends MessageType { constructor() { - super("api.StartWorkflowUpgradeModelRequest", [], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: {} } }); + super("api.StartWorkflowUpgradeModelRequest", [ + { no: 1, name: "ProjectID", kind: "scalar", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/ } + ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: {} } }); } create(value?: PartialMessage): StartWorkflowUpgradeModelRequest { const message = globalThis.Object.create((this.messagePrototype!)); + message.projectID = ""; if (value !== undefined) reflectionMergePartial(this, message, value); return message; @@ -3990,6 +3997,9 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType