@blackcode_sa/metaestetics-api 1.12.25 → 1.12.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/admin/index.d.mts +2 -0
- package/dist/admin/index.d.ts +2 -0
- package/dist/admin/index.js +9591 -0
- package/dist/admin/index.mjs +9528 -0
- package/dist/index.d.mts +6971 -0
- package/dist/index.d.ts +6971 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
- package/src/admin/booking/booking.admin.ts +34 -12
- package/src/admin/booking/booking.calculator.ts +14 -9
- package/src/admin/booking/timezones-problem.md +185 -0
- package/src/services/clinic/clinic.service.ts +2 -2
package/dist/admin/index.d.mts
CHANGED
|
@@ -3196,6 +3196,7 @@ declare class BookingAvailabilityCalculator {
|
|
|
3196
3196
|
* @param intervals - Final available intervals
|
|
3197
3197
|
* @param intervalMinutes - Scheduling interval in minutes
|
|
3198
3198
|
* @param durationMinutes - Procedure duration in minutes
|
|
3199
|
+
* @param tz - IANA timezone of the clinic
|
|
3199
3200
|
* @returns Array of available booking slots
|
|
3200
3201
|
*/
|
|
3201
3202
|
private static generateAvailableSlots;
|
|
@@ -3205,6 +3206,7 @@ declare class BookingAvailabilityCalculator {
|
|
|
3205
3206
|
* @param slotStart - Start time of the slot
|
|
3206
3207
|
* @param slotEnd - End time of the slot
|
|
3207
3208
|
* @param intervals - Available intervals
|
|
3209
|
+
* @param tz - IANA timezone of the clinic
|
|
3208
3210
|
* @returns True if the slot is fully contained within an available interval
|
|
3209
3211
|
*/
|
|
3210
3212
|
private static isSlotFullyAvailable;
|
package/dist/admin/index.d.ts
CHANGED
|
@@ -3196,6 +3196,7 @@ declare class BookingAvailabilityCalculator {
|
|
|
3196
3196
|
* @param intervals - Final available intervals
|
|
3197
3197
|
* @param intervalMinutes - Scheduling interval in minutes
|
|
3198
3198
|
* @param durationMinutes - Procedure duration in minutes
|
|
3199
|
+
* @param tz - IANA timezone of the clinic
|
|
3199
3200
|
* @returns Array of available booking slots
|
|
3200
3201
|
*/
|
|
3201
3202
|
private static generateAvailableSlots;
|
|
@@ -3205,6 +3206,7 @@ declare class BookingAvailabilityCalculator {
|
|
|
3205
3206
|
* @param slotStart - Start time of the slot
|
|
3206
3207
|
* @param slotEnd - End time of the slot
|
|
3207
3208
|
* @param intervals - Available intervals
|
|
3209
|
+
* @param tz - IANA timezone of the clinic
|
|
3208
3210
|
* @returns True if the slot is fully contained within an available interval
|
|
3209
3211
|
*/
|
|
3210
3212
|
private static isSlotFullyAvailable;
|