@encatch/schema 1.2.0-beta.0 → 1.2.0-beta.10
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 +150 -44
- package/dist/esm/index.js.map +2 -2
- package/dist/types/index.d.ts +1 -1
- package/dist/types/schemas/api/fetch-feedback-schema.d.ts +525 -5
- package/dist/types/schemas/api/submit-feedback-schema.d.ts +66 -60
- package/dist/types/schemas/fields/answer-schema.d.ts +30 -27
- package/dist/types/schemas/fields/app-props-schema.d.ts +325 -2
- package/dist/types/schemas/fields/field-schema.d.ts +535 -13
- package/dist/types/schemas/fields/form-properties-schema.d.ts +332 -2
- package/dist/types/schemas/fields/other-screen-schema.d.ts +3 -0
- package/dist/types/schemas/fields/theme-schema.d.ts +2 -0
- package/dist/types/schemas/fields/translations-schema.d.ts +310 -0
- package/package.json +1 -1
|
@@ -12,6 +12,8 @@ export declare const otherConfigurationPropertiesSchema: z.ZodDiscriminatedUnion
|
|
|
12
12
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
13
13
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
14
14
|
respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
16
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
15
17
|
}, z.core.$strip>;
|
|
16
18
|
translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
17
19
|
submitButtonLabel: z.ZodString;
|
|
@@ -22,6 +24,7 @@ export declare const otherConfigurationPropertiesSchema: z.ZodDiscriminatedUnion
|
|
|
22
24
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
23
25
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
24
26
|
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
27
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
25
28
|
}, z.core.$strip>>>;
|
|
26
29
|
}, z.core.$strip>, z.ZodObject<{
|
|
27
30
|
isEnabled: z.ZodLiteral<true>;
|
|
@@ -35,6 +38,8 @@ export declare const otherConfigurationPropertiesSchema: z.ZodDiscriminatedUnion
|
|
|
35
38
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
36
39
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
37
40
|
respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
|
|
41
|
+
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
42
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
38
43
|
}, z.core.$strip>;
|
|
39
44
|
translations: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
40
45
|
submitButtonLabel: z.ZodString;
|
|
@@ -45,6 +50,7 @@ export declare const otherConfigurationPropertiesSchema: z.ZodDiscriminatedUnion
|
|
|
45
50
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
46
51
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
47
52
|
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
53
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
48
54
|
}, z.core.$strip>>;
|
|
49
55
|
}, z.core.$strip>], "isEnabled">;
|
|
50
56
|
export declare const appearancePropertiesSchema: z.ZodObject<{
|
|
@@ -78,6 +84,7 @@ export declare const appearancePropertiesSchema: z.ZodObject<{
|
|
|
78
84
|
auto: "auto";
|
|
79
85
|
}>>;
|
|
80
86
|
maxDialogHeightPercentInApp: z.ZodOptional<z.ZodNumber>;
|
|
87
|
+
faviconUrl: z.ZodOptional<z.ZodString>;
|
|
81
88
|
}, z.core.$strip>;
|
|
82
89
|
selectedPosition: z.ZodEnum<{
|
|
83
90
|
"top-left": "top-left";
|
|
@@ -1312,6 +1319,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1312
1319
|
}>>>;
|
|
1313
1320
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1314
1321
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1322
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1323
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1324
|
+
image: "image";
|
|
1325
|
+
video: "video";
|
|
1326
|
+
youtube: "youtube";
|
|
1327
|
+
vimeo: "vimeo";
|
|
1328
|
+
}>>;
|
|
1315
1329
|
type: z.ZodLiteral<"rating">;
|
|
1316
1330
|
showLabels: z.ZodOptional<z.ZodBoolean>;
|
|
1317
1331
|
minLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -1385,6 +1399,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1385
1399
|
}>>>;
|
|
1386
1400
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1387
1401
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1402
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1403
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1404
|
+
image: "image";
|
|
1405
|
+
video: "video";
|
|
1406
|
+
youtube: "youtube";
|
|
1407
|
+
vimeo: "vimeo";
|
|
1408
|
+
}>>;
|
|
1388
1409
|
type: z.ZodLiteral<"annotation">;
|
|
1389
1410
|
annotationText: z.ZodOptional<z.ZodString>;
|
|
1390
1411
|
noAnnotationText: z.ZodOptional<z.ZodString>;
|
|
@@ -1440,6 +1461,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1440
1461
|
}>>>;
|
|
1441
1462
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1442
1463
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1464
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1465
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1466
|
+
image: "image";
|
|
1467
|
+
video: "video";
|
|
1468
|
+
youtube: "youtube";
|
|
1469
|
+
vimeo: "vimeo";
|
|
1470
|
+
}>>;
|
|
1443
1471
|
type: z.ZodLiteral<"welcome">;
|
|
1444
1472
|
title: z.ZodString;
|
|
1445
1473
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1496,6 +1524,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1496
1524
|
}>>>;
|
|
1497
1525
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1498
1526
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1527
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1528
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1529
|
+
image: "image";
|
|
1530
|
+
video: "video";
|
|
1531
|
+
youtube: "youtube";
|
|
1532
|
+
vimeo: "vimeo";
|
|
1533
|
+
}>>;
|
|
1499
1534
|
type: z.ZodLiteral<"thank_you">;
|
|
1500
1535
|
title: z.ZodString;
|
|
1501
1536
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1552,6 +1587,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1552
1587
|
}>>>;
|
|
1553
1588
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1554
1589
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1590
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1591
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1592
|
+
image: "image";
|
|
1593
|
+
video: "video";
|
|
1594
|
+
youtube: "youtube";
|
|
1595
|
+
vimeo: "vimeo";
|
|
1596
|
+
}>>;
|
|
1555
1597
|
type: z.ZodLiteral<"message_panel">;
|
|
1556
1598
|
title: z.ZodString;
|
|
1557
1599
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1610,6 +1652,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1610
1652
|
}>>>;
|
|
1611
1653
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1612
1654
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1655
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1656
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1657
|
+
image: "image";
|
|
1658
|
+
video: "video";
|
|
1659
|
+
youtube: "youtube";
|
|
1660
|
+
vimeo: "vimeo";
|
|
1661
|
+
}>>;
|
|
1613
1662
|
type: z.ZodLiteral<"exit_form">;
|
|
1614
1663
|
}, z.core.$strip>, z.ZodObject<{
|
|
1615
1664
|
id: z.ZodString;
|
|
@@ -1665,6 +1714,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1665
1714
|
}>>>;
|
|
1666
1715
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1667
1716
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1717
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1718
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1719
|
+
image: "image";
|
|
1720
|
+
video: "video";
|
|
1721
|
+
youtube: "youtube";
|
|
1722
|
+
vimeo: "vimeo";
|
|
1723
|
+
}>>;
|
|
1668
1724
|
type: z.ZodLiteral<"yes_no">;
|
|
1669
1725
|
yesLabel: z.ZodOptional<z.ZodString>;
|
|
1670
1726
|
noLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -1726,6 +1782,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1726
1782
|
}>>>;
|
|
1727
1783
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1728
1784
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1785
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1786
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1787
|
+
image: "image";
|
|
1788
|
+
video: "video";
|
|
1789
|
+
youtube: "youtube";
|
|
1790
|
+
vimeo: "vimeo";
|
|
1791
|
+
}>>;
|
|
1729
1792
|
type: z.ZodLiteral<"consent">;
|
|
1730
1793
|
}, z.core.$strip>, z.ZodObject<{
|
|
1731
1794
|
id: z.ZodString;
|
|
@@ -1781,6 +1844,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1781
1844
|
}>>>;
|
|
1782
1845
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1783
1846
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1847
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1848
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1849
|
+
image: "image";
|
|
1850
|
+
video: "video";
|
|
1851
|
+
youtube: "youtube";
|
|
1852
|
+
vimeo: "vimeo";
|
|
1853
|
+
}>>;
|
|
1784
1854
|
type: z.ZodLiteral<"rating_matrix">;
|
|
1785
1855
|
statements: z.ZodArray<z.ZodObject<{
|
|
1786
1856
|
id: z.ZodString;
|
|
@@ -1875,6 +1945,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1875
1945
|
}>>>;
|
|
1876
1946
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1877
1947
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1948
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
1949
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
1950
|
+
image: "image";
|
|
1951
|
+
video: "video";
|
|
1952
|
+
youtube: "youtube";
|
|
1953
|
+
vimeo: "vimeo";
|
|
1954
|
+
}>>;
|
|
1878
1955
|
type: z.ZodLiteral<"matrix_single_choice">;
|
|
1879
1956
|
rows: z.ZodArray<z.ZodObject<{
|
|
1880
1957
|
id: z.ZodString;
|
|
@@ -1944,6 +2021,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1944
2021
|
}>>>;
|
|
1945
2022
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
1946
2023
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2024
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2025
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2026
|
+
image: "image";
|
|
2027
|
+
video: "video";
|
|
2028
|
+
youtube: "youtube";
|
|
2029
|
+
vimeo: "vimeo";
|
|
2030
|
+
}>>;
|
|
1947
2031
|
type: z.ZodLiteral<"matrix_multiple_choice">;
|
|
1948
2032
|
rows: z.ZodArray<z.ZodObject<{
|
|
1949
2033
|
id: z.ZodString;
|
|
@@ -2015,6 +2099,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2015
2099
|
}>>>;
|
|
2016
2100
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2017
2101
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2102
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2103
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2104
|
+
image: "image";
|
|
2105
|
+
video: "video";
|
|
2106
|
+
youtube: "youtube";
|
|
2107
|
+
vimeo: "vimeo";
|
|
2108
|
+
}>>;
|
|
2018
2109
|
type: z.ZodLiteral<"single_choice">;
|
|
2019
2110
|
displayStyle: z.ZodOptional<z.ZodEnum<{
|
|
2020
2111
|
radio: "radio";
|
|
@@ -2093,6 +2184,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2093
2184
|
}>>>;
|
|
2094
2185
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2095
2186
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2187
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2188
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2189
|
+
image: "image";
|
|
2190
|
+
video: "video";
|
|
2191
|
+
youtube: "youtube";
|
|
2192
|
+
vimeo: "vimeo";
|
|
2193
|
+
}>>;
|
|
2096
2194
|
type: z.ZodLiteral<"multiple_choice_multiple">;
|
|
2097
2195
|
displayStyle: z.ZodOptional<z.ZodEnum<{
|
|
2098
2196
|
list: "list";
|
|
@@ -2172,6 +2270,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2172
2270
|
}>>>;
|
|
2173
2271
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2174
2272
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2273
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2274
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2275
|
+
image: "image";
|
|
2276
|
+
video: "video";
|
|
2277
|
+
youtube: "youtube";
|
|
2278
|
+
vimeo: "vimeo";
|
|
2279
|
+
}>>;
|
|
2175
2280
|
type: z.ZodLiteral<"nps">;
|
|
2176
2281
|
min: z.ZodLiteral<0>;
|
|
2177
2282
|
max: z.ZodLiteral<10>;
|
|
@@ -2236,6 +2341,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2236
2341
|
}>>>;
|
|
2237
2342
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2238
2343
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2344
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2345
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2346
|
+
image: "image";
|
|
2347
|
+
video: "video";
|
|
2348
|
+
youtube: "youtube";
|
|
2349
|
+
vimeo: "vimeo";
|
|
2350
|
+
}>>;
|
|
2239
2351
|
type: z.ZodLiteral<"short_answer">;
|
|
2240
2352
|
maxCharacters: z.ZodOptional<z.ZodNumber>;
|
|
2241
2353
|
minCharacters: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2301,6 +2413,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2301
2413
|
}>>>;
|
|
2302
2414
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2303
2415
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2416
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2417
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2418
|
+
image: "image";
|
|
2419
|
+
video: "video";
|
|
2420
|
+
youtube: "youtube";
|
|
2421
|
+
vimeo: "vimeo";
|
|
2422
|
+
}>>;
|
|
2304
2423
|
type: z.ZodLiteral<"long_text">;
|
|
2305
2424
|
maxCharacters: z.ZodOptional<z.ZodNumber>;
|
|
2306
2425
|
minCharacters: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2365,6 +2484,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2365
2484
|
}>>>;
|
|
2366
2485
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2367
2486
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2487
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2488
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2489
|
+
image: "image";
|
|
2490
|
+
video: "video";
|
|
2491
|
+
youtube: "youtube";
|
|
2492
|
+
vimeo: "vimeo";
|
|
2493
|
+
}>>;
|
|
2368
2494
|
type: z.ZodLiteral<"nested_selection">;
|
|
2369
2495
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2370
2496
|
options: z.ZodArray<z.ZodType<any, unknown, z.core.$ZodTypeInternals<any, unknown>>>;
|
|
@@ -2436,6 +2562,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2436
2562
|
}>>>;
|
|
2437
2563
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2438
2564
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2565
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2566
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2567
|
+
image: "image";
|
|
2568
|
+
video: "video";
|
|
2569
|
+
youtube: "youtube";
|
|
2570
|
+
vimeo: "vimeo";
|
|
2571
|
+
}>>;
|
|
2439
2572
|
type: z.ZodLiteral<"date">;
|
|
2440
2573
|
format: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2441
2574
|
"MM/DD/YYYY": "MM/DD/YYYY";
|
|
@@ -2451,6 +2584,9 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2451
2584
|
minDate: z.ZodOptional<z.ZodString>;
|
|
2452
2585
|
maxDate: z.ZodOptional<z.ZodString>;
|
|
2453
2586
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2587
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
2588
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
2589
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
2454
2590
|
prepopulatedValue: z.ZodOptional<z.ZodString>;
|
|
2455
2591
|
}, z.core.$strip>, z.ZodObject<{
|
|
2456
2592
|
id: z.ZodString;
|
|
@@ -2506,6 +2642,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2506
2642
|
}>>>;
|
|
2507
2643
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2508
2644
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2645
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2646
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2647
|
+
image: "image";
|
|
2648
|
+
video: "video";
|
|
2649
|
+
youtube: "youtube";
|
|
2650
|
+
vimeo: "vimeo";
|
|
2651
|
+
}>>;
|
|
2509
2652
|
type: z.ZodLiteral<"csat">;
|
|
2510
2653
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>]>>>;
|
|
2511
2654
|
displayStyle: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
@@ -2572,6 +2715,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2572
2715
|
}>>>;
|
|
2573
2716
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2574
2717
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2718
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2719
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2720
|
+
image: "image";
|
|
2721
|
+
video: "video";
|
|
2722
|
+
youtube: "youtube";
|
|
2723
|
+
vimeo: "vimeo";
|
|
2724
|
+
}>>;
|
|
2575
2725
|
type: z.ZodLiteral<"opinion_scale">;
|
|
2576
2726
|
startValue: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>]>>>;
|
|
2577
2727
|
steps: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -2631,6 +2781,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2631
2781
|
}>>>;
|
|
2632
2782
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2633
2783
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2784
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2785
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2786
|
+
image: "image";
|
|
2787
|
+
video: "video";
|
|
2788
|
+
youtube: "youtube";
|
|
2789
|
+
vimeo: "vimeo";
|
|
2790
|
+
}>>;
|
|
2634
2791
|
type: z.ZodLiteral<"ranking">;
|
|
2635
2792
|
options: z.ZodArray<z.ZodObject<{
|
|
2636
2793
|
id: z.ZodString;
|
|
@@ -2701,6 +2858,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2701
2858
|
}>>>;
|
|
2702
2859
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2703
2860
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2861
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2862
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2863
|
+
image: "image";
|
|
2864
|
+
video: "video";
|
|
2865
|
+
youtube: "youtube";
|
|
2866
|
+
vimeo: "vimeo";
|
|
2867
|
+
}>>;
|
|
2704
2868
|
type: z.ZodLiteral<"picture_choice">;
|
|
2705
2869
|
options: z.ZodArray<z.ZodObject<{
|
|
2706
2870
|
id: z.ZodString;
|
|
@@ -2777,6 +2941,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2777
2941
|
}>>>;
|
|
2778
2942
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2779
2943
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
2944
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
2945
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
2946
|
+
image: "image";
|
|
2947
|
+
video: "video";
|
|
2948
|
+
youtube: "youtube";
|
|
2949
|
+
vimeo: "vimeo";
|
|
2950
|
+
}>>;
|
|
2780
2951
|
type: z.ZodLiteral<"signature">;
|
|
2781
2952
|
allowedModes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2782
2953
|
type: "type";
|
|
@@ -2795,6 +2966,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2795
2966
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
2796
2967
|
canvasHeight: z.ZodOptional<z.ZodNumber>;
|
|
2797
2968
|
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
2969
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
2970
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
2971
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
2972
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
2973
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
2974
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
2975
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
2798
2976
|
}, z.core.$strip>, z.ZodObject<{
|
|
2799
2977
|
id: z.ZodString;
|
|
2800
2978
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -2849,6 +3027,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2849
3027
|
}>>>;
|
|
2850
3028
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2851
3029
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
3030
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
3031
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
3032
|
+
image: "image";
|
|
3033
|
+
video: "video";
|
|
3034
|
+
youtube: "youtube";
|
|
3035
|
+
vimeo: "vimeo";
|
|
3036
|
+
}>>;
|
|
2852
3037
|
type: z.ZodLiteral<"file_upload">;
|
|
2853
3038
|
allowedFileTypes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2854
3039
|
maxFileSizeMb: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2909,6 +3094,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2909
3094
|
}>>>;
|
|
2910
3095
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2911
3096
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
3097
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
3098
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
3099
|
+
image: "image";
|
|
3100
|
+
video: "video";
|
|
3101
|
+
youtube: "youtube";
|
|
3102
|
+
vimeo: "vimeo";
|
|
3103
|
+
}>>;
|
|
2912
3104
|
type: z.ZodLiteral<"email">;
|
|
2913
3105
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2914
3106
|
prepopulatedValue: z.ZodOptional<z.ZodString>;
|
|
@@ -2966,6 +3158,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2966
3158
|
}>>>;
|
|
2967
3159
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
2968
3160
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
3161
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
3162
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
3163
|
+
image: "image";
|
|
3164
|
+
video: "video";
|
|
3165
|
+
youtube: "youtube";
|
|
3166
|
+
vimeo: "vimeo";
|
|
3167
|
+
}>>;
|
|
2969
3168
|
type: z.ZodLiteral<"number">;
|
|
2970
3169
|
min: z.ZodOptional<z.ZodNumber>;
|
|
2971
3170
|
max: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3028,6 +3227,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3028
3227
|
}>>>;
|
|
3029
3228
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
3030
3229
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
3230
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
3231
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
3232
|
+
image: "image";
|
|
3233
|
+
video: "video";
|
|
3234
|
+
youtube: "youtube";
|
|
3235
|
+
vimeo: "vimeo";
|
|
3236
|
+
}>>;
|
|
3031
3237
|
type: z.ZodLiteral<"website">;
|
|
3032
3238
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3033
3239
|
prepopulatedValue: z.ZodOptional<z.ZodString>;
|
|
@@ -3085,6 +3291,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3085
3291
|
}>>>;
|
|
3086
3292
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
3087
3293
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
3294
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
3295
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
3296
|
+
image: "image";
|
|
3297
|
+
video: "video";
|
|
3298
|
+
youtube: "youtube";
|
|
3299
|
+
vimeo: "vimeo";
|
|
3300
|
+
}>>;
|
|
3088
3301
|
type: z.ZodLiteral<"phone_number">;
|
|
3089
3302
|
defaultCountryCode: z.ZodOptional<z.ZodString>;
|
|
3090
3303
|
allowCountryChange: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -3144,36 +3357,49 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3144
3357
|
}>>>;
|
|
3145
3358
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
3146
3359
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
3360
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
3361
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
3362
|
+
image: "image";
|
|
3363
|
+
video: "video";
|
|
3364
|
+
youtube: "youtube";
|
|
3365
|
+
vimeo: "vimeo";
|
|
3366
|
+
}>>;
|
|
3147
3367
|
type: z.ZodLiteral<"address">;
|
|
3148
3368
|
addressLine1: z.ZodOptional<z.ZodObject<{
|
|
3149
3369
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3150
3370
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
3151
3371
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3372
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3152
3373
|
}, z.core.$strip>>;
|
|
3153
3374
|
addressLine2: z.ZodOptional<z.ZodObject<{
|
|
3154
3375
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3155
3376
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
3156
3377
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3378
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3157
3379
|
}, z.core.$strip>>;
|
|
3158
3380
|
city: z.ZodOptional<z.ZodObject<{
|
|
3159
3381
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3160
3382
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
3161
3383
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3384
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3162
3385
|
}, z.core.$strip>>;
|
|
3163
3386
|
stateProvince: z.ZodOptional<z.ZodObject<{
|
|
3164
3387
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3165
3388
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
3166
3389
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3390
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3167
3391
|
}, z.core.$strip>>;
|
|
3168
3392
|
postalCode: z.ZodOptional<z.ZodObject<{
|
|
3169
3393
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3170
3394
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
3171
3395
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3396
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3172
3397
|
}, z.core.$strip>>;
|
|
3173
3398
|
country: z.ZodOptional<z.ZodObject<{
|
|
3174
3399
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3175
3400
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
3176
3401
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3402
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3177
3403
|
}, z.core.$strip>>;
|
|
3178
3404
|
defaultCountry: z.ZodOptional<z.ZodString>;
|
|
3179
3405
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3230,21 +3456,40 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3230
3456
|
}>>>;
|
|
3231
3457
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
3232
3458
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
3459
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
3460
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
3461
|
+
image: "image";
|
|
3462
|
+
video: "video";
|
|
3463
|
+
youtube: "youtube";
|
|
3464
|
+
vimeo: "vimeo";
|
|
3465
|
+
}>>;
|
|
3233
3466
|
type: z.ZodLiteral<"video_audio">;
|
|
3234
3467
|
allowedModes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3235
|
-
text: "text";
|
|
3236
3468
|
video: "video";
|
|
3469
|
+
text: "text";
|
|
3237
3470
|
audio: "audio";
|
|
3471
|
+
photo: "photo";
|
|
3238
3472
|
}>>>;
|
|
3239
3473
|
defaultMode: z.ZodOptional<z.ZodEnum<{
|
|
3240
|
-
text: "text";
|
|
3241
3474
|
video: "video";
|
|
3475
|
+
text: "text";
|
|
3242
3476
|
audio: "audio";
|
|
3477
|
+
photo: "photo";
|
|
3243
3478
|
}>>;
|
|
3244
3479
|
maxDurationSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3245
3480
|
maxFileSizeMb: z.ZodOptional<z.ZodNumber>;
|
|
3246
3481
|
allowUpload: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3247
3482
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3483
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
3484
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
3485
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
3486
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
3487
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3488
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3489
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
3490
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
3491
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3492
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3248
3493
|
}, z.core.$strip>, z.ZodObject<{
|
|
3249
3494
|
id: z.ZodString;
|
|
3250
3495
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -3299,6 +3544,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3299
3544
|
}>>>;
|
|
3300
3545
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
3301
3546
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
3547
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
3548
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
3549
|
+
image: "image";
|
|
3550
|
+
video: "video";
|
|
3551
|
+
youtube: "youtube";
|
|
3552
|
+
vimeo: "vimeo";
|
|
3553
|
+
}>>;
|
|
3302
3554
|
type: z.ZodLiteral<"scheduler">;
|
|
3303
3555
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
3304
3556
|
google_calendar: "google_calendar";
|
|
@@ -3309,6 +3561,7 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3309
3561
|
autofillNameFieldId: z.ZodOptional<z.ZodString>;
|
|
3310
3562
|
autofillEmailFieldId: z.ZodOptional<z.ZodString>;
|
|
3311
3563
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3564
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
3312
3565
|
}, z.core.$strip>, z.ZodObject<{
|
|
3313
3566
|
id: z.ZodString;
|
|
3314
3567
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -3363,12 +3616,22 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3363
3616
|
}>>>;
|
|
3364
3617
|
nextButtonLabel: z.ZodDefault<z.ZodString>;
|
|
3365
3618
|
showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
|
|
3619
|
+
questionMediaUrl: z.ZodOptional<z.ZodString>;
|
|
3620
|
+
questionMediaType: z.ZodOptional<z.ZodEnum<{
|
|
3621
|
+
image: "image";
|
|
3622
|
+
video: "video";
|
|
3623
|
+
youtube: "youtube";
|
|
3624
|
+
vimeo: "vimeo";
|
|
3625
|
+
}>>;
|
|
3366
3626
|
type: z.ZodLiteral<"qna_with_ai">;
|
|
3367
3627
|
knowledgeBase: z.ZodString;
|
|
3368
3628
|
maxResponseLength: z.ZodOptional<z.ZodNumber>;
|
|
3369
3629
|
maxQaPairs: z.ZodOptional<z.ZodNumber>;
|
|
3370
3630
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3371
3631
|
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3632
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
3633
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
3634
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
3372
3635
|
}, z.core.$strip>], "type">>;
|
|
3373
3636
|
sections: z.ZodArray<z.ZodObject<{
|
|
3374
3637
|
id: z.ZodString;
|
|
@@ -3434,6 +3697,66 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3434
3697
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3435
3698
|
type: z.ZodLiteral<"long_text">;
|
|
3436
3699
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3700
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3701
|
+
title: z.ZodString;
|
|
3702
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3703
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
3704
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3705
|
+
type: z.ZodLiteral<"video_audio">;
|
|
3706
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
3707
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
3708
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
3709
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
3710
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
3711
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3712
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3713
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
3714
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
3715
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3716
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3717
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3718
|
+
title: z.ZodString;
|
|
3719
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3720
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
3721
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3722
|
+
type: z.ZodLiteral<"date">;
|
|
3723
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
3724
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
3725
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
3726
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
3727
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3728
|
+
title: z.ZodString;
|
|
3729
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3730
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
3731
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3732
|
+
type: z.ZodLiteral<"signature">;
|
|
3733
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3734
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
3735
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
3736
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
3737
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
3738
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
3739
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
3740
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
3741
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3742
|
+
title: z.ZodString;
|
|
3743
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3744
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
3745
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3746
|
+
type: z.ZodLiteral<"scheduler">;
|
|
3747
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
3748
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
3749
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3750
|
+
title: z.ZodString;
|
|
3751
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3752
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
3753
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3754
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
3755
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
3756
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3757
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
3758
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
3759
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
3437
3760
|
}, z.core.$strip>, z.ZodObject<{
|
|
3438
3761
|
title: z.ZodString;
|
|
3439
3762
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -3586,6 +3909,8 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3586
3909
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3587
3910
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
3588
3911
|
respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3912
|
+
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
3913
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
3589
3914
|
}, z.core.$strip>;
|
|
3590
3915
|
translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3591
3916
|
submitButtonLabel: z.ZodString;
|
|
@@ -3596,6 +3921,7 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3596
3921
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3597
3922
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
3598
3923
|
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
3924
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
3599
3925
|
}, z.core.$strip>>>;
|
|
3600
3926
|
}, z.core.$strip>, z.ZodObject<{
|
|
3601
3927
|
isEnabled: z.ZodLiteral<true>;
|
|
@@ -3609,6 +3935,8 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3609
3935
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3610
3936
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
3611
3937
|
respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3938
|
+
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
3939
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
3612
3940
|
}, z.core.$strip>;
|
|
3613
3941
|
translations: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3614
3942
|
submitButtonLabel: z.ZodString;
|
|
@@ -3619,6 +3947,7 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3619
3947
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3620
3948
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
3621
3949
|
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
3950
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
3622
3951
|
}, z.core.$strip>>;
|
|
3623
3952
|
}, z.core.$strip>], "isEnabled">;
|
|
3624
3953
|
appearanceProperties: z.ZodObject<{
|
|
@@ -3652,6 +3981,7 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3652
3981
|
auto: "auto";
|
|
3653
3982
|
}>>;
|
|
3654
3983
|
maxDialogHeightPercentInApp: z.ZodOptional<z.ZodNumber>;
|
|
3984
|
+
faviconUrl: z.ZodOptional<z.ZodString>;
|
|
3655
3985
|
}, z.core.$strip>;
|
|
3656
3986
|
selectedPosition: z.ZodEnum<{
|
|
3657
3987
|
"top-left": "top-left";
|