api-arreya-types 1.0.44 → 1.0.45

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.
@@ -6,7 +6,7 @@ export declare const Slide: z.ZodObject<{
6
6
  caption: z.ZodNullable<z.ZodString>;
7
7
  order: z.ZodNumber;
8
8
  fileId: z.ZodString;
9
- speed: z.ZodString;
9
+ speed: z.ZodNumber;
10
10
  transition: z.ZodString;
11
11
  timeout: z.ZodNumber;
12
12
  start: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
@@ -66,7 +66,7 @@ export declare const Slide: z.ZodObject<{
66
66
  id: string;
67
67
  createdAt: Date;
68
68
  updatedAt: Date;
69
- speed: string;
69
+ speed: number;
70
70
  transition: string;
71
71
  timeout: number;
72
72
  order: number;
@@ -97,7 +97,7 @@ export declare const Slide: z.ZodObject<{
97
97
  id: string;
98
98
  createdAt: string | Date;
99
99
  updatedAt: string | Date;
100
- speed: string;
100
+ speed: number;
101
101
  transition: string;
102
102
  timeout: number;
103
103
  order: number;
@@ -132,13 +132,13 @@ export declare const CreateSlide: z.ZodObject<{
132
132
  caption: z.ZodNullable<z.ZodString>;
133
133
  order: z.ZodNumber;
134
134
  fileId: z.ZodString;
135
- speed: z.ZodString;
135
+ speed: z.ZodNumber;
136
136
  transition: z.ZodString;
137
137
  timeout: z.ZodNumber;
138
138
  start: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
139
139
  end: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
140
140
  }, "strip", z.ZodTypeAny, {
141
- speed: string;
141
+ speed: number;
142
142
  transition: string;
143
143
  timeout: number;
144
144
  order: number;
@@ -150,7 +150,7 @@ export declare const CreateSlide: z.ZodObject<{
150
150
  fileId: string;
151
151
  id?: string | undefined;
152
152
  }, {
153
- speed: string;
153
+ speed: number;
154
154
  transition: string;
155
155
  timeout: number;
156
156
  order: number;
@@ -169,13 +169,13 @@ export declare const CreateSlides: z.ZodArray<z.ZodObject<{
169
169
  caption: z.ZodNullable<z.ZodString>;
170
170
  order: z.ZodNumber;
171
171
  fileId: z.ZodString;
172
- speed: z.ZodString;
172
+ speed: z.ZodNumber;
173
173
  transition: z.ZodString;
174
174
  timeout: z.ZodNumber;
175
175
  start: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
176
176
  end: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
177
177
  }, "strip", z.ZodTypeAny, {
178
- speed: string;
178
+ speed: number;
179
179
  transition: string;
180
180
  timeout: number;
181
181
  order: number;
@@ -187,7 +187,7 @@ export declare const CreateSlides: z.ZodArray<z.ZodObject<{
187
187
  fileId: string;
188
188
  id?: string | undefined;
189
189
  }, {
190
- speed: string;
190
+ speed: number;
191
191
  transition: string;
192
192
  timeout: number;
193
193
  order: number;
@@ -206,14 +206,14 @@ export declare const UpdateSlide: z.ZodObject<{
206
206
  caption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
207
207
  order: z.ZodOptional<z.ZodNumber>;
208
208
  fileId: z.ZodOptional<z.ZodString>;
209
- speed: z.ZodOptional<z.ZodString>;
209
+ speed: z.ZodOptional<z.ZodNumber>;
210
210
  transition: z.ZodOptional<z.ZodString>;
211
211
  timeout: z.ZodOptional<z.ZodNumber>;
212
212
  start: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>>;
213
213
  end: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>>;
214
214
  }, "strip", z.ZodTypeAny, {
215
215
  id: string;
216
- speed?: string | undefined;
216
+ speed?: number | undefined;
217
217
  transition?: string | undefined;
218
218
  timeout?: number | undefined;
219
219
  order?: number | undefined;
@@ -225,7 +225,7 @@ export declare const UpdateSlide: z.ZodObject<{
225
225
  fileId?: string | undefined;
226
226
  }, {
227
227
  id: string;
228
- speed?: string | undefined;
228
+ speed?: number | undefined;
229
229
  transition?: string | undefined;
230
230
  timeout?: number | undefined;
231
231
  order?: number | undefined;
@@ -253,13 +253,13 @@ export declare const CreateSlideRequestBody: z.ZodObject<{
253
253
  caption: z.ZodNullable<z.ZodString>;
254
254
  order: z.ZodNumber;
255
255
  fileId: z.ZodString;
256
- speed: z.ZodString;
256
+ speed: z.ZodNumber;
257
257
  transition: z.ZodString;
258
258
  timeout: z.ZodNumber;
259
259
  start: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
260
260
  end: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
261
261
  }, "strip", z.ZodTypeAny, {
262
- speed: string;
262
+ speed: number;
263
263
  transition: string;
264
264
  timeout: number;
265
265
  order: number;
@@ -270,7 +270,7 @@ export declare const CreateSlideRequestBody: z.ZodObject<{
270
270
  caption: string | null;
271
271
  fileId: string;
272
272
  }, {
273
- speed: string;
273
+ speed: number;
274
274
  transition: string;
275
275
  timeout: number;
276
276
  order: number;
@@ -11,7 +11,7 @@ exports.Slide = zod_1.z.object({
11
11
  caption: zod_1.z.string().nullable(),
12
12
  order: zod_1.z.number(),
13
13
  fileId: zod_1.z.string(),
14
- speed: zod_1.z.string(),
14
+ speed: zod_1.z.number(),
15
15
  transition: zod_1.z.string(),
16
16
  timeout: zod_1.z.number(),
17
17
  start: zod_utils_1.zodDate.nullable(),
@@ -27,7 +27,7 @@ exports.CreateSlide = zod_1.z.object({
27
27
  caption: zod_1.z.string().nullable(),
28
28
  order: zod_1.z.number(),
29
29
  fileId: zod_1.z.string(),
30
- speed: zod_1.z.string(),
30
+ speed: zod_1.z.number(),
31
31
  transition: zod_1.z.string(),
32
32
  timeout: zod_1.z.number(),
33
33
  start: zod_utils_1.zodDate.nullable(),
@@ -41,7 +41,7 @@ exports.UpdateSlide = zod_1.z.object({
41
41
  caption: zod_1.z.string().nullable().optional(),
42
42
  order: zod_1.z.number().optional(),
43
43
  fileId: zod_1.z.string().optional(),
44
- speed: zod_1.z.string().optional(),
44
+ speed: zod_1.z.number().optional(),
45
45
  transition: zod_1.z.string().optional(),
46
46
  timeout: zod_1.z.number().optional(),
47
47
  start: zod_utils_1.zodDate.nullable().optional(),
@@ -58,7 +58,7 @@ exports.CreateSlideRequestBody = zod_1.z.object({
58
58
  caption: zod_1.z.string().nullable(),
59
59
  order: zod_1.z.number(),
60
60
  fileId: zod_1.z.string(),
61
- speed: zod_1.z.string(),
61
+ speed: zod_1.z.number(),
62
62
  transition: zod_1.z.string(),
63
63
  timeout: zod_1.z.number(),
64
64
  start: zod_utils_1.zodDate.nullable(),
@@ -134,7 +134,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
134
134
  caption: z.ZodNullable<z.ZodString>;
135
135
  order: z.ZodNumber;
136
136
  fileId: z.ZodString;
137
- speed: z.ZodString;
137
+ speed: z.ZodNumber;
138
138
  transition: z.ZodString;
139
139
  timeout: z.ZodNumber;
140
140
  start: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
@@ -194,7 +194,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
194
194
  id: string;
195
195
  createdAt: Date;
196
196
  updatedAt: Date;
197
- speed: string;
197
+ speed: number;
198
198
  transition: string;
199
199
  timeout: number;
200
200
  order: number;
@@ -225,7 +225,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
225
225
  id: string;
226
226
  createdAt: string | Date;
227
227
  updatedAt: string | Date;
228
- speed: string;
228
+ speed: number;
229
229
  transition: string;
230
230
  timeout: number;
231
231
  order: number;
@@ -290,7 +290,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
290
290
  id: string;
291
291
  createdAt: Date;
292
292
  updatedAt: Date;
293
- speed: string;
293
+ speed: number;
294
294
  transition: string;
295
295
  timeout: number;
296
296
  order: number;
@@ -336,7 +336,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
336
336
  id: string;
337
337
  createdAt: string | Date;
338
338
  updatedAt: string | Date;
339
- speed: string;
339
+ speed: number;
340
340
  transition: string;
341
341
  timeout: number;
342
342
  order: number;
@@ -410,13 +410,13 @@ export declare const CreateSlideshowRequestBody: z.ZodObject<{
410
410
  caption: z.ZodNullable<z.ZodString>;
411
411
  order: z.ZodNumber;
412
412
  fileId: z.ZodString;
413
- speed: z.ZodString;
413
+ speed: z.ZodNumber;
414
414
  transition: z.ZodString;
415
415
  timeout: z.ZodNumber;
416
416
  start: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
417
417
  end: z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>;
418
418
  }, "slideshowId">, "strip", z.ZodTypeAny, {
419
- speed: string;
419
+ speed: number;
420
420
  transition: string;
421
421
  timeout: number;
422
422
  order: number;
@@ -427,7 +427,7 @@ export declare const CreateSlideshowRequestBody: z.ZodObject<{
427
427
  fileId: string;
428
428
  id?: string | undefined;
429
429
  }, {
430
- speed: string;
430
+ speed: number;
431
431
  transition: string;
432
432
  timeout: number;
433
433
  order: number;
@@ -445,7 +445,7 @@ export declare const CreateSlideshowRequestBody: z.ZodObject<{
445
445
  name: string;
446
446
  allProjects: boolean;
447
447
  slides: {
448
- speed: string;
448
+ speed: number;
449
449
  transition: string;
450
450
  timeout: number;
451
451
  order: number;
@@ -460,7 +460,7 @@ export declare const CreateSlideshowRequestBody: z.ZodObject<{
460
460
  projectIds: string[];
461
461
  name: string;
462
462
  slides: {
463
- speed: string;
463
+ speed: number;
464
464
  transition: string;
465
465
  timeout: number;
466
466
  order: number;
@@ -482,14 +482,14 @@ export declare const UpdateSlideshowRequestBody: z.ZodObject<{
482
482
  caption: z.ZodOptional<z.ZodNullable<z.ZodString>>;
483
483
  order: z.ZodOptional<z.ZodNumber>;
484
484
  fileId: z.ZodOptional<z.ZodString>;
485
- speed: z.ZodOptional<z.ZodString>;
485
+ speed: z.ZodOptional<z.ZodNumber>;
486
486
  transition: z.ZodOptional<z.ZodString>;
487
487
  timeout: z.ZodOptional<z.ZodNumber>;
488
488
  start: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>>;
489
489
  end: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>>>;
490
490
  }, "strip", z.ZodTypeAny, {
491
491
  id: string;
492
- speed?: string | undefined;
492
+ speed?: number | undefined;
493
493
  transition?: string | undefined;
494
494
  timeout?: number | undefined;
495
495
  order?: number | undefined;
@@ -501,7 +501,7 @@ export declare const UpdateSlideshowRequestBody: z.ZodObject<{
501
501
  fileId?: string | undefined;
502
502
  }, {
503
503
  id: string;
504
- speed?: string | undefined;
504
+ speed?: number | undefined;
505
505
  transition?: string | undefined;
506
506
  timeout?: number | undefined;
507
507
  order?: number | undefined;
@@ -522,7 +522,7 @@ export declare const UpdateSlideshowRequestBody: z.ZodObject<{
522
522
  allProjects?: boolean | undefined;
523
523
  slides?: {
524
524
  id: string;
525
- speed?: string | undefined;
525
+ speed?: number | undefined;
526
526
  transition?: string | undefined;
527
527
  timeout?: number | undefined;
528
528
  order?: number | undefined;
@@ -539,7 +539,7 @@ export declare const UpdateSlideshowRequestBody: z.ZodObject<{
539
539
  allProjects?: boolean | undefined;
540
540
  slides?: {
541
541
  id: string;
542
- speed?: string | undefined;
542
+ speed?: number | undefined;
543
543
  transition?: string | undefined;
544
544
  timeout?: number | undefined;
545
545
  order?: number | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "api-arreya-types",
3
- "version": "1.0.44",
3
+ "version": "1.0.45",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.js",
6
6
  "private": false,