From dc8c9d6174bff0a911141ec550ef419096895821 Mon Sep 17 00:00:00 2001 From: ci core model Date: Fri, 21 Aug 2026 14:32:00 +0000 Subject: [PATCH] Latest generation --- package.json | 2 +- warehousingShared.ts | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ea9af4c..5a14c42 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-core-sdk", - "version": "1.15.0-SNAPSHOT-260821131047", + "version": "1.15.0-SNAPSHOT-260821143112", "description": "npm libs from core model proto files", "homepage": "", "main": "index.ts", diff --git a/warehousingShared.ts b/warehousingShared.ts index 2532604..9824fd4 100644 --- a/warehousingShared.ts +++ b/warehousingShared.ts @@ -459,6 +459,10 @@ export interface QuantifiedGoodsByHU { * @generated from protobuf field: string TrackingURL = 11 */ TrackingURL: string; + /** + * @generated from protobuf field: string HandlingunitReference = 12 + */ + HandlingunitReference: string; } // // Structure to quantity a goods into an executionflow line. @@ -1986,7 +1990,8 @@ class QuantifiedGoodsByHU$Type extends MessageType { { no: 8, name: "PreparedQuantityInBaseLV", kind: "message", localName: "PreparedQuantityInBaseLV", jsonName: "PreparedQuantityInBaseLV", T: () => QuantityInLV, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { readOnly: true }, "n1validate.rules": { message: { unauthorized: true } } } }, { no: 9, name: "ReceivedQuantity", kind: "message", localName: "ReceivedQuantity", jsonName: "ReceivedQuantity", T: () => QuantityInLV, options: { "n1validate.rules": { message: { required: true } } } }, { no: 10, name: "ReceivedQuantityInBaseLV", kind: "message", localName: "ReceivedQuantityInBaseLV", jsonName: "ReceivedQuantityInBaseLV", T: () => QuantityInLV, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { readOnly: true }, "n1validate.rules": { message: { unauthorized: true } } } }, - { no: 11, name: "TrackingURL", kind: "scalar", localName: "TrackingURL", jsonName: "TrackingURL", T: 9 /*ScalarType.STRING*/ } + { no: 11, name: "TrackingURL", kind: "scalar", localName: "TrackingURL", jsonName: "TrackingURL", T: 9 /*ScalarType.STRING*/ }, + { no: 12, name: "HandlingunitReference", kind: "scalar", localName: "HandlingunitReference", jsonName: "HandlingunitReference", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } }, "api.indexationType": { Types: [{ Context: "*", Type: "generatedText,keyword" }] }, "api.viewType": { Types: [{ Context: "*", Type: "shortKeyword" }] } } } ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Goods", "HandlingunitID"] } } }); } create(value?: PartialMessage): QuantifiedGoodsByHU { @@ -1994,6 +1999,7 @@ class QuantifiedGoodsByHU$Type extends MessageType { message.HandlingunitID = ""; message.TrackingID = ""; message.TrackingURL = ""; + message.HandlingunitReference = ""; if (value !== undefined) reflectionMergePartial(this, message, value); return message; @@ -2036,6 +2042,9 @@ class QuantifiedGoodsByHU$Type extends MessageType { case /* string TrackingURL */ 11: message.TrackingURL = reader.string(); break; + case /* string HandlingunitReference */ 12: + message.HandlingunitReference = reader.string(); + break; default: let u = options.readUnknownField; if (u === "throw") @@ -2081,6 +2090,9 @@ class QuantifiedGoodsByHU$Type extends MessageType { /* string TrackingURL = 11; */ if (message.TrackingURL !== "") writer.tag(11, WireType.LengthDelimited).string(message.TrackingURL); + /* string HandlingunitReference = 12; */ + if (message.HandlingunitReference !== "") + writer.tag(12, WireType.LengthDelimited).string(message.HandlingunitReference); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);