balendar 0.0.17 → 0.0.21
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/lib/client.d.ts +3 -0
- package/dist/lib/models.js +4 -4
- package/dist/src/modules/availability-rules/availability-rules.domain.d.ts +1 -0
- package/dist/src/modules/calendar-mappings/calendar-mappings.domain.d.ts +6 -0
- package/dist/src/orchestrators/availability/availability.domain.d.ts +3 -0
- package/dist/src/orchestrators/calendars/connections.domain.d.ts +1 -1
- package/package.json +1 -1
package/dist/lib/client.d.ts
CHANGED
|
@@ -457,6 +457,7 @@ export declare function createBalendar(config: BalendarConfig): {
|
|
|
457
457
|
isAvailable?: boolean | undefined;
|
|
458
458
|
dateFrom?: string | undefined;
|
|
459
459
|
dateTo?: string | undefined;
|
|
460
|
+
excludeExpiredBefore?: string | undefined;
|
|
460
461
|
}, options?: {
|
|
461
462
|
headers?: Record<string, unknown> | undefined;
|
|
462
463
|
query?: Record<string, unknown> | undefined;
|
|
@@ -535,6 +536,7 @@ export declare function createBalendar(config: BalendarConfig): {
|
|
|
535
536
|
bookingDurationMinutes: number;
|
|
536
537
|
slotGapMinutes: number;
|
|
537
538
|
timeZone: string;
|
|
539
|
+
ignoreBookingId?: number | undefined;
|
|
538
540
|
};
|
|
539
541
|
}, options?: {
|
|
540
542
|
headers?: Record<string, unknown> | undefined;
|
|
@@ -585,6 +587,7 @@ export declare function createBalendar(config: BalendarConfig): {
|
|
|
585
587
|
bookingDurationMinutes: number;
|
|
586
588
|
slotGapMinutes: number;
|
|
587
589
|
timeZone: string;
|
|
590
|
+
ignoreBookingId?: number | undefined;
|
|
588
591
|
}[];
|
|
589
592
|
}, options?: {
|
|
590
593
|
headers?: Record<string, unknown> | undefined;
|