Latest generation

This commit is contained in:
ci core model
2025-11-24 13:59:35 +00:00
parent a2c49d25da
commit d95fa39b49
2 changed files with 14 additions and 2 deletions

View File

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

View File

@@ -613,6 +613,10 @@ export interface Booking {
* @generated from protobuf field: bool HasReference = 6
*/
HasReference: boolean;
/**
* @generated from protobuf field: repeated string Emails = 7
*/
Emails: string[];
}
/**
* @generated from protobuf message api.SlotGroup
@@ -2331,7 +2335,8 @@ class Booking$Type extends MessageType<Booking> {
{ no: 3, name: "SegmentationSelections", kind: "message", localName: "SegmentationSelections", jsonName: "SegmentationSelections", repeat: 2 /*RepeatType.UNPACKED*/, T: () => SegmentationSelection },
{ no: 4, name: "Slots", kind: "message", localName: "Slots", jsonName: "Slots", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Slot },
{ no: 5, name: "AppointmentKind", kind: "scalar", localName: "AppointmentKind", jsonName: "AppointmentKind", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "HasReference", kind: "scalar", localName: "HasReference", jsonName: "HasReference", T: 8 /*ScalarType.BOOL*/ }
{ no: 6, name: "HasReference", kind: "scalar", localName: "HasReference", jsonName: "HasReference", T: 8 /*ScalarType.BOOL*/ },
{ no: 7, name: "Emails", kind: "scalar", localName: "Emails", jsonName: "Emails", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ }
]);
}
create(value?: PartialMessage<Booking>): Booking {
@@ -2342,6 +2347,7 @@ class Booking$Type extends MessageType<Booking> {
message.Slots = [];
message.AppointmentKind = "";
message.HasReference = false;
message.Emails = [];
if (value !== undefined)
reflectionMergePartial<Booking>(this, message, value);
return message;
@@ -2369,6 +2375,9 @@ class Booking$Type extends MessageType<Booking> {
case /* bool HasReference */ 6:
message.HasReference = reader.bool();
break;
case /* repeated string Emails */ 7:
message.Emails.push(reader.string());
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -2399,6 +2408,9 @@ class Booking$Type extends MessageType<Booking> {
/* bool HasReference = 6; */
if (message.HasReference !== false)
writer.tag(6, WireType.Varint).bool(message.HasReference);
/* repeated string Emails = 7; */
for (let i = 0; i < message.Emails.length; i++)
writer.tag(7, WireType.LengthDelimited).string(message.Emails[i]);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);