From 43acc357b8982d7e6cbf1a58c9f634f855125716 Mon Sep 17 00:00:00 2001 From: ci core model Date: Fri, 7 Nov 2025 10:27:40 +0000 Subject: [PATCH] Latest generation --- package.json | 2 +- slotbooking.ts | 14 ++------------ 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index fdf3898..ebdda91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-core-sdk", - "version": "1.12.0-SNAPSHOT-251106144421", + "version": "1.12.0-SNAPSHOT-251107102656", "description": "npm libs from core model proto files", "homepage": "", "main": "index.ts", diff --git a/slotbooking.ts b/slotbooking.ts index d26f0a5..518a970 100644 --- a/slotbooking.ts +++ b/slotbooking.ts @@ -570,10 +570,8 @@ export interface Commission { * @generated from protobuf field: string OrderID = 2 */ OrderID: string; // ID of the order, might be null for standalone. - /** - * @generated from protobuf field: string ExecutionflowID = 6 - */ - ExecutionflowID: string; // ID of the executionflow, might be null for standalone. + // string ExecutionflowID = 6;// ID of the executionflow, might be null for standalone. + /** * @generated from protobuf field: repeated api.QuantityByUnit Quantities = 3 */ @@ -2247,7 +2245,6 @@ class Commission$Type extends MessageType { super("api.Commission", [ { 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: 6, 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: 4, name: "ActorID", kind: "scalar", localName: "ActorID", jsonName: "ActorID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } } ]); @@ -2256,7 +2253,6 @@ class Commission$Type extends MessageType { const message = globalThis.Object.create((this.messagePrototype!)); message.ProjectID = ""; message.OrderID = ""; - message.ExecutionflowID = ""; message.Quantities = []; message.ActorID = ""; if (value !== undefined) @@ -2274,9 +2270,6 @@ class Commission$Type extends MessageType { case /* string OrderID */ 2: message.OrderID = reader.string(); break; - case /* string ExecutionflowID */ 6: - message.ExecutionflowID = reader.string(); - break; case /* repeated api.QuantityByUnit Quantities */ 3: message.Quantities.push(QuantityByUnit.internalBinaryRead(reader, reader.uint32(), options)); break; @@ -2307,9 +2300,6 @@ class Commission$Type extends MessageType { /* string ActorID = 4; */ if (message.ActorID !== "") writer.tag(4, WireType.LengthDelimited).string(message.ActorID); - /* string ExecutionflowID = 6; */ - if (message.ExecutionflowID !== "") - writer.tag(6, WireType.LengthDelimited).string(message.ExecutionflowID); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);