diff --git a/package.json b/package.json index e29af9e..985cc9f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-core-sdk", - "version": "1.13.0-SNAPSHOT-260224100807", + "version": "1.13.0-SNAPSHOT-260224102356", "description": "npm libs from core model proto files", "homepage": "", "main": "index.ts", diff --git a/site.ts b/site.ts index 0f61648..745eb68 100644 --- a/site.ts +++ b/site.ts @@ -765,10 +765,6 @@ export interface BookAppointmentResponse { * @generated from protobuf field: string AppointmentID = 1 */ AppointmentID: string; - /** - * @generated from protobuf field: repeated string Attendees = 27 - */ - Attendees: string[]; } /** * CancelAppointment @@ -3319,14 +3315,12 @@ class BookAppointmentResponse$Type extends MessageType constructor() { super("api.BookAppointmentResponse", [ { no: 2, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => ResponseHeader }, - { no: 1, name: "AppointmentID", kind: "scalar", localName: "AppointmentID", jsonName: "AppointmentID", T: 9 /*ScalarType.STRING*/ }, - { no: 27, name: "Attendees", kind: "scalar", localName: "Attendees", jsonName: "Attendees", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ } + { no: 1, name: "AppointmentID", kind: "scalar", localName: "AppointmentID", jsonName: "AppointmentID", T: 9 /*ScalarType.STRING*/ } ]); } create(value?: PartialMessage): BookAppointmentResponse { const message = globalThis.Object.create((this.messagePrototype!)); message.AppointmentID = ""; - message.Attendees = []; if (value !== undefined) reflectionMergePartial(this, message, value); return message; @@ -3342,9 +3336,6 @@ class BookAppointmentResponse$Type extends MessageType case /* string AppointmentID */ 1: message.AppointmentID = reader.string(); break; - case /* repeated string Attendees */ 27: - message.Attendees.push(reader.string()); - break; default: let u = options.readUnknownField; if (u === "throw") @@ -3363,9 +3354,6 @@ class BookAppointmentResponse$Type extends MessageType /* api.ResponseHeader Header = 2; */ if (message.Header) ResponseHeader.internalBinaryWrite(message.Header, writer.tag(2, WireType.LengthDelimited).fork(), options).join(); - /* repeated string Attendees = 27; */ - for (let i = 0; i < message.Attendees.length; i++) - writer.tag(27, WireType.LengthDelimited).string(message.Attendees[i]); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); diff --git a/siteBooking.ts b/siteBooking.ts index 6dc7a51..288f49d 100644 --- a/siteBooking.ts +++ b/siteBooking.ts @@ -180,6 +180,10 @@ export interface BookBookingAppointmentResponse { * @generated from protobuf field: string AppointmentID = 1 */ AppointmentID: string; + /** + * @generated from protobuf field: repeated string Attendees = 3 + */ + Attendees: string[]; } /** * CancelAppointment @@ -725,12 +729,14 @@ class BookBookingAppointmentResponse$Type extends MessageType ResponseHeader }, - { no: 1, name: "AppointmentID", kind: "scalar", localName: "AppointmentID", jsonName: "AppointmentID", T: 9 /*ScalarType.STRING*/ } + { no: 1, name: "AppointmentID", kind: "scalar", localName: "AppointmentID", jsonName: "AppointmentID", T: 9 /*ScalarType.STRING*/ }, + { no: 3, name: "Attendees", kind: "scalar", localName: "Attendees", jsonName: "Attendees", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ } ]); } create(value?: PartialMessage): BookBookingAppointmentResponse { const message = globalThis.Object.create((this.messagePrototype!)); message.AppointmentID = ""; + message.Attendees = []; if (value !== undefined) reflectionMergePartial(this, message, value); return message; @@ -746,6 +752,9 @@ class BookBookingAppointmentResponse$Type extends MessageType