@blackcode_sa/metaestetics-api 1.11.2 → 1.11.3
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/admin/index.d.mts +2 -0
- package/dist/admin/index.d.ts +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
- package/src/types/appointment/index.ts +2 -0
- package/src/validations/appointment.schema.ts +1 -0
package/dist/admin/index.d.mts
CHANGED
|
@@ -1573,6 +1573,8 @@ interface AppointmentMetadata {
|
|
|
1573
1573
|
zoneBilling: Record<string, BillingPerZone> | null;
|
|
1574
1574
|
/** Final billing calculations for the appointment */
|
|
1575
1575
|
finalbilling: FinalBilling | null;
|
|
1576
|
+
/** Final note for the appointment */
|
|
1577
|
+
finalizationNotes: string | null;
|
|
1576
1578
|
}
|
|
1577
1579
|
/**
|
|
1578
1580
|
* Represents a booked appointment, aggregating key information and relevant procedure rules.
|
package/dist/admin/index.d.ts
CHANGED
|
@@ -1573,6 +1573,8 @@ interface AppointmentMetadata {
|
|
|
1573
1573
|
zoneBilling: Record<string, BillingPerZone> | null;
|
|
1574
1574
|
/** Final billing calculations for the appointment */
|
|
1575
1575
|
finalbilling: FinalBilling | null;
|
|
1576
|
+
/** Final note for the appointment */
|
|
1577
|
+
finalizationNotes: string | null;
|
|
1576
1578
|
}
|
|
1577
1579
|
/**
|
|
1578
1580
|
* Represents a booked appointment, aggregating key information and relevant procedure rules.
|
package/dist/index.d.mts
CHANGED
|
@@ -2887,6 +2887,8 @@ interface AppointmentMetadata {
|
|
|
2887
2887
|
zoneBilling: Record<string, BillingPerZone> | null;
|
|
2888
2888
|
/** Final billing calculations for the appointment */
|
|
2889
2889
|
finalbilling: FinalBilling | null;
|
|
2890
|
+
/** Final note for the appointment */
|
|
2891
|
+
finalizationNotes: string | null;
|
|
2890
2892
|
}
|
|
2891
2893
|
/**
|
|
2892
2894
|
* Represents a booked appointment, aggregating key information and relevant procedure rules.
|
package/dist/index.d.ts
CHANGED
|
@@ -2887,6 +2887,8 @@ interface AppointmentMetadata {
|
|
|
2887
2887
|
zoneBilling: Record<string, BillingPerZone> | null;
|
|
2888
2888
|
/** Final billing calculations for the appointment */
|
|
2889
2889
|
finalbilling: FinalBilling | null;
|
|
2890
|
+
/** Final note for the appointment */
|
|
2891
|
+
finalizationNotes: string | null;
|
|
2890
2892
|
}
|
|
2891
2893
|
/**
|
|
2892
2894
|
* Represents a booked appointment, aggregating key information and relevant procedure rules.
|
package/dist/index.js
CHANGED
|
@@ -566,7 +566,8 @@ var appointmentMetadataSchema = import_zod3.z.object({
|
|
|
566
566
|
selectedZones: import_zod3.z.array(import_zod3.z.string()).nullable(),
|
|
567
567
|
zonePhotos: import_zod3.z.record(import_zod3.z.string(), beforeAfterPerZoneSchema).nullable(),
|
|
568
568
|
zoneBilling: import_zod3.z.record(import_zod3.z.string(), billingPerZoneSchema).nullable(),
|
|
569
|
-
finalbilling: finalBillingSchema.nullable()
|
|
569
|
+
finalbilling: finalBillingSchema.nullable(),
|
|
570
|
+
finalizationNotes: import_zod3.z.string().nullable()
|
|
570
571
|
});
|
|
571
572
|
var createAppointmentSchema = import_zod3.z.object({
|
|
572
573
|
clinicBranchId: import_zod3.z.string().min(MIN_STRING_LENGTH, "Clinic branch ID is required"),
|
package/dist/index.mjs
CHANGED
|
@@ -438,7 +438,8 @@ var appointmentMetadataSchema = z3.object({
|
|
|
438
438
|
selectedZones: z3.array(z3.string()).nullable(),
|
|
439
439
|
zonePhotos: z3.record(z3.string(), beforeAfterPerZoneSchema).nullable(),
|
|
440
440
|
zoneBilling: z3.record(z3.string(), billingPerZoneSchema).nullable(),
|
|
441
|
-
finalbilling: finalBillingSchema.nullable()
|
|
441
|
+
finalbilling: finalBillingSchema.nullable(),
|
|
442
|
+
finalizationNotes: z3.string().nullable()
|
|
442
443
|
});
|
|
443
444
|
var createAppointmentSchema = z3.object({
|
|
444
445
|
clinicBranchId: z3.string().min(MIN_STRING_LENGTH, "Clinic branch ID is required"),
|
package/package.json
CHANGED
|
@@ -177,6 +177,8 @@ export interface AppointmentMetadata {
|
|
|
177
177
|
zoneBilling: Record<string, BillingPerZone> | null;
|
|
178
178
|
/** Final billing calculations for the appointment */
|
|
179
179
|
finalbilling: FinalBilling | null;
|
|
180
|
+
/** Final note for the appointment */
|
|
181
|
+
finalizationNotes: string | null;
|
|
180
182
|
}
|
|
181
183
|
|
|
182
184
|
/**
|
|
@@ -177,6 +177,7 @@ export const appointmentMetadataSchema = z.object({
|
|
|
177
177
|
zonePhotos: z.record(z.string(), beforeAfterPerZoneSchema).nullable(),
|
|
178
178
|
zoneBilling: z.record(z.string(), billingPerZoneSchema).nullable(),
|
|
179
179
|
finalbilling: finalBillingSchema.nullable(),
|
|
180
|
+
finalizationNotes: z.string().nullable(),
|
|
180
181
|
});
|
|
181
182
|
|
|
182
183
|
// --- Main Appointment Schemas ---
|