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
|
@@ -437,6 +437,7 @@ export declare const SearchAvailabilityRulesInputSchema: z.ZodObject<{
|
|
|
437
437
|
isAvailable: z.ZodOptional<z.ZodBoolean>;
|
|
438
438
|
dateFrom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>>;
|
|
439
439
|
dateTo: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>>;
|
|
440
|
+
excludeExpiredBefore: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>>;
|
|
440
441
|
pagination: z.ZodDefault<z.ZodObject<{
|
|
441
442
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
442
443
|
offset: z.ZodDefault<z.ZodNumber>;
|
|
@@ -89,6 +89,12 @@ export declare const UpdateCalendarMappingInputSchema: z.ZodObject<{
|
|
|
89
89
|
expiresAt: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>>;
|
|
90
90
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
91
91
|
refreshToken: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
92
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
93
|
+
error: "error";
|
|
94
|
+
active: "active";
|
|
95
|
+
expired: "expired";
|
|
96
|
+
revoked: "revoked";
|
|
97
|
+
}>>;
|
|
92
98
|
syncToken: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
93
99
|
webhookId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
94
100
|
webhookResourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -47,6 +47,7 @@ declare const PerUserAvailabilitySearchFiltersSchema: z.ZodObject<{
|
|
|
47
47
|
bookingDurationMinutes: z.ZodDefault<z.ZodNumber>;
|
|
48
48
|
slotGapMinutes: z.ZodDefault<z.ZodNumber>;
|
|
49
49
|
timeZone: z.ZodString;
|
|
50
|
+
ignoreBookingId: z.ZodOptional<z.ZodNumber>;
|
|
50
51
|
}, z.core.$strip>;
|
|
51
52
|
export type PerUserAvailabilitySearchFilters = z.infer<typeof PerUserAvailabilitySearchFiltersSchema>;
|
|
52
53
|
export declare const UserAvailabilitySearchInputSchema: z.ZodObject<{
|
|
@@ -64,6 +65,7 @@ export declare const UserAvailabilitySearchInputSchema: z.ZodObject<{
|
|
|
64
65
|
bookingDurationMinutes: z.ZodDefault<z.ZodNumber>;
|
|
65
66
|
slotGapMinutes: z.ZodDefault<z.ZodNumber>;
|
|
66
67
|
timeZone: z.ZodString;
|
|
68
|
+
ignoreBookingId: z.ZodOptional<z.ZodNumber>;
|
|
67
69
|
}, z.core.$strip>;
|
|
68
70
|
}, z.core.$strip>;
|
|
69
71
|
export type UserAvailabilitySearchInput = z.infer<typeof UserAvailabilitySearchInputSchema>;
|
|
@@ -101,6 +103,7 @@ export declare const MultiUserAvailabilitySearchInputSchema: z.ZodObject<{
|
|
|
101
103
|
bookingDurationMinutes: z.ZodDefault<z.ZodNumber>;
|
|
102
104
|
slotGapMinutes: z.ZodDefault<z.ZodNumber>;
|
|
103
105
|
timeZone: z.ZodString;
|
|
106
|
+
ignoreBookingId: z.ZodOptional<z.ZodNumber>;
|
|
104
107
|
}, z.core.$strip>>;
|
|
105
108
|
}, z.core.$strip>;
|
|
106
109
|
export type MultiUserAvailabilitySearchInput = z.infer<typeof MultiUserAvailabilitySearchInputSchema>;
|