@blackcode_sa/metaestetics-api 1.5.25 → 1.5.27
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.
package/dist/index.js
CHANGED
|
@@ -9506,6 +9506,8 @@ var CalendarServiceV2 = class extends BaseService {
|
|
|
9506
9506
|
const updateParams = {
|
|
9507
9507
|
appointmentId,
|
|
9508
9508
|
clinicId,
|
|
9509
|
+
eventTime: appointment.eventTime,
|
|
9510
|
+
description: appointment.description,
|
|
9509
9511
|
doctorId: appointment.practitionerProfileId || "",
|
|
9510
9512
|
patientId: appointment.patientProfileId || "",
|
|
9511
9513
|
status
|
package/dist/index.mjs
CHANGED
|
@@ -9566,6 +9566,8 @@ var CalendarServiceV2 = class extends BaseService {
|
|
|
9566
9566
|
const updateParams = {
|
|
9567
9567
|
appointmentId,
|
|
9568
9568
|
clinicId,
|
|
9569
|
+
eventTime: appointment.eventTime,
|
|
9570
|
+
description: appointment.description,
|
|
9569
9571
|
doctorId: appointment.practitionerProfileId || "",
|
|
9570
9572
|
patientId: appointment.patientProfileId || "",
|
|
9571
9573
|
status
|
package/package.json
CHANGED
|
@@ -1106,6 +1106,8 @@ export class CalendarServiceV2 extends BaseService {
|
|
|
1106
1106
|
const updateParams: UpdateAppointmentParams = {
|
|
1107
1107
|
appointmentId,
|
|
1108
1108
|
clinicId,
|
|
1109
|
+
eventTime: appointment.eventTime,
|
|
1110
|
+
description: appointment.description,
|
|
1109
1111
|
doctorId: appointment.practitionerProfileId || "",
|
|
1110
1112
|
patientId: appointment.patientProfileId || "",
|
|
1111
1113
|
status,
|