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
|
||||
*/
|
||||
Lines: ExeFlowLine[];
|
||||
/**
|
||||
* @generated from protobuf field: string OrderID = 2
|
||||
*/
|
||||
OrderID: string;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.ExecutionflowPropagateLinesToOrder
|
||||
@@ -1068,12 +1072,14 @@ export const ExecutionflowCreateDetectedOrder = new ExecutionflowCreateDetectedO
|
||||
class ExecutionflowPropagateLinesToOrderPayload$Type extends MessageType<ExecutionflowPropagateLinesToOrderPayload> {
|
||||
constructor() {
|
||||
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" });
|
||||
}
|
||||
create(value?: PartialMessage<ExecutionflowPropagateLinesToOrderPayload>): ExecutionflowPropagateLinesToOrderPayload {
|
||||
const message = globalThis.Object.create((this.messagePrototype!));
|
||||
message.Lines = [];
|
||||
message.OrderID = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<ExecutionflowPropagateLinesToOrderPayload>(this, message, value);
|
||||
return message;
|
||||
@@ -1086,6 +1092,9 @@ class ExecutionflowPropagateLinesToOrderPayload$Type extends MessageType<Executi
|
||||
case /* repeated api.ExeFlowLine Lines */ 1:
|
||||
message.Lines.push(ExeFlowLine.internalBinaryRead(reader, reader.uint32(), options));
|
||||
break;
|
||||
case /* string OrderID */ 2:
|
||||
message.OrderID = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -1101,6 +1110,9 @@ class ExecutionflowPropagateLinesToOrderPayload$Type extends MessageType<Executi
|
||||
/* repeated api.ExeFlowLine Lines = 1; */
|
||||
for (let i = 0; i < message.Lines.length; i++)
|
||||
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;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"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",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
Reference in New Issue
Block a user