@encatch/schema 1.1.0-beta.8 → 1.1.0

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.
@@ -52,6 +52,7 @@ export declare const appearancePropertiesSchema: z.ZodObject<{
52
52
  showBranding: z.ZodDefault<z.ZodBoolean>;
53
53
  customPosition: z.ZodBoolean;
54
54
  customCss: z.ZodOptional<z.ZodString>;
55
+ fontFamily: z.ZodDefault<z.ZodOptional<z.ZodString>>;
55
56
  shareableMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
56
57
  light: "light";
57
58
  dark: "dark";
@@ -88,6 +89,1148 @@ export declare const appearancePropertiesSchema: z.ZodObject<{
88
89
  "bottom-right": "bottom-right";
89
90
  }>;
90
91
  }, z.core.$strip>;
92
+ sectionLayoutDefaults: z.ZodOptional<z.ZodObject<{
93
+ inApp: z.ZodOptional<z.ZodObject<{
94
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
95
+ type: z.ZodLiteral<"image">;
96
+ href: z.ZodString;
97
+ properties: z.ZodOptional<z.ZodObject<{
98
+ description: z.ZodOptional<z.ZodString>;
99
+ decorative: z.ZodDefault<z.ZodBoolean>;
100
+ brightness: z.ZodOptional<z.ZodNumber>;
101
+ focalPoint: z.ZodOptional<z.ZodObject<{
102
+ x: z.ZodNumber;
103
+ y: z.ZodNumber;
104
+ }, z.core.$strip>>;
105
+ }, z.core.$strip>>;
106
+ }, z.core.$strip>, z.ZodObject<{
107
+ type: z.ZodLiteral<"video">;
108
+ href: z.ZodString;
109
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
110
+ 1: "1";
111
+ 0.4: "0.4";
112
+ 0.6: "0.6";
113
+ 0.8: "0.8";
114
+ }>>>;
115
+ properties: z.ZodOptional<z.ZodObject<{
116
+ description: z.ZodOptional<z.ZodString>;
117
+ decorative: z.ZodDefault<z.ZodBoolean>;
118
+ brightness: z.ZodOptional<z.ZodNumber>;
119
+ }, z.core.$strip>>;
120
+ }, z.core.$strip>, z.ZodObject<{
121
+ type: z.ZodLiteral<"color">;
122
+ value: z.ZodString;
123
+ }, z.core.$strip>, z.ZodObject<{
124
+ type: z.ZodLiteral<"gradient">;
125
+ value: z.ZodString;
126
+ }, z.core.$strip>], "type">>;
127
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
128
+ type: z.ZodLiteral<"stack">;
129
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
130
+ left: "left";
131
+ center: "center";
132
+ cover: "cover";
133
+ }>>>;
134
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
135
+ type: z.ZodLiteral<"image">;
136
+ href: z.ZodString;
137
+ properties: z.ZodOptional<z.ZodObject<{
138
+ description: z.ZodOptional<z.ZodString>;
139
+ decorative: z.ZodDefault<z.ZodBoolean>;
140
+ brightness: z.ZodOptional<z.ZodNumber>;
141
+ focalPoint: z.ZodOptional<z.ZodObject<{
142
+ x: z.ZodNumber;
143
+ y: z.ZodNumber;
144
+ }, z.core.$strip>>;
145
+ }, z.core.$strip>>;
146
+ }, z.core.$strip>, z.ZodObject<{
147
+ type: z.ZodLiteral<"video">;
148
+ href: z.ZodString;
149
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
150
+ 1: "1";
151
+ 0.4: "0.4";
152
+ 0.6: "0.6";
153
+ 0.8: "0.8";
154
+ }>>>;
155
+ properties: z.ZodOptional<z.ZodObject<{
156
+ description: z.ZodOptional<z.ZodString>;
157
+ decorative: z.ZodDefault<z.ZodBoolean>;
158
+ brightness: z.ZodOptional<z.ZodNumber>;
159
+ }, z.core.$strip>>;
160
+ }, z.core.$strip>, z.ZodObject<{
161
+ type: z.ZodLiteral<"color">;
162
+ value: z.ZodString;
163
+ }, z.core.$strip>, z.ZodObject<{
164
+ type: z.ZodLiteral<"gradient">;
165
+ value: z.ZodString;
166
+ }, z.core.$strip>], "type">>;
167
+ }, z.core.$strip>, z.ZodObject<{
168
+ type: z.ZodLiteral<"float">;
169
+ placement: z.ZodEnum<{
170
+ left: "left";
171
+ right: "right";
172
+ }>;
173
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
174
+ type: z.ZodLiteral<"image">;
175
+ href: z.ZodString;
176
+ properties: z.ZodOptional<z.ZodObject<{
177
+ description: z.ZodOptional<z.ZodString>;
178
+ decorative: z.ZodDefault<z.ZodBoolean>;
179
+ brightness: z.ZodOptional<z.ZodNumber>;
180
+ focalPoint: z.ZodOptional<z.ZodObject<{
181
+ x: z.ZodNumber;
182
+ y: z.ZodNumber;
183
+ }, z.core.$strip>>;
184
+ }, z.core.$strip>>;
185
+ }, z.core.$strip>, z.ZodObject<{
186
+ type: z.ZodLiteral<"video">;
187
+ href: z.ZodString;
188
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
189
+ 1: "1";
190
+ 0.4: "0.4";
191
+ 0.6: "0.6";
192
+ 0.8: "0.8";
193
+ }>>>;
194
+ properties: z.ZodOptional<z.ZodObject<{
195
+ description: z.ZodOptional<z.ZodString>;
196
+ decorative: z.ZodDefault<z.ZodBoolean>;
197
+ brightness: z.ZodOptional<z.ZodNumber>;
198
+ }, z.core.$strip>>;
199
+ }, z.core.$strip>, z.ZodObject<{
200
+ type: z.ZodLiteral<"color">;
201
+ value: z.ZodString;
202
+ }, z.core.$strip>, z.ZodObject<{
203
+ type: z.ZodLiteral<"gradient">;
204
+ value: z.ZodString;
205
+ }, z.core.$strip>], "type">>;
206
+ }, z.core.$strip>, z.ZodObject<{
207
+ type: z.ZodLiteral<"split">;
208
+ placement: z.ZodEnum<{
209
+ left: "left";
210
+ right: "right";
211
+ }>;
212
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
213
+ type: z.ZodLiteral<"image">;
214
+ href: z.ZodString;
215
+ properties: z.ZodOptional<z.ZodObject<{
216
+ description: z.ZodOptional<z.ZodString>;
217
+ decorative: z.ZodDefault<z.ZodBoolean>;
218
+ brightness: z.ZodOptional<z.ZodNumber>;
219
+ focalPoint: z.ZodOptional<z.ZodObject<{
220
+ x: z.ZodNumber;
221
+ y: z.ZodNumber;
222
+ }, z.core.$strip>>;
223
+ }, z.core.$strip>>;
224
+ }, z.core.$strip>, z.ZodObject<{
225
+ type: z.ZodLiteral<"video">;
226
+ href: z.ZodString;
227
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
228
+ 1: "1";
229
+ 0.4: "0.4";
230
+ 0.6: "0.6";
231
+ 0.8: "0.8";
232
+ }>>>;
233
+ properties: z.ZodOptional<z.ZodObject<{
234
+ description: z.ZodOptional<z.ZodString>;
235
+ decorative: z.ZodDefault<z.ZodBoolean>;
236
+ brightness: z.ZodOptional<z.ZodNumber>;
237
+ }, z.core.$strip>>;
238
+ }, z.core.$strip>, z.ZodObject<{
239
+ type: z.ZodLiteral<"color">;
240
+ value: z.ZodString;
241
+ }, z.core.$strip>, z.ZodObject<{
242
+ type: z.ZodLiteral<"gradient">;
243
+ value: z.ZodString;
244
+ }, z.core.$strip>], "type">>;
245
+ }, z.core.$strip>, z.ZodObject<{
246
+ type: z.ZodLiteral<"wallpaper">;
247
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
248
+ type: z.ZodLiteral<"image">;
249
+ href: z.ZodString;
250
+ properties: z.ZodOptional<z.ZodObject<{
251
+ description: z.ZodOptional<z.ZodString>;
252
+ decorative: z.ZodDefault<z.ZodBoolean>;
253
+ brightness: z.ZodOptional<z.ZodNumber>;
254
+ focalPoint: z.ZodOptional<z.ZodObject<{
255
+ x: z.ZodNumber;
256
+ y: z.ZodNumber;
257
+ }, z.core.$strip>>;
258
+ }, z.core.$strip>>;
259
+ }, z.core.$strip>, z.ZodObject<{
260
+ type: z.ZodLiteral<"video">;
261
+ href: z.ZodString;
262
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
263
+ 1: "1";
264
+ 0.4: "0.4";
265
+ 0.6: "0.6";
266
+ 0.8: "0.8";
267
+ }>>>;
268
+ properties: z.ZodOptional<z.ZodObject<{
269
+ description: z.ZodOptional<z.ZodString>;
270
+ decorative: z.ZodDefault<z.ZodBoolean>;
271
+ brightness: z.ZodOptional<z.ZodNumber>;
272
+ }, z.core.$strip>>;
273
+ }, z.core.$strip>, z.ZodObject<{
274
+ type: z.ZodLiteral<"color">;
275
+ value: z.ZodString;
276
+ }, z.core.$strip>, z.ZodObject<{
277
+ type: z.ZodLiteral<"gradient">;
278
+ value: z.ZodString;
279
+ }, z.core.$strip>], "type">>;
280
+ }, z.core.$strip>], "type">;
281
+ }, z.core.$strip>>;
282
+ link: z.ZodOptional<z.ZodObject<{
283
+ mobile: z.ZodOptional<z.ZodObject<{
284
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
285
+ type: z.ZodLiteral<"image">;
286
+ href: z.ZodString;
287
+ properties: z.ZodOptional<z.ZodObject<{
288
+ description: z.ZodOptional<z.ZodString>;
289
+ decorative: z.ZodDefault<z.ZodBoolean>;
290
+ brightness: z.ZodOptional<z.ZodNumber>;
291
+ focalPoint: z.ZodOptional<z.ZodObject<{
292
+ x: z.ZodNumber;
293
+ y: z.ZodNumber;
294
+ }, z.core.$strip>>;
295
+ }, z.core.$strip>>;
296
+ }, z.core.$strip>, z.ZodObject<{
297
+ type: z.ZodLiteral<"video">;
298
+ href: z.ZodString;
299
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
300
+ 1: "1";
301
+ 0.4: "0.4";
302
+ 0.6: "0.6";
303
+ 0.8: "0.8";
304
+ }>>>;
305
+ properties: z.ZodOptional<z.ZodObject<{
306
+ description: z.ZodOptional<z.ZodString>;
307
+ decorative: z.ZodDefault<z.ZodBoolean>;
308
+ brightness: z.ZodOptional<z.ZodNumber>;
309
+ }, z.core.$strip>>;
310
+ }, z.core.$strip>, z.ZodObject<{
311
+ type: z.ZodLiteral<"color">;
312
+ value: z.ZodString;
313
+ }, z.core.$strip>, z.ZodObject<{
314
+ type: z.ZodLiteral<"gradient">;
315
+ value: z.ZodString;
316
+ }, z.core.$strip>], "type">>;
317
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
318
+ type: z.ZodLiteral<"stack">;
319
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
320
+ left: "left";
321
+ center: "center";
322
+ cover: "cover";
323
+ }>>>;
324
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
325
+ type: z.ZodLiteral<"image">;
326
+ href: z.ZodString;
327
+ properties: z.ZodOptional<z.ZodObject<{
328
+ description: z.ZodOptional<z.ZodString>;
329
+ decorative: z.ZodDefault<z.ZodBoolean>;
330
+ brightness: z.ZodOptional<z.ZodNumber>;
331
+ focalPoint: z.ZodOptional<z.ZodObject<{
332
+ x: z.ZodNumber;
333
+ y: z.ZodNumber;
334
+ }, z.core.$strip>>;
335
+ }, z.core.$strip>>;
336
+ }, z.core.$strip>, z.ZodObject<{
337
+ type: z.ZodLiteral<"video">;
338
+ href: z.ZodString;
339
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
340
+ 1: "1";
341
+ 0.4: "0.4";
342
+ 0.6: "0.6";
343
+ 0.8: "0.8";
344
+ }>>>;
345
+ properties: z.ZodOptional<z.ZodObject<{
346
+ description: z.ZodOptional<z.ZodString>;
347
+ decorative: z.ZodDefault<z.ZodBoolean>;
348
+ brightness: z.ZodOptional<z.ZodNumber>;
349
+ }, z.core.$strip>>;
350
+ }, z.core.$strip>, z.ZodObject<{
351
+ type: z.ZodLiteral<"color">;
352
+ value: z.ZodString;
353
+ }, z.core.$strip>, z.ZodObject<{
354
+ type: z.ZodLiteral<"gradient">;
355
+ value: z.ZodString;
356
+ }, z.core.$strip>], "type">>;
357
+ }, z.core.$strip>, z.ZodObject<{
358
+ type: z.ZodLiteral<"float">;
359
+ placement: z.ZodEnum<{
360
+ left: "left";
361
+ right: "right";
362
+ }>;
363
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
364
+ type: z.ZodLiteral<"image">;
365
+ href: z.ZodString;
366
+ properties: z.ZodOptional<z.ZodObject<{
367
+ description: z.ZodOptional<z.ZodString>;
368
+ decorative: z.ZodDefault<z.ZodBoolean>;
369
+ brightness: z.ZodOptional<z.ZodNumber>;
370
+ focalPoint: z.ZodOptional<z.ZodObject<{
371
+ x: z.ZodNumber;
372
+ y: z.ZodNumber;
373
+ }, z.core.$strip>>;
374
+ }, z.core.$strip>>;
375
+ }, z.core.$strip>, z.ZodObject<{
376
+ type: z.ZodLiteral<"video">;
377
+ href: z.ZodString;
378
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
379
+ 1: "1";
380
+ 0.4: "0.4";
381
+ 0.6: "0.6";
382
+ 0.8: "0.8";
383
+ }>>>;
384
+ properties: z.ZodOptional<z.ZodObject<{
385
+ description: z.ZodOptional<z.ZodString>;
386
+ decorative: z.ZodDefault<z.ZodBoolean>;
387
+ brightness: z.ZodOptional<z.ZodNumber>;
388
+ }, z.core.$strip>>;
389
+ }, z.core.$strip>, z.ZodObject<{
390
+ type: z.ZodLiteral<"color">;
391
+ value: z.ZodString;
392
+ }, z.core.$strip>, z.ZodObject<{
393
+ type: z.ZodLiteral<"gradient">;
394
+ value: z.ZodString;
395
+ }, z.core.$strip>], "type">>;
396
+ }, z.core.$strip>, z.ZodObject<{
397
+ type: z.ZodLiteral<"split">;
398
+ placement: z.ZodEnum<{
399
+ left: "left";
400
+ right: "right";
401
+ }>;
402
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
403
+ type: z.ZodLiteral<"image">;
404
+ href: z.ZodString;
405
+ properties: z.ZodOptional<z.ZodObject<{
406
+ description: z.ZodOptional<z.ZodString>;
407
+ decorative: z.ZodDefault<z.ZodBoolean>;
408
+ brightness: z.ZodOptional<z.ZodNumber>;
409
+ focalPoint: z.ZodOptional<z.ZodObject<{
410
+ x: z.ZodNumber;
411
+ y: z.ZodNumber;
412
+ }, z.core.$strip>>;
413
+ }, z.core.$strip>>;
414
+ }, z.core.$strip>, z.ZodObject<{
415
+ type: z.ZodLiteral<"video">;
416
+ href: z.ZodString;
417
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
418
+ 1: "1";
419
+ 0.4: "0.4";
420
+ 0.6: "0.6";
421
+ 0.8: "0.8";
422
+ }>>>;
423
+ properties: z.ZodOptional<z.ZodObject<{
424
+ description: z.ZodOptional<z.ZodString>;
425
+ decorative: z.ZodDefault<z.ZodBoolean>;
426
+ brightness: z.ZodOptional<z.ZodNumber>;
427
+ }, z.core.$strip>>;
428
+ }, z.core.$strip>, z.ZodObject<{
429
+ type: z.ZodLiteral<"color">;
430
+ value: z.ZodString;
431
+ }, z.core.$strip>, z.ZodObject<{
432
+ type: z.ZodLiteral<"gradient">;
433
+ value: z.ZodString;
434
+ }, z.core.$strip>], "type">>;
435
+ }, z.core.$strip>, z.ZodObject<{
436
+ type: z.ZodLiteral<"wallpaper">;
437
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
438
+ type: z.ZodLiteral<"image">;
439
+ href: z.ZodString;
440
+ properties: z.ZodOptional<z.ZodObject<{
441
+ description: z.ZodOptional<z.ZodString>;
442
+ decorative: z.ZodDefault<z.ZodBoolean>;
443
+ brightness: z.ZodOptional<z.ZodNumber>;
444
+ focalPoint: z.ZodOptional<z.ZodObject<{
445
+ x: z.ZodNumber;
446
+ y: z.ZodNumber;
447
+ }, z.core.$strip>>;
448
+ }, z.core.$strip>>;
449
+ }, z.core.$strip>, z.ZodObject<{
450
+ type: z.ZodLiteral<"video">;
451
+ href: z.ZodString;
452
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
453
+ 1: "1";
454
+ 0.4: "0.4";
455
+ 0.6: "0.6";
456
+ 0.8: "0.8";
457
+ }>>>;
458
+ properties: z.ZodOptional<z.ZodObject<{
459
+ description: z.ZodOptional<z.ZodString>;
460
+ decorative: z.ZodDefault<z.ZodBoolean>;
461
+ brightness: z.ZodOptional<z.ZodNumber>;
462
+ }, z.core.$strip>>;
463
+ }, z.core.$strip>, z.ZodObject<{
464
+ type: z.ZodLiteral<"color">;
465
+ value: z.ZodString;
466
+ }, z.core.$strip>, z.ZodObject<{
467
+ type: z.ZodLiteral<"gradient">;
468
+ value: z.ZodString;
469
+ }, z.core.$strip>], "type">>;
470
+ }, z.core.$strip>], "type">;
471
+ }, z.core.$strip>>;
472
+ others: z.ZodOptional<z.ZodObject<{
473
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
474
+ type: z.ZodLiteral<"image">;
475
+ href: z.ZodString;
476
+ properties: z.ZodOptional<z.ZodObject<{
477
+ description: z.ZodOptional<z.ZodString>;
478
+ decorative: z.ZodDefault<z.ZodBoolean>;
479
+ brightness: z.ZodOptional<z.ZodNumber>;
480
+ focalPoint: z.ZodOptional<z.ZodObject<{
481
+ x: z.ZodNumber;
482
+ y: z.ZodNumber;
483
+ }, z.core.$strip>>;
484
+ }, z.core.$strip>>;
485
+ }, z.core.$strip>, z.ZodObject<{
486
+ type: z.ZodLiteral<"video">;
487
+ href: z.ZodString;
488
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
489
+ 1: "1";
490
+ 0.4: "0.4";
491
+ 0.6: "0.6";
492
+ 0.8: "0.8";
493
+ }>>>;
494
+ properties: z.ZodOptional<z.ZodObject<{
495
+ description: z.ZodOptional<z.ZodString>;
496
+ decorative: z.ZodDefault<z.ZodBoolean>;
497
+ brightness: z.ZodOptional<z.ZodNumber>;
498
+ }, z.core.$strip>>;
499
+ }, z.core.$strip>, z.ZodObject<{
500
+ type: z.ZodLiteral<"color">;
501
+ value: z.ZodString;
502
+ }, z.core.$strip>, z.ZodObject<{
503
+ type: z.ZodLiteral<"gradient">;
504
+ value: z.ZodString;
505
+ }, z.core.$strip>], "type">>;
506
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
507
+ type: z.ZodLiteral<"stack">;
508
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
509
+ left: "left";
510
+ center: "center";
511
+ cover: "cover";
512
+ }>>>;
513
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
514
+ type: z.ZodLiteral<"image">;
515
+ href: z.ZodString;
516
+ properties: z.ZodOptional<z.ZodObject<{
517
+ description: z.ZodOptional<z.ZodString>;
518
+ decorative: z.ZodDefault<z.ZodBoolean>;
519
+ brightness: z.ZodOptional<z.ZodNumber>;
520
+ focalPoint: z.ZodOptional<z.ZodObject<{
521
+ x: z.ZodNumber;
522
+ y: z.ZodNumber;
523
+ }, z.core.$strip>>;
524
+ }, z.core.$strip>>;
525
+ }, z.core.$strip>, z.ZodObject<{
526
+ type: z.ZodLiteral<"video">;
527
+ href: z.ZodString;
528
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
529
+ 1: "1";
530
+ 0.4: "0.4";
531
+ 0.6: "0.6";
532
+ 0.8: "0.8";
533
+ }>>>;
534
+ properties: z.ZodOptional<z.ZodObject<{
535
+ description: z.ZodOptional<z.ZodString>;
536
+ decorative: z.ZodDefault<z.ZodBoolean>;
537
+ brightness: z.ZodOptional<z.ZodNumber>;
538
+ }, z.core.$strip>>;
539
+ }, z.core.$strip>, z.ZodObject<{
540
+ type: z.ZodLiteral<"color">;
541
+ value: z.ZodString;
542
+ }, z.core.$strip>, z.ZodObject<{
543
+ type: z.ZodLiteral<"gradient">;
544
+ value: z.ZodString;
545
+ }, z.core.$strip>], "type">>;
546
+ }, z.core.$strip>, z.ZodObject<{
547
+ type: z.ZodLiteral<"float">;
548
+ placement: z.ZodEnum<{
549
+ left: "left";
550
+ right: "right";
551
+ }>;
552
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
553
+ type: z.ZodLiteral<"image">;
554
+ href: z.ZodString;
555
+ properties: z.ZodOptional<z.ZodObject<{
556
+ description: z.ZodOptional<z.ZodString>;
557
+ decorative: z.ZodDefault<z.ZodBoolean>;
558
+ brightness: z.ZodOptional<z.ZodNumber>;
559
+ focalPoint: z.ZodOptional<z.ZodObject<{
560
+ x: z.ZodNumber;
561
+ y: z.ZodNumber;
562
+ }, z.core.$strip>>;
563
+ }, z.core.$strip>>;
564
+ }, z.core.$strip>, z.ZodObject<{
565
+ type: z.ZodLiteral<"video">;
566
+ href: z.ZodString;
567
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
568
+ 1: "1";
569
+ 0.4: "0.4";
570
+ 0.6: "0.6";
571
+ 0.8: "0.8";
572
+ }>>>;
573
+ properties: z.ZodOptional<z.ZodObject<{
574
+ description: z.ZodOptional<z.ZodString>;
575
+ decorative: z.ZodDefault<z.ZodBoolean>;
576
+ brightness: z.ZodOptional<z.ZodNumber>;
577
+ }, z.core.$strip>>;
578
+ }, z.core.$strip>, z.ZodObject<{
579
+ type: z.ZodLiteral<"color">;
580
+ value: z.ZodString;
581
+ }, z.core.$strip>, z.ZodObject<{
582
+ type: z.ZodLiteral<"gradient">;
583
+ value: z.ZodString;
584
+ }, z.core.$strip>], "type">>;
585
+ }, z.core.$strip>, z.ZodObject<{
586
+ type: z.ZodLiteral<"split">;
587
+ placement: z.ZodEnum<{
588
+ left: "left";
589
+ right: "right";
590
+ }>;
591
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
592
+ type: z.ZodLiteral<"image">;
593
+ href: z.ZodString;
594
+ properties: z.ZodOptional<z.ZodObject<{
595
+ description: z.ZodOptional<z.ZodString>;
596
+ decorative: z.ZodDefault<z.ZodBoolean>;
597
+ brightness: z.ZodOptional<z.ZodNumber>;
598
+ focalPoint: z.ZodOptional<z.ZodObject<{
599
+ x: z.ZodNumber;
600
+ y: z.ZodNumber;
601
+ }, z.core.$strip>>;
602
+ }, z.core.$strip>>;
603
+ }, z.core.$strip>, z.ZodObject<{
604
+ type: z.ZodLiteral<"video">;
605
+ href: z.ZodString;
606
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
607
+ 1: "1";
608
+ 0.4: "0.4";
609
+ 0.6: "0.6";
610
+ 0.8: "0.8";
611
+ }>>>;
612
+ properties: z.ZodOptional<z.ZodObject<{
613
+ description: z.ZodOptional<z.ZodString>;
614
+ decorative: z.ZodDefault<z.ZodBoolean>;
615
+ brightness: z.ZodOptional<z.ZodNumber>;
616
+ }, z.core.$strip>>;
617
+ }, z.core.$strip>, z.ZodObject<{
618
+ type: z.ZodLiteral<"color">;
619
+ value: z.ZodString;
620
+ }, z.core.$strip>, z.ZodObject<{
621
+ type: z.ZodLiteral<"gradient">;
622
+ value: z.ZodString;
623
+ }, z.core.$strip>], "type">>;
624
+ }, z.core.$strip>, z.ZodObject<{
625
+ type: z.ZodLiteral<"wallpaper">;
626
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
627
+ type: z.ZodLiteral<"image">;
628
+ href: z.ZodString;
629
+ properties: z.ZodOptional<z.ZodObject<{
630
+ description: z.ZodOptional<z.ZodString>;
631
+ decorative: z.ZodDefault<z.ZodBoolean>;
632
+ brightness: z.ZodOptional<z.ZodNumber>;
633
+ focalPoint: z.ZodOptional<z.ZodObject<{
634
+ x: z.ZodNumber;
635
+ y: z.ZodNumber;
636
+ }, z.core.$strip>>;
637
+ }, z.core.$strip>>;
638
+ }, z.core.$strip>, z.ZodObject<{
639
+ type: z.ZodLiteral<"video">;
640
+ href: z.ZodString;
641
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
642
+ 1: "1";
643
+ 0.4: "0.4";
644
+ 0.6: "0.6";
645
+ 0.8: "0.8";
646
+ }>>>;
647
+ properties: z.ZodOptional<z.ZodObject<{
648
+ description: z.ZodOptional<z.ZodString>;
649
+ decorative: z.ZodDefault<z.ZodBoolean>;
650
+ brightness: z.ZodOptional<z.ZodNumber>;
651
+ }, z.core.$strip>>;
652
+ }, z.core.$strip>, z.ZodObject<{
653
+ type: z.ZodLiteral<"color">;
654
+ value: z.ZodString;
655
+ }, z.core.$strip>, z.ZodObject<{
656
+ type: z.ZodLiteral<"gradient">;
657
+ value: z.ZodString;
658
+ }, z.core.$strip>], "type">>;
659
+ }, z.core.$strip>], "type">;
660
+ }, z.core.$strip>>;
661
+ }, z.core.$strip>>;
662
+ }, z.core.$strip>>;
663
+ sectionLayouts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
664
+ inApp: z.ZodOptional<z.ZodObject<{
665
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
666
+ type: z.ZodLiteral<"image">;
667
+ href: z.ZodString;
668
+ properties: z.ZodOptional<z.ZodObject<{
669
+ description: z.ZodOptional<z.ZodString>;
670
+ decorative: z.ZodDefault<z.ZodBoolean>;
671
+ brightness: z.ZodOptional<z.ZodNumber>;
672
+ focalPoint: z.ZodOptional<z.ZodObject<{
673
+ x: z.ZodNumber;
674
+ y: z.ZodNumber;
675
+ }, z.core.$strip>>;
676
+ }, z.core.$strip>>;
677
+ }, z.core.$strip>, z.ZodObject<{
678
+ type: z.ZodLiteral<"video">;
679
+ href: z.ZodString;
680
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
681
+ 1: "1";
682
+ 0.4: "0.4";
683
+ 0.6: "0.6";
684
+ 0.8: "0.8";
685
+ }>>>;
686
+ properties: z.ZodOptional<z.ZodObject<{
687
+ description: z.ZodOptional<z.ZodString>;
688
+ decorative: z.ZodDefault<z.ZodBoolean>;
689
+ brightness: z.ZodOptional<z.ZodNumber>;
690
+ }, z.core.$strip>>;
691
+ }, z.core.$strip>, z.ZodObject<{
692
+ type: z.ZodLiteral<"color">;
693
+ value: z.ZodString;
694
+ }, z.core.$strip>, z.ZodObject<{
695
+ type: z.ZodLiteral<"gradient">;
696
+ value: z.ZodString;
697
+ }, z.core.$strip>], "type">>;
698
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
699
+ type: z.ZodLiteral<"stack">;
700
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
701
+ left: "left";
702
+ center: "center";
703
+ cover: "cover";
704
+ }>>>;
705
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
706
+ type: z.ZodLiteral<"image">;
707
+ href: z.ZodString;
708
+ properties: z.ZodOptional<z.ZodObject<{
709
+ description: z.ZodOptional<z.ZodString>;
710
+ decorative: z.ZodDefault<z.ZodBoolean>;
711
+ brightness: z.ZodOptional<z.ZodNumber>;
712
+ focalPoint: z.ZodOptional<z.ZodObject<{
713
+ x: z.ZodNumber;
714
+ y: z.ZodNumber;
715
+ }, z.core.$strip>>;
716
+ }, z.core.$strip>>;
717
+ }, z.core.$strip>, z.ZodObject<{
718
+ type: z.ZodLiteral<"video">;
719
+ href: z.ZodString;
720
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
721
+ 1: "1";
722
+ 0.4: "0.4";
723
+ 0.6: "0.6";
724
+ 0.8: "0.8";
725
+ }>>>;
726
+ properties: z.ZodOptional<z.ZodObject<{
727
+ description: z.ZodOptional<z.ZodString>;
728
+ decorative: z.ZodDefault<z.ZodBoolean>;
729
+ brightness: z.ZodOptional<z.ZodNumber>;
730
+ }, z.core.$strip>>;
731
+ }, z.core.$strip>, z.ZodObject<{
732
+ type: z.ZodLiteral<"color">;
733
+ value: z.ZodString;
734
+ }, z.core.$strip>, z.ZodObject<{
735
+ type: z.ZodLiteral<"gradient">;
736
+ value: z.ZodString;
737
+ }, z.core.$strip>], "type">>;
738
+ }, z.core.$strip>, z.ZodObject<{
739
+ type: z.ZodLiteral<"float">;
740
+ placement: z.ZodEnum<{
741
+ left: "left";
742
+ right: "right";
743
+ }>;
744
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
745
+ type: z.ZodLiteral<"image">;
746
+ href: z.ZodString;
747
+ properties: z.ZodOptional<z.ZodObject<{
748
+ description: z.ZodOptional<z.ZodString>;
749
+ decorative: z.ZodDefault<z.ZodBoolean>;
750
+ brightness: z.ZodOptional<z.ZodNumber>;
751
+ focalPoint: z.ZodOptional<z.ZodObject<{
752
+ x: z.ZodNumber;
753
+ y: z.ZodNumber;
754
+ }, z.core.$strip>>;
755
+ }, z.core.$strip>>;
756
+ }, z.core.$strip>, z.ZodObject<{
757
+ type: z.ZodLiteral<"video">;
758
+ href: z.ZodString;
759
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
760
+ 1: "1";
761
+ 0.4: "0.4";
762
+ 0.6: "0.6";
763
+ 0.8: "0.8";
764
+ }>>>;
765
+ properties: z.ZodOptional<z.ZodObject<{
766
+ description: z.ZodOptional<z.ZodString>;
767
+ decorative: z.ZodDefault<z.ZodBoolean>;
768
+ brightness: z.ZodOptional<z.ZodNumber>;
769
+ }, z.core.$strip>>;
770
+ }, z.core.$strip>, z.ZodObject<{
771
+ type: z.ZodLiteral<"color">;
772
+ value: z.ZodString;
773
+ }, z.core.$strip>, z.ZodObject<{
774
+ type: z.ZodLiteral<"gradient">;
775
+ value: z.ZodString;
776
+ }, z.core.$strip>], "type">>;
777
+ }, z.core.$strip>, z.ZodObject<{
778
+ type: z.ZodLiteral<"split">;
779
+ placement: z.ZodEnum<{
780
+ left: "left";
781
+ right: "right";
782
+ }>;
783
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
784
+ type: z.ZodLiteral<"image">;
785
+ href: z.ZodString;
786
+ properties: z.ZodOptional<z.ZodObject<{
787
+ description: z.ZodOptional<z.ZodString>;
788
+ decorative: z.ZodDefault<z.ZodBoolean>;
789
+ brightness: z.ZodOptional<z.ZodNumber>;
790
+ focalPoint: z.ZodOptional<z.ZodObject<{
791
+ x: z.ZodNumber;
792
+ y: z.ZodNumber;
793
+ }, z.core.$strip>>;
794
+ }, z.core.$strip>>;
795
+ }, z.core.$strip>, z.ZodObject<{
796
+ type: z.ZodLiteral<"video">;
797
+ href: z.ZodString;
798
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
799
+ 1: "1";
800
+ 0.4: "0.4";
801
+ 0.6: "0.6";
802
+ 0.8: "0.8";
803
+ }>>>;
804
+ properties: z.ZodOptional<z.ZodObject<{
805
+ description: z.ZodOptional<z.ZodString>;
806
+ decorative: z.ZodDefault<z.ZodBoolean>;
807
+ brightness: z.ZodOptional<z.ZodNumber>;
808
+ }, z.core.$strip>>;
809
+ }, z.core.$strip>, z.ZodObject<{
810
+ type: z.ZodLiteral<"color">;
811
+ value: z.ZodString;
812
+ }, z.core.$strip>, z.ZodObject<{
813
+ type: z.ZodLiteral<"gradient">;
814
+ value: z.ZodString;
815
+ }, z.core.$strip>], "type">>;
816
+ }, z.core.$strip>, z.ZodObject<{
817
+ type: z.ZodLiteral<"wallpaper">;
818
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
819
+ type: z.ZodLiteral<"image">;
820
+ href: z.ZodString;
821
+ properties: z.ZodOptional<z.ZodObject<{
822
+ description: z.ZodOptional<z.ZodString>;
823
+ decorative: z.ZodDefault<z.ZodBoolean>;
824
+ brightness: z.ZodOptional<z.ZodNumber>;
825
+ focalPoint: z.ZodOptional<z.ZodObject<{
826
+ x: z.ZodNumber;
827
+ y: z.ZodNumber;
828
+ }, z.core.$strip>>;
829
+ }, z.core.$strip>>;
830
+ }, z.core.$strip>, z.ZodObject<{
831
+ type: z.ZodLiteral<"video">;
832
+ href: z.ZodString;
833
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
834
+ 1: "1";
835
+ 0.4: "0.4";
836
+ 0.6: "0.6";
837
+ 0.8: "0.8";
838
+ }>>>;
839
+ properties: z.ZodOptional<z.ZodObject<{
840
+ description: z.ZodOptional<z.ZodString>;
841
+ decorative: z.ZodDefault<z.ZodBoolean>;
842
+ brightness: z.ZodOptional<z.ZodNumber>;
843
+ }, z.core.$strip>>;
844
+ }, z.core.$strip>, z.ZodObject<{
845
+ type: z.ZodLiteral<"color">;
846
+ value: z.ZodString;
847
+ }, z.core.$strip>, z.ZodObject<{
848
+ type: z.ZodLiteral<"gradient">;
849
+ value: z.ZodString;
850
+ }, z.core.$strip>], "type">>;
851
+ }, z.core.$strip>], "type">;
852
+ }, z.core.$strip>>;
853
+ link: z.ZodOptional<z.ZodObject<{
854
+ mobile: z.ZodOptional<z.ZodObject<{
855
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
856
+ type: z.ZodLiteral<"image">;
857
+ href: z.ZodString;
858
+ properties: z.ZodOptional<z.ZodObject<{
859
+ description: z.ZodOptional<z.ZodString>;
860
+ decorative: z.ZodDefault<z.ZodBoolean>;
861
+ brightness: z.ZodOptional<z.ZodNumber>;
862
+ focalPoint: z.ZodOptional<z.ZodObject<{
863
+ x: z.ZodNumber;
864
+ y: z.ZodNumber;
865
+ }, z.core.$strip>>;
866
+ }, z.core.$strip>>;
867
+ }, z.core.$strip>, z.ZodObject<{
868
+ type: z.ZodLiteral<"video">;
869
+ href: z.ZodString;
870
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
871
+ 1: "1";
872
+ 0.4: "0.4";
873
+ 0.6: "0.6";
874
+ 0.8: "0.8";
875
+ }>>>;
876
+ properties: z.ZodOptional<z.ZodObject<{
877
+ description: z.ZodOptional<z.ZodString>;
878
+ decorative: z.ZodDefault<z.ZodBoolean>;
879
+ brightness: z.ZodOptional<z.ZodNumber>;
880
+ }, z.core.$strip>>;
881
+ }, z.core.$strip>, z.ZodObject<{
882
+ type: z.ZodLiteral<"color">;
883
+ value: z.ZodString;
884
+ }, z.core.$strip>, z.ZodObject<{
885
+ type: z.ZodLiteral<"gradient">;
886
+ value: z.ZodString;
887
+ }, z.core.$strip>], "type">>;
888
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
889
+ type: z.ZodLiteral<"stack">;
890
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
891
+ left: "left";
892
+ center: "center";
893
+ cover: "cover";
894
+ }>>>;
895
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
896
+ type: z.ZodLiteral<"image">;
897
+ href: z.ZodString;
898
+ properties: z.ZodOptional<z.ZodObject<{
899
+ description: z.ZodOptional<z.ZodString>;
900
+ decorative: z.ZodDefault<z.ZodBoolean>;
901
+ brightness: z.ZodOptional<z.ZodNumber>;
902
+ focalPoint: z.ZodOptional<z.ZodObject<{
903
+ x: z.ZodNumber;
904
+ y: z.ZodNumber;
905
+ }, z.core.$strip>>;
906
+ }, z.core.$strip>>;
907
+ }, z.core.$strip>, z.ZodObject<{
908
+ type: z.ZodLiteral<"video">;
909
+ href: z.ZodString;
910
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
911
+ 1: "1";
912
+ 0.4: "0.4";
913
+ 0.6: "0.6";
914
+ 0.8: "0.8";
915
+ }>>>;
916
+ properties: z.ZodOptional<z.ZodObject<{
917
+ description: z.ZodOptional<z.ZodString>;
918
+ decorative: z.ZodDefault<z.ZodBoolean>;
919
+ brightness: z.ZodOptional<z.ZodNumber>;
920
+ }, z.core.$strip>>;
921
+ }, z.core.$strip>, z.ZodObject<{
922
+ type: z.ZodLiteral<"color">;
923
+ value: z.ZodString;
924
+ }, z.core.$strip>, z.ZodObject<{
925
+ type: z.ZodLiteral<"gradient">;
926
+ value: z.ZodString;
927
+ }, z.core.$strip>], "type">>;
928
+ }, z.core.$strip>, z.ZodObject<{
929
+ type: z.ZodLiteral<"float">;
930
+ placement: z.ZodEnum<{
931
+ left: "left";
932
+ right: "right";
933
+ }>;
934
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
935
+ type: z.ZodLiteral<"image">;
936
+ href: z.ZodString;
937
+ properties: z.ZodOptional<z.ZodObject<{
938
+ description: z.ZodOptional<z.ZodString>;
939
+ decorative: z.ZodDefault<z.ZodBoolean>;
940
+ brightness: z.ZodOptional<z.ZodNumber>;
941
+ focalPoint: z.ZodOptional<z.ZodObject<{
942
+ x: z.ZodNumber;
943
+ y: z.ZodNumber;
944
+ }, z.core.$strip>>;
945
+ }, z.core.$strip>>;
946
+ }, z.core.$strip>, z.ZodObject<{
947
+ type: z.ZodLiteral<"video">;
948
+ href: z.ZodString;
949
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
950
+ 1: "1";
951
+ 0.4: "0.4";
952
+ 0.6: "0.6";
953
+ 0.8: "0.8";
954
+ }>>>;
955
+ properties: z.ZodOptional<z.ZodObject<{
956
+ description: z.ZodOptional<z.ZodString>;
957
+ decorative: z.ZodDefault<z.ZodBoolean>;
958
+ brightness: z.ZodOptional<z.ZodNumber>;
959
+ }, z.core.$strip>>;
960
+ }, z.core.$strip>, z.ZodObject<{
961
+ type: z.ZodLiteral<"color">;
962
+ value: z.ZodString;
963
+ }, z.core.$strip>, z.ZodObject<{
964
+ type: z.ZodLiteral<"gradient">;
965
+ value: z.ZodString;
966
+ }, z.core.$strip>], "type">>;
967
+ }, z.core.$strip>, z.ZodObject<{
968
+ type: z.ZodLiteral<"split">;
969
+ placement: z.ZodEnum<{
970
+ left: "left";
971
+ right: "right";
972
+ }>;
973
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
974
+ type: z.ZodLiteral<"image">;
975
+ href: z.ZodString;
976
+ properties: z.ZodOptional<z.ZodObject<{
977
+ description: z.ZodOptional<z.ZodString>;
978
+ decorative: z.ZodDefault<z.ZodBoolean>;
979
+ brightness: z.ZodOptional<z.ZodNumber>;
980
+ focalPoint: z.ZodOptional<z.ZodObject<{
981
+ x: z.ZodNumber;
982
+ y: z.ZodNumber;
983
+ }, z.core.$strip>>;
984
+ }, z.core.$strip>>;
985
+ }, z.core.$strip>, z.ZodObject<{
986
+ type: z.ZodLiteral<"video">;
987
+ href: z.ZodString;
988
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
989
+ 1: "1";
990
+ 0.4: "0.4";
991
+ 0.6: "0.6";
992
+ 0.8: "0.8";
993
+ }>>>;
994
+ properties: z.ZodOptional<z.ZodObject<{
995
+ description: z.ZodOptional<z.ZodString>;
996
+ decorative: z.ZodDefault<z.ZodBoolean>;
997
+ brightness: z.ZodOptional<z.ZodNumber>;
998
+ }, z.core.$strip>>;
999
+ }, z.core.$strip>, z.ZodObject<{
1000
+ type: z.ZodLiteral<"color">;
1001
+ value: z.ZodString;
1002
+ }, z.core.$strip>, z.ZodObject<{
1003
+ type: z.ZodLiteral<"gradient">;
1004
+ value: z.ZodString;
1005
+ }, z.core.$strip>], "type">>;
1006
+ }, z.core.$strip>, z.ZodObject<{
1007
+ type: z.ZodLiteral<"wallpaper">;
1008
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1009
+ type: z.ZodLiteral<"image">;
1010
+ href: z.ZodString;
1011
+ properties: z.ZodOptional<z.ZodObject<{
1012
+ description: z.ZodOptional<z.ZodString>;
1013
+ decorative: z.ZodDefault<z.ZodBoolean>;
1014
+ brightness: z.ZodOptional<z.ZodNumber>;
1015
+ focalPoint: z.ZodOptional<z.ZodObject<{
1016
+ x: z.ZodNumber;
1017
+ y: z.ZodNumber;
1018
+ }, z.core.$strip>>;
1019
+ }, z.core.$strip>>;
1020
+ }, z.core.$strip>, z.ZodObject<{
1021
+ type: z.ZodLiteral<"video">;
1022
+ href: z.ZodString;
1023
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
1024
+ 1: "1";
1025
+ 0.4: "0.4";
1026
+ 0.6: "0.6";
1027
+ 0.8: "0.8";
1028
+ }>>>;
1029
+ properties: z.ZodOptional<z.ZodObject<{
1030
+ description: z.ZodOptional<z.ZodString>;
1031
+ decorative: z.ZodDefault<z.ZodBoolean>;
1032
+ brightness: z.ZodOptional<z.ZodNumber>;
1033
+ }, z.core.$strip>>;
1034
+ }, z.core.$strip>, z.ZodObject<{
1035
+ type: z.ZodLiteral<"color">;
1036
+ value: z.ZodString;
1037
+ }, z.core.$strip>, z.ZodObject<{
1038
+ type: z.ZodLiteral<"gradient">;
1039
+ value: z.ZodString;
1040
+ }, z.core.$strip>], "type">>;
1041
+ }, z.core.$strip>], "type">;
1042
+ }, z.core.$strip>>;
1043
+ others: z.ZodOptional<z.ZodObject<{
1044
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1045
+ type: z.ZodLiteral<"image">;
1046
+ href: z.ZodString;
1047
+ properties: z.ZodOptional<z.ZodObject<{
1048
+ description: z.ZodOptional<z.ZodString>;
1049
+ decorative: z.ZodDefault<z.ZodBoolean>;
1050
+ brightness: z.ZodOptional<z.ZodNumber>;
1051
+ focalPoint: z.ZodOptional<z.ZodObject<{
1052
+ x: z.ZodNumber;
1053
+ y: z.ZodNumber;
1054
+ }, z.core.$strip>>;
1055
+ }, z.core.$strip>>;
1056
+ }, z.core.$strip>, z.ZodObject<{
1057
+ type: z.ZodLiteral<"video">;
1058
+ href: z.ZodString;
1059
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
1060
+ 1: "1";
1061
+ 0.4: "0.4";
1062
+ 0.6: "0.6";
1063
+ 0.8: "0.8";
1064
+ }>>>;
1065
+ properties: z.ZodOptional<z.ZodObject<{
1066
+ description: z.ZodOptional<z.ZodString>;
1067
+ decorative: z.ZodDefault<z.ZodBoolean>;
1068
+ brightness: z.ZodOptional<z.ZodNumber>;
1069
+ }, z.core.$strip>>;
1070
+ }, z.core.$strip>, z.ZodObject<{
1071
+ type: z.ZodLiteral<"color">;
1072
+ value: z.ZodString;
1073
+ }, z.core.$strip>, z.ZodObject<{
1074
+ type: z.ZodLiteral<"gradient">;
1075
+ value: z.ZodString;
1076
+ }, z.core.$strip>], "type">>;
1077
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
1078
+ type: z.ZodLiteral<"stack">;
1079
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
1080
+ left: "left";
1081
+ center: "center";
1082
+ cover: "cover";
1083
+ }>>>;
1084
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1085
+ type: z.ZodLiteral<"image">;
1086
+ href: z.ZodString;
1087
+ properties: z.ZodOptional<z.ZodObject<{
1088
+ description: z.ZodOptional<z.ZodString>;
1089
+ decorative: z.ZodDefault<z.ZodBoolean>;
1090
+ brightness: z.ZodOptional<z.ZodNumber>;
1091
+ focalPoint: z.ZodOptional<z.ZodObject<{
1092
+ x: z.ZodNumber;
1093
+ y: z.ZodNumber;
1094
+ }, z.core.$strip>>;
1095
+ }, z.core.$strip>>;
1096
+ }, z.core.$strip>, z.ZodObject<{
1097
+ type: z.ZodLiteral<"video">;
1098
+ href: z.ZodString;
1099
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
1100
+ 1: "1";
1101
+ 0.4: "0.4";
1102
+ 0.6: "0.6";
1103
+ 0.8: "0.8";
1104
+ }>>>;
1105
+ properties: z.ZodOptional<z.ZodObject<{
1106
+ description: z.ZodOptional<z.ZodString>;
1107
+ decorative: z.ZodDefault<z.ZodBoolean>;
1108
+ brightness: z.ZodOptional<z.ZodNumber>;
1109
+ }, z.core.$strip>>;
1110
+ }, z.core.$strip>, z.ZodObject<{
1111
+ type: z.ZodLiteral<"color">;
1112
+ value: z.ZodString;
1113
+ }, z.core.$strip>, z.ZodObject<{
1114
+ type: z.ZodLiteral<"gradient">;
1115
+ value: z.ZodString;
1116
+ }, z.core.$strip>], "type">>;
1117
+ }, z.core.$strip>, z.ZodObject<{
1118
+ type: z.ZodLiteral<"float">;
1119
+ placement: z.ZodEnum<{
1120
+ left: "left";
1121
+ right: "right";
1122
+ }>;
1123
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1124
+ type: z.ZodLiteral<"image">;
1125
+ href: z.ZodString;
1126
+ properties: z.ZodOptional<z.ZodObject<{
1127
+ description: z.ZodOptional<z.ZodString>;
1128
+ decorative: z.ZodDefault<z.ZodBoolean>;
1129
+ brightness: z.ZodOptional<z.ZodNumber>;
1130
+ focalPoint: z.ZodOptional<z.ZodObject<{
1131
+ x: z.ZodNumber;
1132
+ y: z.ZodNumber;
1133
+ }, z.core.$strip>>;
1134
+ }, z.core.$strip>>;
1135
+ }, z.core.$strip>, z.ZodObject<{
1136
+ type: z.ZodLiteral<"video">;
1137
+ href: z.ZodString;
1138
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
1139
+ 1: "1";
1140
+ 0.4: "0.4";
1141
+ 0.6: "0.6";
1142
+ 0.8: "0.8";
1143
+ }>>>;
1144
+ properties: z.ZodOptional<z.ZodObject<{
1145
+ description: z.ZodOptional<z.ZodString>;
1146
+ decorative: z.ZodDefault<z.ZodBoolean>;
1147
+ brightness: z.ZodOptional<z.ZodNumber>;
1148
+ }, z.core.$strip>>;
1149
+ }, z.core.$strip>, z.ZodObject<{
1150
+ type: z.ZodLiteral<"color">;
1151
+ value: z.ZodString;
1152
+ }, z.core.$strip>, z.ZodObject<{
1153
+ type: z.ZodLiteral<"gradient">;
1154
+ value: z.ZodString;
1155
+ }, z.core.$strip>], "type">>;
1156
+ }, z.core.$strip>, z.ZodObject<{
1157
+ type: z.ZodLiteral<"split">;
1158
+ placement: z.ZodEnum<{
1159
+ left: "left";
1160
+ right: "right";
1161
+ }>;
1162
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1163
+ type: z.ZodLiteral<"image">;
1164
+ href: z.ZodString;
1165
+ properties: z.ZodOptional<z.ZodObject<{
1166
+ description: z.ZodOptional<z.ZodString>;
1167
+ decorative: z.ZodDefault<z.ZodBoolean>;
1168
+ brightness: z.ZodOptional<z.ZodNumber>;
1169
+ focalPoint: z.ZodOptional<z.ZodObject<{
1170
+ x: z.ZodNumber;
1171
+ y: z.ZodNumber;
1172
+ }, z.core.$strip>>;
1173
+ }, z.core.$strip>>;
1174
+ }, z.core.$strip>, z.ZodObject<{
1175
+ type: z.ZodLiteral<"video">;
1176
+ href: z.ZodString;
1177
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
1178
+ 1: "1";
1179
+ 0.4: "0.4";
1180
+ 0.6: "0.6";
1181
+ 0.8: "0.8";
1182
+ }>>>;
1183
+ properties: z.ZodOptional<z.ZodObject<{
1184
+ description: z.ZodOptional<z.ZodString>;
1185
+ decorative: z.ZodDefault<z.ZodBoolean>;
1186
+ brightness: z.ZodOptional<z.ZodNumber>;
1187
+ }, z.core.$strip>>;
1188
+ }, z.core.$strip>, z.ZodObject<{
1189
+ type: z.ZodLiteral<"color">;
1190
+ value: z.ZodString;
1191
+ }, z.core.$strip>, z.ZodObject<{
1192
+ type: z.ZodLiteral<"gradient">;
1193
+ value: z.ZodString;
1194
+ }, z.core.$strip>], "type">>;
1195
+ }, z.core.$strip>, z.ZodObject<{
1196
+ type: z.ZodLiteral<"wallpaper">;
1197
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1198
+ type: z.ZodLiteral<"image">;
1199
+ href: z.ZodString;
1200
+ properties: z.ZodOptional<z.ZodObject<{
1201
+ description: z.ZodOptional<z.ZodString>;
1202
+ decorative: z.ZodDefault<z.ZodBoolean>;
1203
+ brightness: z.ZodOptional<z.ZodNumber>;
1204
+ focalPoint: z.ZodOptional<z.ZodObject<{
1205
+ x: z.ZodNumber;
1206
+ y: z.ZodNumber;
1207
+ }, z.core.$strip>>;
1208
+ }, z.core.$strip>>;
1209
+ }, z.core.$strip>, z.ZodObject<{
1210
+ type: z.ZodLiteral<"video">;
1211
+ href: z.ZodString;
1212
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
1213
+ 1: "1";
1214
+ 0.4: "0.4";
1215
+ 0.6: "0.6";
1216
+ 0.8: "0.8";
1217
+ }>>>;
1218
+ properties: z.ZodOptional<z.ZodObject<{
1219
+ description: z.ZodOptional<z.ZodString>;
1220
+ decorative: z.ZodDefault<z.ZodBoolean>;
1221
+ brightness: z.ZodOptional<z.ZodNumber>;
1222
+ }, z.core.$strip>>;
1223
+ }, z.core.$strip>, z.ZodObject<{
1224
+ type: z.ZodLiteral<"color">;
1225
+ value: z.ZodString;
1226
+ }, z.core.$strip>, z.ZodObject<{
1227
+ type: z.ZodLiteral<"gradient">;
1228
+ value: z.ZodString;
1229
+ }, z.core.$strip>], "type">>;
1230
+ }, z.core.$strip>], "type">;
1231
+ }, z.core.$strip>>;
1232
+ }, z.core.$strip>>;
1233
+ }, z.core.$strip>>>;
91
1234
  }, z.core.$strip>;
92
1235
  export declare const formPropertiesSchema: z.ZodObject<{
93
1236
  feedbackConfigurationId: z.ZodUUID;
@@ -152,8 +1295,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
152
1295
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
153
1296
  left: "left";
154
1297
  center: "center";
1298
+ justify: "justify";
155
1299
  }>>>;
156
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1300
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
157
1301
  type: z.ZodLiteral<"rating">;
158
1302
  showLabels: z.ZodOptional<z.ZodBoolean>;
159
1303
  minLabel: z.ZodOptional<z.ZodString>;
@@ -223,8 +1367,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
223
1367
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
224
1368
  left: "left";
225
1369
  center: "center";
1370
+ justify: "justify";
226
1371
  }>>>;
227
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1372
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
228
1373
  type: z.ZodLiteral<"annotation">;
229
1374
  annotationText: z.ZodOptional<z.ZodString>;
230
1375
  noAnnotationText: z.ZodOptional<z.ZodString>;
@@ -276,8 +1421,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
276
1421
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
277
1422
  left: "left";
278
1423
  center: "center";
1424
+ justify: "justify";
279
1425
  }>>>;
280
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1426
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
281
1427
  type: z.ZodLiteral<"welcome">;
282
1428
  title: z.ZodString;
283
1429
  description: z.ZodOptional<z.ZodString>;
@@ -330,8 +1476,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
330
1476
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
331
1477
  left: "left";
332
1478
  center: "center";
1479
+ justify: "justify";
333
1480
  }>>>;
334
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1481
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
335
1482
  type: z.ZodLiteral<"thank_you">;
336
1483
  title: z.ZodString;
337
1484
  description: z.ZodOptional<z.ZodString>;
@@ -384,8 +1531,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
384
1531
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
385
1532
  left: "left";
386
1533
  center: "center";
1534
+ justify: "justify";
387
1535
  }>>>;
388
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1536
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
389
1537
  type: z.ZodLiteral<"message_panel">;
390
1538
  title: z.ZodString;
391
1539
  description: z.ZodOptional<z.ZodString>;
@@ -440,8 +1588,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
440
1588
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
441
1589
  left: "left";
442
1590
  center: "center";
1591
+ justify: "justify";
443
1592
  }>>>;
444
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1593
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
445
1594
  type: z.ZodLiteral<"exit_form">;
446
1595
  }, z.core.$strip>, z.ZodObject<{
447
1596
  id: z.ZodString;
@@ -493,8 +1642,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
493
1642
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
494
1643
  left: "left";
495
1644
  center: "center";
1645
+ justify: "justify";
496
1646
  }>>>;
497
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1647
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
498
1648
  type: z.ZodLiteral<"yes_no">;
499
1649
  yesLabel: z.ZodOptional<z.ZodString>;
500
1650
  noLabel: z.ZodOptional<z.ZodString>;
@@ -552,8 +1702,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
552
1702
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
553
1703
  left: "left";
554
1704
  center: "center";
1705
+ justify: "justify";
555
1706
  }>>>;
556
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1707
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
557
1708
  type: z.ZodLiteral<"consent">;
558
1709
  }, z.core.$strip>, z.ZodObject<{
559
1710
  id: z.ZodString;
@@ -605,8 +1756,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
605
1756
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
606
1757
  left: "left";
607
1758
  center: "center";
1759
+ justify: "justify";
608
1760
  }>>>;
609
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1761
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
610
1762
  type: z.ZodLiteral<"rating_matrix">;
611
1763
  statements: z.ZodArray<z.ZodObject<{
612
1764
  id: z.ZodString;
@@ -697,8 +1849,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
697
1849
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
698
1850
  left: "left";
699
1851
  center: "center";
1852
+ justify: "justify";
700
1853
  }>>>;
701
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1854
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
702
1855
  type: z.ZodLiteral<"matrix_single_choice">;
703
1856
  rows: z.ZodArray<z.ZodObject<{
704
1857
  id: z.ZodString;
@@ -764,8 +1917,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
764
1917
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
765
1918
  left: "left";
766
1919
  center: "center";
1920
+ justify: "justify";
767
1921
  }>>>;
768
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1922
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
769
1923
  type: z.ZodLiteral<"matrix_multiple_choice">;
770
1924
  rows: z.ZodArray<z.ZodObject<{
771
1925
  id: z.ZodString;
@@ -833,8 +1987,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
833
1987
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
834
1988
  left: "left";
835
1989
  center: "center";
1990
+ justify: "justify";
836
1991
  }>>>;
837
- nextButtonLabel: z.ZodOptional<z.ZodString>;
1992
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
838
1993
  type: z.ZodLiteral<"single_choice">;
839
1994
  displayStyle: z.ZodOptional<z.ZodEnum<{
840
1995
  radio: "radio";
@@ -906,8 +2061,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
906
2061
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
907
2062
  left: "left";
908
2063
  center: "center";
2064
+ justify: "justify";
909
2065
  }>>>;
910
- nextButtonLabel: z.ZodOptional<z.ZodString>;
2066
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
911
2067
  type: z.ZodLiteral<"multiple_choice_multiple">;
912
2068
  displayStyle: z.ZodOptional<z.ZodEnum<{
913
2069
  list: "list";
@@ -980,8 +2136,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
980
2136
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
981
2137
  left: "left";
982
2138
  center: "center";
2139
+ justify: "justify";
983
2140
  }>>>;
984
- nextButtonLabel: z.ZodOptional<z.ZodString>;
2141
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
985
2142
  type: z.ZodLiteral<"nps">;
986
2143
  min: z.ZodLiteral<0>;
987
2144
  max: z.ZodLiteral<10>;
@@ -1039,8 +2196,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
1039
2196
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1040
2197
  left: "left";
1041
2198
  center: "center";
2199
+ justify: "justify";
1042
2200
  }>>>;
1043
- nextButtonLabel: z.ZodOptional<z.ZodString>;
2201
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
1044
2202
  type: z.ZodLiteral<"short_answer">;
1045
2203
  maxCharacters: z.ZodOptional<z.ZodNumber>;
1046
2204
  minCharacters: z.ZodOptional<z.ZodNumber>;
@@ -1101,8 +2259,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
1101
2259
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1102
2260
  left: "left";
1103
2261
  center: "center";
2262
+ justify: "justify";
1104
2263
  }>>>;
1105
- nextButtonLabel: z.ZodOptional<z.ZodString>;
2264
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
1106
2265
  type: z.ZodLiteral<"long_text">;
1107
2266
  maxCharacters: z.ZodOptional<z.ZodNumber>;
1108
2267
  minCharacters: z.ZodOptional<z.ZodNumber>;
@@ -1162,8 +2321,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
1162
2321
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1163
2322
  left: "left";
1164
2323
  center: "center";
2324
+ justify: "justify";
1165
2325
  }>>>;
1166
- nextButtonLabel: z.ZodOptional<z.ZodString>;
2326
+ nextButtonLabel: z.ZodDefault<z.ZodString>;
1167
2327
  type: z.ZodLiteral<"nested_selection">;
1168
2328
  placeholder: z.ZodOptional<z.ZodString>;
1169
2329
  options: z.ZodArray<z.ZodType<any, unknown, z.core.$ZodTypeInternals<any, unknown>>>;
@@ -1195,6 +2355,7 @@ export declare const formPropertiesSchema: z.ZodObject<{
1195
2355
  nextButtonLabel: z.ZodOptional<z.ZodString>;
1196
2356
  }, z.core.$strip>>>;
1197
2357
  inAppSingleQuestion: z.ZodDefault<z.ZodBoolean>;
2358
+ isPreviousAllowed: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1198
2359
  questionIds: z.ZodArray<z.ZodString>;
1199
2360
  }, z.core.$strip>>;
1200
2361
  selectedLanguages: z.ZodArray<z.ZodObject<{
@@ -1286,6 +2447,12 @@ export declare const formPropertiesSchema: z.ZodObject<{
1286
2447
  type: z.ZodLiteral<"yes_no">;
1287
2448
  yesLabel: z.ZodOptional<z.ZodString>;
1288
2449
  noLabel: z.ZodOptional<z.ZodString>;
2450
+ }, z.core.$strip>, z.ZodObject<{
2451
+ title: z.ZodString;
2452
+ description: z.ZodOptional<z.ZodString>;
2453
+ errorMessage: z.ZodOptional<z.ZodString>;
2454
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
2455
+ type: z.ZodLiteral<"consent">;
1289
2456
  }, z.core.$strip>, z.ZodObject<{
1290
2457
  title: z.ZodString;
1291
2458
  description: z.ZodOptional<z.ZodString>;
@@ -1431,6 +2598,7 @@ export declare const formPropertiesSchema: z.ZodObject<{
1431
2598
  showBranding: z.ZodDefault<z.ZodBoolean>;
1432
2599
  customPosition: z.ZodBoolean;
1433
2600
  customCss: z.ZodOptional<z.ZodString>;
2601
+ fontFamily: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1434
2602
  shareableMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1435
2603
  light: "light";
1436
2604
  dark: "dark";
@@ -1467,6 +2635,1148 @@ export declare const formPropertiesSchema: z.ZodObject<{
1467
2635
  "bottom-right": "bottom-right";
1468
2636
  }>;
1469
2637
  }, z.core.$strip>;
2638
+ sectionLayoutDefaults: z.ZodOptional<z.ZodObject<{
2639
+ inApp: z.ZodOptional<z.ZodObject<{
2640
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2641
+ type: z.ZodLiteral<"image">;
2642
+ href: z.ZodString;
2643
+ properties: z.ZodOptional<z.ZodObject<{
2644
+ description: z.ZodOptional<z.ZodString>;
2645
+ decorative: z.ZodDefault<z.ZodBoolean>;
2646
+ brightness: z.ZodOptional<z.ZodNumber>;
2647
+ focalPoint: z.ZodOptional<z.ZodObject<{
2648
+ x: z.ZodNumber;
2649
+ y: z.ZodNumber;
2650
+ }, z.core.$strip>>;
2651
+ }, z.core.$strip>>;
2652
+ }, z.core.$strip>, z.ZodObject<{
2653
+ type: z.ZodLiteral<"video">;
2654
+ href: z.ZodString;
2655
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2656
+ 1: "1";
2657
+ 0.4: "0.4";
2658
+ 0.6: "0.6";
2659
+ 0.8: "0.8";
2660
+ }>>>;
2661
+ properties: z.ZodOptional<z.ZodObject<{
2662
+ description: z.ZodOptional<z.ZodString>;
2663
+ decorative: z.ZodDefault<z.ZodBoolean>;
2664
+ brightness: z.ZodOptional<z.ZodNumber>;
2665
+ }, z.core.$strip>>;
2666
+ }, z.core.$strip>, z.ZodObject<{
2667
+ type: z.ZodLiteral<"color">;
2668
+ value: z.ZodString;
2669
+ }, z.core.$strip>, z.ZodObject<{
2670
+ type: z.ZodLiteral<"gradient">;
2671
+ value: z.ZodString;
2672
+ }, z.core.$strip>], "type">>;
2673
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
2674
+ type: z.ZodLiteral<"stack">;
2675
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2676
+ left: "left";
2677
+ center: "center";
2678
+ cover: "cover";
2679
+ }>>>;
2680
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2681
+ type: z.ZodLiteral<"image">;
2682
+ href: z.ZodString;
2683
+ properties: z.ZodOptional<z.ZodObject<{
2684
+ description: z.ZodOptional<z.ZodString>;
2685
+ decorative: z.ZodDefault<z.ZodBoolean>;
2686
+ brightness: z.ZodOptional<z.ZodNumber>;
2687
+ focalPoint: z.ZodOptional<z.ZodObject<{
2688
+ x: z.ZodNumber;
2689
+ y: z.ZodNumber;
2690
+ }, z.core.$strip>>;
2691
+ }, z.core.$strip>>;
2692
+ }, z.core.$strip>, z.ZodObject<{
2693
+ type: z.ZodLiteral<"video">;
2694
+ href: z.ZodString;
2695
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2696
+ 1: "1";
2697
+ 0.4: "0.4";
2698
+ 0.6: "0.6";
2699
+ 0.8: "0.8";
2700
+ }>>>;
2701
+ properties: z.ZodOptional<z.ZodObject<{
2702
+ description: z.ZodOptional<z.ZodString>;
2703
+ decorative: z.ZodDefault<z.ZodBoolean>;
2704
+ brightness: z.ZodOptional<z.ZodNumber>;
2705
+ }, z.core.$strip>>;
2706
+ }, z.core.$strip>, z.ZodObject<{
2707
+ type: z.ZodLiteral<"color">;
2708
+ value: z.ZodString;
2709
+ }, z.core.$strip>, z.ZodObject<{
2710
+ type: z.ZodLiteral<"gradient">;
2711
+ value: z.ZodString;
2712
+ }, z.core.$strip>], "type">>;
2713
+ }, z.core.$strip>, z.ZodObject<{
2714
+ type: z.ZodLiteral<"float">;
2715
+ placement: z.ZodEnum<{
2716
+ left: "left";
2717
+ right: "right";
2718
+ }>;
2719
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2720
+ type: z.ZodLiteral<"image">;
2721
+ href: z.ZodString;
2722
+ properties: z.ZodOptional<z.ZodObject<{
2723
+ description: z.ZodOptional<z.ZodString>;
2724
+ decorative: z.ZodDefault<z.ZodBoolean>;
2725
+ brightness: z.ZodOptional<z.ZodNumber>;
2726
+ focalPoint: z.ZodOptional<z.ZodObject<{
2727
+ x: z.ZodNumber;
2728
+ y: z.ZodNumber;
2729
+ }, z.core.$strip>>;
2730
+ }, z.core.$strip>>;
2731
+ }, z.core.$strip>, z.ZodObject<{
2732
+ type: z.ZodLiteral<"video">;
2733
+ href: z.ZodString;
2734
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2735
+ 1: "1";
2736
+ 0.4: "0.4";
2737
+ 0.6: "0.6";
2738
+ 0.8: "0.8";
2739
+ }>>>;
2740
+ properties: z.ZodOptional<z.ZodObject<{
2741
+ description: z.ZodOptional<z.ZodString>;
2742
+ decorative: z.ZodDefault<z.ZodBoolean>;
2743
+ brightness: z.ZodOptional<z.ZodNumber>;
2744
+ }, z.core.$strip>>;
2745
+ }, z.core.$strip>, z.ZodObject<{
2746
+ type: z.ZodLiteral<"color">;
2747
+ value: z.ZodString;
2748
+ }, z.core.$strip>, z.ZodObject<{
2749
+ type: z.ZodLiteral<"gradient">;
2750
+ value: z.ZodString;
2751
+ }, z.core.$strip>], "type">>;
2752
+ }, z.core.$strip>, z.ZodObject<{
2753
+ type: z.ZodLiteral<"split">;
2754
+ placement: z.ZodEnum<{
2755
+ left: "left";
2756
+ right: "right";
2757
+ }>;
2758
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2759
+ type: z.ZodLiteral<"image">;
2760
+ href: z.ZodString;
2761
+ properties: z.ZodOptional<z.ZodObject<{
2762
+ description: z.ZodOptional<z.ZodString>;
2763
+ decorative: z.ZodDefault<z.ZodBoolean>;
2764
+ brightness: z.ZodOptional<z.ZodNumber>;
2765
+ focalPoint: z.ZodOptional<z.ZodObject<{
2766
+ x: z.ZodNumber;
2767
+ y: z.ZodNumber;
2768
+ }, z.core.$strip>>;
2769
+ }, z.core.$strip>>;
2770
+ }, z.core.$strip>, z.ZodObject<{
2771
+ type: z.ZodLiteral<"video">;
2772
+ href: z.ZodString;
2773
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2774
+ 1: "1";
2775
+ 0.4: "0.4";
2776
+ 0.6: "0.6";
2777
+ 0.8: "0.8";
2778
+ }>>>;
2779
+ properties: z.ZodOptional<z.ZodObject<{
2780
+ description: z.ZodOptional<z.ZodString>;
2781
+ decorative: z.ZodDefault<z.ZodBoolean>;
2782
+ brightness: z.ZodOptional<z.ZodNumber>;
2783
+ }, z.core.$strip>>;
2784
+ }, z.core.$strip>, z.ZodObject<{
2785
+ type: z.ZodLiteral<"color">;
2786
+ value: z.ZodString;
2787
+ }, z.core.$strip>, z.ZodObject<{
2788
+ type: z.ZodLiteral<"gradient">;
2789
+ value: z.ZodString;
2790
+ }, z.core.$strip>], "type">>;
2791
+ }, z.core.$strip>, z.ZodObject<{
2792
+ type: z.ZodLiteral<"wallpaper">;
2793
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2794
+ type: z.ZodLiteral<"image">;
2795
+ href: z.ZodString;
2796
+ properties: z.ZodOptional<z.ZodObject<{
2797
+ description: z.ZodOptional<z.ZodString>;
2798
+ decorative: z.ZodDefault<z.ZodBoolean>;
2799
+ brightness: z.ZodOptional<z.ZodNumber>;
2800
+ focalPoint: z.ZodOptional<z.ZodObject<{
2801
+ x: z.ZodNumber;
2802
+ y: z.ZodNumber;
2803
+ }, z.core.$strip>>;
2804
+ }, z.core.$strip>>;
2805
+ }, z.core.$strip>, z.ZodObject<{
2806
+ type: z.ZodLiteral<"video">;
2807
+ href: z.ZodString;
2808
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2809
+ 1: "1";
2810
+ 0.4: "0.4";
2811
+ 0.6: "0.6";
2812
+ 0.8: "0.8";
2813
+ }>>>;
2814
+ properties: z.ZodOptional<z.ZodObject<{
2815
+ description: z.ZodOptional<z.ZodString>;
2816
+ decorative: z.ZodDefault<z.ZodBoolean>;
2817
+ brightness: z.ZodOptional<z.ZodNumber>;
2818
+ }, z.core.$strip>>;
2819
+ }, z.core.$strip>, z.ZodObject<{
2820
+ type: z.ZodLiteral<"color">;
2821
+ value: z.ZodString;
2822
+ }, z.core.$strip>, z.ZodObject<{
2823
+ type: z.ZodLiteral<"gradient">;
2824
+ value: z.ZodString;
2825
+ }, z.core.$strip>], "type">>;
2826
+ }, z.core.$strip>], "type">;
2827
+ }, z.core.$strip>>;
2828
+ link: z.ZodOptional<z.ZodObject<{
2829
+ mobile: z.ZodOptional<z.ZodObject<{
2830
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2831
+ type: z.ZodLiteral<"image">;
2832
+ href: z.ZodString;
2833
+ properties: z.ZodOptional<z.ZodObject<{
2834
+ description: z.ZodOptional<z.ZodString>;
2835
+ decorative: z.ZodDefault<z.ZodBoolean>;
2836
+ brightness: z.ZodOptional<z.ZodNumber>;
2837
+ focalPoint: z.ZodOptional<z.ZodObject<{
2838
+ x: z.ZodNumber;
2839
+ y: z.ZodNumber;
2840
+ }, z.core.$strip>>;
2841
+ }, z.core.$strip>>;
2842
+ }, z.core.$strip>, z.ZodObject<{
2843
+ type: z.ZodLiteral<"video">;
2844
+ href: z.ZodString;
2845
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2846
+ 1: "1";
2847
+ 0.4: "0.4";
2848
+ 0.6: "0.6";
2849
+ 0.8: "0.8";
2850
+ }>>>;
2851
+ properties: z.ZodOptional<z.ZodObject<{
2852
+ description: z.ZodOptional<z.ZodString>;
2853
+ decorative: z.ZodDefault<z.ZodBoolean>;
2854
+ brightness: z.ZodOptional<z.ZodNumber>;
2855
+ }, z.core.$strip>>;
2856
+ }, z.core.$strip>, z.ZodObject<{
2857
+ type: z.ZodLiteral<"color">;
2858
+ value: z.ZodString;
2859
+ }, z.core.$strip>, z.ZodObject<{
2860
+ type: z.ZodLiteral<"gradient">;
2861
+ value: z.ZodString;
2862
+ }, z.core.$strip>], "type">>;
2863
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
2864
+ type: z.ZodLiteral<"stack">;
2865
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2866
+ left: "left";
2867
+ center: "center";
2868
+ cover: "cover";
2869
+ }>>>;
2870
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2871
+ type: z.ZodLiteral<"image">;
2872
+ href: z.ZodString;
2873
+ properties: z.ZodOptional<z.ZodObject<{
2874
+ description: z.ZodOptional<z.ZodString>;
2875
+ decorative: z.ZodDefault<z.ZodBoolean>;
2876
+ brightness: z.ZodOptional<z.ZodNumber>;
2877
+ focalPoint: z.ZodOptional<z.ZodObject<{
2878
+ x: z.ZodNumber;
2879
+ y: z.ZodNumber;
2880
+ }, z.core.$strip>>;
2881
+ }, z.core.$strip>>;
2882
+ }, z.core.$strip>, z.ZodObject<{
2883
+ type: z.ZodLiteral<"video">;
2884
+ href: z.ZodString;
2885
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2886
+ 1: "1";
2887
+ 0.4: "0.4";
2888
+ 0.6: "0.6";
2889
+ 0.8: "0.8";
2890
+ }>>>;
2891
+ properties: z.ZodOptional<z.ZodObject<{
2892
+ description: z.ZodOptional<z.ZodString>;
2893
+ decorative: z.ZodDefault<z.ZodBoolean>;
2894
+ brightness: z.ZodOptional<z.ZodNumber>;
2895
+ }, z.core.$strip>>;
2896
+ }, z.core.$strip>, z.ZodObject<{
2897
+ type: z.ZodLiteral<"color">;
2898
+ value: z.ZodString;
2899
+ }, z.core.$strip>, z.ZodObject<{
2900
+ type: z.ZodLiteral<"gradient">;
2901
+ value: z.ZodString;
2902
+ }, z.core.$strip>], "type">>;
2903
+ }, z.core.$strip>, z.ZodObject<{
2904
+ type: z.ZodLiteral<"float">;
2905
+ placement: z.ZodEnum<{
2906
+ left: "left";
2907
+ right: "right";
2908
+ }>;
2909
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2910
+ type: z.ZodLiteral<"image">;
2911
+ href: z.ZodString;
2912
+ properties: z.ZodOptional<z.ZodObject<{
2913
+ description: z.ZodOptional<z.ZodString>;
2914
+ decorative: z.ZodDefault<z.ZodBoolean>;
2915
+ brightness: z.ZodOptional<z.ZodNumber>;
2916
+ focalPoint: z.ZodOptional<z.ZodObject<{
2917
+ x: z.ZodNumber;
2918
+ y: z.ZodNumber;
2919
+ }, z.core.$strip>>;
2920
+ }, z.core.$strip>>;
2921
+ }, z.core.$strip>, z.ZodObject<{
2922
+ type: z.ZodLiteral<"video">;
2923
+ href: z.ZodString;
2924
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2925
+ 1: "1";
2926
+ 0.4: "0.4";
2927
+ 0.6: "0.6";
2928
+ 0.8: "0.8";
2929
+ }>>>;
2930
+ properties: z.ZodOptional<z.ZodObject<{
2931
+ description: z.ZodOptional<z.ZodString>;
2932
+ decorative: z.ZodDefault<z.ZodBoolean>;
2933
+ brightness: z.ZodOptional<z.ZodNumber>;
2934
+ }, z.core.$strip>>;
2935
+ }, z.core.$strip>, z.ZodObject<{
2936
+ type: z.ZodLiteral<"color">;
2937
+ value: z.ZodString;
2938
+ }, z.core.$strip>, z.ZodObject<{
2939
+ type: z.ZodLiteral<"gradient">;
2940
+ value: z.ZodString;
2941
+ }, z.core.$strip>], "type">>;
2942
+ }, z.core.$strip>, z.ZodObject<{
2943
+ type: z.ZodLiteral<"split">;
2944
+ placement: z.ZodEnum<{
2945
+ left: "left";
2946
+ right: "right";
2947
+ }>;
2948
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2949
+ type: z.ZodLiteral<"image">;
2950
+ href: z.ZodString;
2951
+ properties: z.ZodOptional<z.ZodObject<{
2952
+ description: z.ZodOptional<z.ZodString>;
2953
+ decorative: z.ZodDefault<z.ZodBoolean>;
2954
+ brightness: z.ZodOptional<z.ZodNumber>;
2955
+ focalPoint: z.ZodOptional<z.ZodObject<{
2956
+ x: z.ZodNumber;
2957
+ y: z.ZodNumber;
2958
+ }, z.core.$strip>>;
2959
+ }, z.core.$strip>>;
2960
+ }, z.core.$strip>, z.ZodObject<{
2961
+ type: z.ZodLiteral<"video">;
2962
+ href: z.ZodString;
2963
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2964
+ 1: "1";
2965
+ 0.4: "0.4";
2966
+ 0.6: "0.6";
2967
+ 0.8: "0.8";
2968
+ }>>>;
2969
+ properties: z.ZodOptional<z.ZodObject<{
2970
+ description: z.ZodOptional<z.ZodString>;
2971
+ decorative: z.ZodDefault<z.ZodBoolean>;
2972
+ brightness: z.ZodOptional<z.ZodNumber>;
2973
+ }, z.core.$strip>>;
2974
+ }, z.core.$strip>, z.ZodObject<{
2975
+ type: z.ZodLiteral<"color">;
2976
+ value: z.ZodString;
2977
+ }, z.core.$strip>, z.ZodObject<{
2978
+ type: z.ZodLiteral<"gradient">;
2979
+ value: z.ZodString;
2980
+ }, z.core.$strip>], "type">>;
2981
+ }, z.core.$strip>, z.ZodObject<{
2982
+ type: z.ZodLiteral<"wallpaper">;
2983
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2984
+ type: z.ZodLiteral<"image">;
2985
+ href: z.ZodString;
2986
+ properties: z.ZodOptional<z.ZodObject<{
2987
+ description: z.ZodOptional<z.ZodString>;
2988
+ decorative: z.ZodDefault<z.ZodBoolean>;
2989
+ brightness: z.ZodOptional<z.ZodNumber>;
2990
+ focalPoint: z.ZodOptional<z.ZodObject<{
2991
+ x: z.ZodNumber;
2992
+ y: z.ZodNumber;
2993
+ }, z.core.$strip>>;
2994
+ }, z.core.$strip>>;
2995
+ }, z.core.$strip>, z.ZodObject<{
2996
+ type: z.ZodLiteral<"video">;
2997
+ href: z.ZodString;
2998
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
2999
+ 1: "1";
3000
+ 0.4: "0.4";
3001
+ 0.6: "0.6";
3002
+ 0.8: "0.8";
3003
+ }>>>;
3004
+ properties: z.ZodOptional<z.ZodObject<{
3005
+ description: z.ZodOptional<z.ZodString>;
3006
+ decorative: z.ZodDefault<z.ZodBoolean>;
3007
+ brightness: z.ZodOptional<z.ZodNumber>;
3008
+ }, z.core.$strip>>;
3009
+ }, z.core.$strip>, z.ZodObject<{
3010
+ type: z.ZodLiteral<"color">;
3011
+ value: z.ZodString;
3012
+ }, z.core.$strip>, z.ZodObject<{
3013
+ type: z.ZodLiteral<"gradient">;
3014
+ value: z.ZodString;
3015
+ }, z.core.$strip>], "type">>;
3016
+ }, z.core.$strip>], "type">;
3017
+ }, z.core.$strip>>;
3018
+ others: z.ZodOptional<z.ZodObject<{
3019
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3020
+ type: z.ZodLiteral<"image">;
3021
+ href: z.ZodString;
3022
+ properties: z.ZodOptional<z.ZodObject<{
3023
+ description: z.ZodOptional<z.ZodString>;
3024
+ decorative: z.ZodDefault<z.ZodBoolean>;
3025
+ brightness: z.ZodOptional<z.ZodNumber>;
3026
+ focalPoint: z.ZodOptional<z.ZodObject<{
3027
+ x: z.ZodNumber;
3028
+ y: z.ZodNumber;
3029
+ }, z.core.$strip>>;
3030
+ }, z.core.$strip>>;
3031
+ }, z.core.$strip>, z.ZodObject<{
3032
+ type: z.ZodLiteral<"video">;
3033
+ href: z.ZodString;
3034
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3035
+ 1: "1";
3036
+ 0.4: "0.4";
3037
+ 0.6: "0.6";
3038
+ 0.8: "0.8";
3039
+ }>>>;
3040
+ properties: z.ZodOptional<z.ZodObject<{
3041
+ description: z.ZodOptional<z.ZodString>;
3042
+ decorative: z.ZodDefault<z.ZodBoolean>;
3043
+ brightness: z.ZodOptional<z.ZodNumber>;
3044
+ }, z.core.$strip>>;
3045
+ }, z.core.$strip>, z.ZodObject<{
3046
+ type: z.ZodLiteral<"color">;
3047
+ value: z.ZodString;
3048
+ }, z.core.$strip>, z.ZodObject<{
3049
+ type: z.ZodLiteral<"gradient">;
3050
+ value: z.ZodString;
3051
+ }, z.core.$strip>], "type">>;
3052
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
3053
+ type: z.ZodLiteral<"stack">;
3054
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3055
+ left: "left";
3056
+ center: "center";
3057
+ cover: "cover";
3058
+ }>>>;
3059
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3060
+ type: z.ZodLiteral<"image">;
3061
+ href: z.ZodString;
3062
+ properties: z.ZodOptional<z.ZodObject<{
3063
+ description: z.ZodOptional<z.ZodString>;
3064
+ decorative: z.ZodDefault<z.ZodBoolean>;
3065
+ brightness: z.ZodOptional<z.ZodNumber>;
3066
+ focalPoint: z.ZodOptional<z.ZodObject<{
3067
+ x: z.ZodNumber;
3068
+ y: z.ZodNumber;
3069
+ }, z.core.$strip>>;
3070
+ }, z.core.$strip>>;
3071
+ }, z.core.$strip>, z.ZodObject<{
3072
+ type: z.ZodLiteral<"video">;
3073
+ href: z.ZodString;
3074
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3075
+ 1: "1";
3076
+ 0.4: "0.4";
3077
+ 0.6: "0.6";
3078
+ 0.8: "0.8";
3079
+ }>>>;
3080
+ properties: z.ZodOptional<z.ZodObject<{
3081
+ description: z.ZodOptional<z.ZodString>;
3082
+ decorative: z.ZodDefault<z.ZodBoolean>;
3083
+ brightness: z.ZodOptional<z.ZodNumber>;
3084
+ }, z.core.$strip>>;
3085
+ }, z.core.$strip>, z.ZodObject<{
3086
+ type: z.ZodLiteral<"color">;
3087
+ value: z.ZodString;
3088
+ }, z.core.$strip>, z.ZodObject<{
3089
+ type: z.ZodLiteral<"gradient">;
3090
+ value: z.ZodString;
3091
+ }, z.core.$strip>], "type">>;
3092
+ }, z.core.$strip>, z.ZodObject<{
3093
+ type: z.ZodLiteral<"float">;
3094
+ placement: z.ZodEnum<{
3095
+ left: "left";
3096
+ right: "right";
3097
+ }>;
3098
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3099
+ type: z.ZodLiteral<"image">;
3100
+ href: z.ZodString;
3101
+ properties: z.ZodOptional<z.ZodObject<{
3102
+ description: z.ZodOptional<z.ZodString>;
3103
+ decorative: z.ZodDefault<z.ZodBoolean>;
3104
+ brightness: z.ZodOptional<z.ZodNumber>;
3105
+ focalPoint: z.ZodOptional<z.ZodObject<{
3106
+ x: z.ZodNumber;
3107
+ y: z.ZodNumber;
3108
+ }, z.core.$strip>>;
3109
+ }, z.core.$strip>>;
3110
+ }, z.core.$strip>, z.ZodObject<{
3111
+ type: z.ZodLiteral<"video">;
3112
+ href: z.ZodString;
3113
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3114
+ 1: "1";
3115
+ 0.4: "0.4";
3116
+ 0.6: "0.6";
3117
+ 0.8: "0.8";
3118
+ }>>>;
3119
+ properties: z.ZodOptional<z.ZodObject<{
3120
+ description: z.ZodOptional<z.ZodString>;
3121
+ decorative: z.ZodDefault<z.ZodBoolean>;
3122
+ brightness: z.ZodOptional<z.ZodNumber>;
3123
+ }, z.core.$strip>>;
3124
+ }, z.core.$strip>, z.ZodObject<{
3125
+ type: z.ZodLiteral<"color">;
3126
+ value: z.ZodString;
3127
+ }, z.core.$strip>, z.ZodObject<{
3128
+ type: z.ZodLiteral<"gradient">;
3129
+ value: z.ZodString;
3130
+ }, z.core.$strip>], "type">>;
3131
+ }, z.core.$strip>, z.ZodObject<{
3132
+ type: z.ZodLiteral<"split">;
3133
+ placement: z.ZodEnum<{
3134
+ left: "left";
3135
+ right: "right";
3136
+ }>;
3137
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3138
+ type: z.ZodLiteral<"image">;
3139
+ href: z.ZodString;
3140
+ properties: z.ZodOptional<z.ZodObject<{
3141
+ description: z.ZodOptional<z.ZodString>;
3142
+ decorative: z.ZodDefault<z.ZodBoolean>;
3143
+ brightness: z.ZodOptional<z.ZodNumber>;
3144
+ focalPoint: z.ZodOptional<z.ZodObject<{
3145
+ x: z.ZodNumber;
3146
+ y: z.ZodNumber;
3147
+ }, z.core.$strip>>;
3148
+ }, z.core.$strip>>;
3149
+ }, z.core.$strip>, z.ZodObject<{
3150
+ type: z.ZodLiteral<"video">;
3151
+ href: z.ZodString;
3152
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3153
+ 1: "1";
3154
+ 0.4: "0.4";
3155
+ 0.6: "0.6";
3156
+ 0.8: "0.8";
3157
+ }>>>;
3158
+ properties: z.ZodOptional<z.ZodObject<{
3159
+ description: z.ZodOptional<z.ZodString>;
3160
+ decorative: z.ZodDefault<z.ZodBoolean>;
3161
+ brightness: z.ZodOptional<z.ZodNumber>;
3162
+ }, z.core.$strip>>;
3163
+ }, z.core.$strip>, z.ZodObject<{
3164
+ type: z.ZodLiteral<"color">;
3165
+ value: z.ZodString;
3166
+ }, z.core.$strip>, z.ZodObject<{
3167
+ type: z.ZodLiteral<"gradient">;
3168
+ value: z.ZodString;
3169
+ }, z.core.$strip>], "type">>;
3170
+ }, z.core.$strip>, z.ZodObject<{
3171
+ type: z.ZodLiteral<"wallpaper">;
3172
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3173
+ type: z.ZodLiteral<"image">;
3174
+ href: z.ZodString;
3175
+ properties: z.ZodOptional<z.ZodObject<{
3176
+ description: z.ZodOptional<z.ZodString>;
3177
+ decorative: z.ZodDefault<z.ZodBoolean>;
3178
+ brightness: z.ZodOptional<z.ZodNumber>;
3179
+ focalPoint: z.ZodOptional<z.ZodObject<{
3180
+ x: z.ZodNumber;
3181
+ y: z.ZodNumber;
3182
+ }, z.core.$strip>>;
3183
+ }, z.core.$strip>>;
3184
+ }, z.core.$strip>, z.ZodObject<{
3185
+ type: z.ZodLiteral<"video">;
3186
+ href: z.ZodString;
3187
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3188
+ 1: "1";
3189
+ 0.4: "0.4";
3190
+ 0.6: "0.6";
3191
+ 0.8: "0.8";
3192
+ }>>>;
3193
+ properties: z.ZodOptional<z.ZodObject<{
3194
+ description: z.ZodOptional<z.ZodString>;
3195
+ decorative: z.ZodDefault<z.ZodBoolean>;
3196
+ brightness: z.ZodOptional<z.ZodNumber>;
3197
+ }, z.core.$strip>>;
3198
+ }, z.core.$strip>, z.ZodObject<{
3199
+ type: z.ZodLiteral<"color">;
3200
+ value: z.ZodString;
3201
+ }, z.core.$strip>, z.ZodObject<{
3202
+ type: z.ZodLiteral<"gradient">;
3203
+ value: z.ZodString;
3204
+ }, z.core.$strip>], "type">>;
3205
+ }, z.core.$strip>], "type">;
3206
+ }, z.core.$strip>>;
3207
+ }, z.core.$strip>>;
3208
+ }, z.core.$strip>>;
3209
+ sectionLayouts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3210
+ inApp: z.ZodOptional<z.ZodObject<{
3211
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3212
+ type: z.ZodLiteral<"image">;
3213
+ href: z.ZodString;
3214
+ properties: z.ZodOptional<z.ZodObject<{
3215
+ description: z.ZodOptional<z.ZodString>;
3216
+ decorative: z.ZodDefault<z.ZodBoolean>;
3217
+ brightness: z.ZodOptional<z.ZodNumber>;
3218
+ focalPoint: z.ZodOptional<z.ZodObject<{
3219
+ x: z.ZodNumber;
3220
+ y: z.ZodNumber;
3221
+ }, z.core.$strip>>;
3222
+ }, z.core.$strip>>;
3223
+ }, z.core.$strip>, z.ZodObject<{
3224
+ type: z.ZodLiteral<"video">;
3225
+ href: z.ZodString;
3226
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3227
+ 1: "1";
3228
+ 0.4: "0.4";
3229
+ 0.6: "0.6";
3230
+ 0.8: "0.8";
3231
+ }>>>;
3232
+ properties: z.ZodOptional<z.ZodObject<{
3233
+ description: z.ZodOptional<z.ZodString>;
3234
+ decorative: z.ZodDefault<z.ZodBoolean>;
3235
+ brightness: z.ZodOptional<z.ZodNumber>;
3236
+ }, z.core.$strip>>;
3237
+ }, z.core.$strip>, z.ZodObject<{
3238
+ type: z.ZodLiteral<"color">;
3239
+ value: z.ZodString;
3240
+ }, z.core.$strip>, z.ZodObject<{
3241
+ type: z.ZodLiteral<"gradient">;
3242
+ value: z.ZodString;
3243
+ }, z.core.$strip>], "type">>;
3244
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
3245
+ type: z.ZodLiteral<"stack">;
3246
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3247
+ left: "left";
3248
+ center: "center";
3249
+ cover: "cover";
3250
+ }>>>;
3251
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3252
+ type: z.ZodLiteral<"image">;
3253
+ href: z.ZodString;
3254
+ properties: z.ZodOptional<z.ZodObject<{
3255
+ description: z.ZodOptional<z.ZodString>;
3256
+ decorative: z.ZodDefault<z.ZodBoolean>;
3257
+ brightness: z.ZodOptional<z.ZodNumber>;
3258
+ focalPoint: z.ZodOptional<z.ZodObject<{
3259
+ x: z.ZodNumber;
3260
+ y: z.ZodNumber;
3261
+ }, z.core.$strip>>;
3262
+ }, z.core.$strip>>;
3263
+ }, z.core.$strip>, z.ZodObject<{
3264
+ type: z.ZodLiteral<"video">;
3265
+ href: z.ZodString;
3266
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3267
+ 1: "1";
3268
+ 0.4: "0.4";
3269
+ 0.6: "0.6";
3270
+ 0.8: "0.8";
3271
+ }>>>;
3272
+ properties: z.ZodOptional<z.ZodObject<{
3273
+ description: z.ZodOptional<z.ZodString>;
3274
+ decorative: z.ZodDefault<z.ZodBoolean>;
3275
+ brightness: z.ZodOptional<z.ZodNumber>;
3276
+ }, z.core.$strip>>;
3277
+ }, z.core.$strip>, z.ZodObject<{
3278
+ type: z.ZodLiteral<"color">;
3279
+ value: z.ZodString;
3280
+ }, z.core.$strip>, z.ZodObject<{
3281
+ type: z.ZodLiteral<"gradient">;
3282
+ value: z.ZodString;
3283
+ }, z.core.$strip>], "type">>;
3284
+ }, z.core.$strip>, z.ZodObject<{
3285
+ type: z.ZodLiteral<"float">;
3286
+ placement: z.ZodEnum<{
3287
+ left: "left";
3288
+ right: "right";
3289
+ }>;
3290
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3291
+ type: z.ZodLiteral<"image">;
3292
+ href: z.ZodString;
3293
+ properties: z.ZodOptional<z.ZodObject<{
3294
+ description: z.ZodOptional<z.ZodString>;
3295
+ decorative: z.ZodDefault<z.ZodBoolean>;
3296
+ brightness: z.ZodOptional<z.ZodNumber>;
3297
+ focalPoint: z.ZodOptional<z.ZodObject<{
3298
+ x: z.ZodNumber;
3299
+ y: z.ZodNumber;
3300
+ }, z.core.$strip>>;
3301
+ }, z.core.$strip>>;
3302
+ }, z.core.$strip>, z.ZodObject<{
3303
+ type: z.ZodLiteral<"video">;
3304
+ href: z.ZodString;
3305
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3306
+ 1: "1";
3307
+ 0.4: "0.4";
3308
+ 0.6: "0.6";
3309
+ 0.8: "0.8";
3310
+ }>>>;
3311
+ properties: z.ZodOptional<z.ZodObject<{
3312
+ description: z.ZodOptional<z.ZodString>;
3313
+ decorative: z.ZodDefault<z.ZodBoolean>;
3314
+ brightness: z.ZodOptional<z.ZodNumber>;
3315
+ }, z.core.$strip>>;
3316
+ }, z.core.$strip>, z.ZodObject<{
3317
+ type: z.ZodLiteral<"color">;
3318
+ value: z.ZodString;
3319
+ }, z.core.$strip>, z.ZodObject<{
3320
+ type: z.ZodLiteral<"gradient">;
3321
+ value: z.ZodString;
3322
+ }, z.core.$strip>], "type">>;
3323
+ }, z.core.$strip>, z.ZodObject<{
3324
+ type: z.ZodLiteral<"split">;
3325
+ placement: z.ZodEnum<{
3326
+ left: "left";
3327
+ right: "right";
3328
+ }>;
3329
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3330
+ type: z.ZodLiteral<"image">;
3331
+ href: z.ZodString;
3332
+ properties: z.ZodOptional<z.ZodObject<{
3333
+ description: z.ZodOptional<z.ZodString>;
3334
+ decorative: z.ZodDefault<z.ZodBoolean>;
3335
+ brightness: z.ZodOptional<z.ZodNumber>;
3336
+ focalPoint: z.ZodOptional<z.ZodObject<{
3337
+ x: z.ZodNumber;
3338
+ y: z.ZodNumber;
3339
+ }, z.core.$strip>>;
3340
+ }, z.core.$strip>>;
3341
+ }, z.core.$strip>, z.ZodObject<{
3342
+ type: z.ZodLiteral<"video">;
3343
+ href: z.ZodString;
3344
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3345
+ 1: "1";
3346
+ 0.4: "0.4";
3347
+ 0.6: "0.6";
3348
+ 0.8: "0.8";
3349
+ }>>>;
3350
+ properties: z.ZodOptional<z.ZodObject<{
3351
+ description: z.ZodOptional<z.ZodString>;
3352
+ decorative: z.ZodDefault<z.ZodBoolean>;
3353
+ brightness: z.ZodOptional<z.ZodNumber>;
3354
+ }, z.core.$strip>>;
3355
+ }, z.core.$strip>, z.ZodObject<{
3356
+ type: z.ZodLiteral<"color">;
3357
+ value: z.ZodString;
3358
+ }, z.core.$strip>, z.ZodObject<{
3359
+ type: z.ZodLiteral<"gradient">;
3360
+ value: z.ZodString;
3361
+ }, z.core.$strip>], "type">>;
3362
+ }, z.core.$strip>, z.ZodObject<{
3363
+ type: z.ZodLiteral<"wallpaper">;
3364
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3365
+ type: z.ZodLiteral<"image">;
3366
+ href: z.ZodString;
3367
+ properties: z.ZodOptional<z.ZodObject<{
3368
+ description: z.ZodOptional<z.ZodString>;
3369
+ decorative: z.ZodDefault<z.ZodBoolean>;
3370
+ brightness: z.ZodOptional<z.ZodNumber>;
3371
+ focalPoint: z.ZodOptional<z.ZodObject<{
3372
+ x: z.ZodNumber;
3373
+ y: z.ZodNumber;
3374
+ }, z.core.$strip>>;
3375
+ }, z.core.$strip>>;
3376
+ }, z.core.$strip>, z.ZodObject<{
3377
+ type: z.ZodLiteral<"video">;
3378
+ href: z.ZodString;
3379
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3380
+ 1: "1";
3381
+ 0.4: "0.4";
3382
+ 0.6: "0.6";
3383
+ 0.8: "0.8";
3384
+ }>>>;
3385
+ properties: z.ZodOptional<z.ZodObject<{
3386
+ description: z.ZodOptional<z.ZodString>;
3387
+ decorative: z.ZodDefault<z.ZodBoolean>;
3388
+ brightness: z.ZodOptional<z.ZodNumber>;
3389
+ }, z.core.$strip>>;
3390
+ }, z.core.$strip>, z.ZodObject<{
3391
+ type: z.ZodLiteral<"color">;
3392
+ value: z.ZodString;
3393
+ }, z.core.$strip>, z.ZodObject<{
3394
+ type: z.ZodLiteral<"gradient">;
3395
+ value: z.ZodString;
3396
+ }, z.core.$strip>], "type">>;
3397
+ }, z.core.$strip>], "type">;
3398
+ }, z.core.$strip>>;
3399
+ link: z.ZodOptional<z.ZodObject<{
3400
+ mobile: z.ZodOptional<z.ZodObject<{
3401
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3402
+ type: z.ZodLiteral<"image">;
3403
+ href: z.ZodString;
3404
+ properties: z.ZodOptional<z.ZodObject<{
3405
+ description: z.ZodOptional<z.ZodString>;
3406
+ decorative: z.ZodDefault<z.ZodBoolean>;
3407
+ brightness: z.ZodOptional<z.ZodNumber>;
3408
+ focalPoint: z.ZodOptional<z.ZodObject<{
3409
+ x: z.ZodNumber;
3410
+ y: z.ZodNumber;
3411
+ }, z.core.$strip>>;
3412
+ }, z.core.$strip>>;
3413
+ }, z.core.$strip>, z.ZodObject<{
3414
+ type: z.ZodLiteral<"video">;
3415
+ href: z.ZodString;
3416
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3417
+ 1: "1";
3418
+ 0.4: "0.4";
3419
+ 0.6: "0.6";
3420
+ 0.8: "0.8";
3421
+ }>>>;
3422
+ properties: z.ZodOptional<z.ZodObject<{
3423
+ description: z.ZodOptional<z.ZodString>;
3424
+ decorative: z.ZodDefault<z.ZodBoolean>;
3425
+ brightness: z.ZodOptional<z.ZodNumber>;
3426
+ }, z.core.$strip>>;
3427
+ }, z.core.$strip>, z.ZodObject<{
3428
+ type: z.ZodLiteral<"color">;
3429
+ value: z.ZodString;
3430
+ }, z.core.$strip>, z.ZodObject<{
3431
+ type: z.ZodLiteral<"gradient">;
3432
+ value: z.ZodString;
3433
+ }, z.core.$strip>], "type">>;
3434
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
3435
+ type: z.ZodLiteral<"stack">;
3436
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3437
+ left: "left";
3438
+ center: "center";
3439
+ cover: "cover";
3440
+ }>>>;
3441
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3442
+ type: z.ZodLiteral<"image">;
3443
+ href: z.ZodString;
3444
+ properties: z.ZodOptional<z.ZodObject<{
3445
+ description: z.ZodOptional<z.ZodString>;
3446
+ decorative: z.ZodDefault<z.ZodBoolean>;
3447
+ brightness: z.ZodOptional<z.ZodNumber>;
3448
+ focalPoint: z.ZodOptional<z.ZodObject<{
3449
+ x: z.ZodNumber;
3450
+ y: z.ZodNumber;
3451
+ }, z.core.$strip>>;
3452
+ }, z.core.$strip>>;
3453
+ }, z.core.$strip>, z.ZodObject<{
3454
+ type: z.ZodLiteral<"video">;
3455
+ href: z.ZodString;
3456
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3457
+ 1: "1";
3458
+ 0.4: "0.4";
3459
+ 0.6: "0.6";
3460
+ 0.8: "0.8";
3461
+ }>>>;
3462
+ properties: z.ZodOptional<z.ZodObject<{
3463
+ description: z.ZodOptional<z.ZodString>;
3464
+ decorative: z.ZodDefault<z.ZodBoolean>;
3465
+ brightness: z.ZodOptional<z.ZodNumber>;
3466
+ }, z.core.$strip>>;
3467
+ }, z.core.$strip>, z.ZodObject<{
3468
+ type: z.ZodLiteral<"color">;
3469
+ value: z.ZodString;
3470
+ }, z.core.$strip>, z.ZodObject<{
3471
+ type: z.ZodLiteral<"gradient">;
3472
+ value: z.ZodString;
3473
+ }, z.core.$strip>], "type">>;
3474
+ }, z.core.$strip>, z.ZodObject<{
3475
+ type: z.ZodLiteral<"float">;
3476
+ placement: z.ZodEnum<{
3477
+ left: "left";
3478
+ right: "right";
3479
+ }>;
3480
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3481
+ type: z.ZodLiteral<"image">;
3482
+ href: z.ZodString;
3483
+ properties: z.ZodOptional<z.ZodObject<{
3484
+ description: z.ZodOptional<z.ZodString>;
3485
+ decorative: z.ZodDefault<z.ZodBoolean>;
3486
+ brightness: z.ZodOptional<z.ZodNumber>;
3487
+ focalPoint: z.ZodOptional<z.ZodObject<{
3488
+ x: z.ZodNumber;
3489
+ y: z.ZodNumber;
3490
+ }, z.core.$strip>>;
3491
+ }, z.core.$strip>>;
3492
+ }, z.core.$strip>, z.ZodObject<{
3493
+ type: z.ZodLiteral<"video">;
3494
+ href: z.ZodString;
3495
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3496
+ 1: "1";
3497
+ 0.4: "0.4";
3498
+ 0.6: "0.6";
3499
+ 0.8: "0.8";
3500
+ }>>>;
3501
+ properties: z.ZodOptional<z.ZodObject<{
3502
+ description: z.ZodOptional<z.ZodString>;
3503
+ decorative: z.ZodDefault<z.ZodBoolean>;
3504
+ brightness: z.ZodOptional<z.ZodNumber>;
3505
+ }, z.core.$strip>>;
3506
+ }, z.core.$strip>, z.ZodObject<{
3507
+ type: z.ZodLiteral<"color">;
3508
+ value: z.ZodString;
3509
+ }, z.core.$strip>, z.ZodObject<{
3510
+ type: z.ZodLiteral<"gradient">;
3511
+ value: z.ZodString;
3512
+ }, z.core.$strip>], "type">>;
3513
+ }, z.core.$strip>, z.ZodObject<{
3514
+ type: z.ZodLiteral<"split">;
3515
+ placement: z.ZodEnum<{
3516
+ left: "left";
3517
+ right: "right";
3518
+ }>;
3519
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3520
+ type: z.ZodLiteral<"image">;
3521
+ href: z.ZodString;
3522
+ properties: z.ZodOptional<z.ZodObject<{
3523
+ description: z.ZodOptional<z.ZodString>;
3524
+ decorative: z.ZodDefault<z.ZodBoolean>;
3525
+ brightness: z.ZodOptional<z.ZodNumber>;
3526
+ focalPoint: z.ZodOptional<z.ZodObject<{
3527
+ x: z.ZodNumber;
3528
+ y: z.ZodNumber;
3529
+ }, z.core.$strip>>;
3530
+ }, z.core.$strip>>;
3531
+ }, z.core.$strip>, z.ZodObject<{
3532
+ type: z.ZodLiteral<"video">;
3533
+ href: z.ZodString;
3534
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3535
+ 1: "1";
3536
+ 0.4: "0.4";
3537
+ 0.6: "0.6";
3538
+ 0.8: "0.8";
3539
+ }>>>;
3540
+ properties: z.ZodOptional<z.ZodObject<{
3541
+ description: z.ZodOptional<z.ZodString>;
3542
+ decorative: z.ZodDefault<z.ZodBoolean>;
3543
+ brightness: z.ZodOptional<z.ZodNumber>;
3544
+ }, z.core.$strip>>;
3545
+ }, z.core.$strip>, z.ZodObject<{
3546
+ type: z.ZodLiteral<"color">;
3547
+ value: z.ZodString;
3548
+ }, z.core.$strip>, z.ZodObject<{
3549
+ type: z.ZodLiteral<"gradient">;
3550
+ value: z.ZodString;
3551
+ }, z.core.$strip>], "type">>;
3552
+ }, z.core.$strip>, z.ZodObject<{
3553
+ type: z.ZodLiteral<"wallpaper">;
3554
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3555
+ type: z.ZodLiteral<"image">;
3556
+ href: z.ZodString;
3557
+ properties: z.ZodOptional<z.ZodObject<{
3558
+ description: z.ZodOptional<z.ZodString>;
3559
+ decorative: z.ZodDefault<z.ZodBoolean>;
3560
+ brightness: z.ZodOptional<z.ZodNumber>;
3561
+ focalPoint: z.ZodOptional<z.ZodObject<{
3562
+ x: z.ZodNumber;
3563
+ y: z.ZodNumber;
3564
+ }, z.core.$strip>>;
3565
+ }, z.core.$strip>>;
3566
+ }, z.core.$strip>, z.ZodObject<{
3567
+ type: z.ZodLiteral<"video">;
3568
+ href: z.ZodString;
3569
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3570
+ 1: "1";
3571
+ 0.4: "0.4";
3572
+ 0.6: "0.6";
3573
+ 0.8: "0.8";
3574
+ }>>>;
3575
+ properties: z.ZodOptional<z.ZodObject<{
3576
+ description: z.ZodOptional<z.ZodString>;
3577
+ decorative: z.ZodDefault<z.ZodBoolean>;
3578
+ brightness: z.ZodOptional<z.ZodNumber>;
3579
+ }, z.core.$strip>>;
3580
+ }, z.core.$strip>, z.ZodObject<{
3581
+ type: z.ZodLiteral<"color">;
3582
+ value: z.ZodString;
3583
+ }, z.core.$strip>, z.ZodObject<{
3584
+ type: z.ZodLiteral<"gradient">;
3585
+ value: z.ZodString;
3586
+ }, z.core.$strip>], "type">>;
3587
+ }, z.core.$strip>], "type">;
3588
+ }, z.core.$strip>>;
3589
+ others: z.ZodOptional<z.ZodObject<{
3590
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3591
+ type: z.ZodLiteral<"image">;
3592
+ href: z.ZodString;
3593
+ properties: z.ZodOptional<z.ZodObject<{
3594
+ description: z.ZodOptional<z.ZodString>;
3595
+ decorative: z.ZodDefault<z.ZodBoolean>;
3596
+ brightness: z.ZodOptional<z.ZodNumber>;
3597
+ focalPoint: z.ZodOptional<z.ZodObject<{
3598
+ x: z.ZodNumber;
3599
+ y: z.ZodNumber;
3600
+ }, z.core.$strip>>;
3601
+ }, z.core.$strip>>;
3602
+ }, z.core.$strip>, z.ZodObject<{
3603
+ type: z.ZodLiteral<"video">;
3604
+ href: z.ZodString;
3605
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3606
+ 1: "1";
3607
+ 0.4: "0.4";
3608
+ 0.6: "0.6";
3609
+ 0.8: "0.8";
3610
+ }>>>;
3611
+ properties: z.ZodOptional<z.ZodObject<{
3612
+ description: z.ZodOptional<z.ZodString>;
3613
+ decorative: z.ZodDefault<z.ZodBoolean>;
3614
+ brightness: z.ZodOptional<z.ZodNumber>;
3615
+ }, z.core.$strip>>;
3616
+ }, z.core.$strip>, z.ZodObject<{
3617
+ type: z.ZodLiteral<"color">;
3618
+ value: z.ZodString;
3619
+ }, z.core.$strip>, z.ZodObject<{
3620
+ type: z.ZodLiteral<"gradient">;
3621
+ value: z.ZodString;
3622
+ }, z.core.$strip>], "type">>;
3623
+ layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
3624
+ type: z.ZodLiteral<"stack">;
3625
+ align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3626
+ left: "left";
3627
+ center: "center";
3628
+ cover: "cover";
3629
+ }>>>;
3630
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3631
+ type: z.ZodLiteral<"image">;
3632
+ href: z.ZodString;
3633
+ properties: z.ZodOptional<z.ZodObject<{
3634
+ description: z.ZodOptional<z.ZodString>;
3635
+ decorative: z.ZodDefault<z.ZodBoolean>;
3636
+ brightness: z.ZodOptional<z.ZodNumber>;
3637
+ focalPoint: z.ZodOptional<z.ZodObject<{
3638
+ x: z.ZodNumber;
3639
+ y: z.ZodNumber;
3640
+ }, z.core.$strip>>;
3641
+ }, z.core.$strip>>;
3642
+ }, z.core.$strip>, z.ZodObject<{
3643
+ type: z.ZodLiteral<"video">;
3644
+ href: z.ZodString;
3645
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3646
+ 1: "1";
3647
+ 0.4: "0.4";
3648
+ 0.6: "0.6";
3649
+ 0.8: "0.8";
3650
+ }>>>;
3651
+ properties: z.ZodOptional<z.ZodObject<{
3652
+ description: z.ZodOptional<z.ZodString>;
3653
+ decorative: z.ZodDefault<z.ZodBoolean>;
3654
+ brightness: z.ZodOptional<z.ZodNumber>;
3655
+ }, z.core.$strip>>;
3656
+ }, z.core.$strip>, z.ZodObject<{
3657
+ type: z.ZodLiteral<"color">;
3658
+ value: z.ZodString;
3659
+ }, z.core.$strip>, z.ZodObject<{
3660
+ type: z.ZodLiteral<"gradient">;
3661
+ value: z.ZodString;
3662
+ }, z.core.$strip>], "type">>;
3663
+ }, z.core.$strip>, z.ZodObject<{
3664
+ type: z.ZodLiteral<"float">;
3665
+ placement: z.ZodEnum<{
3666
+ left: "left";
3667
+ right: "right";
3668
+ }>;
3669
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3670
+ type: z.ZodLiteral<"image">;
3671
+ href: z.ZodString;
3672
+ properties: z.ZodOptional<z.ZodObject<{
3673
+ description: z.ZodOptional<z.ZodString>;
3674
+ decorative: z.ZodDefault<z.ZodBoolean>;
3675
+ brightness: z.ZodOptional<z.ZodNumber>;
3676
+ focalPoint: z.ZodOptional<z.ZodObject<{
3677
+ x: z.ZodNumber;
3678
+ y: z.ZodNumber;
3679
+ }, z.core.$strip>>;
3680
+ }, z.core.$strip>>;
3681
+ }, z.core.$strip>, z.ZodObject<{
3682
+ type: z.ZodLiteral<"video">;
3683
+ href: z.ZodString;
3684
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3685
+ 1: "1";
3686
+ 0.4: "0.4";
3687
+ 0.6: "0.6";
3688
+ 0.8: "0.8";
3689
+ }>>>;
3690
+ properties: z.ZodOptional<z.ZodObject<{
3691
+ description: z.ZodOptional<z.ZodString>;
3692
+ decorative: z.ZodDefault<z.ZodBoolean>;
3693
+ brightness: z.ZodOptional<z.ZodNumber>;
3694
+ }, z.core.$strip>>;
3695
+ }, z.core.$strip>, z.ZodObject<{
3696
+ type: z.ZodLiteral<"color">;
3697
+ value: z.ZodString;
3698
+ }, z.core.$strip>, z.ZodObject<{
3699
+ type: z.ZodLiteral<"gradient">;
3700
+ value: z.ZodString;
3701
+ }, z.core.$strip>], "type">>;
3702
+ }, z.core.$strip>, z.ZodObject<{
3703
+ type: z.ZodLiteral<"split">;
3704
+ placement: z.ZodEnum<{
3705
+ left: "left";
3706
+ right: "right";
3707
+ }>;
3708
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3709
+ type: z.ZodLiteral<"image">;
3710
+ href: z.ZodString;
3711
+ properties: z.ZodOptional<z.ZodObject<{
3712
+ description: z.ZodOptional<z.ZodString>;
3713
+ decorative: z.ZodDefault<z.ZodBoolean>;
3714
+ brightness: z.ZodOptional<z.ZodNumber>;
3715
+ focalPoint: z.ZodOptional<z.ZodObject<{
3716
+ x: z.ZodNumber;
3717
+ y: z.ZodNumber;
3718
+ }, z.core.$strip>>;
3719
+ }, z.core.$strip>>;
3720
+ }, z.core.$strip>, z.ZodObject<{
3721
+ type: z.ZodLiteral<"video">;
3722
+ href: z.ZodString;
3723
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3724
+ 1: "1";
3725
+ 0.4: "0.4";
3726
+ 0.6: "0.6";
3727
+ 0.8: "0.8";
3728
+ }>>>;
3729
+ properties: z.ZodOptional<z.ZodObject<{
3730
+ description: z.ZodOptional<z.ZodString>;
3731
+ decorative: z.ZodDefault<z.ZodBoolean>;
3732
+ brightness: z.ZodOptional<z.ZodNumber>;
3733
+ }, z.core.$strip>>;
3734
+ }, z.core.$strip>, z.ZodObject<{
3735
+ type: z.ZodLiteral<"color">;
3736
+ value: z.ZodString;
3737
+ }, z.core.$strip>, z.ZodObject<{
3738
+ type: z.ZodLiteral<"gradient">;
3739
+ value: z.ZodString;
3740
+ }, z.core.$strip>], "type">>;
3741
+ }, z.core.$strip>, z.ZodObject<{
3742
+ type: z.ZodLiteral<"wallpaper">;
3743
+ attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3744
+ type: z.ZodLiteral<"image">;
3745
+ href: z.ZodString;
3746
+ properties: z.ZodOptional<z.ZodObject<{
3747
+ description: z.ZodOptional<z.ZodString>;
3748
+ decorative: z.ZodDefault<z.ZodBoolean>;
3749
+ brightness: z.ZodOptional<z.ZodNumber>;
3750
+ focalPoint: z.ZodOptional<z.ZodObject<{
3751
+ x: z.ZodNumber;
3752
+ y: z.ZodNumber;
3753
+ }, z.core.$strip>>;
3754
+ }, z.core.$strip>>;
3755
+ }, z.core.$strip>, z.ZodObject<{
3756
+ type: z.ZodLiteral<"video">;
3757
+ href: z.ZodString;
3758
+ scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3759
+ 1: "1";
3760
+ 0.4: "0.4";
3761
+ 0.6: "0.6";
3762
+ 0.8: "0.8";
3763
+ }>>>;
3764
+ properties: z.ZodOptional<z.ZodObject<{
3765
+ description: z.ZodOptional<z.ZodString>;
3766
+ decorative: z.ZodDefault<z.ZodBoolean>;
3767
+ brightness: z.ZodOptional<z.ZodNumber>;
3768
+ }, z.core.$strip>>;
3769
+ }, z.core.$strip>, z.ZodObject<{
3770
+ type: z.ZodLiteral<"color">;
3771
+ value: z.ZodString;
3772
+ }, z.core.$strip>, z.ZodObject<{
3773
+ type: z.ZodLiteral<"gradient">;
3774
+ value: z.ZodString;
3775
+ }, z.core.$strip>], "type">>;
3776
+ }, z.core.$strip>], "type">;
3777
+ }, z.core.$strip>>;
3778
+ }, z.core.$strip>>;
3779
+ }, z.core.$strip>>>;
1470
3780
  }, z.core.$strip>;
1471
3781
  }, z.core.$strip>;
1472
3782
  export type FormProperties = z.infer<typeof formPropertiesSchema>;
@@ -1480,3 +3790,4 @@ export type OtherConfigurationProperties = {
1480
3790
  translations: Record<string, z.infer<typeof OtherFieldsTranslationSchema>>;
1481
3791
  };
1482
3792
  export type AppearanceProperties = z.infer<typeof appearancePropertiesSchema>;
3793
+ export type { SectionLayout } from "./layout-schema";