Latest generation

This commit is contained in:
ci core model
2026-08-27 08:55:19 +00:00
parent 27b4dd74b0
commit 0b52eb6034
2 changed files with 14 additions and 2 deletions

View File

@@ -314,6 +314,10 @@ export interface HandlingunitPropagateParentHUPayload {
* @generated from protobuf field: repeated string IncludedHandlingunitIDs = 2 * @generated from protobuf field: repeated string IncludedHandlingunitIDs = 2
*/ */
IncludedHandlingunitIDs: string[]; IncludedHandlingunitIDs: string[];
/**
* @generated from protobuf field: string Reference = 3
*/
Reference: string;
} }
/** /**
* @generated from protobuf message api.HandlingunitPropagateParentHU * @generated from protobuf message api.HandlingunitPropagateParentHU
@@ -1162,13 +1166,15 @@ class HandlingunitPropagateParentHUPayload$Type extends MessageType<Handlingunit
constructor() { constructor() {
super("api.HandlingunitPropagateParentHUPayload", [ super("api.HandlingunitPropagateParentHUPayload", [
{ no: 1, name: "ContainsHUs", kind: "scalar", localName: "ContainsHUs", jsonName: "ContainsHUs", T: 8 /*ScalarType.BOOL*/ }, { no: 1, name: "ContainsHUs", kind: "scalar", localName: "ContainsHUs", jsonName: "ContainsHUs", T: 8 /*ScalarType.BOOL*/ },
{ no: 2, name: "IncludedHandlingunitIDs", kind: "scalar", localName: "IncludedHandlingunitIDs", jsonName: "IncludedHandlingunitIDs", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ } { no: 2, name: "IncludedHandlingunitIDs", kind: "scalar", localName: "IncludedHandlingunitIDs", jsonName: "IncludedHandlingunitIDs", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
{ no: 3, name: "Reference", kind: "scalar", localName: "Reference", jsonName: "Reference", T: 9 /*ScalarType.STRING*/ }
], { "api.messageType": "Command", "api.payload": true, "api.action": "PropagateParentHU" }); ], { "api.messageType": "Command", "api.payload": true, "api.action": "PropagateParentHU" });
} }
create(value?: PartialMessage<HandlingunitPropagateParentHUPayload>): HandlingunitPropagateParentHUPayload { create(value?: PartialMessage<HandlingunitPropagateParentHUPayload>): HandlingunitPropagateParentHUPayload {
const message = globalThis.Object.create((this.messagePrototype!)); const message = globalThis.Object.create((this.messagePrototype!));
message.ContainsHUs = false; message.ContainsHUs = false;
message.IncludedHandlingunitIDs = []; message.IncludedHandlingunitIDs = [];
message.Reference = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<HandlingunitPropagateParentHUPayload>(this, message, value); reflectionMergePartial<HandlingunitPropagateParentHUPayload>(this, message, value);
return message; return message;
@@ -1184,6 +1190,9 @@ class HandlingunitPropagateParentHUPayload$Type extends MessageType<Handlingunit
case /* repeated string IncludedHandlingunitIDs */ 2: case /* repeated string IncludedHandlingunitIDs */ 2:
message.IncludedHandlingunitIDs.push(reader.string()); message.IncludedHandlingunitIDs.push(reader.string());
break; break;
case /* string Reference */ 3:
message.Reference = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -1202,6 +1211,9 @@ class HandlingunitPropagateParentHUPayload$Type extends MessageType<Handlingunit
/* repeated string IncludedHandlingunitIDs = 2; */ /* repeated string IncludedHandlingunitIDs = 2; */
for (let i = 0; i < message.IncludedHandlingunitIDs.length; i++) for (let i = 0; i < message.IncludedHandlingunitIDs.length; i++)
writer.tag(2, WireType.LengthDelimited).string(message.IncludedHandlingunitIDs[i]); writer.tag(2, WireType.LengthDelimited).string(message.IncludedHandlingunitIDs[i]);
/* string Reference = 3; */
if (message.Reference !== "")
writer.tag(3, WireType.LengthDelimited).string(message.Reference);
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);

View File

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