@encatch/schema 1.2.0-beta.7 → 1.2.0-beta.8

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.
@@ -72,8 +72,8 @@ export declare const questionResponseSchema: z.ZodObject<{
72
72
  }, z.core.$strip>>;
73
73
  videoAudio: z.ZodOptional<z.ZodObject<{
74
74
  mode: z.ZodEnum<{
75
- text: "text";
76
75
  video: "video";
76
+ text: "text";
77
77
  audio: "audio";
78
78
  photo: "photo";
79
79
  }>;
@@ -170,8 +170,8 @@ export declare const responseSchema: z.ZodObject<{
170
170
  }, z.core.$strip>>;
171
171
  videoAudio: z.ZodOptional<z.ZodObject<{
172
172
  mode: z.ZodEnum<{
173
- text: "text";
174
173
  video: "video";
174
+ text: "text";
175
175
  audio: "audio";
176
176
  photo: "photo";
177
177
  }>;
@@ -359,8 +359,8 @@ export declare const partialFeedbackSchema: z.ZodObject<{
359
359
  }, z.core.$strip>>;
360
360
  videoAudio: z.ZodOptional<z.ZodObject<{
361
361
  mode: z.ZodEnum<{
362
- text: "text";
363
362
  video: "video";
363
+ text: "text";
364
364
  audio: "audio";
365
365
  photo: "photo";
366
366
  }>;
@@ -501,8 +501,8 @@ export declare const submitFeedbackSchema: z.ZodObject<{
501
501
  }, z.core.$strip>>;
502
502
  videoAudio: z.ZodOptional<z.ZodObject<{
503
503
  mode: z.ZodEnum<{
504
- text: "text";
505
504
  video: "video";
505
+ text: "text";
506
506
  audio: "audio";
507
507
  photo: "photo";
508
508
  }>;
@@ -643,8 +643,8 @@ export declare const feedbackRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
643
643
  }, z.core.$strip>>;
644
644
  videoAudio: z.ZodOptional<z.ZodObject<{
645
645
  mode: z.ZodEnum<{
646
- text: "text";
647
646
  video: "video";
647
+ text: "text";
648
648
  audio: "audio";
649
649
  photo: "photo";
650
650
  }>;
@@ -784,8 +784,8 @@ export declare const feedbackRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
784
784
  }, z.core.$strip>>;
785
785
  videoAudio: z.ZodOptional<z.ZodObject<{
786
786
  mode: z.ZodEnum<{
787
- text: "text";
788
787
  video: "video";
788
+ text: "text";
789
789
  audio: "audio";
790
790
  photo: "photo";
791
791
  }>;
@@ -49,8 +49,8 @@ export declare const AddressAnswerSchema: z.ZodObject<{
49
49
  }, z.core.$strip>;
50
50
  export declare const VideoAudioAnswerSchema: z.ZodObject<{
51
51
  mode: z.ZodEnum<{
52
- text: "text";
53
52
  video: "video";
53
+ text: "text";
54
54
  audio: "audio";
55
55
  photo: "photo";
56
56
  }>;
@@ -141,8 +141,8 @@ export declare const AnswerItemSchema: z.ZodObject<{
141
141
  }, z.core.$strip>>;
142
142
  videoAudio: z.ZodOptional<z.ZodObject<{
143
143
  mode: z.ZodEnum<{
144
- text: "text";
145
144
  video: "video";
145
+ text: "text";
146
146
  audio: "audio";
147
147
  photo: "photo";
148
148
  }>;
@@ -230,8 +230,8 @@ export declare const AnswerSchema: z.ZodObject<{
230
230
  }, z.core.$strip>>;
231
231
  videoAudio: z.ZodOptional<z.ZodObject<{
232
232
  mode: z.ZodEnum<{
233
- text: "text";
234
233
  video: "video";
234
+ text: "text";
235
235
  audio: "audio";
236
236
  photo: "photo";
237
237
  }>;
@@ -78,6 +78,13 @@ export declare const appPropsSchema: z.ZodObject<{
78
78
  }>>>;
79
79
  nextButtonLabel: z.ZodDefault<z.ZodString>;
80
80
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
81
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
82
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
83
+ image: "image";
84
+ video: "video";
85
+ youtube: "youtube";
86
+ vimeo: "vimeo";
87
+ }>>;
81
88
  type: z.ZodLiteral<"rating">;
82
89
  showLabels: z.ZodOptional<z.ZodBoolean>;
83
90
  minLabel: z.ZodOptional<z.ZodString>;
@@ -151,6 +158,13 @@ export declare const appPropsSchema: z.ZodObject<{
151
158
  }>>>;
152
159
  nextButtonLabel: z.ZodDefault<z.ZodString>;
153
160
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
161
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
162
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
163
+ image: "image";
164
+ video: "video";
165
+ youtube: "youtube";
166
+ vimeo: "vimeo";
167
+ }>>;
154
168
  type: z.ZodLiteral<"annotation">;
155
169
  annotationText: z.ZodOptional<z.ZodString>;
156
170
  noAnnotationText: z.ZodOptional<z.ZodString>;
@@ -206,6 +220,13 @@ export declare const appPropsSchema: z.ZodObject<{
206
220
  }>>>;
207
221
  nextButtonLabel: z.ZodDefault<z.ZodString>;
208
222
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
223
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
224
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
225
+ image: "image";
226
+ video: "video";
227
+ youtube: "youtube";
228
+ vimeo: "vimeo";
229
+ }>>;
209
230
  type: z.ZodLiteral<"welcome">;
210
231
  title: z.ZodString;
211
232
  description: z.ZodOptional<z.ZodString>;
@@ -262,6 +283,13 @@ export declare const appPropsSchema: z.ZodObject<{
262
283
  }>>>;
263
284
  nextButtonLabel: z.ZodDefault<z.ZodString>;
264
285
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
286
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
287
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
288
+ image: "image";
289
+ video: "video";
290
+ youtube: "youtube";
291
+ vimeo: "vimeo";
292
+ }>>;
265
293
  type: z.ZodLiteral<"thank_you">;
266
294
  title: z.ZodString;
267
295
  description: z.ZodOptional<z.ZodString>;
@@ -318,6 +346,13 @@ export declare const appPropsSchema: z.ZodObject<{
318
346
  }>>>;
319
347
  nextButtonLabel: z.ZodDefault<z.ZodString>;
320
348
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
349
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
350
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
351
+ image: "image";
352
+ video: "video";
353
+ youtube: "youtube";
354
+ vimeo: "vimeo";
355
+ }>>;
321
356
  type: z.ZodLiteral<"message_panel">;
322
357
  title: z.ZodString;
323
358
  description: z.ZodOptional<z.ZodString>;
@@ -376,6 +411,13 @@ export declare const appPropsSchema: z.ZodObject<{
376
411
  }>>>;
377
412
  nextButtonLabel: z.ZodDefault<z.ZodString>;
378
413
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
414
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
415
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
416
+ image: "image";
417
+ video: "video";
418
+ youtube: "youtube";
419
+ vimeo: "vimeo";
420
+ }>>;
379
421
  type: z.ZodLiteral<"exit_form">;
380
422
  }, z.core.$strip>, z.ZodObject<{
381
423
  id: z.ZodString;
@@ -431,6 +473,13 @@ export declare const appPropsSchema: z.ZodObject<{
431
473
  }>>>;
432
474
  nextButtonLabel: z.ZodDefault<z.ZodString>;
433
475
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
476
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
477
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
478
+ image: "image";
479
+ video: "video";
480
+ youtube: "youtube";
481
+ vimeo: "vimeo";
482
+ }>>;
434
483
  type: z.ZodLiteral<"yes_no">;
435
484
  yesLabel: z.ZodOptional<z.ZodString>;
436
485
  noLabel: z.ZodOptional<z.ZodString>;
@@ -492,6 +541,13 @@ export declare const appPropsSchema: z.ZodObject<{
492
541
  }>>>;
493
542
  nextButtonLabel: z.ZodDefault<z.ZodString>;
494
543
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
544
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
545
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
546
+ image: "image";
547
+ video: "video";
548
+ youtube: "youtube";
549
+ vimeo: "vimeo";
550
+ }>>;
495
551
  type: z.ZodLiteral<"consent">;
496
552
  }, z.core.$strip>, z.ZodObject<{
497
553
  id: z.ZodString;
@@ -547,6 +603,13 @@ export declare const appPropsSchema: z.ZodObject<{
547
603
  }>>>;
548
604
  nextButtonLabel: z.ZodDefault<z.ZodString>;
549
605
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
606
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
607
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
608
+ image: "image";
609
+ video: "video";
610
+ youtube: "youtube";
611
+ vimeo: "vimeo";
612
+ }>>;
550
613
  type: z.ZodLiteral<"rating_matrix">;
551
614
  statements: z.ZodArray<z.ZodObject<{
552
615
  id: z.ZodString;
@@ -641,6 +704,13 @@ export declare const appPropsSchema: z.ZodObject<{
641
704
  }>>>;
642
705
  nextButtonLabel: z.ZodDefault<z.ZodString>;
643
706
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
707
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
708
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
709
+ image: "image";
710
+ video: "video";
711
+ youtube: "youtube";
712
+ vimeo: "vimeo";
713
+ }>>;
644
714
  type: z.ZodLiteral<"matrix_single_choice">;
645
715
  rows: z.ZodArray<z.ZodObject<{
646
716
  id: z.ZodString;
@@ -710,6 +780,13 @@ export declare const appPropsSchema: z.ZodObject<{
710
780
  }>>>;
711
781
  nextButtonLabel: z.ZodDefault<z.ZodString>;
712
782
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
783
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
784
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
785
+ image: "image";
786
+ video: "video";
787
+ youtube: "youtube";
788
+ vimeo: "vimeo";
789
+ }>>;
713
790
  type: z.ZodLiteral<"matrix_multiple_choice">;
714
791
  rows: z.ZodArray<z.ZodObject<{
715
792
  id: z.ZodString;
@@ -781,6 +858,13 @@ export declare const appPropsSchema: z.ZodObject<{
781
858
  }>>>;
782
859
  nextButtonLabel: z.ZodDefault<z.ZodString>;
783
860
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
861
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
862
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
863
+ image: "image";
864
+ video: "video";
865
+ youtube: "youtube";
866
+ vimeo: "vimeo";
867
+ }>>;
784
868
  type: z.ZodLiteral<"single_choice">;
785
869
  displayStyle: z.ZodOptional<z.ZodEnum<{
786
870
  radio: "radio";
@@ -859,6 +943,13 @@ export declare const appPropsSchema: z.ZodObject<{
859
943
  }>>>;
860
944
  nextButtonLabel: z.ZodDefault<z.ZodString>;
861
945
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
946
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
947
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
948
+ image: "image";
949
+ video: "video";
950
+ youtube: "youtube";
951
+ vimeo: "vimeo";
952
+ }>>;
862
953
  type: z.ZodLiteral<"multiple_choice_multiple">;
863
954
  displayStyle: z.ZodOptional<z.ZodEnum<{
864
955
  list: "list";
@@ -938,6 +1029,13 @@ export declare const appPropsSchema: z.ZodObject<{
938
1029
  }>>>;
939
1030
  nextButtonLabel: z.ZodDefault<z.ZodString>;
940
1031
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1032
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1033
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1034
+ image: "image";
1035
+ video: "video";
1036
+ youtube: "youtube";
1037
+ vimeo: "vimeo";
1038
+ }>>;
941
1039
  type: z.ZodLiteral<"nps">;
942
1040
  min: z.ZodLiteral<0>;
943
1041
  max: z.ZodLiteral<10>;
@@ -1002,6 +1100,13 @@ export declare const appPropsSchema: z.ZodObject<{
1002
1100
  }>>>;
1003
1101
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1004
1102
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1103
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1104
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1105
+ image: "image";
1106
+ video: "video";
1107
+ youtube: "youtube";
1108
+ vimeo: "vimeo";
1109
+ }>>;
1005
1110
  type: z.ZodLiteral<"short_answer">;
1006
1111
  maxCharacters: z.ZodOptional<z.ZodNumber>;
1007
1112
  minCharacters: z.ZodOptional<z.ZodNumber>;
@@ -1067,6 +1172,13 @@ export declare const appPropsSchema: z.ZodObject<{
1067
1172
  }>>>;
1068
1173
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1069
1174
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1175
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1176
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1177
+ image: "image";
1178
+ video: "video";
1179
+ youtube: "youtube";
1180
+ vimeo: "vimeo";
1181
+ }>>;
1070
1182
  type: z.ZodLiteral<"long_text">;
1071
1183
  maxCharacters: z.ZodOptional<z.ZodNumber>;
1072
1184
  minCharacters: z.ZodOptional<z.ZodNumber>;
@@ -1131,6 +1243,13 @@ export declare const appPropsSchema: z.ZodObject<{
1131
1243
  }>>>;
1132
1244
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1133
1245
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1246
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1247
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1248
+ image: "image";
1249
+ video: "video";
1250
+ youtube: "youtube";
1251
+ vimeo: "vimeo";
1252
+ }>>;
1134
1253
  type: z.ZodLiteral<"nested_selection">;
1135
1254
  placeholder: z.ZodOptional<z.ZodString>;
1136
1255
  options: z.ZodArray<z.ZodType<any, unknown, z.core.$ZodTypeInternals<any, unknown>>>;
@@ -1202,6 +1321,13 @@ export declare const appPropsSchema: z.ZodObject<{
1202
1321
  }>>>;
1203
1322
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1204
1323
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1324
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1325
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1326
+ image: "image";
1327
+ video: "video";
1328
+ youtube: "youtube";
1329
+ vimeo: "vimeo";
1330
+ }>>;
1205
1331
  type: z.ZodLiteral<"date">;
1206
1332
  format: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1207
1333
  "MM/DD/YYYY": "MM/DD/YYYY";
@@ -1272,6 +1398,13 @@ export declare const appPropsSchema: z.ZodObject<{
1272
1398
  }>>>;
1273
1399
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1274
1400
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1401
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1402
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1403
+ image: "image";
1404
+ video: "video";
1405
+ youtube: "youtube";
1406
+ vimeo: "vimeo";
1407
+ }>>;
1275
1408
  type: z.ZodLiteral<"csat">;
1276
1409
  scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>]>>>;
1277
1410
  displayStyle: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
@@ -1338,6 +1471,13 @@ export declare const appPropsSchema: z.ZodObject<{
1338
1471
  }>>>;
1339
1472
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1340
1473
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1474
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1475
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1476
+ image: "image";
1477
+ video: "video";
1478
+ youtube: "youtube";
1479
+ vimeo: "vimeo";
1480
+ }>>;
1341
1481
  type: z.ZodLiteral<"opinion_scale">;
1342
1482
  startValue: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>]>>>;
1343
1483
  steps: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
@@ -1397,6 +1537,13 @@ export declare const appPropsSchema: z.ZodObject<{
1397
1537
  }>>>;
1398
1538
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1399
1539
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1540
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1541
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1542
+ image: "image";
1543
+ video: "video";
1544
+ youtube: "youtube";
1545
+ vimeo: "vimeo";
1546
+ }>>;
1400
1547
  type: z.ZodLiteral<"ranking">;
1401
1548
  options: z.ZodArray<z.ZodObject<{
1402
1549
  id: z.ZodString;
@@ -1467,6 +1614,13 @@ export declare const appPropsSchema: z.ZodObject<{
1467
1614
  }>>>;
1468
1615
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1469
1616
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1617
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1618
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1619
+ image: "image";
1620
+ video: "video";
1621
+ youtube: "youtube";
1622
+ vimeo: "vimeo";
1623
+ }>>;
1470
1624
  type: z.ZodLiteral<"picture_choice">;
1471
1625
  options: z.ZodArray<z.ZodObject<{
1472
1626
  id: z.ZodString;
@@ -1543,6 +1697,13 @@ export declare const appPropsSchema: z.ZodObject<{
1543
1697
  }>>>;
1544
1698
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1545
1699
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1700
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1701
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1702
+ image: "image";
1703
+ video: "video";
1704
+ youtube: "youtube";
1705
+ vimeo: "vimeo";
1706
+ }>>;
1546
1707
  type: z.ZodLiteral<"signature">;
1547
1708
  allowedModes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1548
1709
  type: "type";
@@ -1615,6 +1776,13 @@ export declare const appPropsSchema: z.ZodObject<{
1615
1776
  }>>>;
1616
1777
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1617
1778
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1779
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1780
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1781
+ image: "image";
1782
+ video: "video";
1783
+ youtube: "youtube";
1784
+ vimeo: "vimeo";
1785
+ }>>;
1618
1786
  type: z.ZodLiteral<"file_upload">;
1619
1787
  allowedFileTypes: z.ZodOptional<z.ZodArray<z.ZodString>>;
1620
1788
  maxFileSizeMb: z.ZodOptional<z.ZodNumber>;
@@ -1675,6 +1843,13 @@ export declare const appPropsSchema: z.ZodObject<{
1675
1843
  }>>>;
1676
1844
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1677
1845
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1846
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1847
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1848
+ image: "image";
1849
+ video: "video";
1850
+ youtube: "youtube";
1851
+ vimeo: "vimeo";
1852
+ }>>;
1678
1853
  type: z.ZodLiteral<"email">;
1679
1854
  placeholder: z.ZodOptional<z.ZodString>;
1680
1855
  prepopulatedValue: z.ZodOptional<z.ZodString>;
@@ -1732,6 +1907,13 @@ export declare const appPropsSchema: z.ZodObject<{
1732
1907
  }>>>;
1733
1908
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1734
1909
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1910
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1911
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1912
+ image: "image";
1913
+ video: "video";
1914
+ youtube: "youtube";
1915
+ vimeo: "vimeo";
1916
+ }>>;
1735
1917
  type: z.ZodLiteral<"number">;
1736
1918
  min: z.ZodOptional<z.ZodNumber>;
1737
1919
  max: z.ZodOptional<z.ZodNumber>;
@@ -1794,6 +1976,13 @@ export declare const appPropsSchema: z.ZodObject<{
1794
1976
  }>>>;
1795
1977
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1796
1978
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
1979
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
1980
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
1981
+ image: "image";
1982
+ video: "video";
1983
+ youtube: "youtube";
1984
+ vimeo: "vimeo";
1985
+ }>>;
1797
1986
  type: z.ZodLiteral<"website">;
1798
1987
  placeholder: z.ZodOptional<z.ZodString>;
1799
1988
  prepopulatedValue: z.ZodOptional<z.ZodString>;
@@ -1851,6 +2040,13 @@ export declare const appPropsSchema: z.ZodObject<{
1851
2040
  }>>>;
1852
2041
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1853
2042
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
2043
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
2044
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
2045
+ image: "image";
2046
+ video: "video";
2047
+ youtube: "youtube";
2048
+ vimeo: "vimeo";
2049
+ }>>;
1854
2050
  type: z.ZodLiteral<"phone_number">;
1855
2051
  defaultCountryCode: z.ZodOptional<z.ZodString>;
1856
2052
  allowCountryChange: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -1910,6 +2106,13 @@ export declare const appPropsSchema: z.ZodObject<{
1910
2106
  }>>>;
1911
2107
  nextButtonLabel: z.ZodDefault<z.ZodString>;
1912
2108
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
2109
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
2110
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
2111
+ image: "image";
2112
+ video: "video";
2113
+ youtube: "youtube";
2114
+ vimeo: "vimeo";
2115
+ }>>;
1913
2116
  type: z.ZodLiteral<"address">;
1914
2117
  addressLine1: z.ZodOptional<z.ZodObject<{
1915
2118
  enabled: z.ZodDefault<z.ZodBoolean>;
@@ -2002,16 +2205,23 @@ export declare const appPropsSchema: z.ZodObject<{
2002
2205
  }>>>;
2003
2206
  nextButtonLabel: z.ZodDefault<z.ZodString>;
2004
2207
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
2208
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
2209
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
2210
+ image: "image";
2211
+ video: "video";
2212
+ youtube: "youtube";
2213
+ vimeo: "vimeo";
2214
+ }>>;
2005
2215
  type: z.ZodLiteral<"video_audio">;
2006
2216
  allowedModes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2007
- text: "text";
2008
2217
  video: "video";
2218
+ text: "text";
2009
2219
  audio: "audio";
2010
2220
  photo: "photo";
2011
2221
  }>>>;
2012
2222
  defaultMode: z.ZodOptional<z.ZodEnum<{
2013
- text: "text";
2014
2223
  video: "video";
2224
+ text: "text";
2015
2225
  audio: "audio";
2016
2226
  photo: "photo";
2017
2227
  }>>;
@@ -2077,6 +2287,13 @@ export declare const appPropsSchema: z.ZodObject<{
2077
2287
  }>>>;
2078
2288
  nextButtonLabel: z.ZodDefault<z.ZodString>;
2079
2289
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
2290
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
2291
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
2292
+ image: "image";
2293
+ video: "video";
2294
+ youtube: "youtube";
2295
+ vimeo: "vimeo";
2296
+ }>>;
2080
2297
  type: z.ZodLiteral<"scheduler">;
2081
2298
  provider: z.ZodOptional<z.ZodEnum<{
2082
2299
  google_calendar: "google_calendar";
@@ -2141,6 +2358,13 @@ export declare const appPropsSchema: z.ZodObject<{
2141
2358
  }>>>;
2142
2359
  nextButtonLabel: z.ZodDefault<z.ZodString>;
2143
2360
  showQuestionTitle: z.ZodDefault<z.ZodBoolean>;
2361
+ questionMediaUrl: z.ZodOptional<z.ZodString>;
2362
+ questionMediaType: z.ZodOptional<z.ZodEnum<{
2363
+ image: "image";
2364
+ video: "video";
2365
+ youtube: "youtube";
2366
+ vimeo: "vimeo";
2367
+ }>>;
2144
2368
  type: z.ZodLiteral<"qna_with_ai">;
2145
2369
  knowledgeBase: z.ZodString;
2146
2370
  maxResponseLength: z.ZodOptional<z.ZodNumber>;