Latest generation

This commit is contained in:
ci core model
2025-12-15 14:41:54 +00:00
parent 51fc0562cf
commit 3e7afc7041
2 changed files with 15 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@reflex-platform/npm-core-sdk", "name": "@reflex-platform/npm-core-sdk",
"version": "1.12.0-SNAPSHOT-251215134657", "version": "1.12.0-SNAPSHOT-251215144128",
"description": "npm libs from core model proto files", "description": "npm libs from core model proto files",
"homepage": "", "homepage": "",
"main": "index.ts", "main": "index.ts",

View File

@@ -577,7 +577,11 @@ export interface Commission {
/** /**
* @generated from protobuf field: string OrderID = 2 * @generated from protobuf field: string OrderID = 2
*/ */
OrderID: string; // ID of the order, might be null for standalone. OrderID: string; // ID of the order, might be null for standalone.
/**
* @generated from protobuf field: string ExecutionflowID = 5
*/
ExecutionflowID: string; // ID of the executionflow, might be null for standalone.
/** /**
* @generated from protobuf field: repeated api.QuantityByUnit Quantities = 3 * @generated from protobuf field: repeated api.QuantityByUnit Quantities = 3
*/ */
@@ -602,7 +606,7 @@ export interface WMSCommission {
/** /**
* @generated from protobuf field: string ExecutionflowID = 5 * @generated from protobuf field: string ExecutionflowID = 5
*/ */
ExecutionflowID: string; // ID of the executionflow, might be null for standalone. ExecutionflowID: string; // ID of the executionflow, will be retrieved .
/** /**
* @generated from protobuf field: string ActorID = 4 * @generated from protobuf field: string ActorID = 4
*/ */
@@ -2292,6 +2296,7 @@ class Commission$Type extends MessageType<Commission> {
super("api.Commission", [ super("api.Commission", [
{ no: 1, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }, { no: 1, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
{ no: 2, name: "OrderID", kind: "scalar", localName: "OrderID", jsonName: "OrderID", T: 9 /*ScalarType.STRING*/ }, { no: 2, name: "OrderID", kind: "scalar", localName: "OrderID", jsonName: "OrderID", T: 9 /*ScalarType.STRING*/ },
{ no: 5, name: "ExecutionflowID", kind: "scalar", localName: "ExecutionflowID", jsonName: "ExecutionflowID", T: 9 /*ScalarType.STRING*/ },
{ no: 3, name: "Quantities", kind: "message", localName: "Quantities", jsonName: "Quantities", repeat: 2 /*RepeatType.UNPACKED*/, T: () => QuantityByUnit, options: { "validate.rules": { repeated: { minItems: "1" } } } }, { no: 3, name: "Quantities", kind: "message", localName: "Quantities", jsonName: "Quantities", repeat: 2 /*RepeatType.UNPACKED*/, T: () => QuantityByUnit, options: { "validate.rules": { repeated: { minItems: "1" } } } },
{ no: 4, name: "ActorID", kind: "scalar", localName: "ActorID", jsonName: "ActorID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } } { no: 4, name: "ActorID", kind: "scalar", localName: "ActorID", jsonName: "ActorID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
]); ]);
@@ -2300,6 +2305,7 @@ class Commission$Type extends MessageType<Commission> {
const message = globalThis.Object.create((this.messagePrototype!)); const message = globalThis.Object.create((this.messagePrototype!));
message.ProjectID = ""; message.ProjectID = "";
message.OrderID = ""; message.OrderID = "";
message.ExecutionflowID = "";
message.Quantities = []; message.Quantities = [];
message.ActorID = ""; message.ActorID = "";
if (value !== undefined) if (value !== undefined)
@@ -2317,6 +2323,9 @@ class Commission$Type extends MessageType<Commission> {
case /* string OrderID */ 2: case /* string OrderID */ 2:
message.OrderID = reader.string(); message.OrderID = reader.string();
break; break;
case /* string ExecutionflowID */ 5:
message.ExecutionflowID = reader.string();
break;
case /* repeated api.QuantityByUnit Quantities */ 3: case /* repeated api.QuantityByUnit Quantities */ 3:
message.Quantities.push(QuantityByUnit.internalBinaryRead(reader, reader.uint32(), options)); message.Quantities.push(QuantityByUnit.internalBinaryRead(reader, reader.uint32(), options));
break; break;
@@ -2347,6 +2356,9 @@ class Commission$Type extends MessageType<Commission> {
/* string ActorID = 4; */ /* string ActorID = 4; */
if (message.ActorID !== "") if (message.ActorID !== "")
writer.tag(4, WireType.LengthDelimited).string(message.ActorID); writer.tag(4, WireType.LengthDelimited).string(message.ActorID);
/* string ExecutionflowID = 5; */
if (message.ExecutionflowID !== "")
writer.tag(5, WireType.LengthDelimited).string(message.ExecutionflowID);
let u = options.writeUnknownFields; let u = options.writeUnknownFields;
if (u !== false) if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);