@kontent-ai/migration-toolkit 2.7.0 → 2.8.1

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.
@@ -23,31 +23,32 @@ type Element = {
23
23
  readonly mode?: UrlSlugMode;
24
24
  };
25
25
  type ElementType = 'text' | 'rich_text' | 'number' | 'multiple_choice' | 'date_time' | 'asset' | 'modular_content' | 'taxonomy' | 'url_slug' | 'custom' | 'subpages';
26
- export declare const MigrationUrlSlugModeSchema: z.ZodReadonly<z.ZodEnum<["autogenerated", "custom"]>>;
27
- export declare const MigrationElementTypeSchema: z.ZodReadonly<z.ZodEnum<["text", "rich_text", "number", "multiple_choice", "date_time", "asset", "modular_content", "taxonomy", "url_slug", "custom", "subpages"]>>;
26
+ export declare const MigrationUrlSlugModeSchema: z.ZodReadonly<z.ZodEnum<{
27
+ autogenerated: "autogenerated";
28
+ custom: "custom";
29
+ }>>;
30
+ export declare const MigrationElementTypeSchema: z.ZodReadonly<z.ZodEnum<{
31
+ number: "number";
32
+ custom: "custom";
33
+ text: "text";
34
+ rich_text: "rich_text";
35
+ multiple_choice: "multiple_choice";
36
+ date_time: "date_time";
37
+ asset: "asset";
38
+ modular_content: "modular_content";
39
+ taxonomy: "taxonomy";
40
+ url_slug: "url_slug";
41
+ subpages: "subpages";
42
+ }>>;
28
43
  export declare const MigrationReferenceSchema: z.ZodReadonly<z.ZodObject<{
29
44
  codename: z.ZodReadonly<z.ZodString>;
30
- }, "strict", z.ZodTypeAny, {
31
- codename: string;
32
- }, {
33
- codename: string;
34
- }>>;
45
+ }, z.core.$strict>>;
35
46
  export declare const ScheduleSchema: z.ZodReadonly<z.ZodObject<{
36
47
  publish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
37
48
  publish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
38
49
  unpublish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
39
50
  unpublish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
40
- }, "strict", z.ZodTypeAny, {
41
- publish_time?: string | undefined;
42
- publish_display_timezone?: string | undefined;
43
- unpublish_time?: string | undefined;
44
- unpublish_display_timezone?: string | undefined;
45
- }, {
46
- publish_time?: string | undefined;
47
- publish_display_timezone?: string | undefined;
48
- unpublish_time?: string | undefined;
49
- unpublish_display_timezone?: string | undefined;
50
- }>>;
51
+ }, z.core.$strict>>;
51
52
  /**
52
53
  * ZodType is needed to be specified here due to the use of 'lazy' & circular dependency between types
53
54
  * Otherwise TS has no way of statically inferring the type
@@ -58,900 +59,211 @@ export declare const MigrationComponentSchema: z.ZodReadonly<z.ZodObject<{
58
59
  id: z.ZodString;
59
60
  type: z.ZodReadonly<z.ZodObject<{
60
61
  codename: z.ZodReadonly<z.ZodString>;
61
- }, "strict", z.ZodTypeAny, {
62
- codename: string;
63
- }, {
64
- codename: string;
65
- }>>;
66
- }, "strict", z.ZodTypeAny, {
67
- type: Readonly<{
68
- codename: string;
69
- }>;
70
- id: string;
71
- }, {
72
- type: Readonly<{
73
- codename: string;
74
- }>;
75
- id: string;
76
- }>;
77
- elements: z.ZodReadonly<z.ZodType<Elements, z.ZodTypeDef, Elements>>;
78
- }, "strict", z.ZodTypeAny, {
79
- system: {
80
- type: Readonly<{
81
- codename: string;
82
- }>;
83
- id: string;
84
- };
85
- elements: Readonly<Elements>;
86
- }, {
87
- system: {
88
- type: Readonly<{
89
- codename: string;
90
- }>;
91
- id: string;
92
- };
93
- elements: Readonly<Elements>;
94
- }>>;
95
- export declare const MigrationElementValueSchema: z.ZodUnion<[z.ZodString, z.ZodUndefined, z.ZodNumber, z.ZodArray<z.ZodReadonly<z.ZodObject<{
62
+ }, z.core.$strict>>;
63
+ }, z.core.$strict>;
64
+ elements: z.ZodReadonly<z.ZodType<Elements, unknown, z.core.$ZodTypeInternals<Elements, unknown>>>;
65
+ }, z.core.$strict>>;
66
+ export declare const MigrationElementValueSchema: z.ZodUnion<readonly [z.ZodString, z.ZodUndefined, z.ZodNumber, z.ZodArray<z.ZodReadonly<z.ZodObject<{
96
67
  codename: z.ZodReadonly<z.ZodString>;
97
- }, "strict", z.ZodTypeAny, {
98
- codename: string;
99
- }, {
100
- codename: string;
101
- }>>, "many">]>;
68
+ }, z.core.$strict>>>]>;
102
69
  export declare const MigrationElementSchema: z.ZodReadonly<z.ZodObject<{
103
- type: z.ZodReadonly<z.ZodEnum<["text", "rich_text", "number", "multiple_choice", "date_time", "asset", "modular_content", "taxonomy", "url_slug", "custom", "subpages"]>>;
104
- value: z.ZodUnion<[z.ZodString, z.ZodUndefined, z.ZodNumber, z.ZodArray<z.ZodReadonly<z.ZodObject<{
70
+ type: z.ZodReadonly<z.ZodEnum<{
71
+ number: "number";
72
+ custom: "custom";
73
+ text: "text";
74
+ rich_text: "rich_text";
75
+ multiple_choice: "multiple_choice";
76
+ date_time: "date_time";
77
+ asset: "asset";
78
+ modular_content: "modular_content";
79
+ taxonomy: "taxonomy";
80
+ url_slug: "url_slug";
81
+ subpages: "subpages";
82
+ }>>;
83
+ value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodUndefined, z.ZodNumber, z.ZodArray<z.ZodReadonly<z.ZodObject<{
105
84
  codename: z.ZodReadonly<z.ZodString>;
106
- }, "strict", z.ZodTypeAny, {
107
- codename: string;
108
- }, {
109
- codename: string;
110
- }>>, "many">]>;
85
+ }, z.core.$strict>>>]>>;
111
86
  display_timezone: z.ZodOptional<z.ZodString>;
112
87
  components: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
113
88
  system: z.ZodObject<{
114
89
  id: z.ZodString;
115
90
  type: z.ZodReadonly<z.ZodObject<{
116
91
  codename: z.ZodReadonly<z.ZodString>;
117
- }, "strict", z.ZodTypeAny, {
118
- codename: string;
119
- }, {
120
- codename: string;
121
- }>>;
122
- }, "strict", z.ZodTypeAny, {
123
- type: Readonly<{
124
- codename: string;
125
- }>;
126
- id: string;
127
- }, {
128
- type: Readonly<{
129
- codename: string;
130
- }>;
131
- id: string;
132
- }>;
133
- elements: z.ZodReadonly<z.ZodType<Elements, z.ZodTypeDef, Elements>>;
134
- }, "strict", z.ZodTypeAny, {
135
- system: {
136
- type: Readonly<{
137
- codename: string;
138
- }>;
139
- id: string;
140
- };
141
- elements: Readonly<Elements>;
142
- }, {
143
- system: {
144
- type: Readonly<{
145
- codename: string;
146
- }>;
147
- id: string;
148
- };
149
- elements: Readonly<Elements>;
150
- }>>, "many">>>;
151
- mode: z.ZodOptional<z.ZodReadonly<z.ZodEnum<["autogenerated", "custom"]>>>;
152
- }, "strict", z.ZodTypeAny, {
153
- type: "number" | "custom" | "text" | "rich_text" | "multiple_choice" | "date_time" | "asset" | "modular_content" | "taxonomy" | "url_slug" | "subpages";
154
- value?: string | number | Readonly<{
155
- codename: string;
156
- }>[] | undefined;
157
- display_timezone?: string | undefined;
158
- components?: readonly Readonly<{
159
- system: {
160
- type: Readonly<{
161
- codename: string;
162
- }>;
163
- id: string;
164
- };
165
- elements: Readonly<Elements>;
166
- }>[] | undefined;
167
- mode?: "autogenerated" | "custom" | undefined;
168
- }, {
169
- type: "number" | "custom" | "text" | "rich_text" | "multiple_choice" | "date_time" | "asset" | "modular_content" | "taxonomy" | "url_slug" | "subpages";
170
- value?: string | number | Readonly<{
171
- codename: string;
172
- }>[] | undefined;
173
- display_timezone?: string | undefined;
174
- components?: readonly Readonly<{
175
- system: {
176
- type: Readonly<{
177
- codename: string;
178
- }>;
179
- id: string;
180
- };
181
- elements: Readonly<Elements>;
182
- }>[] | undefined;
183
- mode?: "autogenerated" | "custom" | undefined;
184
- }>>;
92
+ }, z.core.$strict>>;
93
+ }, z.core.$strict>;
94
+ elements: z.ZodReadonly<z.ZodType<Elements, unknown, z.core.$ZodTypeInternals<Elements, unknown>>>;
95
+ }, z.core.$strict>>>>>;
96
+ mode: z.ZodOptional<z.ZodReadonly<z.ZodEnum<{
97
+ autogenerated: "autogenerated";
98
+ custom: "custom";
99
+ }>>>;
100
+ }, z.core.$strict>>;
185
101
  export declare const MigrationItemVersionSchema: z.ZodReadonly<z.ZodObject<{
186
102
  workflow_step: z.ZodReadonly<z.ZodObject<{
187
103
  codename: z.ZodReadonly<z.ZodString>;
188
- }, "strict", z.ZodTypeAny, {
189
- codename: string;
190
- }, {
191
- codename: string;
192
- }>>;
193
- elements: z.ZodReadonly<z.ZodType<Elements, z.ZodTypeDef, Elements>>;
104
+ }, z.core.$strict>>;
105
+ elements: z.ZodReadonly<z.ZodType<Elements, unknown, z.core.$ZodTypeInternals<Elements, unknown>>>;
194
106
  schedule: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
195
107
  publish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
196
108
  publish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
197
109
  unpublish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
198
110
  unpublish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
199
- }, "strict", z.ZodTypeAny, {
200
- publish_time?: string | undefined;
201
- publish_display_timezone?: string | undefined;
202
- unpublish_time?: string | undefined;
203
- unpublish_display_timezone?: string | undefined;
204
- }, {
205
- publish_time?: string | undefined;
206
- publish_display_timezone?: string | undefined;
207
- unpublish_time?: string | undefined;
208
- unpublish_display_timezone?: string | undefined;
209
- }>>>;
210
- }, "strict", z.ZodTypeAny, {
211
- elements: Readonly<Elements>;
212
- workflow_step: Readonly<{
213
- codename: string;
214
- }>;
215
- schedule?: Readonly<{
216
- publish_time?: string | undefined;
217
- publish_display_timezone?: string | undefined;
218
- unpublish_time?: string | undefined;
219
- unpublish_display_timezone?: string | undefined;
220
- }> | undefined;
221
- }, {
222
- elements: Readonly<Elements>;
223
- workflow_step: Readonly<{
224
- codename: string;
225
- }>;
226
- schedule?: Readonly<{
227
- publish_time?: string | undefined;
228
- publish_display_timezone?: string | undefined;
229
- unpublish_time?: string | undefined;
230
- unpublish_display_timezone?: string | undefined;
231
- }> | undefined;
232
- }>>;
111
+ }, z.core.$strict>>>;
112
+ }, z.core.$strict>>;
233
113
  export declare const MigrationItemSystemSchema: z.ZodObject<{
234
114
  codename: z.ZodString;
235
115
  name: z.ZodString;
236
116
  language: z.ZodReadonly<z.ZodObject<{
237
117
  codename: z.ZodReadonly<z.ZodString>;
238
- }, "strict", z.ZodTypeAny, {
239
- codename: string;
240
- }, {
241
- codename: string;
242
- }>>;
118
+ }, z.core.$strict>>;
243
119
  type: z.ZodReadonly<z.ZodObject<{
244
120
  codename: z.ZodReadonly<z.ZodString>;
245
- }, "strict", z.ZodTypeAny, {
246
- codename: string;
247
- }, {
248
- codename: string;
249
- }>>;
121
+ }, z.core.$strict>>;
250
122
  collection: z.ZodReadonly<z.ZodObject<{
251
123
  codename: z.ZodReadonly<z.ZodString>;
252
- }, "strict", z.ZodTypeAny, {
253
- codename: string;
254
- }, {
255
- codename: string;
256
- }>>;
124
+ }, z.core.$strict>>;
257
125
  workflow: z.ZodReadonly<z.ZodObject<{
258
126
  codename: z.ZodReadonly<z.ZodString>;
259
- }, "strict", z.ZodTypeAny, {
260
- codename: string;
261
- }, {
262
- codename: string;
263
- }>>;
264
- }, "strict", z.ZodTypeAny, {
265
- codename: string;
266
- type: Readonly<{
267
- codename: string;
268
- }>;
269
- name: string;
270
- language: Readonly<{
271
- codename: string;
272
- }>;
273
- collection: Readonly<{
274
- codename: string;
275
- }>;
276
- workflow: Readonly<{
277
- codename: string;
278
- }>;
279
- }, {
280
- codename: string;
281
- type: Readonly<{
282
- codename: string;
283
- }>;
284
- name: string;
285
- language: Readonly<{
286
- codename: string;
287
- }>;
288
- collection: Readonly<{
289
- codename: string;
290
- }>;
291
- workflow: Readonly<{
292
- codename: string;
293
- }>;
294
- }>;
127
+ }, z.core.$strict>>;
128
+ }, z.core.$strict>;
295
129
  export declare const MigrationItemSchema: z.ZodReadonly<z.ZodObject<{
296
130
  system: z.ZodObject<{
297
131
  codename: z.ZodString;
298
132
  name: z.ZodString;
299
133
  language: z.ZodReadonly<z.ZodObject<{
300
134
  codename: z.ZodReadonly<z.ZodString>;
301
- }, "strict", z.ZodTypeAny, {
302
- codename: string;
303
- }, {
304
- codename: string;
305
- }>>;
135
+ }, z.core.$strict>>;
306
136
  type: z.ZodReadonly<z.ZodObject<{
307
137
  codename: z.ZodReadonly<z.ZodString>;
308
- }, "strict", z.ZodTypeAny, {
309
- codename: string;
310
- }, {
311
- codename: string;
312
- }>>;
138
+ }, z.core.$strict>>;
313
139
  collection: z.ZodReadonly<z.ZodObject<{
314
140
  codename: z.ZodReadonly<z.ZodString>;
315
- }, "strict", z.ZodTypeAny, {
316
- codename: string;
317
- }, {
318
- codename: string;
319
- }>>;
141
+ }, z.core.$strict>>;
320
142
  workflow: z.ZodReadonly<z.ZodObject<{
321
143
  codename: z.ZodReadonly<z.ZodString>;
322
- }, "strict", z.ZodTypeAny, {
323
- codename: string;
324
- }, {
325
- codename: string;
326
- }>>;
327
- }, "strict", z.ZodTypeAny, {
328
- codename: string;
329
- type: Readonly<{
330
- codename: string;
331
- }>;
332
- name: string;
333
- language: Readonly<{
334
- codename: string;
335
- }>;
336
- collection: Readonly<{
337
- codename: string;
338
- }>;
339
- workflow: Readonly<{
340
- codename: string;
341
- }>;
342
- }, {
343
- codename: string;
344
- type: Readonly<{
345
- codename: string;
346
- }>;
347
- name: string;
348
- language: Readonly<{
349
- codename: string;
350
- }>;
351
- collection: Readonly<{
352
- codename: string;
353
- }>;
354
- workflow: Readonly<{
355
- codename: string;
356
- }>;
357
- }>;
144
+ }, z.core.$strict>>;
145
+ }, z.core.$strict>;
358
146
  versions: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
359
147
  workflow_step: z.ZodReadonly<z.ZodObject<{
360
148
  codename: z.ZodReadonly<z.ZodString>;
361
- }, "strict", z.ZodTypeAny, {
362
- codename: string;
363
- }, {
364
- codename: string;
365
- }>>;
366
- elements: z.ZodReadonly<z.ZodType<Elements, z.ZodTypeDef, Elements>>;
149
+ }, z.core.$strict>>;
150
+ elements: z.ZodReadonly<z.ZodType<Elements, unknown, z.core.$ZodTypeInternals<Elements, unknown>>>;
367
151
  schedule: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
368
152
  publish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
369
153
  publish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
370
154
  unpublish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
371
155
  unpublish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
372
- }, "strict", z.ZodTypeAny, {
373
- publish_time?: string | undefined;
374
- publish_display_timezone?: string | undefined;
375
- unpublish_time?: string | undefined;
376
- unpublish_display_timezone?: string | undefined;
377
- }, {
378
- publish_time?: string | undefined;
379
- publish_display_timezone?: string | undefined;
380
- unpublish_time?: string | undefined;
381
- unpublish_display_timezone?: string | undefined;
382
- }>>>;
383
- }, "strict", z.ZodTypeAny, {
384
- elements: Readonly<Elements>;
385
- workflow_step: Readonly<{
386
- codename: string;
387
- }>;
388
- schedule?: Readonly<{
389
- publish_time?: string | undefined;
390
- publish_display_timezone?: string | undefined;
391
- unpublish_time?: string | undefined;
392
- unpublish_display_timezone?: string | undefined;
393
- }> | undefined;
394
- }, {
395
- elements: Readonly<Elements>;
396
- workflow_step: Readonly<{
397
- codename: string;
398
- }>;
399
- schedule?: Readonly<{
400
- publish_time?: string | undefined;
401
- publish_display_timezone?: string | undefined;
402
- unpublish_time?: string | undefined;
403
- unpublish_display_timezone?: string | undefined;
404
- }> | undefined;
405
- }>>, "many">>;
406
- }, "strict", z.ZodTypeAny, {
407
- system: {
408
- codename: string;
409
- type: Readonly<{
410
- codename: string;
411
- }>;
412
- name: string;
413
- language: Readonly<{
414
- codename: string;
415
- }>;
416
- collection: Readonly<{
417
- codename: string;
418
- }>;
419
- workflow: Readonly<{
420
- codename: string;
421
- }>;
422
- };
423
- versions: readonly Readonly<{
424
- elements: Readonly<Elements>;
425
- workflow_step: Readonly<{
426
- codename: string;
427
- }>;
428
- schedule?: Readonly<{
429
- publish_time?: string | undefined;
430
- publish_display_timezone?: string | undefined;
431
- unpublish_time?: string | undefined;
432
- unpublish_display_timezone?: string | undefined;
433
- }> | undefined;
434
- }>[];
435
- }, {
436
- system: {
437
- codename: string;
438
- type: Readonly<{
439
- codename: string;
440
- }>;
441
- name: string;
442
- language: Readonly<{
443
- codename: string;
444
- }>;
445
- collection: Readonly<{
446
- codename: string;
447
- }>;
448
- workflow: Readonly<{
449
- codename: string;
450
- }>;
451
- };
452
- versions: readonly Readonly<{
453
- elements: Readonly<Elements>;
454
- workflow_step: Readonly<{
455
- codename: string;
456
- }>;
457
- schedule?: Readonly<{
458
- publish_time?: string | undefined;
459
- publish_display_timezone?: string | undefined;
460
- unpublish_time?: string | undefined;
461
- unpublish_display_timezone?: string | undefined;
462
- }> | undefined;
463
- }>[];
464
- }>>;
156
+ }, z.core.$strict>>>;
157
+ }, z.core.$strict>>>>;
158
+ }, z.core.$strict>>;
465
159
  export declare const MigrationAssetDescriptionSchema: z.ZodReadonly<z.ZodObject<{
466
160
  language: z.ZodReadonly<z.ZodObject<{
467
161
  codename: z.ZodReadonly<z.ZodString>;
468
- }, "strict", z.ZodTypeAny, {
469
- codename: string;
470
- }, {
471
- codename: string;
472
- }>>;
162
+ }, z.core.$strict>>;
473
163
  description: z.ZodOptional<z.ZodString>;
474
- }, "strict", z.ZodTypeAny, {
475
- language: Readonly<{
476
- codename: string;
477
- }>;
478
- description?: string | undefined;
479
- }, {
480
- language: Readonly<{
481
- codename: string;
482
- }>;
483
- description?: string | undefined;
484
- }>>;
485
- export declare const MigrationAssetSchema: z.ZodReadonly<z.ZodObject<z.objectUtil.extendShape<{
164
+ }, z.core.$strict>>;
165
+ export declare const MigrationAssetSchema: z.ZodReadonly<z.ZodObject<{
486
166
  codename: z.ZodString;
487
167
  filename: z.ZodString;
488
168
  title: z.ZodString;
489
169
  collection: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
490
170
  codename: z.ZodReadonly<z.ZodString>;
491
- }, "strict", z.ZodTypeAny, {
492
- codename: string;
493
- }, {
494
- codename: string;
495
- }>>>;
171
+ }, z.core.$strict>>>;
496
172
  descriptions: z.ZodReadonly<z.ZodOptional<z.ZodArray<z.ZodReadonly<z.ZodObject<{
497
173
  language: z.ZodReadonly<z.ZodObject<{
498
174
  codename: z.ZodReadonly<z.ZodString>;
499
- }, "strict", z.ZodTypeAny, {
500
- codename: string;
501
- }, {
502
- codename: string;
503
- }>>;
175
+ }, z.core.$strict>>;
504
176
  description: z.ZodOptional<z.ZodString>;
505
- }, "strict", z.ZodTypeAny, {
506
- language: Readonly<{
507
- codename: string;
508
- }>;
509
- description?: string | undefined;
510
- }, {
511
- language: Readonly<{
512
- codename: string;
513
- }>;
514
- description?: string | undefined;
515
- }>>, "many">>>;
177
+ }, z.core.$strict>>>>>;
516
178
  folder: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
517
179
  codename: z.ZodReadonly<z.ZodString>;
518
- }, "strict", z.ZodTypeAny, {
519
- codename: string;
520
- }, {
521
- codename: string;
522
- }>>>;
523
- }, {
524
- binary_data: z.ZodUnion<[z.ZodType<BufferProxy<ArrayBufferLike>, z.ZodTypeDef, BufferProxy<ArrayBufferLike>>, z.ZodType<import("buffer").Blob, z.ZodTypeDef, import("buffer").Blob>]>;
525
- }>, "strict", z.ZodTypeAny, {
526
- codename: string;
527
- filename: string;
528
- title: string;
529
- binary_data: BufferProxy<ArrayBufferLike> | import("buffer").Blob;
530
- collection?: Readonly<{
531
- codename: string;
532
- }> | undefined;
533
- descriptions?: readonly Readonly<{
534
- language: Readonly<{
535
- codename: string;
536
- }>;
537
- description?: string | undefined;
538
- }>[] | undefined;
539
- folder?: Readonly<{
540
- codename: string;
541
- }> | undefined;
542
- }, {
543
- codename: string;
544
- filename: string;
545
- title: string;
546
- binary_data: BufferProxy<ArrayBufferLike> | import("buffer").Blob;
547
- collection?: Readonly<{
548
- codename: string;
549
- }> | undefined;
550
- descriptions?: readonly Readonly<{
551
- language: Readonly<{
552
- codename: string;
553
- }>;
554
- description?: string | undefined;
555
- }>[] | undefined;
556
- folder?: Readonly<{
557
- codename: string;
558
- }> | undefined;
559
- }>>;
560
- export declare const ZipMigrationAssetSchema: z.ZodReadonly<z.ZodObject<z.objectUtil.extendShape<{
180
+ }, z.core.$strict>>>;
181
+ binary_data: z.ZodUnion<readonly [z.ZodCustom<BufferProxy<ArrayBufferLike>, BufferProxy<ArrayBufferLike>>, z.ZodCustom<import("buffer").Blob, import("buffer").Blob>]>;
182
+ }, z.core.$strict>>;
183
+ export declare const ZipMigrationAssetSchema: z.ZodReadonly<z.ZodObject<{
561
184
  codename: z.ZodString;
562
185
  filename: z.ZodString;
563
186
  title: z.ZodString;
564
187
  collection: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
565
188
  codename: z.ZodReadonly<z.ZodString>;
566
- }, "strict", z.ZodTypeAny, {
567
- codename: string;
568
- }, {
569
- codename: string;
570
- }>>>;
189
+ }, z.core.$strict>>>;
571
190
  descriptions: z.ZodReadonly<z.ZodOptional<z.ZodArray<z.ZodReadonly<z.ZodObject<{
572
191
  language: z.ZodReadonly<z.ZodObject<{
573
192
  codename: z.ZodReadonly<z.ZodString>;
574
- }, "strict", z.ZodTypeAny, {
575
- codename: string;
576
- }, {
577
- codename: string;
578
- }>>;
193
+ }, z.core.$strict>>;
579
194
  description: z.ZodOptional<z.ZodString>;
580
- }, "strict", z.ZodTypeAny, {
581
- language: Readonly<{
582
- codename: string;
583
- }>;
584
- description?: string | undefined;
585
- }, {
586
- language: Readonly<{
587
- codename: string;
588
- }>;
589
- description?: string | undefined;
590
- }>>, "many">>>;
195
+ }, z.core.$strict>>>>>;
591
196
  folder: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
592
197
  codename: z.ZodReadonly<z.ZodString>;
593
- }, "strict", z.ZodTypeAny, {
594
- codename: string;
595
- }, {
596
- codename: string;
597
- }>>>;
598
- }, {
198
+ }, z.core.$strict>>>;
599
199
  _zipFilename: z.ZodString;
600
- }>, "strict", z.ZodTypeAny, {
601
- codename: string;
602
- filename: string;
603
- title: string;
604
- _zipFilename: string;
605
- collection?: Readonly<{
606
- codename: string;
607
- }> | undefined;
608
- descriptions?: readonly Readonly<{
609
- language: Readonly<{
610
- codename: string;
611
- }>;
612
- description?: string | undefined;
613
- }>[] | undefined;
614
- folder?: Readonly<{
615
- codename: string;
616
- }> | undefined;
617
- }, {
618
- codename: string;
619
- filename: string;
620
- title: string;
621
- _zipFilename: string;
622
- collection?: Readonly<{
623
- codename: string;
624
- }> | undefined;
625
- descriptions?: readonly Readonly<{
626
- language: Readonly<{
627
- codename: string;
628
- }>;
629
- description?: string | undefined;
630
- }>[] | undefined;
631
- folder?: Readonly<{
632
- codename: string;
633
- }> | undefined;
634
- }>>;
635
- export declare const MigrationAssetsSchema: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<z.objectUtil.extendShape<{
200
+ }, z.core.$strict>>;
201
+ export declare const MigrationAssetsSchema: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
636
202
  codename: z.ZodString;
637
203
  filename: z.ZodString;
638
204
  title: z.ZodString;
639
205
  collection: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
640
206
  codename: z.ZodReadonly<z.ZodString>;
641
- }, "strict", z.ZodTypeAny, {
642
- codename: string;
643
- }, {
644
- codename: string;
645
- }>>>;
207
+ }, z.core.$strict>>>;
646
208
  descriptions: z.ZodReadonly<z.ZodOptional<z.ZodArray<z.ZodReadonly<z.ZodObject<{
647
209
  language: z.ZodReadonly<z.ZodObject<{
648
210
  codename: z.ZodReadonly<z.ZodString>;
649
- }, "strict", z.ZodTypeAny, {
650
- codename: string;
651
- }, {
652
- codename: string;
653
- }>>;
211
+ }, z.core.$strict>>;
654
212
  description: z.ZodOptional<z.ZodString>;
655
- }, "strict", z.ZodTypeAny, {
656
- language: Readonly<{
657
- codename: string;
658
- }>;
659
- description?: string | undefined;
660
- }, {
661
- language: Readonly<{
662
- codename: string;
663
- }>;
664
- description?: string | undefined;
665
- }>>, "many">>>;
213
+ }, z.core.$strict>>>>>;
666
214
  folder: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
667
215
  codename: z.ZodReadonly<z.ZodString>;
668
- }, "strict", z.ZodTypeAny, {
669
- codename: string;
670
- }, {
671
- codename: string;
672
- }>>>;
673
- }, {
674
- binary_data: z.ZodUnion<[z.ZodType<BufferProxy<ArrayBufferLike>, z.ZodTypeDef, BufferProxy<ArrayBufferLike>>, z.ZodType<import("buffer").Blob, z.ZodTypeDef, import("buffer").Blob>]>;
675
- }>, "strict", z.ZodTypeAny, {
676
- codename: string;
677
- filename: string;
678
- title: string;
679
- binary_data: BufferProxy<ArrayBufferLike> | import("buffer").Blob;
680
- collection?: Readonly<{
681
- codename: string;
682
- }> | undefined;
683
- descriptions?: readonly Readonly<{
684
- language: Readonly<{
685
- codename: string;
686
- }>;
687
- description?: string | undefined;
688
- }>[] | undefined;
689
- folder?: Readonly<{
690
- codename: string;
691
- }> | undefined;
692
- }, {
693
- codename: string;
694
- filename: string;
695
- title: string;
696
- binary_data: BufferProxy<ArrayBufferLike> | import("buffer").Blob;
697
- collection?: Readonly<{
698
- codename: string;
699
- }> | undefined;
700
- descriptions?: readonly Readonly<{
701
- language: Readonly<{
702
- codename: string;
703
- }>;
704
- description?: string | undefined;
705
- }>[] | undefined;
706
- folder?: Readonly<{
707
- codename: string;
708
- }> | undefined;
709
- }>>, "many">>;
710
- export declare const ZipMigrationAssetsSchema: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<z.objectUtil.extendShape<{
216
+ }, z.core.$strict>>>;
217
+ binary_data: z.ZodUnion<readonly [z.ZodCustom<BufferProxy<ArrayBufferLike>, BufferProxy<ArrayBufferLike>>, z.ZodCustom<import("buffer").Blob, import("buffer").Blob>]>;
218
+ }, z.core.$strict>>>>;
219
+ export declare const ZipMigrationAssetsSchema: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
711
220
  codename: z.ZodString;
712
221
  filename: z.ZodString;
713
222
  title: z.ZodString;
714
223
  collection: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
715
224
  codename: z.ZodReadonly<z.ZodString>;
716
- }, "strict", z.ZodTypeAny, {
717
- codename: string;
718
- }, {
719
- codename: string;
720
- }>>>;
225
+ }, z.core.$strict>>>;
721
226
  descriptions: z.ZodReadonly<z.ZodOptional<z.ZodArray<z.ZodReadonly<z.ZodObject<{
722
227
  language: z.ZodReadonly<z.ZodObject<{
723
228
  codename: z.ZodReadonly<z.ZodString>;
724
- }, "strict", z.ZodTypeAny, {
725
- codename: string;
726
- }, {
727
- codename: string;
728
- }>>;
229
+ }, z.core.$strict>>;
729
230
  description: z.ZodOptional<z.ZodString>;
730
- }, "strict", z.ZodTypeAny, {
731
- language: Readonly<{
732
- codename: string;
733
- }>;
734
- description?: string | undefined;
735
- }, {
736
- language: Readonly<{
737
- codename: string;
738
- }>;
739
- description?: string | undefined;
740
- }>>, "many">>>;
231
+ }, z.core.$strict>>>>>;
741
232
  folder: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
742
233
  codename: z.ZodReadonly<z.ZodString>;
743
- }, "strict", z.ZodTypeAny, {
744
- codename: string;
745
- }, {
746
- codename: string;
747
- }>>>;
748
- }, {
234
+ }, z.core.$strict>>>;
749
235
  _zipFilename: z.ZodString;
750
- }>, "strict", z.ZodTypeAny, {
751
- codename: string;
752
- filename: string;
753
- title: string;
754
- _zipFilename: string;
755
- collection?: Readonly<{
756
- codename: string;
757
- }> | undefined;
758
- descriptions?: readonly Readonly<{
759
- language: Readonly<{
760
- codename: string;
761
- }>;
762
- description?: string | undefined;
763
- }>[] | undefined;
764
- folder?: Readonly<{
765
- codename: string;
766
- }> | undefined;
767
- }, {
768
- codename: string;
769
- filename: string;
770
- title: string;
771
- _zipFilename: string;
772
- collection?: Readonly<{
773
- codename: string;
774
- }> | undefined;
775
- descriptions?: readonly Readonly<{
776
- language: Readonly<{
777
- codename: string;
778
- }>;
779
- description?: string | undefined;
780
- }>[] | undefined;
781
- folder?: Readonly<{
782
- codename: string;
783
- }> | undefined;
784
- }>>, "many">>;
236
+ }, z.core.$strict>>>>;
785
237
  export declare const MigrationItemsSchema: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
786
238
  system: z.ZodObject<{
787
239
  codename: z.ZodString;
788
240
  name: z.ZodString;
789
241
  language: z.ZodReadonly<z.ZodObject<{
790
242
  codename: z.ZodReadonly<z.ZodString>;
791
- }, "strict", z.ZodTypeAny, {
792
- codename: string;
793
- }, {
794
- codename: string;
795
- }>>;
243
+ }, z.core.$strict>>;
796
244
  type: z.ZodReadonly<z.ZodObject<{
797
245
  codename: z.ZodReadonly<z.ZodString>;
798
- }, "strict", z.ZodTypeAny, {
799
- codename: string;
800
- }, {
801
- codename: string;
802
- }>>;
246
+ }, z.core.$strict>>;
803
247
  collection: z.ZodReadonly<z.ZodObject<{
804
248
  codename: z.ZodReadonly<z.ZodString>;
805
- }, "strict", z.ZodTypeAny, {
806
- codename: string;
807
- }, {
808
- codename: string;
809
- }>>;
249
+ }, z.core.$strict>>;
810
250
  workflow: z.ZodReadonly<z.ZodObject<{
811
251
  codename: z.ZodReadonly<z.ZodString>;
812
- }, "strict", z.ZodTypeAny, {
813
- codename: string;
814
- }, {
815
- codename: string;
816
- }>>;
817
- }, "strict", z.ZodTypeAny, {
818
- codename: string;
819
- type: Readonly<{
820
- codename: string;
821
- }>;
822
- name: string;
823
- language: Readonly<{
824
- codename: string;
825
- }>;
826
- collection: Readonly<{
827
- codename: string;
828
- }>;
829
- workflow: Readonly<{
830
- codename: string;
831
- }>;
832
- }, {
833
- codename: string;
834
- type: Readonly<{
835
- codename: string;
836
- }>;
837
- name: string;
838
- language: Readonly<{
839
- codename: string;
840
- }>;
841
- collection: Readonly<{
842
- codename: string;
843
- }>;
844
- workflow: Readonly<{
845
- codename: string;
846
- }>;
847
- }>;
252
+ }, z.core.$strict>>;
253
+ }, z.core.$strict>;
848
254
  versions: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
849
255
  workflow_step: z.ZodReadonly<z.ZodObject<{
850
256
  codename: z.ZodReadonly<z.ZodString>;
851
- }, "strict", z.ZodTypeAny, {
852
- codename: string;
853
- }, {
854
- codename: string;
855
- }>>;
856
- elements: z.ZodReadonly<z.ZodType<Elements, z.ZodTypeDef, Elements>>;
257
+ }, z.core.$strict>>;
258
+ elements: z.ZodReadonly<z.ZodType<Elements, unknown, z.core.$ZodTypeInternals<Elements, unknown>>>;
857
259
  schedule: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
858
260
  publish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
859
261
  publish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
860
262
  unpublish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
861
263
  unpublish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
862
- }, "strict", z.ZodTypeAny, {
863
- publish_time?: string | undefined;
864
- publish_display_timezone?: string | undefined;
865
- unpublish_time?: string | undefined;
866
- unpublish_display_timezone?: string | undefined;
867
- }, {
868
- publish_time?: string | undefined;
869
- publish_display_timezone?: string | undefined;
870
- unpublish_time?: string | undefined;
871
- unpublish_display_timezone?: string | undefined;
872
- }>>>;
873
- }, "strict", z.ZodTypeAny, {
874
- elements: Readonly<Elements>;
875
- workflow_step: Readonly<{
876
- codename: string;
877
- }>;
878
- schedule?: Readonly<{
879
- publish_time?: string | undefined;
880
- publish_display_timezone?: string | undefined;
881
- unpublish_time?: string | undefined;
882
- unpublish_display_timezone?: string | undefined;
883
- }> | undefined;
884
- }, {
885
- elements: Readonly<Elements>;
886
- workflow_step: Readonly<{
887
- codename: string;
888
- }>;
889
- schedule?: Readonly<{
890
- publish_time?: string | undefined;
891
- publish_display_timezone?: string | undefined;
892
- unpublish_time?: string | undefined;
893
- unpublish_display_timezone?: string | undefined;
894
- }> | undefined;
895
- }>>, "many">>;
896
- }, "strict", z.ZodTypeAny, {
897
- system: {
898
- codename: string;
899
- type: Readonly<{
900
- codename: string;
901
- }>;
902
- name: string;
903
- language: Readonly<{
904
- codename: string;
905
- }>;
906
- collection: Readonly<{
907
- codename: string;
908
- }>;
909
- workflow: Readonly<{
910
- codename: string;
911
- }>;
912
- };
913
- versions: readonly Readonly<{
914
- elements: Readonly<Elements>;
915
- workflow_step: Readonly<{
916
- codename: string;
917
- }>;
918
- schedule?: Readonly<{
919
- publish_time?: string | undefined;
920
- publish_display_timezone?: string | undefined;
921
- unpublish_time?: string | undefined;
922
- unpublish_display_timezone?: string | undefined;
923
- }> | undefined;
924
- }>[];
925
- }, {
926
- system: {
927
- codename: string;
928
- type: Readonly<{
929
- codename: string;
930
- }>;
931
- name: string;
932
- language: Readonly<{
933
- codename: string;
934
- }>;
935
- collection: Readonly<{
936
- codename: string;
937
- }>;
938
- workflow: Readonly<{
939
- codename: string;
940
- }>;
941
- };
942
- versions: readonly Readonly<{
943
- elements: Readonly<Elements>;
944
- workflow_step: Readonly<{
945
- codename: string;
946
- }>;
947
- schedule?: Readonly<{
948
- publish_time?: string | undefined;
949
- publish_display_timezone?: string | undefined;
950
- unpublish_time?: string | undefined;
951
- unpublish_display_timezone?: string | undefined;
952
- }> | undefined;
953
- }>[];
954
- }>>, "many">>;
264
+ }, z.core.$strict>>>;
265
+ }, z.core.$strict>>>>;
266
+ }, z.core.$strict>>>>;
955
267
  export declare const MigrationDataSchema: z.ZodReadonly<z.ZodObject<{
956
268
  items: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
957
269
  system: z.ZodObject<{
@@ -959,342 +271,47 @@ export declare const MigrationDataSchema: z.ZodReadonly<z.ZodObject<{
959
271
  name: z.ZodString;
960
272
  language: z.ZodReadonly<z.ZodObject<{
961
273
  codename: z.ZodReadonly<z.ZodString>;
962
- }, "strict", z.ZodTypeAny, {
963
- codename: string;
964
- }, {
965
- codename: string;
966
- }>>;
274
+ }, z.core.$strict>>;
967
275
  type: z.ZodReadonly<z.ZodObject<{
968
276
  codename: z.ZodReadonly<z.ZodString>;
969
- }, "strict", z.ZodTypeAny, {
970
- codename: string;
971
- }, {
972
- codename: string;
973
- }>>;
277
+ }, z.core.$strict>>;
974
278
  collection: z.ZodReadonly<z.ZodObject<{
975
279
  codename: z.ZodReadonly<z.ZodString>;
976
- }, "strict", z.ZodTypeAny, {
977
- codename: string;
978
- }, {
979
- codename: string;
980
- }>>;
280
+ }, z.core.$strict>>;
981
281
  workflow: z.ZodReadonly<z.ZodObject<{
982
282
  codename: z.ZodReadonly<z.ZodString>;
983
- }, "strict", z.ZodTypeAny, {
984
- codename: string;
985
- }, {
986
- codename: string;
987
- }>>;
988
- }, "strict", z.ZodTypeAny, {
989
- codename: string;
990
- type: Readonly<{
991
- codename: string;
992
- }>;
993
- name: string;
994
- language: Readonly<{
995
- codename: string;
996
- }>;
997
- collection: Readonly<{
998
- codename: string;
999
- }>;
1000
- workflow: Readonly<{
1001
- codename: string;
1002
- }>;
1003
- }, {
1004
- codename: string;
1005
- type: Readonly<{
1006
- codename: string;
1007
- }>;
1008
- name: string;
1009
- language: Readonly<{
1010
- codename: string;
1011
- }>;
1012
- collection: Readonly<{
1013
- codename: string;
1014
- }>;
1015
- workflow: Readonly<{
1016
- codename: string;
1017
- }>;
1018
- }>;
283
+ }, z.core.$strict>>;
284
+ }, z.core.$strict>;
1019
285
  versions: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
1020
286
  workflow_step: z.ZodReadonly<z.ZodObject<{
1021
287
  codename: z.ZodReadonly<z.ZodString>;
1022
- }, "strict", z.ZodTypeAny, {
1023
- codename: string;
1024
- }, {
1025
- codename: string;
1026
- }>>;
1027
- elements: z.ZodReadonly<z.ZodType<Elements, z.ZodTypeDef, Elements>>;
288
+ }, z.core.$strict>>;
289
+ elements: z.ZodReadonly<z.ZodType<Elements, unknown, z.core.$ZodTypeInternals<Elements, unknown>>>;
1028
290
  schedule: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
1029
291
  publish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
1030
292
  publish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
1031
293
  unpublish_time: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
1032
294
  unpublish_display_timezone: z.ZodReadonly<z.ZodOptional<z.ZodString>>;
1033
- }, "strict", z.ZodTypeAny, {
1034
- publish_time?: string | undefined;
1035
- publish_display_timezone?: string | undefined;
1036
- unpublish_time?: string | undefined;
1037
- unpublish_display_timezone?: string | undefined;
1038
- }, {
1039
- publish_time?: string | undefined;
1040
- publish_display_timezone?: string | undefined;
1041
- unpublish_time?: string | undefined;
1042
- unpublish_display_timezone?: string | undefined;
1043
- }>>>;
1044
- }, "strict", z.ZodTypeAny, {
1045
- elements: Readonly<Elements>;
1046
- workflow_step: Readonly<{
1047
- codename: string;
1048
- }>;
1049
- schedule?: Readonly<{
1050
- publish_time?: string | undefined;
1051
- publish_display_timezone?: string | undefined;
1052
- unpublish_time?: string | undefined;
1053
- unpublish_display_timezone?: string | undefined;
1054
- }> | undefined;
1055
- }, {
1056
- elements: Readonly<Elements>;
1057
- workflow_step: Readonly<{
1058
- codename: string;
1059
- }>;
1060
- schedule?: Readonly<{
1061
- publish_time?: string | undefined;
1062
- publish_display_timezone?: string | undefined;
1063
- unpublish_time?: string | undefined;
1064
- unpublish_display_timezone?: string | undefined;
1065
- }> | undefined;
1066
- }>>, "many">>;
1067
- }, "strict", z.ZodTypeAny, {
1068
- system: {
1069
- codename: string;
1070
- type: Readonly<{
1071
- codename: string;
1072
- }>;
1073
- name: string;
1074
- language: Readonly<{
1075
- codename: string;
1076
- }>;
1077
- collection: Readonly<{
1078
- codename: string;
1079
- }>;
1080
- workflow: Readonly<{
1081
- codename: string;
1082
- }>;
1083
- };
1084
- versions: readonly Readonly<{
1085
- elements: Readonly<Elements>;
1086
- workflow_step: Readonly<{
1087
- codename: string;
1088
- }>;
1089
- schedule?: Readonly<{
1090
- publish_time?: string | undefined;
1091
- publish_display_timezone?: string | undefined;
1092
- unpublish_time?: string | undefined;
1093
- unpublish_display_timezone?: string | undefined;
1094
- }> | undefined;
1095
- }>[];
1096
- }, {
1097
- system: {
1098
- codename: string;
1099
- type: Readonly<{
1100
- codename: string;
1101
- }>;
1102
- name: string;
1103
- language: Readonly<{
1104
- codename: string;
1105
- }>;
1106
- collection: Readonly<{
1107
- codename: string;
1108
- }>;
1109
- workflow: Readonly<{
1110
- codename: string;
1111
- }>;
1112
- };
1113
- versions: readonly Readonly<{
1114
- elements: Readonly<Elements>;
1115
- workflow_step: Readonly<{
1116
- codename: string;
1117
- }>;
1118
- schedule?: Readonly<{
1119
- publish_time?: string | undefined;
1120
- publish_display_timezone?: string | undefined;
1121
- unpublish_time?: string | undefined;
1122
- unpublish_display_timezone?: string | undefined;
1123
- }> | undefined;
1124
- }>[];
1125
- }>>, "many">>;
1126
- assets: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<z.objectUtil.extendShape<{
295
+ }, z.core.$strict>>>;
296
+ }, z.core.$strict>>>>;
297
+ }, z.core.$strict>>>>;
298
+ assets: z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
1127
299
  codename: z.ZodString;
1128
300
  filename: z.ZodString;
1129
301
  title: z.ZodString;
1130
302
  collection: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
1131
303
  codename: z.ZodReadonly<z.ZodString>;
1132
- }, "strict", z.ZodTypeAny, {
1133
- codename: string;
1134
- }, {
1135
- codename: string;
1136
- }>>>;
304
+ }, z.core.$strict>>>;
1137
305
  descriptions: z.ZodReadonly<z.ZodOptional<z.ZodArray<z.ZodReadonly<z.ZodObject<{
1138
306
  language: z.ZodReadonly<z.ZodObject<{
1139
307
  codename: z.ZodReadonly<z.ZodString>;
1140
- }, "strict", z.ZodTypeAny, {
1141
- codename: string;
1142
- }, {
1143
- codename: string;
1144
- }>>;
308
+ }, z.core.$strict>>;
1145
309
  description: z.ZodOptional<z.ZodString>;
1146
- }, "strict", z.ZodTypeAny, {
1147
- language: Readonly<{
1148
- codename: string;
1149
- }>;
1150
- description?: string | undefined;
1151
- }, {
1152
- language: Readonly<{
1153
- codename: string;
1154
- }>;
1155
- description?: string | undefined;
1156
- }>>, "many">>>;
310
+ }, z.core.$strict>>>>>;
1157
311
  folder: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
1158
312
  codename: z.ZodReadonly<z.ZodString>;
1159
- }, "strict", z.ZodTypeAny, {
1160
- codename: string;
1161
- }, {
1162
- codename: string;
1163
- }>>>;
1164
- }, {
1165
- binary_data: z.ZodUnion<[z.ZodType<BufferProxy<ArrayBufferLike>, z.ZodTypeDef, BufferProxy<ArrayBufferLike>>, z.ZodType<import("buffer").Blob, z.ZodTypeDef, import("buffer").Blob>]>;
1166
- }>, "strict", z.ZodTypeAny, {
1167
- codename: string;
1168
- filename: string;
1169
- title: string;
1170
- binary_data: BufferProxy<ArrayBufferLike> | import("buffer").Blob;
1171
- collection?: Readonly<{
1172
- codename: string;
1173
- }> | undefined;
1174
- descriptions?: readonly Readonly<{
1175
- language: Readonly<{
1176
- codename: string;
1177
- }>;
1178
- description?: string | undefined;
1179
- }>[] | undefined;
1180
- folder?: Readonly<{
1181
- codename: string;
1182
- }> | undefined;
1183
- }, {
1184
- codename: string;
1185
- filename: string;
1186
- title: string;
1187
- binary_data: BufferProxy<ArrayBufferLike> | import("buffer").Blob;
1188
- collection?: Readonly<{
1189
- codename: string;
1190
- }> | undefined;
1191
- descriptions?: readonly Readonly<{
1192
- language: Readonly<{
1193
- codename: string;
1194
- }>;
1195
- description?: string | undefined;
1196
- }>[] | undefined;
1197
- folder?: Readonly<{
1198
- codename: string;
1199
- }> | undefined;
1200
- }>>, "many">>;
1201
- }, "strict", z.ZodTypeAny, {
1202
- items: readonly Readonly<{
1203
- system: {
1204
- codename: string;
1205
- type: Readonly<{
1206
- codename: string;
1207
- }>;
1208
- name: string;
1209
- language: Readonly<{
1210
- codename: string;
1211
- }>;
1212
- collection: Readonly<{
1213
- codename: string;
1214
- }>;
1215
- workflow: Readonly<{
1216
- codename: string;
1217
- }>;
1218
- };
1219
- versions: readonly Readonly<{
1220
- elements: Readonly<Elements>;
1221
- workflow_step: Readonly<{
1222
- codename: string;
1223
- }>;
1224
- schedule?: Readonly<{
1225
- publish_time?: string | undefined;
1226
- publish_display_timezone?: string | undefined;
1227
- unpublish_time?: string | undefined;
1228
- unpublish_display_timezone?: string | undefined;
1229
- }> | undefined;
1230
- }>[];
1231
- }>[];
1232
- assets: readonly Readonly<{
1233
- codename: string;
1234
- filename: string;
1235
- title: string;
1236
- binary_data: BufferProxy<ArrayBufferLike> | import("buffer").Blob;
1237
- collection?: Readonly<{
1238
- codename: string;
1239
- }> | undefined;
1240
- descriptions?: readonly Readonly<{
1241
- language: Readonly<{
1242
- codename: string;
1243
- }>;
1244
- description?: string | undefined;
1245
- }>[] | undefined;
1246
- folder?: Readonly<{
1247
- codename: string;
1248
- }> | undefined;
1249
- }>[];
1250
- }, {
1251
- items: readonly Readonly<{
1252
- system: {
1253
- codename: string;
1254
- type: Readonly<{
1255
- codename: string;
1256
- }>;
1257
- name: string;
1258
- language: Readonly<{
1259
- codename: string;
1260
- }>;
1261
- collection: Readonly<{
1262
- codename: string;
1263
- }>;
1264
- workflow: Readonly<{
1265
- codename: string;
1266
- }>;
1267
- };
1268
- versions: readonly Readonly<{
1269
- elements: Readonly<Elements>;
1270
- workflow_step: Readonly<{
1271
- codename: string;
1272
- }>;
1273
- schedule?: Readonly<{
1274
- publish_time?: string | undefined;
1275
- publish_display_timezone?: string | undefined;
1276
- unpublish_time?: string | undefined;
1277
- unpublish_display_timezone?: string | undefined;
1278
- }> | undefined;
1279
- }>[];
1280
- }>[];
1281
- assets: readonly Readonly<{
1282
- codename: string;
1283
- filename: string;
1284
- title: string;
1285
- binary_data: BufferProxy<ArrayBufferLike> | import("buffer").Blob;
1286
- collection?: Readonly<{
1287
- codename: string;
1288
- }> | undefined;
1289
- descriptions?: readonly Readonly<{
1290
- language: Readonly<{
1291
- codename: string;
1292
- }>;
1293
- description?: string | undefined;
1294
- }>[] | undefined;
1295
- folder?: Readonly<{
1296
- codename: string;
1297
- }> | undefined;
1298
- }>[];
1299
- }>>;
313
+ }, z.core.$strict>>>;
314
+ binary_data: z.ZodUnion<readonly [z.ZodCustom<BufferProxy<ArrayBufferLike>, BufferProxy<ArrayBufferLike>>, z.ZodCustom<import("buffer").Blob, import("buffer").Blob>]>;
315
+ }, z.core.$strict>>>>;
316
+ }, z.core.$strict>>;
1300
317
  export {};