api-arreya-types 1.0.33 → 1.0.36

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.
@@ -5,7 +5,7 @@ export declare const Slide: z.ZodObject<{
5
5
  title: z.ZodString;
6
6
  caption: z.ZodString;
7
7
  order: z.ZodNumber;
8
- fileId: z.ZodNumber;
8
+ fileId: z.ZodString;
9
9
  speed: z.ZodString;
10
10
  transition: z.ZodString;
11
11
  timeout: z.ZodNumber;
@@ -26,7 +26,7 @@ export declare const Slide: z.ZodObject<{
26
26
  end: Date | null;
27
27
  slideshowId: string;
28
28
  caption: string;
29
- fileId: number;
29
+ fileId: string;
30
30
  }, {
31
31
  id: string;
32
32
  createdAt: string | Date;
@@ -40,7 +40,7 @@ export declare const Slide: z.ZodObject<{
40
40
  end: Date | null;
41
41
  slideshowId: string;
42
42
  caption: string;
43
- fileId: number;
43
+ fileId: string;
44
44
  }>;
45
45
  export declare const CreateSlide: z.ZodObject<{
46
46
  id: z.ZodOptional<z.ZodString>;
@@ -48,7 +48,7 @@ export declare const CreateSlide: z.ZodObject<{
48
48
  title: z.ZodString;
49
49
  caption: z.ZodString;
50
50
  order: z.ZodNumber;
51
- fileId: z.ZodNumber;
51
+ fileId: z.ZodString;
52
52
  speed: z.ZodString;
53
53
  transition: z.ZodString;
54
54
  timeout: z.ZodNumber;
@@ -64,7 +64,7 @@ export declare const CreateSlide: z.ZodObject<{
64
64
  end: Date | null;
65
65
  slideshowId: string;
66
66
  caption: string;
67
- fileId: number;
67
+ fileId: string;
68
68
  id?: string | undefined;
69
69
  }, {
70
70
  speed: string;
@@ -76,7 +76,7 @@ export declare const CreateSlide: z.ZodObject<{
76
76
  end: Date | null;
77
77
  slideshowId: string;
78
78
  caption: string;
79
- fileId: number;
79
+ fileId: string;
80
80
  id?: string | undefined;
81
81
  }>;
82
82
  export declare const CreateSlides: z.ZodArray<z.ZodObject<{
@@ -85,7 +85,7 @@ export declare const CreateSlides: z.ZodArray<z.ZodObject<{
85
85
  title: z.ZodString;
86
86
  caption: z.ZodString;
87
87
  order: z.ZodNumber;
88
- fileId: z.ZodNumber;
88
+ fileId: z.ZodString;
89
89
  speed: z.ZodString;
90
90
  transition: z.ZodString;
91
91
  timeout: z.ZodNumber;
@@ -101,7 +101,7 @@ export declare const CreateSlides: z.ZodArray<z.ZodObject<{
101
101
  end: Date | null;
102
102
  slideshowId: string;
103
103
  caption: string;
104
- fileId: number;
104
+ fileId: string;
105
105
  id?: string | undefined;
106
106
  }, {
107
107
  speed: string;
@@ -113,7 +113,7 @@ export declare const CreateSlides: z.ZodArray<z.ZodObject<{
113
113
  end: Date | null;
114
114
  slideshowId: string;
115
115
  caption: string;
116
- fileId: number;
116
+ fileId: string;
117
117
  id?: string | undefined;
118
118
  }>, "many">;
119
119
  export declare const UpdateSlide: z.ZodObject<{
@@ -122,7 +122,7 @@ export declare const UpdateSlide: z.ZodObject<{
122
122
  title: z.ZodOptional<z.ZodString>;
123
123
  caption: z.ZodOptional<z.ZodString>;
124
124
  order: z.ZodOptional<z.ZodNumber>;
125
- fileId: z.ZodOptional<z.ZodNumber>;
125
+ fileId: z.ZodOptional<z.ZodString>;
126
126
  speed: z.ZodOptional<z.ZodString>;
127
127
  transition: z.ZodOptional<z.ZodString>;
128
128
  timeout: z.ZodOptional<z.ZodNumber>;
@@ -139,7 +139,7 @@ export declare const UpdateSlide: z.ZodObject<{
139
139
  end?: Date | null | undefined;
140
140
  slideshowId?: string | undefined;
141
141
  caption?: string | undefined;
142
- fileId?: number | undefined;
142
+ fileId?: string | undefined;
143
143
  }, {
144
144
  id: string;
145
145
  speed?: string | undefined;
@@ -151,7 +151,7 @@ export declare const UpdateSlide: z.ZodObject<{
151
151
  end?: Date | null | undefined;
152
152
  slideshowId?: string | undefined;
153
153
  caption?: string | undefined;
154
- fileId?: number | undefined;
154
+ fileId?: string | undefined;
155
155
  }>;
156
156
  export type Slide = z.infer<typeof Slide>;
157
157
  export type CreateSlide = z.infer<typeof CreateSlide>;
@@ -169,7 +169,7 @@ export declare const CreateSlideRequestBody: z.ZodObject<{
169
169
  title: z.ZodString;
170
170
  caption: z.ZodString;
171
171
  order: z.ZodNumber;
172
- fileId: z.ZodNumber;
172
+ fileId: z.ZodString;
173
173
  speed: z.ZodString;
174
174
  transition: z.ZodString;
175
175
  timeout: z.ZodNumber;
@@ -185,7 +185,7 @@ export declare const CreateSlideRequestBody: z.ZodObject<{
185
185
  end: Date | null;
186
186
  slideshowId: string;
187
187
  caption: string;
188
- fileId: number;
188
+ fileId: string;
189
189
  }, {
190
190
  speed: string;
191
191
  transition: string;
@@ -196,7 +196,7 @@ export declare const CreateSlideRequestBody: z.ZodObject<{
196
196
  end: Date | null;
197
197
  slideshowId: string;
198
198
  caption: string;
199
- fileId: number;
199
+ fileId: string;
200
200
  }>;
201
201
  export type CreateSlideRequestBody = z.infer<typeof CreateSlideRequestBody>;
202
202
  export declare const UpdateSlideRequestBody: z.ZodObject<{
@@ -204,7 +204,7 @@ export declare const UpdateSlideRequestBody: z.ZodObject<{
204
204
  title: z.ZodOptional<z.ZodString>;
205
205
  caption: z.ZodOptional<z.ZodString>;
206
206
  order: z.ZodOptional<z.ZodNumber>;
207
- fileId: z.ZodOptional<z.ZodNumber>;
207
+ fileId: z.ZodOptional<z.ZodString>;
208
208
  speed: z.ZodOptional<z.ZodString>;
209
209
  transition: z.ZodOptional<z.ZodString>;
210
210
  timeout: z.ZodOptional<z.ZodNumber>;
@@ -220,7 +220,7 @@ export declare const UpdateSlideRequestBody: z.ZodObject<{
220
220
  start?: Date | null | undefined;
221
221
  end?: Date | null | undefined;
222
222
  caption?: string | undefined;
223
- fileId?: number | undefined;
223
+ fileId?: string | undefined;
224
224
  }, {
225
225
  id: string;
226
226
  speed?: string | undefined;
@@ -231,6 +231,6 @@ export declare const UpdateSlideRequestBody: z.ZodObject<{
231
231
  start?: Date | null | undefined;
232
232
  end?: Date | null | undefined;
233
233
  caption?: string | undefined;
234
- fileId?: number | undefined;
234
+ fileId?: string | undefined;
235
235
  }>;
236
236
  export type UpdateSlideRequestBody = z.infer<typeof UpdateSlideRequestBody>;
@@ -9,7 +9,7 @@ exports.Slide = zod_1.z.object({
9
9
  title: zod_1.z.string(),
10
10
  caption: zod_1.z.string(),
11
11
  order: zod_1.z.number(),
12
- fileId: zod_1.z.number(),
12
+ fileId: zod_1.z.string(),
13
13
  speed: zod_1.z.string(),
14
14
  transition: zod_1.z.string(),
15
15
  timeout: zod_1.z.number(),
@@ -24,7 +24,7 @@ exports.CreateSlide = zod_1.z.object({
24
24
  title: zod_1.z.string(),
25
25
  caption: zod_1.z.string(),
26
26
  order: zod_1.z.number(),
27
- fileId: zod_1.z.number(),
27
+ fileId: zod_1.z.string(),
28
28
  speed: zod_1.z.string(),
29
29
  transition: zod_1.z.string(),
30
30
  timeout: zod_1.z.number(),
@@ -38,7 +38,7 @@ exports.UpdateSlide = zod_1.z.object({
38
38
  title: zod_1.z.string().optional(),
39
39
  caption: zod_1.z.string().optional(),
40
40
  order: zod_1.z.number().optional(),
41
- fileId: zod_1.z.number().optional(),
41
+ fileId: zod_1.z.string().optional(),
42
42
  speed: zod_1.z.string().optional(),
43
43
  transition: zod_1.z.string().optional(),
44
44
  timeout: zod_1.z.number().optional(),
@@ -55,7 +55,7 @@ exports.CreateSlideRequestBody = zod_1.z.object({
55
55
  title: zod_1.z.string(),
56
56
  caption: zod_1.z.string(),
57
57
  order: zod_1.z.number(),
58
- fileId: zod_1.z.number(),
58
+ fileId: zod_1.z.string(),
59
59
  speed: zod_1.z.string(),
60
60
  transition: zod_1.z.string(),
61
61
  timeout: zod_1.z.number(),
@@ -68,7 +68,7 @@ exports.UpdateSlideRequestBody = zod_1.z.object({
68
68
  title: zod_1.z.string().optional(),
69
69
  caption: zod_1.z.string().optional(),
70
70
  order: zod_1.z.number().optional(),
71
- fileId: zod_1.z.number().optional(),
71
+ fileId: zod_1.z.string().optional(),
72
72
  speed: zod_1.z.string().optional(),
73
73
  transition: zod_1.z.string().optional(),
74
74
  timeout: zod_1.z.number().optional(),
@@ -133,7 +133,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
133
133
  title: z.ZodString;
134
134
  caption: z.ZodString;
135
135
  order: z.ZodNumber;
136
- fileId: z.ZodNumber;
136
+ fileId: z.ZodString;
137
137
  speed: z.ZodString;
138
138
  transition: z.ZodString;
139
139
  timeout: z.ZodNumber;
@@ -154,7 +154,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
154
154
  end: Date | null;
155
155
  slideshowId: string;
156
156
  caption: string;
157
- fileId: number;
157
+ fileId: string;
158
158
  }, {
159
159
  id: string;
160
160
  createdAt: string | Date;
@@ -168,7 +168,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
168
168
  end: Date | null;
169
169
  slideshowId: string;
170
170
  caption: string;
171
- fileId: number;
171
+ fileId: string;
172
172
  }>, "many">;
173
173
  slideshowProjects: z.ZodArray<z.ZodObject<{
174
174
  id: z.ZodString;
@@ -216,7 +216,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
216
216
  end: Date | null;
217
217
  slideshowId: string;
218
218
  caption: string;
219
- fileId: number;
219
+ fileId: string;
220
220
  }[];
221
221
  }, {
222
222
  id: string;
@@ -245,7 +245,7 @@ export declare const SlideshowExtended: z.ZodObject<z.objectUtil.extendShape<{
245
245
  end: Date | null;
246
246
  slideshowId: string;
247
247
  caption: string;
248
- fileId: number;
248
+ fileId: string;
249
249
  }[];
250
250
  }>;
251
251
  export declare const CreateSlideshow: z.ZodObject<{
@@ -305,7 +305,7 @@ export declare const UpdateSlideshowRequestBody: z.ZodObject<{
305
305
  title: z.ZodOptional<z.ZodString>;
306
306
  caption: z.ZodOptional<z.ZodString>;
307
307
  order: z.ZodOptional<z.ZodNumber>;
308
- fileId: z.ZodOptional<z.ZodNumber>;
308
+ fileId: z.ZodOptional<z.ZodString>;
309
309
  speed: z.ZodOptional<z.ZodString>;
310
310
  transition: z.ZodOptional<z.ZodString>;
311
311
  timeout: z.ZodOptional<z.ZodNumber>;
@@ -322,7 +322,7 @@ export declare const UpdateSlideshowRequestBody: z.ZodObject<{
322
322
  end?: Date | null | undefined;
323
323
  slideshowId?: string | undefined;
324
324
  caption?: string | undefined;
325
- fileId?: number | undefined;
325
+ fileId?: string | undefined;
326
326
  }, {
327
327
  id: string;
328
328
  speed?: string | undefined;
@@ -334,7 +334,7 @@ export declare const UpdateSlideshowRequestBody: z.ZodObject<{
334
334
  end?: Date | null | undefined;
335
335
  slideshowId?: string | undefined;
336
336
  caption?: string | undefined;
337
- fileId?: number | undefined;
337
+ fileId?: string | undefined;
338
338
  }>, "many">>;
339
339
  deletedSlideIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
340
340
  allProjects: z.ZodOptional<z.ZodBoolean>;
@@ -355,7 +355,7 @@ export declare const UpdateSlideshowRequestBody: z.ZodObject<{
355
355
  end?: Date | null | undefined;
356
356
  slideshowId?: string | undefined;
357
357
  caption?: string | undefined;
358
- fileId?: number | undefined;
358
+ fileId?: string | undefined;
359
359
  }[] | undefined;
360
360
  }, {
361
361
  name?: string | undefined;
@@ -372,7 +372,7 @@ export declare const UpdateSlideshowRequestBody: z.ZodObject<{
372
372
  end?: Date | null | undefined;
373
373
  slideshowId?: string | undefined;
374
374
  caption?: string | undefined;
375
- fileId?: number | undefined;
375
+ fileId?: string | undefined;
376
376
  }[] | undefined;
377
377
  deletedSlideIds?: string[] | undefined;
378
378
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "api-arreya-types",
3
- "version": "1.0.33",
3
+ "version": "1.0.36",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.js",
6
6
  "private": false,