You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -107,6 +107,10 @@ export interface OrderByFilterResult {
|
|||||||
* @generated from protobuf message api.OrderQueryOptions
|
* @generated from protobuf message api.OrderQueryOptions
|
||||||
*/
|
*/
|
||||||
export interface 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
|
* @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
|
// @generated message type with reflection information, may provide speed optimized methods
|
||||||
class OrderQueryOptions$Type extends MessageType<OrderQueryOptions> {
|
class OrderQueryOptions$Type extends MessageType<OrderQueryOptions> {
|
||||||
constructor() {
|
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>): OrderQueryOptions {
|
create(value?: PartialMessage<OrderQueryOptions>): OrderQueryOptions {
|
||||||
const message = globalThis.Object.create((this.messagePrototype!));
|
const message = globalThis.Object.create((this.messagePrototype!));
|
||||||
|
message.TruncateLines = false;
|
||||||
if (value !== undefined)
|
if (value !== undefined)
|
||||||
reflectionMergePartial<OrderQueryOptions>(this, message, value);
|
reflectionMergePartial<OrderQueryOptions>(this, message, value);
|
||||||
return message;
|
return message;
|
||||||
@@ -408,6 +415,9 @@ class OrderQueryOptions$Type extends MessageType<OrderQueryOptions> {
|
|||||||
while (reader.pos < end) {
|
while (reader.pos < end) {
|
||||||
let [fieldNo, wireType] = reader.tag();
|
let [fieldNo, wireType] = reader.tag();
|
||||||
switch (fieldNo) {
|
switch (fieldNo) {
|
||||||
|
case /* bool TruncateLines */ 1:
|
||||||
|
message.TruncateLines = reader.bool();
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
let u = options.readUnknownField;
|
let u = options.readUnknownField;
|
||||||
if (u === "throw")
|
if (u === "throw")
|
||||||
@@ -420,6 +430,9 @@ class OrderQueryOptions$Type extends MessageType<OrderQueryOptions> {
|
|||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryWrite(message: OrderQueryOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
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;
|
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);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@reflex-platform/npm-core-sdk",
|
"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",
|
"description": "npm libs from core model proto files",
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"main": "index.ts",
|
"main": "index.ts",
|
||||||
|
|||||||
Reference in New Issue
Block a user