Latest generation

This commit is contained in:
ci core model
2025-11-21 17:00:00 +00:00
parent f6e32284c5
commit 4ce7186a15
2 changed files with 14 additions and 2 deletions

View File

@@ -124,6 +124,10 @@ export interface ListNotifChanges {
* @generated from protobuf field: google.protobuf.Struct Tags = 6
*/
Tags?: Struct;
/**
* @generated from protobuf field: bool SendToIssuer = 7
*/
SendToIssuer: boolean;
}
/**
* @generated from protobuf message api.NotifChanges
@@ -573,7 +577,8 @@ class ListNotifChanges$Type extends MessageType<ListNotifChanges> {
{ no: 3, name: "EntityType", kind: "scalar", localName: "EntityType", jsonName: "EntityType", T: 9 /*ScalarType.STRING*/ },
{ no: 4, name: "EntityRefID", kind: "scalar", localName: "EntityRefID", jsonName: "EntityRefID", T: 9 /*ScalarType.STRING*/ },
{ no: 5, name: "NotifChanges", kind: "message", localName: "NotifChanges", jsonName: "NotifChanges", repeat: 2 /*RepeatType.UNPACKED*/, T: () => NotifChanges },
{ no: 6, name: "Tags", kind: "message", localName: "Tags", jsonName: "Tags", T: () => Struct }
{ no: 6, name: "Tags", kind: "message", localName: "Tags", jsonName: "Tags", T: () => Struct },
{ no: 7, name: "SendToIssuer", kind: "scalar", localName: "SendToIssuer", jsonName: "SendToIssuer", T: 8 /*ScalarType.BOOL*/ }
]);
}
create(value?: PartialMessage<ListNotifChanges>): ListNotifChanges {
@@ -583,6 +588,7 @@ class ListNotifChanges$Type extends MessageType<ListNotifChanges> {
message.EntityType = "";
message.EntityRefID = "";
message.NotifChanges = [];
message.SendToIssuer = false;
if (value !== undefined)
reflectionMergePartial<ListNotifChanges>(this, message, value);
return message;
@@ -610,6 +616,9 @@ class ListNotifChanges$Type extends MessageType<ListNotifChanges> {
case /* google.protobuf.Struct Tags */ 6:
message.Tags = Struct.internalBinaryRead(reader, reader.uint32(), options, message.Tags);
break;
case /* bool SendToIssuer */ 7:
message.SendToIssuer = reader.bool();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -640,6 +649,9 @@ class ListNotifChanges$Type extends MessageType<ListNotifChanges> {
/* google.protobuf.Struct Tags = 6; */
if (message.Tags)
Struct.internalBinaryWrite(message.Tags, writer.tag(6, WireType.LengthDelimited).fork(), options).join();
/* bool SendToIssuer = 7; */
if (message.SendToIssuer !== false)
writer.tag(7, WireType.Varint).bool(message.SendToIssuer);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);

View File

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