From 7dbb4b7e3586d706aa2543f23aa8f3d112439858 Mon Sep 17 00:00:00 2001 From: ci core model Date: Wed, 20 Aug 2025 09:19:31 +0000 Subject: [PATCH] Latest generation --- orderQuery.ts | 15 ++++++++++++++- package.json | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/orderQuery.ts b/orderQuery.ts index 9cc8604..3ec75c9 100644 --- a/orderQuery.ts +++ b/orderQuery.ts @@ -107,6 +107,10 @@ export interface OrderByFilterResult { * @generated from protobuf message api.OrderQueryOptions */ export interface OrderQueryOptions { + /** + * @generated from protobuf field: bool TruncateLines = 1 + */ + TruncateLines: boolean; // If true, the order lines will be truncated. } /** * @generated from protobuf message api.OrderByMatchQuery @@ -395,10 +399,13 @@ export const OrderByFilterResult = new OrderByFilterResult$Type(); // @generated message type with reflection information, may provide speed optimized methods class OrderQueryOptions$Type extends MessageType { constructor() { - super("api.OrderQueryOptions", []); + super("api.OrderQueryOptions", [ + { no: 1, name: "TruncateLines", kind: "scalar", localName: "TruncateLines", jsonName: "TruncateLines", T: 8 /*ScalarType.BOOL*/ } + ]); } create(value?: PartialMessage): OrderQueryOptions { const message = globalThis.Object.create((this.messagePrototype!)); + message.TruncateLines = false; if (value !== undefined) reflectionMergePartial(this, message, value); return message; @@ -408,6 +415,9 @@ class OrderQueryOptions$Type extends MessageType { while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { + case /* bool TruncateLines */ 1: + message.TruncateLines = reader.bool(); + break; default: let u = options.readUnknownField; if (u === "throw") @@ -420,6 +430,9 @@ class OrderQueryOptions$Type extends MessageType { return message; } internalBinaryWrite(message: OrderQueryOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { + /* bool TruncateLines = 1; */ + if (message.TruncateLines !== false) + writer.tag(1, WireType.Varint).bool(message.TruncateLines); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); diff --git a/package.json b/package.json index 076195a..971a5fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-core-sdk", - "version": "1.11.0-SNAPSHOT-250820082315", + "version": "1.11.0-SNAPSHOT-250820091849", "description": "npm libs from core model proto files", "homepage": "", "main": "index.ts",