@blackcode_sa/metaestetics-api 1.6.10 → 1.6.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33309,7 +33309,7 @@ var BookingAdmin = class {
33309
33309
  eventName: `Appointment: ${procedure.name} with ${patientInfo.fullName}`,
33310
33310
  eventLocation: clinicData.location,
33311
33311
  eventTime: eventTimeForCalendarEvents,
33312
- description: procedure.description || void 0,
33312
+ description: procedure.description || "",
33313
33313
  status: initialCalendarEventStatus,
33314
33314
  syncStatus: "internal" /* INTERNAL */,
33315
33315
  eventType: "appointment" /* APPOINTMENT */,
@@ -33333,7 +33333,7 @@ var BookingAdmin = class {
33333
33333
  eventName: `Appointment: ${procedure.name} at ${clinicData.name}`,
33334
33334
  eventLocation: clinicData.location,
33335
33335
  eventTime: eventTimeForCalendarEvents,
33336
- description: data.patientNotes || void 0,
33336
+ description: data.patientNotes || "",
33337
33337
  status: initialCalendarEventStatus,
33338
33338
  syncStatus: "internal" /* INTERNAL */,
33339
33339
  eventType: "appointment" /* APPOINTMENT */,
@@ -33359,7 +33359,7 @@ var BookingAdmin = class {
33359
33359
  eventName: `Appointment: ${procedure.name} for ${patientInfo.fullName} with ${practitionerInfo.name}`,
33360
33360
  eventLocation: clinicData.location,
33361
33361
  eventTime: eventTimeForCalendarEvents,
33362
- description: data.patientNotes || void 0,
33362
+ description: data.patientNotes || "",
33363
33363
  status: initialCalendarEventStatus,
33364
33364
  syncStatus: "internal" /* INTERNAL */,
33365
33365
  eventType: "appointment" /* APPOINTMENT */,
@@ -33425,7 +33425,11 @@ var BookingAdmin = class {
33425
33425
  linkedForms: initializedFormsInfo,
33426
33426
  media: [],
33427
33427
  reviewInfo: null,
33428
- finalizedDetails: void 0,
33428
+ finalizedDetails: {
33429
+ by: "",
33430
+ at: adminTsNow,
33431
+ notes: ""
33432
+ },
33429
33433
  internalNotes: null,
33430
33434
  cancellationReason: null,
33431
33435
  cancellationTime: null,
@@ -33286,7 +33286,7 @@ var BookingAdmin = class {
33286
33286
  eventName: `Appointment: ${procedure.name} with ${patientInfo.fullName}`,
33287
33287
  eventLocation: clinicData.location,
33288
33288
  eventTime: eventTimeForCalendarEvents,
33289
- description: procedure.description || void 0,
33289
+ description: procedure.description || "",
33290
33290
  status: initialCalendarEventStatus,
33291
33291
  syncStatus: "internal" /* INTERNAL */,
33292
33292
  eventType: "appointment" /* APPOINTMENT */,
@@ -33310,7 +33310,7 @@ var BookingAdmin = class {
33310
33310
  eventName: `Appointment: ${procedure.name} at ${clinicData.name}`,
33311
33311
  eventLocation: clinicData.location,
33312
33312
  eventTime: eventTimeForCalendarEvents,
33313
- description: data.patientNotes || void 0,
33313
+ description: data.patientNotes || "",
33314
33314
  status: initialCalendarEventStatus,
33315
33315
  syncStatus: "internal" /* INTERNAL */,
33316
33316
  eventType: "appointment" /* APPOINTMENT */,
@@ -33336,7 +33336,7 @@ var BookingAdmin = class {
33336
33336
  eventName: `Appointment: ${procedure.name} for ${patientInfo.fullName} with ${practitionerInfo.name}`,
33337
33337
  eventLocation: clinicData.location,
33338
33338
  eventTime: eventTimeForCalendarEvents,
33339
- description: data.patientNotes || void 0,
33339
+ description: data.patientNotes || "",
33340
33340
  status: initialCalendarEventStatus,
33341
33341
  syncStatus: "internal" /* INTERNAL */,
33342
33342
  eventType: "appointment" /* APPOINTMENT */,
@@ -33402,7 +33402,11 @@ var BookingAdmin = class {
33402
33402
  linkedForms: initializedFormsInfo,
33403
33403
  media: [],
33404
33404
  reviewInfo: null,
33405
- finalizedDetails: void 0,
33405
+ finalizedDetails: {
33406
+ by: "",
33407
+ at: adminTsNow,
33408
+ notes: ""
33409
+ },
33406
33410
  internalNotes: null,
33407
33411
  cancellationReason: null,
33408
33412
  cancellationTime: null,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@blackcode_sa/metaestetics-api",
3
3
  "private": false,
4
- "version": "1.6.10",
4
+ "version": "1.6.11",
5
5
  "description": "Firebase authentication service with anonymous upgrade support",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",
@@ -580,7 +580,7 @@ export class BookingAdmin {
580
580
  eventName: `Appointment: ${procedure.name} with ${patientInfo.fullName}`,
581
581
  eventLocation: clinicData.location,
582
582
  eventTime: eventTimeForCalendarEvents,
583
- description: procedure.description || undefined,
583
+ description: procedure.description || "",
584
584
  status: initialCalendarEventStatus,
585
585
  syncStatus: CalendarSyncStatus.INTERNAL,
586
586
  eventType: CalendarEventType.APPOINTMENT,
@@ -614,7 +614,7 @@ export class BookingAdmin {
614
614
  eventName: `Appointment: ${procedure.name} at ${clinicData.name}`,
615
615
  eventLocation: clinicData.location,
616
616
  eventTime: eventTimeForCalendarEvents,
617
- description: data.patientNotes || undefined,
617
+ description: data.patientNotes || "",
618
618
  status: initialCalendarEventStatus,
619
619
  syncStatus: CalendarSyncStatus.INTERNAL,
620
620
  eventType: CalendarEventType.APPOINTMENT,
@@ -650,7 +650,7 @@ export class BookingAdmin {
650
650
  eventName: `Appointment: ${procedure.name} for ${patientInfo.fullName} with ${practitionerInfo.name}`,
651
651
  eventLocation: clinicData.location,
652
652
  eventTime: eventTimeForCalendarEvents,
653
- description: data.patientNotes || undefined,
653
+ description: data.patientNotes || "",
654
654
  status: initialCalendarEventStatus,
655
655
  syncStatus: CalendarSyncStatus.INTERNAL,
656
656
  eventType: CalendarEventType.APPOINTMENT,
@@ -735,7 +735,11 @@ export class BookingAdmin {
735
735
  linkedForms: initializedFormsInfo,
736
736
  media: [],
737
737
  reviewInfo: null,
738
- finalizedDetails: undefined,
738
+ finalizedDetails: {
739
+ by: "",
740
+ at: adminTsNow as any,
741
+ notes: "",
742
+ },
739
743
  internalNotes: null,
740
744
  cancellationReason: null,
741
745
  cancellationTime: null,