@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.
- package/dist/esm/index.js +310 -145
- package/dist/esm/index.js.map +4 -4
- package/dist/types/index.d.ts +2 -1
- package/dist/types/schemas/api/fetch-feedback-schema.d.ts +1213 -36
- package/dist/types/schemas/api/submit-feedback-schema.d.ts +18 -0
- package/dist/types/schemas/fields/app-props-schema.d.ts +42 -17
- package/dist/types/schemas/fields/field-schema.d.ts +73 -37
- package/dist/types/schemas/fields/form-properties-schema.d.ts +2328 -17
- package/dist/types/schemas/fields/layout-schema.d.ts +1203 -0
- package/dist/types/schemas/fields/theme-schema.d.ts +2 -0
- package/dist/types/schemas/fields/translations-schema.d.ts +32 -0
- package/package.json +1 -1
|
@@ -91,7 +91,6 @@ export declare const feedbackConfigurationItemSchema: z.ZodObject<{
|
|
|
91
91
|
previousButton: z.ZodEnum<{
|
|
92
92
|
never: "never";
|
|
93
93
|
always: "always";
|
|
94
|
-
auto: "auto";
|
|
95
94
|
}>;
|
|
96
95
|
}, z.core.$strip>;
|
|
97
96
|
selectedIconPosition: z.ZodString;
|
|
@@ -230,8 +229,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
230
229
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
231
230
|
left: "left";
|
|
232
231
|
center: "center";
|
|
232
|
+
justify: "justify";
|
|
233
233
|
}>>>;
|
|
234
|
-
nextButtonLabel: z.
|
|
234
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
235
235
|
type: z.ZodLiteral<"rating">;
|
|
236
236
|
showLabels: z.ZodOptional<z.ZodBoolean>;
|
|
237
237
|
minLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -301,8 +301,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
301
301
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
302
302
|
left: "left";
|
|
303
303
|
center: "center";
|
|
304
|
+
justify: "justify";
|
|
304
305
|
}>>>;
|
|
305
|
-
nextButtonLabel: z.
|
|
306
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
306
307
|
type: z.ZodLiteral<"annotation">;
|
|
307
308
|
annotationText: z.ZodOptional<z.ZodString>;
|
|
308
309
|
noAnnotationText: z.ZodOptional<z.ZodString>;
|
|
@@ -354,8 +355,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
354
355
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
355
356
|
left: "left";
|
|
356
357
|
center: "center";
|
|
358
|
+
justify: "justify";
|
|
357
359
|
}>>>;
|
|
358
|
-
nextButtonLabel: z.
|
|
360
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
359
361
|
type: z.ZodLiteral<"welcome">;
|
|
360
362
|
title: z.ZodString;
|
|
361
363
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -408,8 +410,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
408
410
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
409
411
|
left: "left";
|
|
410
412
|
center: "center";
|
|
413
|
+
justify: "justify";
|
|
411
414
|
}>>>;
|
|
412
|
-
nextButtonLabel: z.
|
|
415
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
413
416
|
type: z.ZodLiteral<"thank_you">;
|
|
414
417
|
title: z.ZodString;
|
|
415
418
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -462,8 +465,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
462
465
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
463
466
|
left: "left";
|
|
464
467
|
center: "center";
|
|
468
|
+
justify: "justify";
|
|
465
469
|
}>>>;
|
|
466
|
-
nextButtonLabel: z.
|
|
470
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
467
471
|
type: z.ZodLiteral<"message_panel">;
|
|
468
472
|
title: z.ZodString;
|
|
469
473
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -518,8 +522,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
518
522
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
519
523
|
left: "left";
|
|
520
524
|
center: "center";
|
|
525
|
+
justify: "justify";
|
|
521
526
|
}>>>;
|
|
522
|
-
nextButtonLabel: z.
|
|
527
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
523
528
|
type: z.ZodLiteral<"exit_form">;
|
|
524
529
|
}, z.core.$strip>, z.ZodObject<{
|
|
525
530
|
id: z.ZodString;
|
|
@@ -571,8 +576,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
571
576
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
572
577
|
left: "left";
|
|
573
578
|
center: "center";
|
|
579
|
+
justify: "justify";
|
|
574
580
|
}>>>;
|
|
575
|
-
nextButtonLabel: z.
|
|
581
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
576
582
|
type: z.ZodLiteral<"yes_no">;
|
|
577
583
|
yesLabel: z.ZodOptional<z.ZodString>;
|
|
578
584
|
noLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -630,8 +636,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
630
636
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
631
637
|
left: "left";
|
|
632
638
|
center: "center";
|
|
639
|
+
justify: "justify";
|
|
633
640
|
}>>>;
|
|
634
|
-
nextButtonLabel: z.
|
|
641
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
635
642
|
type: z.ZodLiteral<"consent">;
|
|
636
643
|
}, z.core.$strip>, z.ZodObject<{
|
|
637
644
|
id: z.ZodString;
|
|
@@ -683,8 +690,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
683
690
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
684
691
|
left: "left";
|
|
685
692
|
center: "center";
|
|
693
|
+
justify: "justify";
|
|
686
694
|
}>>>;
|
|
687
|
-
nextButtonLabel: z.
|
|
695
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
688
696
|
type: z.ZodLiteral<"rating_matrix">;
|
|
689
697
|
statements: z.ZodArray<z.ZodObject<{
|
|
690
698
|
id: z.ZodString;
|
|
@@ -775,8 +783,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
775
783
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
776
784
|
left: "left";
|
|
777
785
|
center: "center";
|
|
786
|
+
justify: "justify";
|
|
778
787
|
}>>>;
|
|
779
|
-
nextButtonLabel: z.
|
|
788
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
780
789
|
type: z.ZodLiteral<"matrix_single_choice">;
|
|
781
790
|
rows: z.ZodArray<z.ZodObject<{
|
|
782
791
|
id: z.ZodString;
|
|
@@ -842,8 +851,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
842
851
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
843
852
|
left: "left";
|
|
844
853
|
center: "center";
|
|
854
|
+
justify: "justify";
|
|
845
855
|
}>>>;
|
|
846
|
-
nextButtonLabel: z.
|
|
856
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
847
857
|
type: z.ZodLiteral<"matrix_multiple_choice">;
|
|
848
858
|
rows: z.ZodArray<z.ZodObject<{
|
|
849
859
|
id: z.ZodString;
|
|
@@ -911,8 +921,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
911
921
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
912
922
|
left: "left";
|
|
913
923
|
center: "center";
|
|
924
|
+
justify: "justify";
|
|
914
925
|
}>>>;
|
|
915
|
-
nextButtonLabel: z.
|
|
926
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
916
927
|
type: z.ZodLiteral<"single_choice">;
|
|
917
928
|
displayStyle: z.ZodOptional<z.ZodEnum<{
|
|
918
929
|
radio: "radio";
|
|
@@ -984,8 +995,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
984
995
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
985
996
|
left: "left";
|
|
986
997
|
center: "center";
|
|
998
|
+
justify: "justify";
|
|
987
999
|
}>>>;
|
|
988
|
-
nextButtonLabel: z.
|
|
1000
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
989
1001
|
type: z.ZodLiteral<"multiple_choice_multiple">;
|
|
990
1002
|
displayStyle: z.ZodOptional<z.ZodEnum<{
|
|
991
1003
|
list: "list";
|
|
@@ -1058,8 +1070,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1058
1070
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1059
1071
|
left: "left";
|
|
1060
1072
|
center: "center";
|
|
1073
|
+
justify: "justify";
|
|
1061
1074
|
}>>>;
|
|
1062
|
-
nextButtonLabel: z.
|
|
1075
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1063
1076
|
type: z.ZodLiteral<"nps">;
|
|
1064
1077
|
min: z.ZodLiteral<0>;
|
|
1065
1078
|
max: z.ZodLiteral<10>;
|
|
@@ -1117,8 +1130,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1117
1130
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1118
1131
|
left: "left";
|
|
1119
1132
|
center: "center";
|
|
1133
|
+
justify: "justify";
|
|
1120
1134
|
}>>>;
|
|
1121
|
-
nextButtonLabel: z.
|
|
1135
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1122
1136
|
type: z.ZodLiteral<"short_answer">;
|
|
1123
1137
|
maxCharacters: z.ZodOptional<z.ZodNumber>;
|
|
1124
1138
|
minCharacters: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1179,8 +1193,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1179
1193
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1180
1194
|
left: "left";
|
|
1181
1195
|
center: "center";
|
|
1196
|
+
justify: "justify";
|
|
1182
1197
|
}>>>;
|
|
1183
|
-
nextButtonLabel: z.
|
|
1198
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1184
1199
|
type: z.ZodLiteral<"long_text">;
|
|
1185
1200
|
maxCharacters: z.ZodOptional<z.ZodNumber>;
|
|
1186
1201
|
minCharacters: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1240,8 +1255,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1240
1255
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1241
1256
|
left: "left";
|
|
1242
1257
|
center: "center";
|
|
1258
|
+
justify: "justify";
|
|
1243
1259
|
}>>>;
|
|
1244
|
-
nextButtonLabel: z.
|
|
1260
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1245
1261
|
type: z.ZodLiteral<"nested_selection">;
|
|
1246
1262
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1247
1263
|
options: z.ZodArray<z.ZodType<any, unknown, z.core.$ZodTypeInternals<any, unknown>>>;
|
|
@@ -1273,6 +1289,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1273
1289
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
1274
1290
|
}, z.core.$strip>>>;
|
|
1275
1291
|
inAppSingleQuestion: z.ZodDefault<z.ZodBoolean>;
|
|
1292
|
+
isPreviousAllowed: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1276
1293
|
questionIds: z.ZodArray<z.ZodString>;
|
|
1277
1294
|
}, z.core.$strip>>;
|
|
1278
1295
|
translations: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
@@ -1345,8 +1362,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1345
1362
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1346
1363
|
left: "left";
|
|
1347
1364
|
center: "center";
|
|
1365
|
+
justify: "justify";
|
|
1348
1366
|
}>>>;
|
|
1349
|
-
nextButtonLabel: z.
|
|
1367
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1350
1368
|
type: z.ZodLiteral<"rating">;
|
|
1351
1369
|
showLabels: z.ZodOptional<z.ZodBoolean>;
|
|
1352
1370
|
minLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -1416,8 +1434,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1416
1434
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1417
1435
|
left: "left";
|
|
1418
1436
|
center: "center";
|
|
1437
|
+
justify: "justify";
|
|
1419
1438
|
}>>>;
|
|
1420
|
-
nextButtonLabel: z.
|
|
1439
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1421
1440
|
type: z.ZodLiteral<"annotation">;
|
|
1422
1441
|
annotationText: z.ZodOptional<z.ZodString>;
|
|
1423
1442
|
noAnnotationText: z.ZodOptional<z.ZodString>;
|
|
@@ -1469,8 +1488,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1469
1488
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1470
1489
|
left: "left";
|
|
1471
1490
|
center: "center";
|
|
1491
|
+
justify: "justify";
|
|
1472
1492
|
}>>>;
|
|
1473
|
-
nextButtonLabel: z.
|
|
1493
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1474
1494
|
type: z.ZodLiteral<"welcome">;
|
|
1475
1495
|
title: z.ZodString;
|
|
1476
1496
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1523,8 +1543,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1523
1543
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1524
1544
|
left: "left";
|
|
1525
1545
|
center: "center";
|
|
1546
|
+
justify: "justify";
|
|
1526
1547
|
}>>>;
|
|
1527
|
-
nextButtonLabel: z.
|
|
1548
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1528
1549
|
type: z.ZodLiteral<"thank_you">;
|
|
1529
1550
|
title: z.ZodString;
|
|
1530
1551
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1577,8 +1598,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1577
1598
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1578
1599
|
left: "left";
|
|
1579
1600
|
center: "center";
|
|
1601
|
+
justify: "justify";
|
|
1580
1602
|
}>>>;
|
|
1581
|
-
nextButtonLabel: z.
|
|
1603
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1582
1604
|
type: z.ZodLiteral<"message_panel">;
|
|
1583
1605
|
title: z.ZodString;
|
|
1584
1606
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1633,8 +1655,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1633
1655
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1634
1656
|
left: "left";
|
|
1635
1657
|
center: "center";
|
|
1658
|
+
justify: "justify";
|
|
1636
1659
|
}>>>;
|
|
1637
|
-
nextButtonLabel: z.
|
|
1660
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1638
1661
|
type: z.ZodLiteral<"exit_form">;
|
|
1639
1662
|
}, z.core.$strip>, z.ZodObject<{
|
|
1640
1663
|
id: z.ZodString;
|
|
@@ -1686,8 +1709,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1686
1709
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1687
1710
|
left: "left";
|
|
1688
1711
|
center: "center";
|
|
1712
|
+
justify: "justify";
|
|
1689
1713
|
}>>>;
|
|
1690
|
-
nextButtonLabel: z.
|
|
1714
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1691
1715
|
type: z.ZodLiteral<"yes_no">;
|
|
1692
1716
|
yesLabel: z.ZodOptional<z.ZodString>;
|
|
1693
1717
|
noLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -1745,8 +1769,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1745
1769
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1746
1770
|
left: "left";
|
|
1747
1771
|
center: "center";
|
|
1772
|
+
justify: "justify";
|
|
1748
1773
|
}>>>;
|
|
1749
|
-
nextButtonLabel: z.
|
|
1774
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1750
1775
|
type: z.ZodLiteral<"consent">;
|
|
1751
1776
|
}, z.core.$strip>, z.ZodObject<{
|
|
1752
1777
|
id: z.ZodString;
|
|
@@ -1798,8 +1823,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1798
1823
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1799
1824
|
left: "left";
|
|
1800
1825
|
center: "center";
|
|
1826
|
+
justify: "justify";
|
|
1801
1827
|
}>>>;
|
|
1802
|
-
nextButtonLabel: z.
|
|
1828
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1803
1829
|
type: z.ZodLiteral<"rating_matrix">;
|
|
1804
1830
|
statements: z.ZodArray<z.ZodObject<{
|
|
1805
1831
|
id: z.ZodString;
|
|
@@ -1890,8 +1916,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1890
1916
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1891
1917
|
left: "left";
|
|
1892
1918
|
center: "center";
|
|
1919
|
+
justify: "justify";
|
|
1893
1920
|
}>>>;
|
|
1894
|
-
nextButtonLabel: z.
|
|
1921
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1895
1922
|
type: z.ZodLiteral<"matrix_single_choice">;
|
|
1896
1923
|
rows: z.ZodArray<z.ZodObject<{
|
|
1897
1924
|
id: z.ZodString;
|
|
@@ -1957,8 +1984,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
1957
1984
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1958
1985
|
left: "left";
|
|
1959
1986
|
center: "center";
|
|
1987
|
+
justify: "justify";
|
|
1960
1988
|
}>>>;
|
|
1961
|
-
nextButtonLabel: z.
|
|
1989
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1962
1990
|
type: z.ZodLiteral<"matrix_multiple_choice">;
|
|
1963
1991
|
rows: z.ZodArray<z.ZodObject<{
|
|
1964
1992
|
id: z.ZodString;
|
|
@@ -2026,8 +2054,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2026
2054
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2027
2055
|
left: "left";
|
|
2028
2056
|
center: "center";
|
|
2057
|
+
justify: "justify";
|
|
2029
2058
|
}>>>;
|
|
2030
|
-
nextButtonLabel: z.
|
|
2059
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2031
2060
|
type: z.ZodLiteral<"single_choice">;
|
|
2032
2061
|
displayStyle: z.ZodOptional<z.ZodEnum<{
|
|
2033
2062
|
radio: "radio";
|
|
@@ -2099,8 +2128,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2099
2128
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2100
2129
|
left: "left";
|
|
2101
2130
|
center: "center";
|
|
2131
|
+
justify: "justify";
|
|
2102
2132
|
}>>>;
|
|
2103
|
-
nextButtonLabel: z.
|
|
2133
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2104
2134
|
type: z.ZodLiteral<"multiple_choice_multiple">;
|
|
2105
2135
|
displayStyle: z.ZodOptional<z.ZodEnum<{
|
|
2106
2136
|
list: "list";
|
|
@@ -2173,8 +2203,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2173
2203
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2174
2204
|
left: "left";
|
|
2175
2205
|
center: "center";
|
|
2206
|
+
justify: "justify";
|
|
2176
2207
|
}>>>;
|
|
2177
|
-
nextButtonLabel: z.
|
|
2208
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2178
2209
|
type: z.ZodLiteral<"nps">;
|
|
2179
2210
|
min: z.ZodLiteral<0>;
|
|
2180
2211
|
max: z.ZodLiteral<10>;
|
|
@@ -2232,8 +2263,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2232
2263
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2233
2264
|
left: "left";
|
|
2234
2265
|
center: "center";
|
|
2266
|
+
justify: "justify";
|
|
2235
2267
|
}>>>;
|
|
2236
|
-
nextButtonLabel: z.
|
|
2268
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2237
2269
|
type: z.ZodLiteral<"short_answer">;
|
|
2238
2270
|
maxCharacters: z.ZodOptional<z.ZodNumber>;
|
|
2239
2271
|
minCharacters: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2294,8 +2326,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2294
2326
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2295
2327
|
left: "left";
|
|
2296
2328
|
center: "center";
|
|
2329
|
+
justify: "justify";
|
|
2297
2330
|
}>>>;
|
|
2298
|
-
nextButtonLabel: z.
|
|
2331
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2299
2332
|
type: z.ZodLiteral<"long_text">;
|
|
2300
2333
|
maxCharacters: z.ZodOptional<z.ZodNumber>;
|
|
2301
2334
|
minCharacters: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2355,8 +2388,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2355
2388
|
textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2356
2389
|
left: "left";
|
|
2357
2390
|
center: "center";
|
|
2391
|
+
justify: "justify";
|
|
2358
2392
|
}>>>;
|
|
2359
|
-
nextButtonLabel: z.
|
|
2393
|
+
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2360
2394
|
type: z.ZodLiteral<"nested_selection">;
|
|
2361
2395
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2362
2396
|
options: z.ZodArray<z.ZodType<any, unknown, z.core.$ZodTypeInternals<any, unknown>>>;
|
|
@@ -2388,6 +2422,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2388
2422
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
2389
2423
|
}, z.core.$strip>>>;
|
|
2390
2424
|
inAppSingleQuestion: z.ZodDefault<z.ZodBoolean>;
|
|
2425
|
+
isPreviousAllowed: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2391
2426
|
questionIds: z.ZodArray<z.ZodString>;
|
|
2392
2427
|
}, z.core.$strip>>;
|
|
2393
2428
|
translations: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
@@ -2454,6 +2489,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2454
2489
|
showBranding: z.ZodDefault<z.ZodBoolean>;
|
|
2455
2490
|
customPosition: z.ZodBoolean;
|
|
2456
2491
|
customCss: z.ZodOptional<z.ZodString>;
|
|
2492
|
+
fontFamily: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2457
2493
|
shareableMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2458
2494
|
light: "light";
|
|
2459
2495
|
dark: "dark";
|
|
@@ -2490,6 +2526,1148 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2490
2526
|
"bottom-right": "bottom-right";
|
|
2491
2527
|
}>;
|
|
2492
2528
|
}, z.core.$strip>;
|
|
2529
|
+
sectionLayoutDefaults: z.ZodOptional<z.ZodObject<{
|
|
2530
|
+
inApp: z.ZodOptional<z.ZodObject<{
|
|
2531
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2532
|
+
type: z.ZodLiteral<"image">;
|
|
2533
|
+
href: z.ZodString;
|
|
2534
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2535
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2536
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2537
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2538
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2539
|
+
x: z.ZodNumber;
|
|
2540
|
+
y: z.ZodNumber;
|
|
2541
|
+
}, z.core.$strip>>;
|
|
2542
|
+
}, z.core.$strip>>;
|
|
2543
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2544
|
+
type: z.ZodLiteral<"video">;
|
|
2545
|
+
href: z.ZodString;
|
|
2546
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2547
|
+
1: "1";
|
|
2548
|
+
0.4: "0.4";
|
|
2549
|
+
0.6: "0.6";
|
|
2550
|
+
0.8: "0.8";
|
|
2551
|
+
}>>>;
|
|
2552
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2553
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2554
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2555
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2556
|
+
}, z.core.$strip>>;
|
|
2557
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2558
|
+
type: z.ZodLiteral<"color">;
|
|
2559
|
+
value: z.ZodString;
|
|
2560
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2561
|
+
type: z.ZodLiteral<"gradient">;
|
|
2562
|
+
value: z.ZodString;
|
|
2563
|
+
}, z.core.$strip>], "type">>;
|
|
2564
|
+
layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2565
|
+
type: z.ZodLiteral<"stack">;
|
|
2566
|
+
align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2567
|
+
left: "left";
|
|
2568
|
+
center: "center";
|
|
2569
|
+
cover: "cover";
|
|
2570
|
+
}>>>;
|
|
2571
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2572
|
+
type: z.ZodLiteral<"image">;
|
|
2573
|
+
href: z.ZodString;
|
|
2574
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2575
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2576
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2577
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2578
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2579
|
+
x: z.ZodNumber;
|
|
2580
|
+
y: z.ZodNumber;
|
|
2581
|
+
}, z.core.$strip>>;
|
|
2582
|
+
}, z.core.$strip>>;
|
|
2583
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2584
|
+
type: z.ZodLiteral<"video">;
|
|
2585
|
+
href: z.ZodString;
|
|
2586
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2587
|
+
1: "1";
|
|
2588
|
+
0.4: "0.4";
|
|
2589
|
+
0.6: "0.6";
|
|
2590
|
+
0.8: "0.8";
|
|
2591
|
+
}>>>;
|
|
2592
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2593
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2594
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2595
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2596
|
+
}, z.core.$strip>>;
|
|
2597
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2598
|
+
type: z.ZodLiteral<"color">;
|
|
2599
|
+
value: z.ZodString;
|
|
2600
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2601
|
+
type: z.ZodLiteral<"gradient">;
|
|
2602
|
+
value: z.ZodString;
|
|
2603
|
+
}, z.core.$strip>], "type">>;
|
|
2604
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2605
|
+
type: z.ZodLiteral<"float">;
|
|
2606
|
+
placement: z.ZodEnum<{
|
|
2607
|
+
left: "left";
|
|
2608
|
+
right: "right";
|
|
2609
|
+
}>;
|
|
2610
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2611
|
+
type: z.ZodLiteral<"image">;
|
|
2612
|
+
href: z.ZodString;
|
|
2613
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2614
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2615
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2616
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2617
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2618
|
+
x: z.ZodNumber;
|
|
2619
|
+
y: z.ZodNumber;
|
|
2620
|
+
}, z.core.$strip>>;
|
|
2621
|
+
}, z.core.$strip>>;
|
|
2622
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2623
|
+
type: z.ZodLiteral<"video">;
|
|
2624
|
+
href: z.ZodString;
|
|
2625
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2626
|
+
1: "1";
|
|
2627
|
+
0.4: "0.4";
|
|
2628
|
+
0.6: "0.6";
|
|
2629
|
+
0.8: "0.8";
|
|
2630
|
+
}>>>;
|
|
2631
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2632
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2633
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2634
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2635
|
+
}, z.core.$strip>>;
|
|
2636
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2637
|
+
type: z.ZodLiteral<"color">;
|
|
2638
|
+
value: z.ZodString;
|
|
2639
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2640
|
+
type: z.ZodLiteral<"gradient">;
|
|
2641
|
+
value: z.ZodString;
|
|
2642
|
+
}, z.core.$strip>], "type">>;
|
|
2643
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2644
|
+
type: z.ZodLiteral<"split">;
|
|
2645
|
+
placement: z.ZodEnum<{
|
|
2646
|
+
left: "left";
|
|
2647
|
+
right: "right";
|
|
2648
|
+
}>;
|
|
2649
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2650
|
+
type: z.ZodLiteral<"image">;
|
|
2651
|
+
href: z.ZodString;
|
|
2652
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2653
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2654
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2655
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2656
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2657
|
+
x: z.ZodNumber;
|
|
2658
|
+
y: z.ZodNumber;
|
|
2659
|
+
}, z.core.$strip>>;
|
|
2660
|
+
}, z.core.$strip>>;
|
|
2661
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2662
|
+
type: z.ZodLiteral<"video">;
|
|
2663
|
+
href: z.ZodString;
|
|
2664
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2665
|
+
1: "1";
|
|
2666
|
+
0.4: "0.4";
|
|
2667
|
+
0.6: "0.6";
|
|
2668
|
+
0.8: "0.8";
|
|
2669
|
+
}>>>;
|
|
2670
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2671
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2672
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2673
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2674
|
+
}, z.core.$strip>>;
|
|
2675
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2676
|
+
type: z.ZodLiteral<"color">;
|
|
2677
|
+
value: z.ZodString;
|
|
2678
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2679
|
+
type: z.ZodLiteral<"gradient">;
|
|
2680
|
+
value: z.ZodString;
|
|
2681
|
+
}, z.core.$strip>], "type">>;
|
|
2682
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2683
|
+
type: z.ZodLiteral<"wallpaper">;
|
|
2684
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2685
|
+
type: z.ZodLiteral<"image">;
|
|
2686
|
+
href: z.ZodString;
|
|
2687
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2688
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2689
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2690
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2691
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2692
|
+
x: z.ZodNumber;
|
|
2693
|
+
y: z.ZodNumber;
|
|
2694
|
+
}, z.core.$strip>>;
|
|
2695
|
+
}, z.core.$strip>>;
|
|
2696
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2697
|
+
type: z.ZodLiteral<"video">;
|
|
2698
|
+
href: z.ZodString;
|
|
2699
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2700
|
+
1: "1";
|
|
2701
|
+
0.4: "0.4";
|
|
2702
|
+
0.6: "0.6";
|
|
2703
|
+
0.8: "0.8";
|
|
2704
|
+
}>>>;
|
|
2705
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2706
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2707
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2708
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2709
|
+
}, z.core.$strip>>;
|
|
2710
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2711
|
+
type: z.ZodLiteral<"color">;
|
|
2712
|
+
value: z.ZodString;
|
|
2713
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2714
|
+
type: z.ZodLiteral<"gradient">;
|
|
2715
|
+
value: z.ZodString;
|
|
2716
|
+
}, z.core.$strip>], "type">>;
|
|
2717
|
+
}, z.core.$strip>], "type">;
|
|
2718
|
+
}, z.core.$strip>>;
|
|
2719
|
+
link: z.ZodOptional<z.ZodObject<{
|
|
2720
|
+
mobile: z.ZodOptional<z.ZodObject<{
|
|
2721
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2722
|
+
type: z.ZodLiteral<"image">;
|
|
2723
|
+
href: z.ZodString;
|
|
2724
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2725
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2726
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2727
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2728
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2729
|
+
x: z.ZodNumber;
|
|
2730
|
+
y: z.ZodNumber;
|
|
2731
|
+
}, z.core.$strip>>;
|
|
2732
|
+
}, z.core.$strip>>;
|
|
2733
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2734
|
+
type: z.ZodLiteral<"video">;
|
|
2735
|
+
href: z.ZodString;
|
|
2736
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2737
|
+
1: "1";
|
|
2738
|
+
0.4: "0.4";
|
|
2739
|
+
0.6: "0.6";
|
|
2740
|
+
0.8: "0.8";
|
|
2741
|
+
}>>>;
|
|
2742
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2743
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2744
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2745
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2746
|
+
}, z.core.$strip>>;
|
|
2747
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2748
|
+
type: z.ZodLiteral<"color">;
|
|
2749
|
+
value: z.ZodString;
|
|
2750
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2751
|
+
type: z.ZodLiteral<"gradient">;
|
|
2752
|
+
value: z.ZodString;
|
|
2753
|
+
}, z.core.$strip>], "type">>;
|
|
2754
|
+
layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2755
|
+
type: z.ZodLiteral<"stack">;
|
|
2756
|
+
align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2757
|
+
left: "left";
|
|
2758
|
+
center: "center";
|
|
2759
|
+
cover: "cover";
|
|
2760
|
+
}>>>;
|
|
2761
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2762
|
+
type: z.ZodLiteral<"image">;
|
|
2763
|
+
href: z.ZodString;
|
|
2764
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2765
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2766
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2767
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2768
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2769
|
+
x: z.ZodNumber;
|
|
2770
|
+
y: z.ZodNumber;
|
|
2771
|
+
}, z.core.$strip>>;
|
|
2772
|
+
}, z.core.$strip>>;
|
|
2773
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2774
|
+
type: z.ZodLiteral<"video">;
|
|
2775
|
+
href: z.ZodString;
|
|
2776
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2777
|
+
1: "1";
|
|
2778
|
+
0.4: "0.4";
|
|
2779
|
+
0.6: "0.6";
|
|
2780
|
+
0.8: "0.8";
|
|
2781
|
+
}>>>;
|
|
2782
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2783
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2784
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2785
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2786
|
+
}, z.core.$strip>>;
|
|
2787
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2788
|
+
type: z.ZodLiteral<"color">;
|
|
2789
|
+
value: z.ZodString;
|
|
2790
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2791
|
+
type: z.ZodLiteral<"gradient">;
|
|
2792
|
+
value: z.ZodString;
|
|
2793
|
+
}, z.core.$strip>], "type">>;
|
|
2794
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2795
|
+
type: z.ZodLiteral<"float">;
|
|
2796
|
+
placement: z.ZodEnum<{
|
|
2797
|
+
left: "left";
|
|
2798
|
+
right: "right";
|
|
2799
|
+
}>;
|
|
2800
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2801
|
+
type: z.ZodLiteral<"image">;
|
|
2802
|
+
href: z.ZodString;
|
|
2803
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2804
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2805
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2806
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2807
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2808
|
+
x: z.ZodNumber;
|
|
2809
|
+
y: z.ZodNumber;
|
|
2810
|
+
}, z.core.$strip>>;
|
|
2811
|
+
}, z.core.$strip>>;
|
|
2812
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2813
|
+
type: z.ZodLiteral<"video">;
|
|
2814
|
+
href: z.ZodString;
|
|
2815
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2816
|
+
1: "1";
|
|
2817
|
+
0.4: "0.4";
|
|
2818
|
+
0.6: "0.6";
|
|
2819
|
+
0.8: "0.8";
|
|
2820
|
+
}>>>;
|
|
2821
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2822
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2823
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2824
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2825
|
+
}, z.core.$strip>>;
|
|
2826
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2827
|
+
type: z.ZodLiteral<"color">;
|
|
2828
|
+
value: z.ZodString;
|
|
2829
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2830
|
+
type: z.ZodLiteral<"gradient">;
|
|
2831
|
+
value: z.ZodString;
|
|
2832
|
+
}, z.core.$strip>], "type">>;
|
|
2833
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2834
|
+
type: z.ZodLiteral<"split">;
|
|
2835
|
+
placement: z.ZodEnum<{
|
|
2836
|
+
left: "left";
|
|
2837
|
+
right: "right";
|
|
2838
|
+
}>;
|
|
2839
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2840
|
+
type: z.ZodLiteral<"image">;
|
|
2841
|
+
href: z.ZodString;
|
|
2842
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2843
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2844
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2845
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2846
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2847
|
+
x: z.ZodNumber;
|
|
2848
|
+
y: z.ZodNumber;
|
|
2849
|
+
}, z.core.$strip>>;
|
|
2850
|
+
}, z.core.$strip>>;
|
|
2851
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2852
|
+
type: z.ZodLiteral<"video">;
|
|
2853
|
+
href: z.ZodString;
|
|
2854
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2855
|
+
1: "1";
|
|
2856
|
+
0.4: "0.4";
|
|
2857
|
+
0.6: "0.6";
|
|
2858
|
+
0.8: "0.8";
|
|
2859
|
+
}>>>;
|
|
2860
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2861
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2862
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2863
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2864
|
+
}, z.core.$strip>>;
|
|
2865
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2866
|
+
type: z.ZodLiteral<"color">;
|
|
2867
|
+
value: z.ZodString;
|
|
2868
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2869
|
+
type: z.ZodLiteral<"gradient">;
|
|
2870
|
+
value: z.ZodString;
|
|
2871
|
+
}, z.core.$strip>], "type">>;
|
|
2872
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2873
|
+
type: z.ZodLiteral<"wallpaper">;
|
|
2874
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2875
|
+
type: z.ZodLiteral<"image">;
|
|
2876
|
+
href: z.ZodString;
|
|
2877
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2878
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2879
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2880
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2881
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2882
|
+
x: z.ZodNumber;
|
|
2883
|
+
y: z.ZodNumber;
|
|
2884
|
+
}, z.core.$strip>>;
|
|
2885
|
+
}, z.core.$strip>>;
|
|
2886
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2887
|
+
type: z.ZodLiteral<"video">;
|
|
2888
|
+
href: z.ZodString;
|
|
2889
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2890
|
+
1: "1";
|
|
2891
|
+
0.4: "0.4";
|
|
2892
|
+
0.6: "0.6";
|
|
2893
|
+
0.8: "0.8";
|
|
2894
|
+
}>>>;
|
|
2895
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2896
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2897
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2898
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2899
|
+
}, z.core.$strip>>;
|
|
2900
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2901
|
+
type: z.ZodLiteral<"color">;
|
|
2902
|
+
value: z.ZodString;
|
|
2903
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2904
|
+
type: z.ZodLiteral<"gradient">;
|
|
2905
|
+
value: z.ZodString;
|
|
2906
|
+
}, z.core.$strip>], "type">>;
|
|
2907
|
+
}, z.core.$strip>], "type">;
|
|
2908
|
+
}, z.core.$strip>>;
|
|
2909
|
+
others: z.ZodOptional<z.ZodObject<{
|
|
2910
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2911
|
+
type: z.ZodLiteral<"image">;
|
|
2912
|
+
href: z.ZodString;
|
|
2913
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2914
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2915
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2916
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2917
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2918
|
+
x: z.ZodNumber;
|
|
2919
|
+
y: z.ZodNumber;
|
|
2920
|
+
}, z.core.$strip>>;
|
|
2921
|
+
}, z.core.$strip>>;
|
|
2922
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2923
|
+
type: z.ZodLiteral<"video">;
|
|
2924
|
+
href: z.ZodString;
|
|
2925
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2926
|
+
1: "1";
|
|
2927
|
+
0.4: "0.4";
|
|
2928
|
+
0.6: "0.6";
|
|
2929
|
+
0.8: "0.8";
|
|
2930
|
+
}>>>;
|
|
2931
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2932
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2933
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2934
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2935
|
+
}, z.core.$strip>>;
|
|
2936
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2937
|
+
type: z.ZodLiteral<"color">;
|
|
2938
|
+
value: z.ZodString;
|
|
2939
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2940
|
+
type: z.ZodLiteral<"gradient">;
|
|
2941
|
+
value: z.ZodString;
|
|
2942
|
+
}, z.core.$strip>], "type">>;
|
|
2943
|
+
layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2944
|
+
type: z.ZodLiteral<"stack">;
|
|
2945
|
+
align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2946
|
+
left: "left";
|
|
2947
|
+
center: "center";
|
|
2948
|
+
cover: "cover";
|
|
2949
|
+
}>>>;
|
|
2950
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2951
|
+
type: z.ZodLiteral<"image">;
|
|
2952
|
+
href: z.ZodString;
|
|
2953
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2954
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2955
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2956
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2957
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2958
|
+
x: z.ZodNumber;
|
|
2959
|
+
y: z.ZodNumber;
|
|
2960
|
+
}, z.core.$strip>>;
|
|
2961
|
+
}, z.core.$strip>>;
|
|
2962
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2963
|
+
type: z.ZodLiteral<"video">;
|
|
2964
|
+
href: z.ZodString;
|
|
2965
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2966
|
+
1: "1";
|
|
2967
|
+
0.4: "0.4";
|
|
2968
|
+
0.6: "0.6";
|
|
2969
|
+
0.8: "0.8";
|
|
2970
|
+
}>>>;
|
|
2971
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2972
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2973
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2974
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2975
|
+
}, z.core.$strip>>;
|
|
2976
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2977
|
+
type: z.ZodLiteral<"color">;
|
|
2978
|
+
value: z.ZodString;
|
|
2979
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2980
|
+
type: z.ZodLiteral<"gradient">;
|
|
2981
|
+
value: z.ZodString;
|
|
2982
|
+
}, z.core.$strip>], "type">>;
|
|
2983
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2984
|
+
type: z.ZodLiteral<"float">;
|
|
2985
|
+
placement: z.ZodEnum<{
|
|
2986
|
+
left: "left";
|
|
2987
|
+
right: "right";
|
|
2988
|
+
}>;
|
|
2989
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2990
|
+
type: z.ZodLiteral<"image">;
|
|
2991
|
+
href: z.ZodString;
|
|
2992
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
2993
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2994
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
2995
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
2996
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
2997
|
+
x: z.ZodNumber;
|
|
2998
|
+
y: z.ZodNumber;
|
|
2999
|
+
}, z.core.$strip>>;
|
|
3000
|
+
}, z.core.$strip>>;
|
|
3001
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3002
|
+
type: z.ZodLiteral<"video">;
|
|
3003
|
+
href: z.ZodString;
|
|
3004
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3005
|
+
1: "1";
|
|
3006
|
+
0.4: "0.4";
|
|
3007
|
+
0.6: "0.6";
|
|
3008
|
+
0.8: "0.8";
|
|
3009
|
+
}>>>;
|
|
3010
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3011
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3012
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3013
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3014
|
+
}, z.core.$strip>>;
|
|
3015
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3016
|
+
type: z.ZodLiteral<"color">;
|
|
3017
|
+
value: z.ZodString;
|
|
3018
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3019
|
+
type: z.ZodLiteral<"gradient">;
|
|
3020
|
+
value: z.ZodString;
|
|
3021
|
+
}, z.core.$strip>], "type">>;
|
|
3022
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3023
|
+
type: z.ZodLiteral<"split">;
|
|
3024
|
+
placement: z.ZodEnum<{
|
|
3025
|
+
left: "left";
|
|
3026
|
+
right: "right";
|
|
3027
|
+
}>;
|
|
3028
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3029
|
+
type: z.ZodLiteral<"image">;
|
|
3030
|
+
href: z.ZodString;
|
|
3031
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3032
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3033
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3034
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3035
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3036
|
+
x: z.ZodNumber;
|
|
3037
|
+
y: z.ZodNumber;
|
|
3038
|
+
}, z.core.$strip>>;
|
|
3039
|
+
}, z.core.$strip>>;
|
|
3040
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3041
|
+
type: z.ZodLiteral<"video">;
|
|
3042
|
+
href: z.ZodString;
|
|
3043
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3044
|
+
1: "1";
|
|
3045
|
+
0.4: "0.4";
|
|
3046
|
+
0.6: "0.6";
|
|
3047
|
+
0.8: "0.8";
|
|
3048
|
+
}>>>;
|
|
3049
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3050
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3051
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3052
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3053
|
+
}, z.core.$strip>>;
|
|
3054
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3055
|
+
type: z.ZodLiteral<"color">;
|
|
3056
|
+
value: z.ZodString;
|
|
3057
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3058
|
+
type: z.ZodLiteral<"gradient">;
|
|
3059
|
+
value: z.ZodString;
|
|
3060
|
+
}, z.core.$strip>], "type">>;
|
|
3061
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3062
|
+
type: z.ZodLiteral<"wallpaper">;
|
|
3063
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3064
|
+
type: z.ZodLiteral<"image">;
|
|
3065
|
+
href: z.ZodString;
|
|
3066
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3067
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3068
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3069
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3070
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3071
|
+
x: z.ZodNumber;
|
|
3072
|
+
y: z.ZodNumber;
|
|
3073
|
+
}, z.core.$strip>>;
|
|
3074
|
+
}, z.core.$strip>>;
|
|
3075
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3076
|
+
type: z.ZodLiteral<"video">;
|
|
3077
|
+
href: z.ZodString;
|
|
3078
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3079
|
+
1: "1";
|
|
3080
|
+
0.4: "0.4";
|
|
3081
|
+
0.6: "0.6";
|
|
3082
|
+
0.8: "0.8";
|
|
3083
|
+
}>>>;
|
|
3084
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3085
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3086
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3087
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3088
|
+
}, z.core.$strip>>;
|
|
3089
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3090
|
+
type: z.ZodLiteral<"color">;
|
|
3091
|
+
value: z.ZodString;
|
|
3092
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3093
|
+
type: z.ZodLiteral<"gradient">;
|
|
3094
|
+
value: z.ZodString;
|
|
3095
|
+
}, z.core.$strip>], "type">>;
|
|
3096
|
+
}, z.core.$strip>], "type">;
|
|
3097
|
+
}, z.core.$strip>>;
|
|
3098
|
+
}, z.core.$strip>>;
|
|
3099
|
+
}, z.core.$strip>>;
|
|
3100
|
+
sectionLayouts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3101
|
+
inApp: z.ZodOptional<z.ZodObject<{
|
|
3102
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3103
|
+
type: z.ZodLiteral<"image">;
|
|
3104
|
+
href: z.ZodString;
|
|
3105
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3106
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3107
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3108
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3109
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3110
|
+
x: z.ZodNumber;
|
|
3111
|
+
y: z.ZodNumber;
|
|
3112
|
+
}, z.core.$strip>>;
|
|
3113
|
+
}, z.core.$strip>>;
|
|
3114
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3115
|
+
type: z.ZodLiteral<"video">;
|
|
3116
|
+
href: z.ZodString;
|
|
3117
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3118
|
+
1: "1";
|
|
3119
|
+
0.4: "0.4";
|
|
3120
|
+
0.6: "0.6";
|
|
3121
|
+
0.8: "0.8";
|
|
3122
|
+
}>>>;
|
|
3123
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3124
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3125
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3126
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3127
|
+
}, z.core.$strip>>;
|
|
3128
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3129
|
+
type: z.ZodLiteral<"color">;
|
|
3130
|
+
value: z.ZodString;
|
|
3131
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3132
|
+
type: z.ZodLiteral<"gradient">;
|
|
3133
|
+
value: z.ZodString;
|
|
3134
|
+
}, z.core.$strip>], "type">>;
|
|
3135
|
+
layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3136
|
+
type: z.ZodLiteral<"stack">;
|
|
3137
|
+
align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3138
|
+
left: "left";
|
|
3139
|
+
center: "center";
|
|
3140
|
+
cover: "cover";
|
|
3141
|
+
}>>>;
|
|
3142
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3143
|
+
type: z.ZodLiteral<"image">;
|
|
3144
|
+
href: z.ZodString;
|
|
3145
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3146
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3147
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3148
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3149
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3150
|
+
x: z.ZodNumber;
|
|
3151
|
+
y: z.ZodNumber;
|
|
3152
|
+
}, z.core.$strip>>;
|
|
3153
|
+
}, z.core.$strip>>;
|
|
3154
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3155
|
+
type: z.ZodLiteral<"video">;
|
|
3156
|
+
href: z.ZodString;
|
|
3157
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3158
|
+
1: "1";
|
|
3159
|
+
0.4: "0.4";
|
|
3160
|
+
0.6: "0.6";
|
|
3161
|
+
0.8: "0.8";
|
|
3162
|
+
}>>>;
|
|
3163
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3164
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3165
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3166
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3167
|
+
}, z.core.$strip>>;
|
|
3168
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3169
|
+
type: z.ZodLiteral<"color">;
|
|
3170
|
+
value: z.ZodString;
|
|
3171
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3172
|
+
type: z.ZodLiteral<"gradient">;
|
|
3173
|
+
value: z.ZodString;
|
|
3174
|
+
}, z.core.$strip>], "type">>;
|
|
3175
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3176
|
+
type: z.ZodLiteral<"float">;
|
|
3177
|
+
placement: z.ZodEnum<{
|
|
3178
|
+
left: "left";
|
|
3179
|
+
right: "right";
|
|
3180
|
+
}>;
|
|
3181
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3182
|
+
type: z.ZodLiteral<"image">;
|
|
3183
|
+
href: z.ZodString;
|
|
3184
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3185
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3186
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3187
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3188
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3189
|
+
x: z.ZodNumber;
|
|
3190
|
+
y: z.ZodNumber;
|
|
3191
|
+
}, z.core.$strip>>;
|
|
3192
|
+
}, z.core.$strip>>;
|
|
3193
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3194
|
+
type: z.ZodLiteral<"video">;
|
|
3195
|
+
href: z.ZodString;
|
|
3196
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3197
|
+
1: "1";
|
|
3198
|
+
0.4: "0.4";
|
|
3199
|
+
0.6: "0.6";
|
|
3200
|
+
0.8: "0.8";
|
|
3201
|
+
}>>>;
|
|
3202
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3203
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3204
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3205
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3206
|
+
}, z.core.$strip>>;
|
|
3207
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3208
|
+
type: z.ZodLiteral<"color">;
|
|
3209
|
+
value: z.ZodString;
|
|
3210
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3211
|
+
type: z.ZodLiteral<"gradient">;
|
|
3212
|
+
value: z.ZodString;
|
|
3213
|
+
}, z.core.$strip>], "type">>;
|
|
3214
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3215
|
+
type: z.ZodLiteral<"split">;
|
|
3216
|
+
placement: z.ZodEnum<{
|
|
3217
|
+
left: "left";
|
|
3218
|
+
right: "right";
|
|
3219
|
+
}>;
|
|
3220
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3221
|
+
type: z.ZodLiteral<"image">;
|
|
3222
|
+
href: z.ZodString;
|
|
3223
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3224
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3225
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3226
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3227
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3228
|
+
x: z.ZodNumber;
|
|
3229
|
+
y: z.ZodNumber;
|
|
3230
|
+
}, z.core.$strip>>;
|
|
3231
|
+
}, z.core.$strip>>;
|
|
3232
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3233
|
+
type: z.ZodLiteral<"video">;
|
|
3234
|
+
href: z.ZodString;
|
|
3235
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3236
|
+
1: "1";
|
|
3237
|
+
0.4: "0.4";
|
|
3238
|
+
0.6: "0.6";
|
|
3239
|
+
0.8: "0.8";
|
|
3240
|
+
}>>>;
|
|
3241
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3242
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3243
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3244
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3245
|
+
}, z.core.$strip>>;
|
|
3246
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3247
|
+
type: z.ZodLiteral<"color">;
|
|
3248
|
+
value: z.ZodString;
|
|
3249
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3250
|
+
type: z.ZodLiteral<"gradient">;
|
|
3251
|
+
value: z.ZodString;
|
|
3252
|
+
}, z.core.$strip>], "type">>;
|
|
3253
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3254
|
+
type: z.ZodLiteral<"wallpaper">;
|
|
3255
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3256
|
+
type: z.ZodLiteral<"image">;
|
|
3257
|
+
href: z.ZodString;
|
|
3258
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3259
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3260
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3261
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3262
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3263
|
+
x: z.ZodNumber;
|
|
3264
|
+
y: z.ZodNumber;
|
|
3265
|
+
}, z.core.$strip>>;
|
|
3266
|
+
}, z.core.$strip>>;
|
|
3267
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3268
|
+
type: z.ZodLiteral<"video">;
|
|
3269
|
+
href: z.ZodString;
|
|
3270
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3271
|
+
1: "1";
|
|
3272
|
+
0.4: "0.4";
|
|
3273
|
+
0.6: "0.6";
|
|
3274
|
+
0.8: "0.8";
|
|
3275
|
+
}>>>;
|
|
3276
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3277
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3278
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3279
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3280
|
+
}, z.core.$strip>>;
|
|
3281
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3282
|
+
type: z.ZodLiteral<"color">;
|
|
3283
|
+
value: z.ZodString;
|
|
3284
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3285
|
+
type: z.ZodLiteral<"gradient">;
|
|
3286
|
+
value: z.ZodString;
|
|
3287
|
+
}, z.core.$strip>], "type">>;
|
|
3288
|
+
}, z.core.$strip>], "type">;
|
|
3289
|
+
}, z.core.$strip>>;
|
|
3290
|
+
link: z.ZodOptional<z.ZodObject<{
|
|
3291
|
+
mobile: z.ZodOptional<z.ZodObject<{
|
|
3292
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3293
|
+
type: z.ZodLiteral<"image">;
|
|
3294
|
+
href: z.ZodString;
|
|
3295
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3296
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3297
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3298
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3299
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3300
|
+
x: z.ZodNumber;
|
|
3301
|
+
y: z.ZodNumber;
|
|
3302
|
+
}, z.core.$strip>>;
|
|
3303
|
+
}, z.core.$strip>>;
|
|
3304
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3305
|
+
type: z.ZodLiteral<"video">;
|
|
3306
|
+
href: z.ZodString;
|
|
3307
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3308
|
+
1: "1";
|
|
3309
|
+
0.4: "0.4";
|
|
3310
|
+
0.6: "0.6";
|
|
3311
|
+
0.8: "0.8";
|
|
3312
|
+
}>>>;
|
|
3313
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3314
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3315
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3316
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3317
|
+
}, z.core.$strip>>;
|
|
3318
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3319
|
+
type: z.ZodLiteral<"color">;
|
|
3320
|
+
value: z.ZodString;
|
|
3321
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3322
|
+
type: z.ZodLiteral<"gradient">;
|
|
3323
|
+
value: z.ZodString;
|
|
3324
|
+
}, z.core.$strip>], "type">>;
|
|
3325
|
+
layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3326
|
+
type: z.ZodLiteral<"stack">;
|
|
3327
|
+
align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3328
|
+
left: "left";
|
|
3329
|
+
center: "center";
|
|
3330
|
+
cover: "cover";
|
|
3331
|
+
}>>>;
|
|
3332
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3333
|
+
type: z.ZodLiteral<"image">;
|
|
3334
|
+
href: z.ZodString;
|
|
3335
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3336
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3337
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3338
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3339
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3340
|
+
x: z.ZodNumber;
|
|
3341
|
+
y: z.ZodNumber;
|
|
3342
|
+
}, z.core.$strip>>;
|
|
3343
|
+
}, z.core.$strip>>;
|
|
3344
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3345
|
+
type: z.ZodLiteral<"video">;
|
|
3346
|
+
href: z.ZodString;
|
|
3347
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3348
|
+
1: "1";
|
|
3349
|
+
0.4: "0.4";
|
|
3350
|
+
0.6: "0.6";
|
|
3351
|
+
0.8: "0.8";
|
|
3352
|
+
}>>>;
|
|
3353
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3354
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3355
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3356
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3357
|
+
}, z.core.$strip>>;
|
|
3358
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3359
|
+
type: z.ZodLiteral<"color">;
|
|
3360
|
+
value: z.ZodString;
|
|
3361
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3362
|
+
type: z.ZodLiteral<"gradient">;
|
|
3363
|
+
value: z.ZodString;
|
|
3364
|
+
}, z.core.$strip>], "type">>;
|
|
3365
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3366
|
+
type: z.ZodLiteral<"float">;
|
|
3367
|
+
placement: z.ZodEnum<{
|
|
3368
|
+
left: "left";
|
|
3369
|
+
right: "right";
|
|
3370
|
+
}>;
|
|
3371
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3372
|
+
type: z.ZodLiteral<"image">;
|
|
3373
|
+
href: z.ZodString;
|
|
3374
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3375
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3376
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3377
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3378
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3379
|
+
x: z.ZodNumber;
|
|
3380
|
+
y: z.ZodNumber;
|
|
3381
|
+
}, z.core.$strip>>;
|
|
3382
|
+
}, z.core.$strip>>;
|
|
3383
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3384
|
+
type: z.ZodLiteral<"video">;
|
|
3385
|
+
href: z.ZodString;
|
|
3386
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3387
|
+
1: "1";
|
|
3388
|
+
0.4: "0.4";
|
|
3389
|
+
0.6: "0.6";
|
|
3390
|
+
0.8: "0.8";
|
|
3391
|
+
}>>>;
|
|
3392
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3393
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3394
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3395
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3396
|
+
}, z.core.$strip>>;
|
|
3397
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3398
|
+
type: z.ZodLiteral<"color">;
|
|
3399
|
+
value: z.ZodString;
|
|
3400
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3401
|
+
type: z.ZodLiteral<"gradient">;
|
|
3402
|
+
value: z.ZodString;
|
|
3403
|
+
}, z.core.$strip>], "type">>;
|
|
3404
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3405
|
+
type: z.ZodLiteral<"split">;
|
|
3406
|
+
placement: z.ZodEnum<{
|
|
3407
|
+
left: "left";
|
|
3408
|
+
right: "right";
|
|
3409
|
+
}>;
|
|
3410
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3411
|
+
type: z.ZodLiteral<"image">;
|
|
3412
|
+
href: z.ZodString;
|
|
3413
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3414
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3415
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3416
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3417
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3418
|
+
x: z.ZodNumber;
|
|
3419
|
+
y: z.ZodNumber;
|
|
3420
|
+
}, z.core.$strip>>;
|
|
3421
|
+
}, z.core.$strip>>;
|
|
3422
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3423
|
+
type: z.ZodLiteral<"video">;
|
|
3424
|
+
href: z.ZodString;
|
|
3425
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3426
|
+
1: "1";
|
|
3427
|
+
0.4: "0.4";
|
|
3428
|
+
0.6: "0.6";
|
|
3429
|
+
0.8: "0.8";
|
|
3430
|
+
}>>>;
|
|
3431
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3432
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3433
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3434
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3435
|
+
}, z.core.$strip>>;
|
|
3436
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3437
|
+
type: z.ZodLiteral<"color">;
|
|
3438
|
+
value: z.ZodString;
|
|
3439
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3440
|
+
type: z.ZodLiteral<"gradient">;
|
|
3441
|
+
value: z.ZodString;
|
|
3442
|
+
}, z.core.$strip>], "type">>;
|
|
3443
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3444
|
+
type: z.ZodLiteral<"wallpaper">;
|
|
3445
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3446
|
+
type: z.ZodLiteral<"image">;
|
|
3447
|
+
href: z.ZodString;
|
|
3448
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3449
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3450
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3451
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3452
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3453
|
+
x: z.ZodNumber;
|
|
3454
|
+
y: z.ZodNumber;
|
|
3455
|
+
}, z.core.$strip>>;
|
|
3456
|
+
}, z.core.$strip>>;
|
|
3457
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3458
|
+
type: z.ZodLiteral<"video">;
|
|
3459
|
+
href: z.ZodString;
|
|
3460
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3461
|
+
1: "1";
|
|
3462
|
+
0.4: "0.4";
|
|
3463
|
+
0.6: "0.6";
|
|
3464
|
+
0.8: "0.8";
|
|
3465
|
+
}>>>;
|
|
3466
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3467
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3468
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3469
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3470
|
+
}, z.core.$strip>>;
|
|
3471
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3472
|
+
type: z.ZodLiteral<"color">;
|
|
3473
|
+
value: z.ZodString;
|
|
3474
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3475
|
+
type: z.ZodLiteral<"gradient">;
|
|
3476
|
+
value: z.ZodString;
|
|
3477
|
+
}, z.core.$strip>], "type">>;
|
|
3478
|
+
}, z.core.$strip>], "type">;
|
|
3479
|
+
}, z.core.$strip>>;
|
|
3480
|
+
others: z.ZodOptional<z.ZodObject<{
|
|
3481
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3482
|
+
type: z.ZodLiteral<"image">;
|
|
3483
|
+
href: z.ZodString;
|
|
3484
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3485
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3486
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3487
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3488
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3489
|
+
x: z.ZodNumber;
|
|
3490
|
+
y: z.ZodNumber;
|
|
3491
|
+
}, z.core.$strip>>;
|
|
3492
|
+
}, z.core.$strip>>;
|
|
3493
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3494
|
+
type: z.ZodLiteral<"video">;
|
|
3495
|
+
href: z.ZodString;
|
|
3496
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3497
|
+
1: "1";
|
|
3498
|
+
0.4: "0.4";
|
|
3499
|
+
0.6: "0.6";
|
|
3500
|
+
0.8: "0.8";
|
|
3501
|
+
}>>>;
|
|
3502
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3503
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3504
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3505
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3506
|
+
}, z.core.$strip>>;
|
|
3507
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3508
|
+
type: z.ZodLiteral<"color">;
|
|
3509
|
+
value: z.ZodString;
|
|
3510
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3511
|
+
type: z.ZodLiteral<"gradient">;
|
|
3512
|
+
value: z.ZodString;
|
|
3513
|
+
}, z.core.$strip>], "type">>;
|
|
3514
|
+
layout: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3515
|
+
type: z.ZodLiteral<"stack">;
|
|
3516
|
+
align: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3517
|
+
left: "left";
|
|
3518
|
+
center: "center";
|
|
3519
|
+
cover: "cover";
|
|
3520
|
+
}>>>;
|
|
3521
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3522
|
+
type: z.ZodLiteral<"image">;
|
|
3523
|
+
href: z.ZodString;
|
|
3524
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3525
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3526
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3527
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3528
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3529
|
+
x: z.ZodNumber;
|
|
3530
|
+
y: z.ZodNumber;
|
|
3531
|
+
}, z.core.$strip>>;
|
|
3532
|
+
}, z.core.$strip>>;
|
|
3533
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3534
|
+
type: z.ZodLiteral<"video">;
|
|
3535
|
+
href: z.ZodString;
|
|
3536
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3537
|
+
1: "1";
|
|
3538
|
+
0.4: "0.4";
|
|
3539
|
+
0.6: "0.6";
|
|
3540
|
+
0.8: "0.8";
|
|
3541
|
+
}>>>;
|
|
3542
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3543
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3544
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3545
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3546
|
+
}, z.core.$strip>>;
|
|
3547
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3548
|
+
type: z.ZodLiteral<"color">;
|
|
3549
|
+
value: z.ZodString;
|
|
3550
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3551
|
+
type: z.ZodLiteral<"gradient">;
|
|
3552
|
+
value: z.ZodString;
|
|
3553
|
+
}, z.core.$strip>], "type">>;
|
|
3554
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3555
|
+
type: z.ZodLiteral<"float">;
|
|
3556
|
+
placement: z.ZodEnum<{
|
|
3557
|
+
left: "left";
|
|
3558
|
+
right: "right";
|
|
3559
|
+
}>;
|
|
3560
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3561
|
+
type: z.ZodLiteral<"image">;
|
|
3562
|
+
href: z.ZodString;
|
|
3563
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3564
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3565
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3566
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3567
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3568
|
+
x: z.ZodNumber;
|
|
3569
|
+
y: z.ZodNumber;
|
|
3570
|
+
}, z.core.$strip>>;
|
|
3571
|
+
}, z.core.$strip>>;
|
|
3572
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3573
|
+
type: z.ZodLiteral<"video">;
|
|
3574
|
+
href: z.ZodString;
|
|
3575
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3576
|
+
1: "1";
|
|
3577
|
+
0.4: "0.4";
|
|
3578
|
+
0.6: "0.6";
|
|
3579
|
+
0.8: "0.8";
|
|
3580
|
+
}>>>;
|
|
3581
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3582
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3583
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3584
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3585
|
+
}, z.core.$strip>>;
|
|
3586
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3587
|
+
type: z.ZodLiteral<"color">;
|
|
3588
|
+
value: z.ZodString;
|
|
3589
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3590
|
+
type: z.ZodLiteral<"gradient">;
|
|
3591
|
+
value: z.ZodString;
|
|
3592
|
+
}, z.core.$strip>], "type">>;
|
|
3593
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3594
|
+
type: z.ZodLiteral<"split">;
|
|
3595
|
+
placement: z.ZodEnum<{
|
|
3596
|
+
left: "left";
|
|
3597
|
+
right: "right";
|
|
3598
|
+
}>;
|
|
3599
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3600
|
+
type: z.ZodLiteral<"image">;
|
|
3601
|
+
href: z.ZodString;
|
|
3602
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3603
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3604
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3605
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3606
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3607
|
+
x: z.ZodNumber;
|
|
3608
|
+
y: z.ZodNumber;
|
|
3609
|
+
}, z.core.$strip>>;
|
|
3610
|
+
}, z.core.$strip>>;
|
|
3611
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3612
|
+
type: z.ZodLiteral<"video">;
|
|
3613
|
+
href: z.ZodString;
|
|
3614
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3615
|
+
1: "1";
|
|
3616
|
+
0.4: "0.4";
|
|
3617
|
+
0.6: "0.6";
|
|
3618
|
+
0.8: "0.8";
|
|
3619
|
+
}>>>;
|
|
3620
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3621
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3622
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3623
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3624
|
+
}, z.core.$strip>>;
|
|
3625
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3626
|
+
type: z.ZodLiteral<"color">;
|
|
3627
|
+
value: z.ZodString;
|
|
3628
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3629
|
+
type: z.ZodLiteral<"gradient">;
|
|
3630
|
+
value: z.ZodString;
|
|
3631
|
+
}, z.core.$strip>], "type">>;
|
|
3632
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3633
|
+
type: z.ZodLiteral<"wallpaper">;
|
|
3634
|
+
attachment: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3635
|
+
type: z.ZodLiteral<"image">;
|
|
3636
|
+
href: z.ZodString;
|
|
3637
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3638
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3639
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3640
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3641
|
+
focalPoint: z.ZodOptional<z.ZodObject<{
|
|
3642
|
+
x: z.ZodNumber;
|
|
3643
|
+
y: z.ZodNumber;
|
|
3644
|
+
}, z.core.$strip>>;
|
|
3645
|
+
}, z.core.$strip>>;
|
|
3646
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3647
|
+
type: z.ZodLiteral<"video">;
|
|
3648
|
+
href: z.ZodString;
|
|
3649
|
+
scale: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
3650
|
+
1: "1";
|
|
3651
|
+
0.4: "0.4";
|
|
3652
|
+
0.6: "0.6";
|
|
3653
|
+
0.8: "0.8";
|
|
3654
|
+
}>>>;
|
|
3655
|
+
properties: z.ZodOptional<z.ZodObject<{
|
|
3656
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3657
|
+
decorative: z.ZodDefault<z.ZodBoolean>;
|
|
3658
|
+
brightness: z.ZodOptional<z.ZodNumber>;
|
|
3659
|
+
}, z.core.$strip>>;
|
|
3660
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3661
|
+
type: z.ZodLiteral<"color">;
|
|
3662
|
+
value: z.ZodString;
|
|
3663
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3664
|
+
type: z.ZodLiteral<"gradient">;
|
|
3665
|
+
value: z.ZodString;
|
|
3666
|
+
}, z.core.$strip>], "type">>;
|
|
3667
|
+
}, z.core.$strip>], "type">;
|
|
3668
|
+
}, z.core.$strip>>;
|
|
3669
|
+
}, z.core.$strip>>;
|
|
3670
|
+
}, z.core.$strip>>>;
|
|
2493
3671
|
}, z.core.$strip>;
|
|
2494
3672
|
}, z.core.$strict>;
|
|
2495
3673
|
export declare const fetchConfigurationListResponseSchema: z.ZodObject<{
|
|
@@ -2591,7 +3769,6 @@ export declare const fetchConfigurationListResponseSchema: z.ZodObject<{
|
|
|
2591
3769
|
previousButton: z.ZodEnum<{
|
|
2592
3770
|
never: "never";
|
|
2593
3771
|
always: "always";
|
|
2594
|
-
auto: "auto";
|
|
2595
3772
|
}>;
|
|
2596
3773
|
}, z.core.$strip>;
|
|
2597
3774
|
selectedIconPosition: z.ZodString;
|