You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -323,6 +323,10 @@ export interface ExecutionflowPropagateLinesToOrderPayload {
|
|||||||
* @generated from protobuf field: repeated api.ExeFlowLine Lines = 1
|
* @generated from protobuf field: repeated api.ExeFlowLine Lines = 1
|
||||||
*/
|
*/
|
||||||
Lines: ExeFlowLine[];
|
Lines: ExeFlowLine[];
|
||||||
|
/**
|
||||||
|
* @generated from protobuf field: string OrderID = 2
|
||||||
|
*/
|
||||||
|
OrderID: string;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf message api.ExecutionflowPropagateLinesToOrder
|
* @generated from protobuf message api.ExecutionflowPropagateLinesToOrder
|
||||||
@@ -1068,12 +1072,14 @@ export const ExecutionflowCreateDetectedOrder = new ExecutionflowCreateDetectedO
|
|||||||
class ExecutionflowPropagateLinesToOrderPayload$Type extends MessageType<ExecutionflowPropagateLinesToOrderPayload> {
|
class ExecutionflowPropagateLinesToOrderPayload$Type extends MessageType<ExecutionflowPropagateLinesToOrderPayload> {
|
||||||
constructor() {
|
constructor() {
|
||||||
super("api.ExecutionflowPropagateLinesToOrderPayload", [
|
super("api.ExecutionflowPropagateLinesToOrderPayload", [
|
||||||
{ no: 1, name: "Lines", kind: "message", localName: "Lines", jsonName: "Lines", repeat: 2 /*RepeatType.UNPACKED*/, T: () => ExeFlowLine, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Lines of the order" }, "api.aggKey": "LineID" } }
|
{ no: 1, name: "Lines", kind: "message", localName: "Lines", jsonName: "Lines", repeat: 2 /*RepeatType.UNPACKED*/, T: () => ExeFlowLine, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Lines of the order" }, "api.aggKey": "LineID" } },
|
||||||
|
{ no: 2, name: "OrderID", kind: "scalar", localName: "OrderID", jsonName: "OrderID", T: 9 /*ScalarType.STRING*/ }
|
||||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Propagates lines from Executionflow to Order" } }, "api.messageType": "Command", "api.payload": true, "api.action": "PropagateLinesToOrder" });
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Propagates lines from Executionflow to Order" } }, "api.messageType": "Command", "api.payload": true, "api.action": "PropagateLinesToOrder" });
|
||||||
}
|
}
|
||||||
create(value?: PartialMessage<ExecutionflowPropagateLinesToOrderPayload>): ExecutionflowPropagateLinesToOrderPayload {
|
create(value?: PartialMessage<ExecutionflowPropagateLinesToOrderPayload>): ExecutionflowPropagateLinesToOrderPayload {
|
||||||
const message = globalThis.Object.create((this.messagePrototype!));
|
const message = globalThis.Object.create((this.messagePrototype!));
|
||||||
message.Lines = [];
|
message.Lines = [];
|
||||||
|
message.OrderID = "";
|
||||||
if (value !== undefined)
|
if (value !== undefined)
|
||||||
reflectionMergePartial<ExecutionflowPropagateLinesToOrderPayload>(this, message, value);
|
reflectionMergePartial<ExecutionflowPropagateLinesToOrderPayload>(this, message, value);
|
||||||
return message;
|
return message;
|
||||||
@@ -1086,6 +1092,9 @@ class ExecutionflowPropagateLinesToOrderPayload$Type extends MessageType<Executi
|
|||||||
case /* repeated api.ExeFlowLine Lines */ 1:
|
case /* repeated api.ExeFlowLine Lines */ 1:
|
||||||
message.Lines.push(ExeFlowLine.internalBinaryRead(reader, reader.uint32(), options));
|
message.Lines.push(ExeFlowLine.internalBinaryRead(reader, reader.uint32(), options));
|
||||||
break;
|
break;
|
||||||
|
case /* string OrderID */ 2:
|
||||||
|
message.OrderID = reader.string();
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
let u = options.readUnknownField;
|
let u = options.readUnknownField;
|
||||||
if (u === "throw")
|
if (u === "throw")
|
||||||
@@ -1101,6 +1110,9 @@ class ExecutionflowPropagateLinesToOrderPayload$Type extends MessageType<Executi
|
|||||||
/* repeated api.ExeFlowLine Lines = 1; */
|
/* repeated api.ExeFlowLine Lines = 1; */
|
||||||
for (let i = 0; i < message.Lines.length; i++)
|
for (let i = 0; i < message.Lines.length; i++)
|
||||||
ExeFlowLine.internalBinaryWrite(message.Lines[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
ExeFlowLine.internalBinaryWrite(message.Lines[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||||
|
/* string OrderID = 2; */
|
||||||
|
if (message.OrderID !== "")
|
||||||
|
writer.tag(2, WireType.LengthDelimited).string(message.OrderID);
|
||||||
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.12.0-SNAPSHOT-250923074213",
|
"version": "1.12.0-SNAPSHOT-250923082111",
|
||||||
"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