@encatch/schema 1.3.0-beta.0 → 1.3.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -72,13 +72,13 @@ export declare const QuestionTypes: {
72
72
  export declare const validationRuleTypeSchema: z.ZodEnum<{
73
73
  custom: "custom";
74
74
  pattern: "pattern";
75
+ url: "url";
75
76
  email: "email";
76
77
  required: "required";
77
78
  min: "min";
78
79
  max: "max";
79
80
  minLength: "minLength";
80
81
  maxLength: "maxLength";
81
- url: "url";
82
82
  }>;
83
83
  export declare const ValidationRuleTypes: {
84
84
  readonly REQUIRED: "required";
@@ -95,13 +95,13 @@ export declare const validationRuleSchema: z.ZodObject<{
95
95
  type: z.ZodEnum<{
96
96
  custom: "custom";
97
97
  pattern: "pattern";
98
+ url: "url";
98
99
  email: "email";
99
100
  required: "required";
100
101
  min: "min";
101
102
  max: "max";
102
103
  minLength: "minLength";
103
104
  maxLength: "maxLength";
104
- url: "url";
105
105
  }>;
106
106
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
107
107
  message: z.ZodOptional<z.ZodString>;
@@ -292,13 +292,13 @@ export declare const questionSchema: z.ZodObject<{
292
292
  type: z.ZodEnum<{
293
293
  custom: "custom";
294
294
  pattern: "pattern";
295
+ url: "url";
295
296
  email: "email";
296
297
  required: "required";
297
298
  min: "min";
298
299
  max: "max";
299
300
  minLength: "minLength";
300
301
  maxLength: "maxLength";
301
- url: "url";
302
302
  }>;
303
303
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
304
304
  message: z.ZodOptional<z.ZodString>;
@@ -354,13 +354,13 @@ export declare const ratingQuestionSchema: z.ZodObject<{
354
354
  type: z.ZodEnum<{
355
355
  custom: "custom";
356
356
  pattern: "pattern";
357
+ url: "url";
357
358
  email: "email";
358
359
  required: "required";
359
360
  min: "min";
360
361
  max: "max";
361
362
  minLength: "minLength";
362
363
  maxLength: "maxLength";
363
- url: "url";
364
364
  }>;
365
365
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
366
366
  message: z.ZodOptional<z.ZodString>;
@@ -435,13 +435,13 @@ export declare const annotationQuestionSchema: z.ZodObject<{
435
435
  type: z.ZodEnum<{
436
436
  custom: "custom";
437
437
  pattern: "pattern";
438
+ url: "url";
438
439
  email: "email";
439
440
  required: "required";
440
441
  min: "min";
441
442
  max: "max";
442
443
  minLength: "minLength";
443
444
  maxLength: "maxLength";
444
- url: "url";
445
445
  }>;
446
446
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
447
447
  message: z.ZodOptional<z.ZodString>;
@@ -498,13 +498,13 @@ export declare const welcomeQuestionSchema: z.ZodObject<{
498
498
  type: z.ZodEnum<{
499
499
  custom: "custom";
500
500
  pattern: "pattern";
501
+ url: "url";
501
502
  email: "email";
502
503
  required: "required";
503
504
  min: "min";
504
505
  max: "max";
505
506
  minLength: "minLength";
506
507
  maxLength: "maxLength";
507
- url: "url";
508
508
  }>;
509
509
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
510
510
  message: z.ZodOptional<z.ZodString>;
@@ -562,13 +562,13 @@ export declare const thankYouQuestionSchema: z.ZodObject<{
562
562
  type: z.ZodEnum<{
563
563
  custom: "custom";
564
564
  pattern: "pattern";
565
+ url: "url";
565
566
  email: "email";
566
567
  required: "required";
567
568
  min: "min";
568
569
  max: "max";
569
570
  minLength: "minLength";
570
571
  maxLength: "maxLength";
571
- url: "url";
572
572
  }>;
573
573
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
574
574
  message: z.ZodOptional<z.ZodString>;
@@ -614,6 +614,37 @@ export declare const thankYouQuestionSchema: z.ZodObject<{
614
614
  title: z.ZodString;
615
615
  description: z.ZodOptional<z.ZodString>;
616
616
  imageUrl: z.ZodOptional<z.ZodString>;
617
+ completionCta: z.ZodOptional<z.ZodObject<{
618
+ label: z.ZodOptional<z.ZodString>;
619
+ autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
620
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
621
+ action: z.ZodLiteral<"dismiss">;
622
+ }, z.core.$strip>, z.ZodObject<{
623
+ action: z.ZodLiteral<"app_navigate">;
624
+ route: z.ZodString;
625
+ }, z.core.$strip>, z.ZodObject<{
626
+ action: z.ZodLiteral<"redirect_internal">;
627
+ url: z.ZodString;
628
+ }, z.core.$strip>, z.ZodObject<{
629
+ action: z.ZodLiteral<"redirect_external">;
630
+ url: z.ZodString;
631
+ }, z.core.$strip>], "action">>;
632
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
633
+ action: z.ZodLiteral<"dismiss">;
634
+ }, z.core.$strip>, z.ZodObject<{
635
+ action: z.ZodLiteral<"app_navigate">;
636
+ route: z.ZodString;
637
+ }, z.core.$strip>, z.ZodObject<{
638
+ action: z.ZodLiteral<"redirect_internal">;
639
+ url: z.ZodString;
640
+ }, z.core.$strip>, z.ZodObject<{
641
+ action: z.ZodLiteral<"redirect_external">;
642
+ url: z.ZodString;
643
+ }, z.core.$strip>], "action">>;
644
+ secondary: z.ZodOptional<z.ZodObject<{
645
+ label: z.ZodString;
646
+ }, z.core.$strip>>;
647
+ }, z.core.$strip>>;
617
648
  }, z.core.$strip>;
618
649
  export declare const messagePanelQuestionSchema: z.ZodObject<{
619
650
  id: z.ZodString;
@@ -626,13 +657,13 @@ export declare const messagePanelQuestionSchema: z.ZodObject<{
626
657
  type: z.ZodEnum<{
627
658
  custom: "custom";
628
659
  pattern: "pattern";
660
+ url: "url";
629
661
  email: "email";
630
662
  required: "required";
631
663
  min: "min";
632
664
  max: "max";
633
665
  minLength: "minLength";
634
666
  maxLength: "maxLength";
635
- url: "url";
636
667
  }>;
637
668
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
638
669
  message: z.ZodOptional<z.ZodString>;
@@ -692,13 +723,13 @@ export declare const exitFormQuestionSchema: z.ZodObject<{
692
723
  type: z.ZodEnum<{
693
724
  custom: "custom";
694
725
  pattern: "pattern";
726
+ url: "url";
695
727
  email: "email";
696
728
  required: "required";
697
729
  min: "min";
698
730
  max: "max";
699
731
  minLength: "minLength";
700
732
  maxLength: "maxLength";
701
- url: "url";
702
733
  }>;
703
734
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
704
735
  message: z.ZodOptional<z.ZodString>;
@@ -741,6 +772,37 @@ export declare const exitFormQuestionSchema: z.ZodObject<{
741
772
  vimeo: "vimeo";
742
773
  }>>;
743
774
  type: z.ZodLiteral<"exit_form">;
775
+ completionCta: z.ZodOptional<z.ZodObject<{
776
+ label: z.ZodOptional<z.ZodString>;
777
+ autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
778
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
779
+ action: z.ZodLiteral<"dismiss">;
780
+ }, z.core.$strip>, z.ZodObject<{
781
+ action: z.ZodLiteral<"app_navigate">;
782
+ route: z.ZodString;
783
+ }, z.core.$strip>, z.ZodObject<{
784
+ action: z.ZodLiteral<"redirect_internal">;
785
+ url: z.ZodString;
786
+ }, z.core.$strip>, z.ZodObject<{
787
+ action: z.ZodLiteral<"redirect_external">;
788
+ url: z.ZodString;
789
+ }, z.core.$strip>], "action">>;
790
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
791
+ action: z.ZodLiteral<"dismiss">;
792
+ }, z.core.$strip>, z.ZodObject<{
793
+ action: z.ZodLiteral<"app_navigate">;
794
+ route: z.ZodString;
795
+ }, z.core.$strip>, z.ZodObject<{
796
+ action: z.ZodLiteral<"redirect_internal">;
797
+ url: z.ZodString;
798
+ }, z.core.$strip>, z.ZodObject<{
799
+ action: z.ZodLiteral<"redirect_external">;
800
+ url: z.ZodString;
801
+ }, z.core.$strip>], "action">>;
802
+ secondary: z.ZodOptional<z.ZodObject<{
803
+ label: z.ZodString;
804
+ }, z.core.$strip>>;
805
+ }, z.core.$strip>>;
744
806
  }, z.core.$strip>;
745
807
  export declare const yesNoQuestionSchema: z.ZodObject<{
746
808
  id: z.ZodString;
@@ -755,13 +817,13 @@ export declare const yesNoQuestionSchema: z.ZodObject<{
755
817
  type: z.ZodEnum<{
756
818
  custom: "custom";
757
819
  pattern: "pattern";
820
+ url: "url";
758
821
  email: "email";
759
822
  required: "required";
760
823
  min: "min";
761
824
  max: "max";
762
825
  minLength: "minLength";
763
826
  maxLength: "maxLength";
764
- url: "url";
765
827
  }>;
766
828
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
767
829
  message: z.ZodOptional<z.ZodString>;
@@ -824,13 +886,13 @@ export declare const consentQuestionSchema: z.ZodObject<{
824
886
  type: z.ZodEnum<{
825
887
  custom: "custom";
826
888
  pattern: "pattern";
889
+ url: "url";
827
890
  email: "email";
828
891
  required: "required";
829
892
  min: "min";
830
893
  max: "max";
831
894
  minLength: "minLength";
832
895
  maxLength: "maxLength";
833
- url: "url";
834
896
  }>;
835
897
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
836
898
  message: z.ZodOptional<z.ZodString>;
@@ -937,13 +999,13 @@ export declare const ratingMatrixQuestionSchema: z.ZodObject<{
937
999
  type: z.ZodEnum<{
938
1000
  custom: "custom";
939
1001
  pattern: "pattern";
1002
+ url: "url";
940
1003
  email: "email";
941
1004
  required: "required";
942
1005
  min: "min";
943
1006
  max: "max";
944
1007
  minLength: "minLength";
945
1008
  maxLength: "maxLength";
946
- url: "url";
947
1009
  }>;
948
1010
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
949
1011
  message: z.ZodOptional<z.ZodString>;
@@ -1051,13 +1113,13 @@ export declare const matrixSingleChoiceQuestionSchema: z.ZodObject<{
1051
1113
  type: z.ZodEnum<{
1052
1114
  custom: "custom";
1053
1115
  pattern: "pattern";
1116
+ url: "url";
1054
1117
  email: "email";
1055
1118
  required: "required";
1056
1119
  min: "min";
1057
1120
  max: "max";
1058
1121
  minLength: "minLength";
1059
1122
  maxLength: "maxLength";
1060
- url: "url";
1061
1123
  }>;
1062
1124
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1063
1125
  message: z.ZodOptional<z.ZodString>;
@@ -1128,13 +1190,13 @@ export declare const matrixMultipleChoiceQuestionSchema: z.ZodObject<{
1128
1190
  type: z.ZodEnum<{
1129
1191
  custom: "custom";
1130
1192
  pattern: "pattern";
1193
+ url: "url";
1131
1194
  email: "email";
1132
1195
  required: "required";
1133
1196
  min: "min";
1134
1197
  max: "max";
1135
1198
  minLength: "minLength";
1136
1199
  maxLength: "maxLength";
1137
- url: "url";
1138
1200
  }>;
1139
1201
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1140
1202
  message: z.ZodOptional<z.ZodString>;
@@ -1216,13 +1278,13 @@ export declare const multipleChoiceSingleQuestionSchema: z.ZodObject<{
1216
1278
  type: z.ZodEnum<{
1217
1279
  custom: "custom";
1218
1280
  pattern: "pattern";
1281
+ url: "url";
1219
1282
  email: "email";
1220
1283
  required: "required";
1221
1284
  min: "min";
1222
1285
  max: "max";
1223
1286
  minLength: "minLength";
1224
1287
  maxLength: "maxLength";
1225
- url: "url";
1226
1288
  }>;
1227
1289
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1228
1290
  message: z.ZodOptional<z.ZodString>;
@@ -1302,13 +1364,13 @@ export declare const multipleChoiceMultipleQuestionSchema: z.ZodObject<{
1302
1364
  type: z.ZodEnum<{
1303
1365
  custom: "custom";
1304
1366
  pattern: "pattern";
1367
+ url: "url";
1305
1368
  email: "email";
1306
1369
  required: "required";
1307
1370
  min: "min";
1308
1371
  max: "max";
1309
1372
  minLength: "minLength";
1310
1373
  maxLength: "maxLength";
1311
- url: "url";
1312
1374
  }>;
1313
1375
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1314
1376
  message: z.ZodOptional<z.ZodString>;
@@ -1389,13 +1451,13 @@ export declare const npsQuestionSchema: z.ZodObject<{
1389
1451
  type: z.ZodEnum<{
1390
1452
  custom: "custom";
1391
1453
  pattern: "pattern";
1454
+ url: "url";
1392
1455
  email: "email";
1393
1456
  required: "required";
1394
1457
  min: "min";
1395
1458
  max: "max";
1396
1459
  minLength: "minLength";
1397
1460
  maxLength: "maxLength";
1398
- url: "url";
1399
1461
  }>;
1400
1462
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1401
1463
  message: z.ZodOptional<z.ZodString>;
@@ -1461,13 +1523,13 @@ export declare const shortAnswerQuestionSchema: z.ZodObject<{
1461
1523
  type: z.ZodEnum<{
1462
1524
  custom: "custom";
1463
1525
  pattern: "pattern";
1526
+ url: "url";
1464
1527
  email: "email";
1465
1528
  required: "required";
1466
1529
  min: "min";
1467
1530
  max: "max";
1468
1531
  minLength: "minLength";
1469
1532
  maxLength: "maxLength";
1470
- url: "url";
1471
1533
  }>;
1472
1534
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1473
1535
  message: z.ZodOptional<z.ZodString>;
@@ -1534,13 +1596,13 @@ export declare const longAnswerQuestionSchema: z.ZodObject<{
1534
1596
  type: z.ZodEnum<{
1535
1597
  custom: "custom";
1536
1598
  pattern: "pattern";
1599
+ url: "url";
1537
1600
  email: "email";
1538
1601
  required: "required";
1539
1602
  min: "min";
1540
1603
  max: "max";
1541
1604
  minLength: "minLength";
1542
1605
  maxLength: "maxLength";
1543
- url: "url";
1544
1606
  }>;
1545
1607
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1546
1608
  message: z.ZodOptional<z.ZodString>;
@@ -1606,13 +1668,13 @@ export declare const nestedDropdownQuestionSchema: z.ZodObject<{
1606
1668
  type: z.ZodEnum<{
1607
1669
  custom: "custom";
1608
1670
  pattern: "pattern";
1671
+ url: "url";
1609
1672
  email: "email";
1610
1673
  required: "required";
1611
1674
  min: "min";
1612
1675
  max: "max";
1613
1676
  minLength: "minLength";
1614
1677
  maxLength: "maxLength";
1615
- url: "url";
1616
1678
  }>;
1617
1679
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1618
1680
  message: z.ZodOptional<z.ZodString>;
@@ -1769,13 +1831,13 @@ export declare const dateQuestionSchema: z.ZodObject<{
1769
1831
  type: z.ZodEnum<{
1770
1832
  custom: "custom";
1771
1833
  pattern: "pattern";
1834
+ url: "url";
1772
1835
  email: "email";
1773
1836
  required: "required";
1774
1837
  min: "min";
1775
1838
  max: "max";
1776
1839
  minLength: "minLength";
1777
1840
  maxLength: "maxLength";
1778
- url: "url";
1779
1841
  }>;
1780
1842
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1781
1843
  message: z.ZodOptional<z.ZodString>;
@@ -1865,13 +1927,13 @@ export declare const csatQuestionSchema: z.ZodObject<{
1865
1927
  type: z.ZodEnum<{
1866
1928
  custom: "custom";
1867
1929
  pattern: "pattern";
1930
+ url: "url";
1868
1931
  email: "email";
1869
1932
  required: "required";
1870
1933
  min: "min";
1871
1934
  max: "max";
1872
1935
  minLength: "minLength";
1873
1936
  maxLength: "maxLength";
1874
- url: "url";
1875
1937
  }>;
1876
1938
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1877
1939
  message: z.ZodOptional<z.ZodString>;
@@ -1939,13 +2001,13 @@ export declare const opinionScaleQuestionSchema: z.ZodObject<{
1939
2001
  type: z.ZodEnum<{
1940
2002
  custom: "custom";
1941
2003
  pattern: "pattern";
2004
+ url: "url";
1942
2005
  email: "email";
1943
2006
  required: "required";
1944
2007
  min: "min";
1945
2008
  max: "max";
1946
2009
  minLength: "minLength";
1947
2010
  maxLength: "maxLength";
1948
- url: "url";
1949
2011
  }>;
1950
2012
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1951
2013
  message: z.ZodOptional<z.ZodString>;
@@ -2016,13 +2078,13 @@ export declare const rankingQuestionSchema: z.ZodObject<{
2016
2078
  type: z.ZodEnum<{
2017
2079
  custom: "custom";
2018
2080
  pattern: "pattern";
2081
+ url: "url";
2019
2082
  email: "email";
2020
2083
  required: "required";
2021
2084
  min: "min";
2022
2085
  max: "max";
2023
2086
  minLength: "minLength";
2024
2087
  maxLength: "maxLength";
2025
- url: "url";
2026
2088
  }>;
2027
2089
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2028
2090
  message: z.ZodOptional<z.ZodString>;
@@ -2094,13 +2156,13 @@ export declare const pictureChoiceQuestionSchema: z.ZodObject<{
2094
2156
  type: z.ZodEnum<{
2095
2157
  custom: "custom";
2096
2158
  pattern: "pattern";
2159
+ url: "url";
2097
2160
  email: "email";
2098
2161
  required: "required";
2099
2162
  min: "min";
2100
2163
  max: "max";
2101
2164
  minLength: "minLength";
2102
2165
  maxLength: "maxLength";
2103
- url: "url";
2104
2166
  }>;
2105
2167
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2106
2168
  message: z.ZodOptional<z.ZodString>;
@@ -2188,13 +2250,13 @@ export declare const signatureQuestionSchema: z.ZodObject<{
2188
2250
  type: z.ZodEnum<{
2189
2251
  custom: "custom";
2190
2252
  pattern: "pattern";
2253
+ url: "url";
2191
2254
  email: "email";
2192
2255
  required: "required";
2193
2256
  min: "min";
2194
2257
  max: "max";
2195
2258
  minLength: "minLength";
2196
2259
  maxLength: "maxLength";
2197
- url: "url";
2198
2260
  }>;
2199
2261
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2200
2262
  message: z.ZodOptional<z.ZodString>;
@@ -2275,13 +2337,13 @@ export declare const fileUploadQuestionSchema: z.ZodObject<{
2275
2337
  type: z.ZodEnum<{
2276
2338
  custom: "custom";
2277
2339
  pattern: "pattern";
2340
+ url: "url";
2278
2341
  email: "email";
2279
2342
  required: "required";
2280
2343
  min: "min";
2281
2344
  max: "max";
2282
2345
  minLength: "minLength";
2283
2346
  maxLength: "maxLength";
2284
- url: "url";
2285
2347
  }>;
2286
2348
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2287
2349
  message: z.ZodOptional<z.ZodString>;
@@ -2343,13 +2405,13 @@ export declare const emailQuestionSchema: z.ZodObject<{
2343
2405
  type: z.ZodEnum<{
2344
2406
  custom: "custom";
2345
2407
  pattern: "pattern";
2408
+ url: "url";
2346
2409
  email: "email";
2347
2410
  required: "required";
2348
2411
  min: "min";
2349
2412
  max: "max";
2350
2413
  minLength: "minLength";
2351
2414
  maxLength: "maxLength";
2352
- url: "url";
2353
2415
  }>;
2354
2416
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2355
2417
  message: z.ZodOptional<z.ZodString>;
@@ -2408,13 +2470,13 @@ export declare const numberQuestionSchema: z.ZodObject<{
2408
2470
  type: z.ZodEnum<{
2409
2471
  custom: "custom";
2410
2472
  pattern: "pattern";
2473
+ url: "url";
2411
2474
  email: "email";
2412
2475
  required: "required";
2413
2476
  min: "min";
2414
2477
  max: "max";
2415
2478
  minLength: "minLength";
2416
2479
  maxLength: "maxLength";
2417
- url: "url";
2418
2480
  }>;
2419
2481
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2420
2482
  message: z.ZodOptional<z.ZodString>;
@@ -2478,13 +2540,13 @@ export declare const websiteQuestionSchema: z.ZodObject<{
2478
2540
  type: z.ZodEnum<{
2479
2541
  custom: "custom";
2480
2542
  pattern: "pattern";
2543
+ url: "url";
2481
2544
  email: "email";
2482
2545
  required: "required";
2483
2546
  min: "min";
2484
2547
  max: "max";
2485
2548
  minLength: "minLength";
2486
2549
  maxLength: "maxLength";
2487
- url: "url";
2488
2550
  }>;
2489
2551
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2490
2552
  message: z.ZodOptional<z.ZodString>;
@@ -2543,13 +2605,13 @@ export declare const phoneNumberQuestionSchema: z.ZodObject<{
2543
2605
  type: z.ZodEnum<{
2544
2606
  custom: "custom";
2545
2607
  pattern: "pattern";
2608
+ url: "url";
2546
2609
  email: "email";
2547
2610
  required: "required";
2548
2611
  min: "min";
2549
2612
  max: "max";
2550
2613
  minLength: "minLength";
2551
2614
  maxLength: "maxLength";
2552
- url: "url";
2553
2615
  }>;
2554
2616
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2555
2617
  message: z.ZodOptional<z.ZodString>;
@@ -2616,13 +2678,13 @@ export declare const addressQuestionSchema: z.ZodObject<{
2616
2678
  type: z.ZodEnum<{
2617
2679
  custom: "custom";
2618
2680
  pattern: "pattern";
2681
+ url: "url";
2619
2682
  email: "email";
2620
2683
  required: "required";
2621
2684
  min: "min";
2622
2685
  max: "max";
2623
2686
  minLength: "minLength";
2624
2687
  maxLength: "maxLength";
2625
- url: "url";
2626
2688
  }>;
2627
2689
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2628
2690
  message: z.ZodOptional<z.ZodString>;
@@ -2728,13 +2790,13 @@ export declare const videoAudioQuestionSchema: z.ZodObject<{
2728
2790
  type: z.ZodEnum<{
2729
2791
  custom: "custom";
2730
2792
  pattern: "pattern";
2793
+ url: "url";
2731
2794
  email: "email";
2732
2795
  required: "required";
2733
2796
  min: "min";
2734
2797
  max: "max";
2735
2798
  minLength: "minLength";
2736
2799
  maxLength: "maxLength";
2737
- url: "url";
2738
2800
  }>;
2739
2801
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2740
2802
  message: z.ZodOptional<z.ZodString>;
@@ -2825,13 +2887,13 @@ export declare const schedulerQuestionSchema: z.ZodObject<{
2825
2887
  type: z.ZodEnum<{
2826
2888
  custom: "custom";
2827
2889
  pattern: "pattern";
2890
+ url: "url";
2828
2891
  email: "email";
2829
2892
  required: "required";
2830
2893
  min: "min";
2831
2894
  max: "max";
2832
2895
  minLength: "minLength";
2833
2896
  maxLength: "maxLength";
2834
- url: "url";
2835
2897
  }>;
2836
2898
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2837
2899
  message: z.ZodOptional<z.ZodString>;
@@ -2898,13 +2960,13 @@ export declare const qnaWithAiQuestionSchema: z.ZodObject<{
2898
2960
  type: z.ZodEnum<{
2899
2961
  custom: "custom";
2900
2962
  pattern: "pattern";
2963
+ url: "url";
2901
2964
  email: "email";
2902
2965
  required: "required";
2903
2966
  min: "min";
2904
2967
  max: "max";
2905
2968
  minLength: "minLength";
2906
2969
  maxLength: "maxLength";
2907
- url: "url";
2908
2970
  }>;
2909
2971
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2910
2972
  message: z.ZodOptional<z.ZodString>;
@@ -2989,13 +3051,13 @@ export declare const paymentsUpiQuestionSchema: z.ZodObject<{
2989
3051
  type: z.ZodEnum<{
2990
3052
  custom: "custom";
2991
3053
  pattern: "pattern";
3054
+ url: "url";
2992
3055
  email: "email";
2993
3056
  required: "required";
2994
3057
  min: "min";
2995
3058
  max: "max";
2996
3059
  minLength: "minLength";
2997
3060
  maxLength: "maxLength";
2998
- url: "url";
2999
3061
  }>;
3000
3062
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3001
3063
  message: z.ZodOptional<z.ZodString>;
@@ -3082,13 +3144,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3082
3144
  type: z.ZodEnum<{
3083
3145
  custom: "custom";
3084
3146
  pattern: "pattern";
3147
+ url: "url";
3085
3148
  email: "email";
3086
3149
  required: "required";
3087
3150
  min: "min";
3088
3151
  max: "max";
3089
3152
  minLength: "minLength";
3090
3153
  maxLength: "maxLength";
3091
- url: "url";
3092
3154
  }>;
3093
3155
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3094
3156
  message: z.ZodOptional<z.ZodString>;
@@ -3162,13 +3224,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3162
3224
  type: z.ZodEnum<{
3163
3225
  custom: "custom";
3164
3226
  pattern: "pattern";
3227
+ url: "url";
3165
3228
  email: "email";
3166
3229
  required: "required";
3167
3230
  min: "min";
3168
3231
  max: "max";
3169
3232
  minLength: "minLength";
3170
3233
  maxLength: "maxLength";
3171
- url: "url";
3172
3234
  }>;
3173
3235
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3174
3236
  message: z.ZodOptional<z.ZodString>;
@@ -3224,13 +3286,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3224
3286
  type: z.ZodEnum<{
3225
3287
  custom: "custom";
3226
3288
  pattern: "pattern";
3289
+ url: "url";
3227
3290
  email: "email";
3228
3291
  required: "required";
3229
3292
  min: "min";
3230
3293
  max: "max";
3231
3294
  minLength: "minLength";
3232
3295
  maxLength: "maxLength";
3233
- url: "url";
3234
3296
  }>;
3235
3297
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3236
3298
  message: z.ZodOptional<z.ZodString>;
@@ -3287,13 +3349,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3287
3349
  type: z.ZodEnum<{
3288
3350
  custom: "custom";
3289
3351
  pattern: "pattern";
3352
+ url: "url";
3290
3353
  email: "email";
3291
3354
  required: "required";
3292
3355
  min: "min";
3293
3356
  max: "max";
3294
3357
  minLength: "minLength";
3295
3358
  maxLength: "maxLength";
3296
- url: "url";
3297
3359
  }>;
3298
3360
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3299
3361
  message: z.ZodOptional<z.ZodString>;
@@ -3339,6 +3401,37 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3339
3401
  title: z.ZodString;
3340
3402
  description: z.ZodOptional<z.ZodString>;
3341
3403
  imageUrl: z.ZodOptional<z.ZodString>;
3404
+ completionCta: z.ZodOptional<z.ZodObject<{
3405
+ label: z.ZodOptional<z.ZodString>;
3406
+ autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
3407
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3408
+ action: z.ZodLiteral<"dismiss">;
3409
+ }, z.core.$strip>, z.ZodObject<{
3410
+ action: z.ZodLiteral<"app_navigate">;
3411
+ route: z.ZodString;
3412
+ }, z.core.$strip>, z.ZodObject<{
3413
+ action: z.ZodLiteral<"redirect_internal">;
3414
+ url: z.ZodString;
3415
+ }, z.core.$strip>, z.ZodObject<{
3416
+ action: z.ZodLiteral<"redirect_external">;
3417
+ url: z.ZodString;
3418
+ }, z.core.$strip>], "action">>;
3419
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3420
+ action: z.ZodLiteral<"dismiss">;
3421
+ }, z.core.$strip>, z.ZodObject<{
3422
+ action: z.ZodLiteral<"app_navigate">;
3423
+ route: z.ZodString;
3424
+ }, z.core.$strip>, z.ZodObject<{
3425
+ action: z.ZodLiteral<"redirect_internal">;
3426
+ url: z.ZodString;
3427
+ }, z.core.$strip>, z.ZodObject<{
3428
+ action: z.ZodLiteral<"redirect_external">;
3429
+ url: z.ZodString;
3430
+ }, z.core.$strip>], "action">>;
3431
+ secondary: z.ZodOptional<z.ZodObject<{
3432
+ label: z.ZodString;
3433
+ }, z.core.$strip>>;
3434
+ }, z.core.$strip>>;
3342
3435
  }, z.core.$strip>, z.ZodObject<{
3343
3436
  id: z.ZodString;
3344
3437
  slug: z.ZodOptional<z.ZodString>;
@@ -3350,13 +3443,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3350
3443
  type: z.ZodEnum<{
3351
3444
  custom: "custom";
3352
3445
  pattern: "pattern";
3446
+ url: "url";
3353
3447
  email: "email";
3354
3448
  required: "required";
3355
3449
  min: "min";
3356
3450
  max: "max";
3357
3451
  minLength: "minLength";
3358
3452
  maxLength: "maxLength";
3359
- url: "url";
3360
3453
  }>;
3361
3454
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3362
3455
  message: z.ZodOptional<z.ZodString>;
@@ -3415,13 +3508,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3415
3508
  type: z.ZodEnum<{
3416
3509
  custom: "custom";
3417
3510
  pattern: "pattern";
3511
+ url: "url";
3418
3512
  email: "email";
3419
3513
  required: "required";
3420
3514
  min: "min";
3421
3515
  max: "max";
3422
3516
  minLength: "minLength";
3423
3517
  maxLength: "maxLength";
3424
- url: "url";
3425
3518
  }>;
3426
3519
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3427
3520
  message: z.ZodOptional<z.ZodString>;
@@ -3464,6 +3557,37 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3464
3557
  vimeo: "vimeo";
3465
3558
  }>>;
3466
3559
  type: z.ZodLiteral<"exit_form">;
3560
+ completionCta: z.ZodOptional<z.ZodObject<{
3561
+ label: z.ZodOptional<z.ZodString>;
3562
+ autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
3563
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3564
+ action: z.ZodLiteral<"dismiss">;
3565
+ }, z.core.$strip>, z.ZodObject<{
3566
+ action: z.ZodLiteral<"app_navigate">;
3567
+ route: z.ZodString;
3568
+ }, z.core.$strip>, z.ZodObject<{
3569
+ action: z.ZodLiteral<"redirect_internal">;
3570
+ url: z.ZodString;
3571
+ }, z.core.$strip>, z.ZodObject<{
3572
+ action: z.ZodLiteral<"redirect_external">;
3573
+ url: z.ZodString;
3574
+ }, z.core.$strip>], "action">>;
3575
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3576
+ action: z.ZodLiteral<"dismiss">;
3577
+ }, z.core.$strip>, z.ZodObject<{
3578
+ action: z.ZodLiteral<"app_navigate">;
3579
+ route: z.ZodString;
3580
+ }, z.core.$strip>, z.ZodObject<{
3581
+ action: z.ZodLiteral<"redirect_internal">;
3582
+ url: z.ZodString;
3583
+ }, z.core.$strip>, z.ZodObject<{
3584
+ action: z.ZodLiteral<"redirect_external">;
3585
+ url: z.ZodString;
3586
+ }, z.core.$strip>], "action">>;
3587
+ secondary: z.ZodOptional<z.ZodObject<{
3588
+ label: z.ZodString;
3589
+ }, z.core.$strip>>;
3590
+ }, z.core.$strip>>;
3467
3591
  }, z.core.$strip>, z.ZodObject<{
3468
3592
  id: z.ZodString;
3469
3593
  slug: z.ZodOptional<z.ZodString>;
@@ -3477,13 +3601,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3477
3601
  type: z.ZodEnum<{
3478
3602
  custom: "custom";
3479
3603
  pattern: "pattern";
3604
+ url: "url";
3480
3605
  email: "email";
3481
3606
  required: "required";
3482
3607
  min: "min";
3483
3608
  max: "max";
3484
3609
  minLength: "minLength";
3485
3610
  maxLength: "maxLength";
3486
- url: "url";
3487
3611
  }>;
3488
3612
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3489
3613
  message: z.ZodOptional<z.ZodString>;
@@ -3545,13 +3669,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3545
3669
  type: z.ZodEnum<{
3546
3670
  custom: "custom";
3547
3671
  pattern: "pattern";
3672
+ url: "url";
3548
3673
  email: "email";
3549
3674
  required: "required";
3550
3675
  min: "min";
3551
3676
  max: "max";
3552
3677
  minLength: "minLength";
3553
3678
  maxLength: "maxLength";
3554
- url: "url";
3555
3679
  }>;
3556
3680
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3557
3681
  message: z.ZodOptional<z.ZodString>;
@@ -3607,13 +3731,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3607
3731
  type: z.ZodEnum<{
3608
3732
  custom: "custom";
3609
3733
  pattern: "pattern";
3734
+ url: "url";
3610
3735
  email: "email";
3611
3736
  required: "required";
3612
3737
  min: "min";
3613
3738
  max: "max";
3614
3739
  minLength: "minLength";
3615
3740
  maxLength: "maxLength";
3616
- url: "url";
3617
3741
  }>;
3618
3742
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3619
3743
  message: z.ZodOptional<z.ZodString>;
@@ -3708,13 +3832,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3708
3832
  type: z.ZodEnum<{
3709
3833
  custom: "custom";
3710
3834
  pattern: "pattern";
3835
+ url: "url";
3711
3836
  email: "email";
3712
3837
  required: "required";
3713
3838
  min: "min";
3714
3839
  max: "max";
3715
3840
  minLength: "minLength";
3716
3841
  maxLength: "maxLength";
3717
- url: "url";
3718
3842
  }>;
3719
3843
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3720
3844
  message: z.ZodOptional<z.ZodString>;
@@ -3784,13 +3908,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3784
3908
  type: z.ZodEnum<{
3785
3909
  custom: "custom";
3786
3910
  pattern: "pattern";
3911
+ url: "url";
3787
3912
  email: "email";
3788
3913
  required: "required";
3789
3914
  min: "min";
3790
3915
  max: "max";
3791
3916
  minLength: "minLength";
3792
3917
  maxLength: "maxLength";
3793
- url: "url";
3794
3918
  }>;
3795
3919
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3796
3920
  message: z.ZodOptional<z.ZodString>;
@@ -3862,13 +3986,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3862
3986
  type: z.ZodEnum<{
3863
3987
  custom: "custom";
3864
3988
  pattern: "pattern";
3989
+ url: "url";
3865
3990
  email: "email";
3866
3991
  required: "required";
3867
3992
  min: "min";
3868
3993
  max: "max";
3869
3994
  minLength: "minLength";
3870
3995
  maxLength: "maxLength";
3871
- url: "url";
3872
3996
  }>;
3873
3997
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3874
3998
  message: z.ZodOptional<z.ZodString>;
@@ -3947,13 +4071,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3947
4071
  type: z.ZodEnum<{
3948
4072
  custom: "custom";
3949
4073
  pattern: "pattern";
4074
+ url: "url";
3950
4075
  email: "email";
3951
4076
  required: "required";
3952
4077
  min: "min";
3953
4078
  max: "max";
3954
4079
  minLength: "minLength";
3955
4080
  maxLength: "maxLength";
3956
- url: "url";
3957
4081
  }>;
3958
4082
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3959
4083
  message: z.ZodOptional<z.ZodString>;
@@ -4033,13 +4157,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4033
4157
  type: z.ZodEnum<{
4034
4158
  custom: "custom";
4035
4159
  pattern: "pattern";
4160
+ url: "url";
4036
4161
  email: "email";
4037
4162
  required: "required";
4038
4163
  min: "min";
4039
4164
  max: "max";
4040
4165
  minLength: "minLength";
4041
4166
  maxLength: "maxLength";
4042
- url: "url";
4043
4167
  }>;
4044
4168
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4045
4169
  message: z.ZodOptional<z.ZodString>;
@@ -4104,13 +4228,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4104
4228
  type: z.ZodEnum<{
4105
4229
  custom: "custom";
4106
4230
  pattern: "pattern";
4231
+ url: "url";
4107
4232
  email: "email";
4108
4233
  required: "required";
4109
4234
  min: "min";
4110
4235
  max: "max";
4111
4236
  minLength: "minLength";
4112
4237
  maxLength: "maxLength";
4113
- url: "url";
4114
4238
  }>;
4115
4239
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4116
4240
  message: z.ZodOptional<z.ZodString>;
@@ -4176,13 +4300,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4176
4300
  type: z.ZodEnum<{
4177
4301
  custom: "custom";
4178
4302
  pattern: "pattern";
4303
+ url: "url";
4179
4304
  email: "email";
4180
4305
  required: "required";
4181
4306
  min: "min";
4182
4307
  max: "max";
4183
4308
  minLength: "minLength";
4184
4309
  maxLength: "maxLength";
4185
- url: "url";
4186
4310
  }>;
4187
4311
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4188
4312
  message: z.ZodOptional<z.ZodString>;
@@ -4247,13 +4371,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4247
4371
  type: z.ZodEnum<{
4248
4372
  custom: "custom";
4249
4373
  pattern: "pattern";
4374
+ url: "url";
4250
4375
  email: "email";
4251
4376
  required: "required";
4252
4377
  min: "min";
4253
4378
  max: "max";
4254
4379
  minLength: "minLength";
4255
4380
  maxLength: "maxLength";
4256
- url: "url";
4257
4381
  }>;
4258
4382
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4259
4383
  message: z.ZodOptional<z.ZodString>;
@@ -4325,13 +4449,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4325
4449
  type: z.ZodEnum<{
4326
4450
  custom: "custom";
4327
4451
  pattern: "pattern";
4452
+ url: "url";
4328
4453
  email: "email";
4329
4454
  required: "required";
4330
4455
  min: "min";
4331
4456
  max: "max";
4332
4457
  minLength: "minLength";
4333
4458
  maxLength: "maxLength";
4334
- url: "url";
4335
4459
  }>;
4336
4460
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4337
4461
  message: z.ZodOptional<z.ZodString>;
@@ -4405,13 +4529,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4405
4529
  type: z.ZodEnum<{
4406
4530
  custom: "custom";
4407
4531
  pattern: "pattern";
4532
+ url: "url";
4408
4533
  email: "email";
4409
4534
  required: "required";
4410
4535
  min: "min";
4411
4536
  max: "max";
4412
4537
  minLength: "minLength";
4413
4538
  maxLength: "maxLength";
4414
- url: "url";
4415
4539
  }>;
4416
4540
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4417
4541
  message: z.ZodOptional<z.ZodString>;
@@ -4478,13 +4602,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4478
4602
  type: z.ZodEnum<{
4479
4603
  custom: "custom";
4480
4604
  pattern: "pattern";
4605
+ url: "url";
4481
4606
  email: "email";
4482
4607
  required: "required";
4483
4608
  min: "min";
4484
4609
  max: "max";
4485
4610
  minLength: "minLength";
4486
4611
  maxLength: "maxLength";
4487
- url: "url";
4488
4612
  }>;
4489
4613
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4490
4614
  message: z.ZodOptional<z.ZodString>;
@@ -4544,13 +4668,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4544
4668
  type: z.ZodEnum<{
4545
4669
  custom: "custom";
4546
4670
  pattern: "pattern";
4671
+ url: "url";
4547
4672
  email: "email";
4548
4673
  required: "required";
4549
4674
  min: "min";
4550
4675
  max: "max";
4551
4676
  minLength: "minLength";
4552
4677
  maxLength: "maxLength";
4553
- url: "url";
4554
4678
  }>;
4555
4679
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4556
4680
  message: z.ZodOptional<z.ZodString>;
@@ -4621,13 +4745,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4621
4745
  type: z.ZodEnum<{
4622
4746
  custom: "custom";
4623
4747
  pattern: "pattern";
4748
+ url: "url";
4624
4749
  email: "email";
4625
4750
  required: "required";
4626
4751
  min: "min";
4627
4752
  max: "max";
4628
4753
  minLength: "minLength";
4629
4754
  maxLength: "maxLength";
4630
- url: "url";
4631
4755
  }>;
4632
4756
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4633
4757
  message: z.ZodOptional<z.ZodString>;
@@ -4704,13 +4828,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4704
4828
  type: z.ZodEnum<{
4705
4829
  custom: "custom";
4706
4830
  pattern: "pattern";
4831
+ url: "url";
4707
4832
  email: "email";
4708
4833
  required: "required";
4709
4834
  min: "min";
4710
4835
  max: "max";
4711
4836
  minLength: "minLength";
4712
4837
  maxLength: "maxLength";
4713
- url: "url";
4714
4838
  }>;
4715
4839
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4716
4840
  message: z.ZodOptional<z.ZodString>;
@@ -4790,13 +4914,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4790
4914
  type: z.ZodEnum<{
4791
4915
  custom: "custom";
4792
4916
  pattern: "pattern";
4917
+ url: "url";
4793
4918
  email: "email";
4794
4919
  required: "required";
4795
4920
  min: "min";
4796
4921
  max: "max";
4797
4922
  minLength: "minLength";
4798
4923
  maxLength: "maxLength";
4799
- url: "url";
4800
4924
  }>;
4801
4925
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4802
4926
  message: z.ZodOptional<z.ZodString>;
@@ -4857,13 +4981,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4857
4981
  type: z.ZodEnum<{
4858
4982
  custom: "custom";
4859
4983
  pattern: "pattern";
4984
+ url: "url";
4860
4985
  email: "email";
4861
4986
  required: "required";
4862
4987
  min: "min";
4863
4988
  max: "max";
4864
4989
  minLength: "minLength";
4865
4990
  maxLength: "maxLength";
4866
- url: "url";
4867
4991
  }>;
4868
4992
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4869
4993
  message: z.ZodOptional<z.ZodString>;
@@ -4921,13 +5045,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4921
5045
  type: z.ZodEnum<{
4922
5046
  custom: "custom";
4923
5047
  pattern: "pattern";
5048
+ url: "url";
4924
5049
  email: "email";
4925
5050
  required: "required";
4926
5051
  min: "min";
4927
5052
  max: "max";
4928
5053
  minLength: "minLength";
4929
5054
  maxLength: "maxLength";
4930
- url: "url";
4931
5055
  }>;
4932
5056
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4933
5057
  message: z.ZodOptional<z.ZodString>;
@@ -4990,13 +5114,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4990
5114
  type: z.ZodEnum<{
4991
5115
  custom: "custom";
4992
5116
  pattern: "pattern";
5117
+ url: "url";
4993
5118
  email: "email";
4994
5119
  required: "required";
4995
5120
  min: "min";
4996
5121
  max: "max";
4997
5122
  minLength: "minLength";
4998
5123
  maxLength: "maxLength";
4999
- url: "url";
5000
5124
  }>;
5001
5125
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5002
5126
  message: z.ZodOptional<z.ZodString>;
@@ -5054,13 +5178,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5054
5178
  type: z.ZodEnum<{
5055
5179
  custom: "custom";
5056
5180
  pattern: "pattern";
5181
+ url: "url";
5057
5182
  email: "email";
5058
5183
  required: "required";
5059
5184
  min: "min";
5060
5185
  max: "max";
5061
5186
  minLength: "minLength";
5062
5187
  maxLength: "maxLength";
5063
- url: "url";
5064
5188
  }>;
5065
5189
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5066
5190
  message: z.ZodOptional<z.ZodString>;
@@ -5120,13 +5244,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5120
5244
  type: z.ZodEnum<{
5121
5245
  custom: "custom";
5122
5246
  pattern: "pattern";
5247
+ url: "url";
5123
5248
  email: "email";
5124
5249
  required: "required";
5125
5250
  min: "min";
5126
5251
  max: "max";
5127
5252
  minLength: "minLength";
5128
5253
  maxLength: "maxLength";
5129
- url: "url";
5130
5254
  }>;
5131
5255
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5132
5256
  message: z.ZodOptional<z.ZodString>;
@@ -5219,13 +5343,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5219
5343
  type: z.ZodEnum<{
5220
5344
  custom: "custom";
5221
5345
  pattern: "pattern";
5346
+ url: "url";
5222
5347
  email: "email";
5223
5348
  required: "required";
5224
5349
  min: "min";
5225
5350
  max: "max";
5226
5351
  minLength: "minLength";
5227
5352
  maxLength: "maxLength";
5228
- url: "url";
5229
5353
  }>;
5230
5354
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5231
5355
  message: z.ZodOptional<z.ZodString>;
@@ -5307,13 +5431,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5307
5431
  type: z.ZodEnum<{
5308
5432
  custom: "custom";
5309
5433
  pattern: "pattern";
5434
+ url: "url";
5310
5435
  email: "email";
5311
5436
  required: "required";
5312
5437
  min: "min";
5313
5438
  max: "max";
5314
5439
  minLength: "minLength";
5315
5440
  maxLength: "maxLength";
5316
- url: "url";
5317
5441
  }>;
5318
5442
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5319
5443
  message: z.ZodOptional<z.ZodString>;
@@ -5379,13 +5503,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5379
5503
  type: z.ZodEnum<{
5380
5504
  custom: "custom";
5381
5505
  pattern: "pattern";
5506
+ url: "url";
5382
5507
  email: "email";
5383
5508
  required: "required";
5384
5509
  min: "min";
5385
5510
  max: "max";
5386
5511
  minLength: "minLength";
5387
5512
  maxLength: "maxLength";
5388
- url: "url";
5389
5513
  }>;
5390
5514
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5391
5515
  message: z.ZodOptional<z.ZodString>;
@@ -5449,13 +5573,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5449
5573
  type: z.ZodEnum<{
5450
5574
  custom: "custom";
5451
5575
  pattern: "pattern";
5576
+ url: "url";
5452
5577
  email: "email";
5453
5578
  required: "required";
5454
5579
  min: "min";
5455
5580
  max: "max";
5456
5581
  minLength: "minLength";
5457
5582
  maxLength: "maxLength";
5458
- url: "url";
5459
5583
  }>;
5460
5584
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5461
5585
  message: z.ZodOptional<z.ZodString>;