balendar 0.0.12 → 0.0.14
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 +172 -93
- package/dist/lib/models.js +5 -5
- package/dist/src/modules/availability-rules/availability-rules.domain.d.ts +6 -6
- package/dist/src/modules/calendar-mappings/calendar-mappings.domain.d.ts +6 -6
- package/dist/src/modules/event-mappings/event-mappings.domain.d.ts +6 -6
- package/dist/src/modules/events/events.domain.d.ts +3 -3
- package/dist/src/shared/schemas/id.models.d.ts +1 -1
- package/dist/src/shared/schemas/pagination.models.d.ts +3 -3
- package/package.json +1 -1
|
@@ -500,9 +500,9 @@ export declare const SearchAvailabilityRulesOutputSchema: z.ZodObject<{
|
|
|
500
500
|
date: z.ZodNull;
|
|
501
501
|
}, z.core.$strip>], "recurrence">>;
|
|
502
502
|
pagination: z.ZodObject<{
|
|
503
|
-
total: z.
|
|
504
|
-
limit: z.ZodDefault<z.
|
|
505
|
-
offset: z.ZodDefault<z.
|
|
503
|
+
total: z.ZodNumber;
|
|
504
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
505
|
+
offset: z.ZodDefault<z.ZodNumber>;
|
|
506
506
|
hasMore: z.ZodBoolean;
|
|
507
507
|
}, z.core.$strip>;
|
|
508
508
|
}, z.core.$strip>;
|
|
@@ -564,9 +564,9 @@ export declare const PaginatedAvailabilityRulesSchema: z.ZodObject<{
|
|
|
564
564
|
date: z.ZodNull;
|
|
565
565
|
}, z.core.$strip>], "recurrence">>;
|
|
566
566
|
pagination: z.ZodObject<{
|
|
567
|
-
total: z.
|
|
568
|
-
limit: z.ZodDefault<z.
|
|
569
|
-
offset: z.ZodDefault<z.
|
|
567
|
+
total: z.ZodNumber;
|
|
568
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
569
|
+
offset: z.ZodDefault<z.ZodNumber>;
|
|
570
570
|
hasMore: z.ZodBoolean;
|
|
571
571
|
}, z.core.$strip>;
|
|
572
572
|
}, z.core.$strip>;
|
|
@@ -125,9 +125,9 @@ export declare const PaginatedCalendarMappingsSchema: z.ZodObject<{
|
|
|
125
125
|
webhookExpiresAt: z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>>;
|
|
126
126
|
}, z.core.$strip>>;
|
|
127
127
|
pagination: z.ZodObject<{
|
|
128
|
-
total: z.
|
|
129
|
-
limit: z.ZodDefault<z.
|
|
130
|
-
offset: z.ZodDefault<z.
|
|
128
|
+
total: z.ZodNumber;
|
|
129
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
130
|
+
offset: z.ZodDefault<z.ZodNumber>;
|
|
131
131
|
hasMore: z.ZodBoolean;
|
|
132
132
|
}, z.core.$strip>;
|
|
133
133
|
}, z.core.$strip>;
|
|
@@ -175,9 +175,9 @@ export declare const SearchCalendarMappingsOutputSchema: z.ZodObject<{
|
|
|
175
175
|
webhookExpiresAt: z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>>;
|
|
176
176
|
}, z.core.$strip>>;
|
|
177
177
|
pagination: z.ZodObject<{
|
|
178
|
-
total: z.
|
|
179
|
-
limit: z.ZodDefault<z.
|
|
180
|
-
offset: z.ZodDefault<z.
|
|
178
|
+
total: z.ZodNumber;
|
|
179
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
180
|
+
offset: z.ZodDefault<z.ZodNumber>;
|
|
181
181
|
hasMore: z.ZodBoolean;
|
|
182
182
|
}, z.core.$strip>;
|
|
183
183
|
}, z.core.$strip>;
|
|
@@ -69,9 +69,9 @@ export declare const PaginatedEventMappingsSchema: z.ZodObject<{
|
|
|
69
69
|
eventMappingId: z.ZodNumber;
|
|
70
70
|
}, z.core.$strip>>;
|
|
71
71
|
pagination: z.ZodObject<{
|
|
72
|
-
total: z.
|
|
73
|
-
limit: z.ZodDefault<z.
|
|
74
|
-
offset: z.ZodDefault<z.
|
|
72
|
+
total: z.ZodNumber;
|
|
73
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
74
|
+
offset: z.ZodDefault<z.ZodNumber>;
|
|
75
75
|
hasMore: z.ZodBoolean;
|
|
76
76
|
}, z.core.$strip>;
|
|
77
77
|
}, z.core.$strip>;
|
|
@@ -113,9 +113,9 @@ export declare const SearchEventMappingsOutputSchema: z.ZodObject<{
|
|
|
113
113
|
eventMappingId: z.ZodNumber;
|
|
114
114
|
}, z.core.$strip>>;
|
|
115
115
|
pagination: z.ZodObject<{
|
|
116
|
-
total: z.
|
|
117
|
-
limit: z.ZodDefault<z.
|
|
118
|
-
offset: z.ZodDefault<z.
|
|
116
|
+
total: z.ZodNumber;
|
|
117
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
118
|
+
offset: z.ZodDefault<z.ZodNumber>;
|
|
119
119
|
hasMore: z.ZodBoolean;
|
|
120
120
|
}, z.core.$strip>;
|
|
121
121
|
}, z.core.$strip>;
|
|
@@ -156,9 +156,9 @@ export declare const SearchEventsOutputSchema: z.ZodObject<{
|
|
|
156
156
|
location: z.ZodNullable<z.ZodString>;
|
|
157
157
|
}, z.core.$strip>>;
|
|
158
158
|
pagination: z.ZodObject<{
|
|
159
|
-
total: z.
|
|
160
|
-
limit: z.ZodDefault<z.
|
|
161
|
-
offset: z.ZodDefault<z.
|
|
159
|
+
total: z.ZodNumber;
|
|
160
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
161
|
+
offset: z.ZodDefault<z.ZodNumber>;
|
|
162
162
|
hasMore: z.ZodBoolean;
|
|
163
163
|
}, z.core.$strip>;
|
|
164
164
|
}, z.core.$strip>;
|
|
@@ -3,7 +3,7 @@ export declare const IDSchema: z.ZodNumber;
|
|
|
3
3
|
export type ID = z.infer<typeof IDSchema>;
|
|
4
4
|
export declare const IDsSchema: z.ZodArray<z.ZodNumber>;
|
|
5
5
|
export type IDs = z.infer<typeof IDsSchema>;
|
|
6
|
-
export declare const IDParamSchema: z.
|
|
6
|
+
export declare const IDParamSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
7
7
|
export type IDParam = z.infer<typeof IDParamSchema>;
|
|
8
8
|
export declare const ExternalIDSchema: z.ZodString;
|
|
9
9
|
export type ExternalID = z.infer<typeof ExternalIDSchema>;
|
|
@@ -5,9 +5,9 @@ export declare const PaginationInputSchema: z.ZodDefault<z.ZodObject<{
|
|
|
5
5
|
}, z.core.$strip>>;
|
|
6
6
|
export type PaginationInput = z.infer<typeof PaginationInputSchema>;
|
|
7
7
|
export declare const PaginationOutputSchema: z.ZodObject<{
|
|
8
|
-
total: z.
|
|
9
|
-
limit: z.ZodDefault<z.
|
|
10
|
-
offset: z.ZodDefault<z.
|
|
8
|
+
total: z.ZodNumber;
|
|
9
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
10
|
+
offset: z.ZodDefault<z.ZodNumber>;
|
|
11
11
|
hasMore: z.ZodBoolean;
|
|
12
12
|
}, z.core.$strip>;
|
|
13
13
|
export type PaginationOutput = z.infer<typeof PaginationOutputSchema>;
|