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
|
||||
*/
|
||||
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<OrderQueryOptions> {
|
||||
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 {
|
||||
const message = globalThis.Object.create((this.messagePrototype!));
|
||||
message.TruncateLines = false;
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<OrderQueryOptions>(this, message, value);
|
||||
return message;
|
||||
@@ -408,6 +415,9 @@ class OrderQueryOptions$Type extends MessageType<OrderQueryOptions> {
|
||||
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<OrderQueryOptions> {
|
||||
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);
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user