You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -314,6 +314,10 @@ export interface HandlingunitPropagateParentHUPayload {
|
||||
* @generated from protobuf field: repeated string IncludedHandlingunitIDs = 2
|
||||
*/
|
||||
IncludedHandlingunitIDs: string[];
|
||||
/**
|
||||
* @generated from protobuf field: string Reference = 3
|
||||
*/
|
||||
Reference: string;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.HandlingunitPropagateParentHU
|
||||
@@ -1162,13 +1166,15 @@ class HandlingunitPropagateParentHUPayload$Type extends MessageType<Handlingunit
|
||||
constructor() {
|
||||
super("api.HandlingunitPropagateParentHUPayload", [
|
||||
{ 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" });
|
||||
}
|
||||
create(value?: PartialMessage<HandlingunitPropagateParentHUPayload>): HandlingunitPropagateParentHUPayload {
|
||||
const message = globalThis.Object.create((this.messagePrototype!));
|
||||
message.ContainsHUs = false;
|
||||
message.IncludedHandlingunitIDs = [];
|
||||
message.Reference = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<HandlingunitPropagateParentHUPayload>(this, message, value);
|
||||
return message;
|
||||
@@ -1184,6 +1190,9 @@ class HandlingunitPropagateParentHUPayload$Type extends MessageType<Handlingunit
|
||||
case /* repeated string IncludedHandlingunitIDs */ 2:
|
||||
message.IncludedHandlingunitIDs.push(reader.string());
|
||||
break;
|
||||
case /* string Reference */ 3:
|
||||
message.Reference = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -1202,6 +1211,9 @@ class HandlingunitPropagateParentHUPayload$Type extends MessageType<Handlingunit
|
||||
/* repeated string IncludedHandlingunitIDs = 2; */
|
||||
for (let i = 0; i < message.IncludedHandlingunitIDs.length; 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;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"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",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
Reference in New Issue
Block a user