balendar 0.0.13 → 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.
@@ -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.ZodCoercedNumber<unknown>;
504
- limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
505
- offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
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.ZodCoercedNumber<unknown>;
568
- limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
569
- offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
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.ZodCoercedNumber<unknown>;
129
- limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
130
- offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
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.ZodCoercedNumber<unknown>;
179
- limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
180
- offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
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.ZodCoercedNumber<unknown>;
73
- limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
74
- offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
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.ZodCoercedNumber<unknown>;
117
- limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
118
- offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
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.ZodCoercedNumber<unknown>;
160
- limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
161
- offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
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.ZodCoercedNumber<unknown>;
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.ZodCoercedNumber<unknown>;
9
- limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
10
- offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balendar",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "module": "client.ts",
5
5
  "type": "module",
6
6
  "private": false,