Latest generation

This commit is contained in:
ci core model
2026-06-05 08:20:15 +00:00
parent bdcde5416e
commit fc1db31f41
2 changed files with 13 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@reflex-platform/npm-core-sdk",
"version": "1.14.0-SNAPSHOT-260604152419",
"version": "1.14.0-SNAPSHOT-260605081951",
"description": "npm libs from core model proto files",
"homepage": "",
"main": "index.ts",

View File

@@ -417,6 +417,10 @@ export interface ExecutionflowSummary {
* @generated from protobuf field: repeated api.AppointmentSummary Appointments = 22
*/
Appointments: AppointmentSummary[];
/**
* @generated from protobuf field: api.OrderRequestedMilestones RequestedMilestones = 23
*/
RequestedMilestones?: OrderRequestedMilestones;
}
/**
* Not a GS1 Object.
@@ -1596,7 +1600,8 @@ class ExecutionflowSummary$Type extends MessageType<ExecutionflowSummary> {
{ no: 19, name: "AttachmentNumber", kind: "scalar", localName: "AttachmentNumber", jsonName: "AttachmentNumber", T: 5 /*ScalarType.INT32*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Total number of executionflow attachments" } } },
{ no: 20, name: "Claims", kind: "message", localName: "Claims", jsonName: "Claims", repeat: 2 /*RepeatType.UNPACKED*/, T: () => ClaimSummary, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of executionflow claims per type" } } },
{ no: 21, name: "ClaimNumber", kind: "scalar", localName: "ClaimNumber", jsonName: "ClaimNumber", T: 5 /*ScalarType.INT32*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Total number of executionflow claims" } } },
{ no: 22, name: "Appointments", kind: "message", localName: "Appointments", jsonName: "Appointments", repeat: 2 /*RepeatType.UNPACKED*/, T: () => AppointmentSummary, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "List of appointments attached to the executionflow" }, "api.aggSkip": "ExecutionflowUpdated" } }
{ no: 22, name: "Appointments", kind: "message", localName: "Appointments", jsonName: "Appointments", repeat: 2 /*RepeatType.UNPACKED*/, T: () => AppointmentSummary, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "List of appointments attached to the executionflow" }, "api.aggSkip": "ExecutionflowUpdated" } },
{ no: 23, name: "RequestedMilestones", kind: "message", localName: "RequestedMilestones", jsonName: "RequestedMilestones", T: () => OrderRequestedMilestones }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["ExecutionflowID"] } } });
}
create(value?: PartialMessage<ExecutionflowSummary>): ExecutionflowSummary {
@@ -1646,6 +1651,9 @@ class ExecutionflowSummary$Type extends MessageType<ExecutionflowSummary> {
case /* repeated api.AppointmentSummary Appointments */ 22:
message.Appointments.push(AppointmentSummary.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* api.OrderRequestedMilestones RequestedMilestones */ 23:
message.RequestedMilestones = OrderRequestedMilestones.internalBinaryRead(reader, reader.uint32(), options, message.RequestedMilestones);
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -1688,6 +1696,9 @@ class ExecutionflowSummary$Type extends MessageType<ExecutionflowSummary> {
/* repeated api.AppointmentSummary Appointments = 22; */
for (let i = 0; i < message.Appointments.length; i++)
AppointmentSummary.internalBinaryWrite(message.Appointments[i], writer.tag(22, WireType.LengthDelimited).fork(), options).join();
/* api.OrderRequestedMilestones RequestedMilestones = 23; */
if (message.RequestedMilestones)
OrderRequestedMilestones.internalBinaryWrite(message.RequestedMilestones, writer.tag(23, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);