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

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,61 @@ 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
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
647
+ action: z.ZodLiteral<"dismiss">;
648
+ }, z.core.$strip>, z.ZodObject<{
649
+ action: z.ZodLiteral<"app_navigate">;
650
+ route: z.ZodString;
651
+ }, z.core.$strip>, z.ZodObject<{
652
+ action: z.ZodLiteral<"redirect_internal">;
653
+ url: z.ZodString;
654
+ }, z.core.$strip>, z.ZodObject<{
655
+ action: z.ZodLiteral<"redirect_external">;
656
+ url: z.ZodString;
657
+ }, z.core.$strip>], "action">>;
658
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
659
+ action: z.ZodLiteral<"dismiss">;
660
+ }, z.core.$strip>, z.ZodObject<{
661
+ action: z.ZodLiteral<"app_navigate">;
662
+ route: z.ZodString;
663
+ }, z.core.$strip>, z.ZodObject<{
664
+ action: z.ZodLiteral<"redirect_internal">;
665
+ url: z.ZodString;
666
+ }, z.core.$strip>, z.ZodObject<{
667
+ action: z.ZodLiteral<"redirect_external">;
668
+ url: z.ZodString;
669
+ }, z.core.$strip>], "action">>;
670
+ }, z.core.$strip>>;
671
+ }, z.core.$strip>>;
617
672
  }, z.core.$strip>;
618
673
  export declare const messagePanelQuestionSchema: z.ZodObject<{
619
674
  id: z.ZodString;
@@ -626,13 +681,13 @@ export declare const messagePanelQuestionSchema: z.ZodObject<{
626
681
  type: z.ZodEnum<{
627
682
  custom: "custom";
628
683
  pattern: "pattern";
684
+ url: "url";
629
685
  email: "email";
630
686
  required: "required";
631
687
  min: "min";
632
688
  max: "max";
633
689
  minLength: "minLength";
634
690
  maxLength: "maxLength";
635
- url: "url";
636
691
  }>;
637
692
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
638
693
  message: z.ZodOptional<z.ZodString>;
@@ -692,13 +747,13 @@ export declare const exitFormQuestionSchema: z.ZodObject<{
692
747
  type: z.ZodEnum<{
693
748
  custom: "custom";
694
749
  pattern: "pattern";
750
+ url: "url";
695
751
  email: "email";
696
752
  required: "required";
697
753
  min: "min";
698
754
  max: "max";
699
755
  minLength: "minLength";
700
756
  maxLength: "maxLength";
701
- url: "url";
702
757
  }>;
703
758
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
704
759
  message: z.ZodOptional<z.ZodString>;
@@ -741,6 +796,61 @@ export declare const exitFormQuestionSchema: z.ZodObject<{
741
796
  vimeo: "vimeo";
742
797
  }>>;
743
798
  type: z.ZodLiteral<"exit_form">;
799
+ completionCta: z.ZodOptional<z.ZodObject<{
800
+ label: z.ZodOptional<z.ZodString>;
801
+ autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
802
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
803
+ action: z.ZodLiteral<"dismiss">;
804
+ }, z.core.$strip>, z.ZodObject<{
805
+ action: z.ZodLiteral<"app_navigate">;
806
+ route: z.ZodString;
807
+ }, z.core.$strip>, z.ZodObject<{
808
+ action: z.ZodLiteral<"redirect_internal">;
809
+ url: z.ZodString;
810
+ }, z.core.$strip>, z.ZodObject<{
811
+ action: z.ZodLiteral<"redirect_external">;
812
+ url: z.ZodString;
813
+ }, z.core.$strip>], "action">>;
814
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
815
+ action: z.ZodLiteral<"dismiss">;
816
+ }, z.core.$strip>, z.ZodObject<{
817
+ action: z.ZodLiteral<"app_navigate">;
818
+ route: z.ZodString;
819
+ }, z.core.$strip>, z.ZodObject<{
820
+ action: z.ZodLiteral<"redirect_internal">;
821
+ url: z.ZodString;
822
+ }, z.core.$strip>, z.ZodObject<{
823
+ action: z.ZodLiteral<"redirect_external">;
824
+ url: z.ZodString;
825
+ }, z.core.$strip>], "action">>;
826
+ secondary: z.ZodOptional<z.ZodObject<{
827
+ label: z.ZodString;
828
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
829
+ action: z.ZodLiteral<"dismiss">;
830
+ }, z.core.$strip>, z.ZodObject<{
831
+ action: z.ZodLiteral<"app_navigate">;
832
+ route: z.ZodString;
833
+ }, z.core.$strip>, z.ZodObject<{
834
+ action: z.ZodLiteral<"redirect_internal">;
835
+ url: z.ZodString;
836
+ }, z.core.$strip>, z.ZodObject<{
837
+ action: z.ZodLiteral<"redirect_external">;
838
+ url: z.ZodString;
839
+ }, z.core.$strip>], "action">>;
840
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
841
+ action: z.ZodLiteral<"dismiss">;
842
+ }, z.core.$strip>, z.ZodObject<{
843
+ action: z.ZodLiteral<"app_navigate">;
844
+ route: z.ZodString;
845
+ }, z.core.$strip>, z.ZodObject<{
846
+ action: z.ZodLiteral<"redirect_internal">;
847
+ url: z.ZodString;
848
+ }, z.core.$strip>, z.ZodObject<{
849
+ action: z.ZodLiteral<"redirect_external">;
850
+ url: z.ZodString;
851
+ }, z.core.$strip>], "action">>;
852
+ }, z.core.$strip>>;
853
+ }, z.core.$strip>>;
744
854
  }, z.core.$strip>;
745
855
  export declare const yesNoQuestionSchema: z.ZodObject<{
746
856
  id: z.ZodString;
@@ -755,13 +865,13 @@ export declare const yesNoQuestionSchema: z.ZodObject<{
755
865
  type: z.ZodEnum<{
756
866
  custom: "custom";
757
867
  pattern: "pattern";
868
+ url: "url";
758
869
  email: "email";
759
870
  required: "required";
760
871
  min: "min";
761
872
  max: "max";
762
873
  minLength: "minLength";
763
874
  maxLength: "maxLength";
764
- url: "url";
765
875
  }>;
766
876
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
767
877
  message: z.ZodOptional<z.ZodString>;
@@ -824,13 +934,13 @@ export declare const consentQuestionSchema: z.ZodObject<{
824
934
  type: z.ZodEnum<{
825
935
  custom: "custom";
826
936
  pattern: "pattern";
937
+ url: "url";
827
938
  email: "email";
828
939
  required: "required";
829
940
  min: "min";
830
941
  max: "max";
831
942
  minLength: "minLength";
832
943
  maxLength: "maxLength";
833
- url: "url";
834
944
  }>;
835
945
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
836
946
  message: z.ZodOptional<z.ZodString>;
@@ -937,13 +1047,13 @@ export declare const ratingMatrixQuestionSchema: z.ZodObject<{
937
1047
  type: z.ZodEnum<{
938
1048
  custom: "custom";
939
1049
  pattern: "pattern";
1050
+ url: "url";
940
1051
  email: "email";
941
1052
  required: "required";
942
1053
  min: "min";
943
1054
  max: "max";
944
1055
  minLength: "minLength";
945
1056
  maxLength: "maxLength";
946
- url: "url";
947
1057
  }>;
948
1058
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
949
1059
  message: z.ZodOptional<z.ZodString>;
@@ -1051,13 +1161,13 @@ export declare const matrixSingleChoiceQuestionSchema: z.ZodObject<{
1051
1161
  type: z.ZodEnum<{
1052
1162
  custom: "custom";
1053
1163
  pattern: "pattern";
1164
+ url: "url";
1054
1165
  email: "email";
1055
1166
  required: "required";
1056
1167
  min: "min";
1057
1168
  max: "max";
1058
1169
  minLength: "minLength";
1059
1170
  maxLength: "maxLength";
1060
- url: "url";
1061
1171
  }>;
1062
1172
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1063
1173
  message: z.ZodOptional<z.ZodString>;
@@ -1128,13 +1238,13 @@ export declare const matrixMultipleChoiceQuestionSchema: z.ZodObject<{
1128
1238
  type: z.ZodEnum<{
1129
1239
  custom: "custom";
1130
1240
  pattern: "pattern";
1241
+ url: "url";
1131
1242
  email: "email";
1132
1243
  required: "required";
1133
1244
  min: "min";
1134
1245
  max: "max";
1135
1246
  minLength: "minLength";
1136
1247
  maxLength: "maxLength";
1137
- url: "url";
1138
1248
  }>;
1139
1249
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1140
1250
  message: z.ZodOptional<z.ZodString>;
@@ -1216,13 +1326,13 @@ export declare const multipleChoiceSingleQuestionSchema: z.ZodObject<{
1216
1326
  type: z.ZodEnum<{
1217
1327
  custom: "custom";
1218
1328
  pattern: "pattern";
1329
+ url: "url";
1219
1330
  email: "email";
1220
1331
  required: "required";
1221
1332
  min: "min";
1222
1333
  max: "max";
1223
1334
  minLength: "minLength";
1224
1335
  maxLength: "maxLength";
1225
- url: "url";
1226
1336
  }>;
1227
1337
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1228
1338
  message: z.ZodOptional<z.ZodString>;
@@ -1302,13 +1412,13 @@ export declare const multipleChoiceMultipleQuestionSchema: z.ZodObject<{
1302
1412
  type: z.ZodEnum<{
1303
1413
  custom: "custom";
1304
1414
  pattern: "pattern";
1415
+ url: "url";
1305
1416
  email: "email";
1306
1417
  required: "required";
1307
1418
  min: "min";
1308
1419
  max: "max";
1309
1420
  minLength: "minLength";
1310
1421
  maxLength: "maxLength";
1311
- url: "url";
1312
1422
  }>;
1313
1423
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1314
1424
  message: z.ZodOptional<z.ZodString>;
@@ -1389,13 +1499,13 @@ export declare const npsQuestionSchema: z.ZodObject<{
1389
1499
  type: z.ZodEnum<{
1390
1500
  custom: "custom";
1391
1501
  pattern: "pattern";
1502
+ url: "url";
1392
1503
  email: "email";
1393
1504
  required: "required";
1394
1505
  min: "min";
1395
1506
  max: "max";
1396
1507
  minLength: "minLength";
1397
1508
  maxLength: "maxLength";
1398
- url: "url";
1399
1509
  }>;
1400
1510
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1401
1511
  message: z.ZodOptional<z.ZodString>;
@@ -1461,13 +1571,13 @@ export declare const shortAnswerQuestionSchema: z.ZodObject<{
1461
1571
  type: z.ZodEnum<{
1462
1572
  custom: "custom";
1463
1573
  pattern: "pattern";
1574
+ url: "url";
1464
1575
  email: "email";
1465
1576
  required: "required";
1466
1577
  min: "min";
1467
1578
  max: "max";
1468
1579
  minLength: "minLength";
1469
1580
  maxLength: "maxLength";
1470
- url: "url";
1471
1581
  }>;
1472
1582
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1473
1583
  message: z.ZodOptional<z.ZodString>;
@@ -1534,13 +1644,13 @@ export declare const longAnswerQuestionSchema: z.ZodObject<{
1534
1644
  type: z.ZodEnum<{
1535
1645
  custom: "custom";
1536
1646
  pattern: "pattern";
1647
+ url: "url";
1537
1648
  email: "email";
1538
1649
  required: "required";
1539
1650
  min: "min";
1540
1651
  max: "max";
1541
1652
  minLength: "minLength";
1542
1653
  maxLength: "maxLength";
1543
- url: "url";
1544
1654
  }>;
1545
1655
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1546
1656
  message: z.ZodOptional<z.ZodString>;
@@ -1606,13 +1716,13 @@ export declare const nestedDropdownQuestionSchema: z.ZodObject<{
1606
1716
  type: z.ZodEnum<{
1607
1717
  custom: "custom";
1608
1718
  pattern: "pattern";
1719
+ url: "url";
1609
1720
  email: "email";
1610
1721
  required: "required";
1611
1722
  min: "min";
1612
1723
  max: "max";
1613
1724
  minLength: "minLength";
1614
1725
  maxLength: "maxLength";
1615
- url: "url";
1616
1726
  }>;
1617
1727
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1618
1728
  message: z.ZodOptional<z.ZodString>;
@@ -1769,13 +1879,13 @@ export declare const dateQuestionSchema: z.ZodObject<{
1769
1879
  type: z.ZodEnum<{
1770
1880
  custom: "custom";
1771
1881
  pattern: "pattern";
1882
+ url: "url";
1772
1883
  email: "email";
1773
1884
  required: "required";
1774
1885
  min: "min";
1775
1886
  max: "max";
1776
1887
  minLength: "minLength";
1777
1888
  maxLength: "maxLength";
1778
- url: "url";
1779
1889
  }>;
1780
1890
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1781
1891
  message: z.ZodOptional<z.ZodString>;
@@ -1865,13 +1975,13 @@ export declare const csatQuestionSchema: z.ZodObject<{
1865
1975
  type: z.ZodEnum<{
1866
1976
  custom: "custom";
1867
1977
  pattern: "pattern";
1978
+ url: "url";
1868
1979
  email: "email";
1869
1980
  required: "required";
1870
1981
  min: "min";
1871
1982
  max: "max";
1872
1983
  minLength: "minLength";
1873
1984
  maxLength: "maxLength";
1874
- url: "url";
1875
1985
  }>;
1876
1986
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1877
1987
  message: z.ZodOptional<z.ZodString>;
@@ -1939,13 +2049,13 @@ export declare const opinionScaleQuestionSchema: z.ZodObject<{
1939
2049
  type: z.ZodEnum<{
1940
2050
  custom: "custom";
1941
2051
  pattern: "pattern";
2052
+ url: "url";
1942
2053
  email: "email";
1943
2054
  required: "required";
1944
2055
  min: "min";
1945
2056
  max: "max";
1946
2057
  minLength: "minLength";
1947
2058
  maxLength: "maxLength";
1948
- url: "url";
1949
2059
  }>;
1950
2060
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1951
2061
  message: z.ZodOptional<z.ZodString>;
@@ -2016,13 +2126,13 @@ export declare const rankingQuestionSchema: z.ZodObject<{
2016
2126
  type: z.ZodEnum<{
2017
2127
  custom: "custom";
2018
2128
  pattern: "pattern";
2129
+ url: "url";
2019
2130
  email: "email";
2020
2131
  required: "required";
2021
2132
  min: "min";
2022
2133
  max: "max";
2023
2134
  minLength: "minLength";
2024
2135
  maxLength: "maxLength";
2025
- url: "url";
2026
2136
  }>;
2027
2137
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2028
2138
  message: z.ZodOptional<z.ZodString>;
@@ -2094,13 +2204,13 @@ export declare const pictureChoiceQuestionSchema: z.ZodObject<{
2094
2204
  type: z.ZodEnum<{
2095
2205
  custom: "custom";
2096
2206
  pattern: "pattern";
2207
+ url: "url";
2097
2208
  email: "email";
2098
2209
  required: "required";
2099
2210
  min: "min";
2100
2211
  max: "max";
2101
2212
  minLength: "minLength";
2102
2213
  maxLength: "maxLength";
2103
- url: "url";
2104
2214
  }>;
2105
2215
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2106
2216
  message: z.ZodOptional<z.ZodString>;
@@ -2188,13 +2298,13 @@ export declare const signatureQuestionSchema: z.ZodObject<{
2188
2298
  type: z.ZodEnum<{
2189
2299
  custom: "custom";
2190
2300
  pattern: "pattern";
2301
+ url: "url";
2191
2302
  email: "email";
2192
2303
  required: "required";
2193
2304
  min: "min";
2194
2305
  max: "max";
2195
2306
  minLength: "minLength";
2196
2307
  maxLength: "maxLength";
2197
- url: "url";
2198
2308
  }>;
2199
2309
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2200
2310
  message: z.ZodOptional<z.ZodString>;
@@ -2275,13 +2385,13 @@ export declare const fileUploadQuestionSchema: z.ZodObject<{
2275
2385
  type: z.ZodEnum<{
2276
2386
  custom: "custom";
2277
2387
  pattern: "pattern";
2388
+ url: "url";
2278
2389
  email: "email";
2279
2390
  required: "required";
2280
2391
  min: "min";
2281
2392
  max: "max";
2282
2393
  minLength: "minLength";
2283
2394
  maxLength: "maxLength";
2284
- url: "url";
2285
2395
  }>;
2286
2396
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2287
2397
  message: z.ZodOptional<z.ZodString>;
@@ -2343,13 +2453,13 @@ export declare const emailQuestionSchema: z.ZodObject<{
2343
2453
  type: z.ZodEnum<{
2344
2454
  custom: "custom";
2345
2455
  pattern: "pattern";
2456
+ url: "url";
2346
2457
  email: "email";
2347
2458
  required: "required";
2348
2459
  min: "min";
2349
2460
  max: "max";
2350
2461
  minLength: "minLength";
2351
2462
  maxLength: "maxLength";
2352
- url: "url";
2353
2463
  }>;
2354
2464
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2355
2465
  message: z.ZodOptional<z.ZodString>;
@@ -2408,13 +2518,13 @@ export declare const numberQuestionSchema: z.ZodObject<{
2408
2518
  type: z.ZodEnum<{
2409
2519
  custom: "custom";
2410
2520
  pattern: "pattern";
2521
+ url: "url";
2411
2522
  email: "email";
2412
2523
  required: "required";
2413
2524
  min: "min";
2414
2525
  max: "max";
2415
2526
  minLength: "minLength";
2416
2527
  maxLength: "maxLength";
2417
- url: "url";
2418
2528
  }>;
2419
2529
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2420
2530
  message: z.ZodOptional<z.ZodString>;
@@ -2478,13 +2588,13 @@ export declare const websiteQuestionSchema: z.ZodObject<{
2478
2588
  type: z.ZodEnum<{
2479
2589
  custom: "custom";
2480
2590
  pattern: "pattern";
2591
+ url: "url";
2481
2592
  email: "email";
2482
2593
  required: "required";
2483
2594
  min: "min";
2484
2595
  max: "max";
2485
2596
  minLength: "minLength";
2486
2597
  maxLength: "maxLength";
2487
- url: "url";
2488
2598
  }>;
2489
2599
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2490
2600
  message: z.ZodOptional<z.ZodString>;
@@ -2543,13 +2653,13 @@ export declare const phoneNumberQuestionSchema: z.ZodObject<{
2543
2653
  type: z.ZodEnum<{
2544
2654
  custom: "custom";
2545
2655
  pattern: "pattern";
2656
+ url: "url";
2546
2657
  email: "email";
2547
2658
  required: "required";
2548
2659
  min: "min";
2549
2660
  max: "max";
2550
2661
  minLength: "minLength";
2551
2662
  maxLength: "maxLength";
2552
- url: "url";
2553
2663
  }>;
2554
2664
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2555
2665
  message: z.ZodOptional<z.ZodString>;
@@ -2616,13 +2726,13 @@ export declare const addressQuestionSchema: z.ZodObject<{
2616
2726
  type: z.ZodEnum<{
2617
2727
  custom: "custom";
2618
2728
  pattern: "pattern";
2729
+ url: "url";
2619
2730
  email: "email";
2620
2731
  required: "required";
2621
2732
  min: "min";
2622
2733
  max: "max";
2623
2734
  minLength: "minLength";
2624
2735
  maxLength: "maxLength";
2625
- url: "url";
2626
2736
  }>;
2627
2737
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2628
2738
  message: z.ZodOptional<z.ZodString>;
@@ -2728,13 +2838,13 @@ export declare const videoAudioQuestionSchema: z.ZodObject<{
2728
2838
  type: z.ZodEnum<{
2729
2839
  custom: "custom";
2730
2840
  pattern: "pattern";
2841
+ url: "url";
2731
2842
  email: "email";
2732
2843
  required: "required";
2733
2844
  min: "min";
2734
2845
  max: "max";
2735
2846
  minLength: "minLength";
2736
2847
  maxLength: "maxLength";
2737
- url: "url";
2738
2848
  }>;
2739
2849
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2740
2850
  message: z.ZodOptional<z.ZodString>;
@@ -2825,13 +2935,13 @@ export declare const schedulerQuestionSchema: z.ZodObject<{
2825
2935
  type: z.ZodEnum<{
2826
2936
  custom: "custom";
2827
2937
  pattern: "pattern";
2938
+ url: "url";
2828
2939
  email: "email";
2829
2940
  required: "required";
2830
2941
  min: "min";
2831
2942
  max: "max";
2832
2943
  minLength: "minLength";
2833
2944
  maxLength: "maxLength";
2834
- url: "url";
2835
2945
  }>;
2836
2946
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2837
2947
  message: z.ZodOptional<z.ZodString>;
@@ -2898,13 +3008,13 @@ export declare const qnaWithAiQuestionSchema: z.ZodObject<{
2898
3008
  type: z.ZodEnum<{
2899
3009
  custom: "custom";
2900
3010
  pattern: "pattern";
3011
+ url: "url";
2901
3012
  email: "email";
2902
3013
  required: "required";
2903
3014
  min: "min";
2904
3015
  max: "max";
2905
3016
  minLength: "minLength";
2906
3017
  maxLength: "maxLength";
2907
- url: "url";
2908
3018
  }>;
2909
3019
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2910
3020
  message: z.ZodOptional<z.ZodString>;
@@ -2989,13 +3099,13 @@ export declare const paymentsUpiQuestionSchema: z.ZodObject<{
2989
3099
  type: z.ZodEnum<{
2990
3100
  custom: "custom";
2991
3101
  pattern: "pattern";
3102
+ url: "url";
2992
3103
  email: "email";
2993
3104
  required: "required";
2994
3105
  min: "min";
2995
3106
  max: "max";
2996
3107
  minLength: "minLength";
2997
3108
  maxLength: "maxLength";
2998
- url: "url";
2999
3109
  }>;
3000
3110
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3001
3111
  message: z.ZodOptional<z.ZodString>;
@@ -3082,13 +3192,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3082
3192
  type: z.ZodEnum<{
3083
3193
  custom: "custom";
3084
3194
  pattern: "pattern";
3195
+ url: "url";
3085
3196
  email: "email";
3086
3197
  required: "required";
3087
3198
  min: "min";
3088
3199
  max: "max";
3089
3200
  minLength: "minLength";
3090
3201
  maxLength: "maxLength";
3091
- url: "url";
3092
3202
  }>;
3093
3203
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3094
3204
  message: z.ZodOptional<z.ZodString>;
@@ -3162,13 +3272,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3162
3272
  type: z.ZodEnum<{
3163
3273
  custom: "custom";
3164
3274
  pattern: "pattern";
3275
+ url: "url";
3165
3276
  email: "email";
3166
3277
  required: "required";
3167
3278
  min: "min";
3168
3279
  max: "max";
3169
3280
  minLength: "minLength";
3170
3281
  maxLength: "maxLength";
3171
- url: "url";
3172
3282
  }>;
3173
3283
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3174
3284
  message: z.ZodOptional<z.ZodString>;
@@ -3224,13 +3334,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3224
3334
  type: z.ZodEnum<{
3225
3335
  custom: "custom";
3226
3336
  pattern: "pattern";
3337
+ url: "url";
3227
3338
  email: "email";
3228
3339
  required: "required";
3229
3340
  min: "min";
3230
3341
  max: "max";
3231
3342
  minLength: "minLength";
3232
3343
  maxLength: "maxLength";
3233
- url: "url";
3234
3344
  }>;
3235
3345
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3236
3346
  message: z.ZodOptional<z.ZodString>;
@@ -3287,13 +3397,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3287
3397
  type: z.ZodEnum<{
3288
3398
  custom: "custom";
3289
3399
  pattern: "pattern";
3400
+ url: "url";
3290
3401
  email: "email";
3291
3402
  required: "required";
3292
3403
  min: "min";
3293
3404
  max: "max";
3294
3405
  minLength: "minLength";
3295
3406
  maxLength: "maxLength";
3296
- url: "url";
3297
3407
  }>;
3298
3408
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3299
3409
  message: z.ZodOptional<z.ZodString>;
@@ -3339,6 +3449,61 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3339
3449
  title: z.ZodString;
3340
3450
  description: z.ZodOptional<z.ZodString>;
3341
3451
  imageUrl: z.ZodOptional<z.ZodString>;
3452
+ completionCta: z.ZodOptional<z.ZodObject<{
3453
+ label: z.ZodOptional<z.ZodString>;
3454
+ autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
3455
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3456
+ action: z.ZodLiteral<"dismiss">;
3457
+ }, z.core.$strip>, z.ZodObject<{
3458
+ action: z.ZodLiteral<"app_navigate">;
3459
+ route: z.ZodString;
3460
+ }, z.core.$strip>, z.ZodObject<{
3461
+ action: z.ZodLiteral<"redirect_internal">;
3462
+ url: z.ZodString;
3463
+ }, z.core.$strip>, z.ZodObject<{
3464
+ action: z.ZodLiteral<"redirect_external">;
3465
+ url: z.ZodString;
3466
+ }, z.core.$strip>], "action">>;
3467
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3468
+ action: z.ZodLiteral<"dismiss">;
3469
+ }, z.core.$strip>, z.ZodObject<{
3470
+ action: z.ZodLiteral<"app_navigate">;
3471
+ route: z.ZodString;
3472
+ }, z.core.$strip>, z.ZodObject<{
3473
+ action: z.ZodLiteral<"redirect_internal">;
3474
+ url: z.ZodString;
3475
+ }, z.core.$strip>, z.ZodObject<{
3476
+ action: z.ZodLiteral<"redirect_external">;
3477
+ url: z.ZodString;
3478
+ }, z.core.$strip>], "action">>;
3479
+ secondary: z.ZodOptional<z.ZodObject<{
3480
+ label: z.ZodString;
3481
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3482
+ action: z.ZodLiteral<"dismiss">;
3483
+ }, z.core.$strip>, z.ZodObject<{
3484
+ action: z.ZodLiteral<"app_navigate">;
3485
+ route: z.ZodString;
3486
+ }, z.core.$strip>, z.ZodObject<{
3487
+ action: z.ZodLiteral<"redirect_internal">;
3488
+ url: z.ZodString;
3489
+ }, z.core.$strip>, z.ZodObject<{
3490
+ action: z.ZodLiteral<"redirect_external">;
3491
+ url: z.ZodString;
3492
+ }, z.core.$strip>], "action">>;
3493
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3494
+ action: z.ZodLiteral<"dismiss">;
3495
+ }, z.core.$strip>, z.ZodObject<{
3496
+ action: z.ZodLiteral<"app_navigate">;
3497
+ route: z.ZodString;
3498
+ }, z.core.$strip>, z.ZodObject<{
3499
+ action: z.ZodLiteral<"redirect_internal">;
3500
+ url: z.ZodString;
3501
+ }, z.core.$strip>, z.ZodObject<{
3502
+ action: z.ZodLiteral<"redirect_external">;
3503
+ url: z.ZodString;
3504
+ }, z.core.$strip>], "action">>;
3505
+ }, z.core.$strip>>;
3506
+ }, z.core.$strip>>;
3342
3507
  }, z.core.$strip>, z.ZodObject<{
3343
3508
  id: z.ZodString;
3344
3509
  slug: z.ZodOptional<z.ZodString>;
@@ -3350,13 +3515,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3350
3515
  type: z.ZodEnum<{
3351
3516
  custom: "custom";
3352
3517
  pattern: "pattern";
3518
+ url: "url";
3353
3519
  email: "email";
3354
3520
  required: "required";
3355
3521
  min: "min";
3356
3522
  max: "max";
3357
3523
  minLength: "minLength";
3358
3524
  maxLength: "maxLength";
3359
- url: "url";
3360
3525
  }>;
3361
3526
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3362
3527
  message: z.ZodOptional<z.ZodString>;
@@ -3415,13 +3580,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3415
3580
  type: z.ZodEnum<{
3416
3581
  custom: "custom";
3417
3582
  pattern: "pattern";
3583
+ url: "url";
3418
3584
  email: "email";
3419
3585
  required: "required";
3420
3586
  min: "min";
3421
3587
  max: "max";
3422
3588
  minLength: "minLength";
3423
3589
  maxLength: "maxLength";
3424
- url: "url";
3425
3590
  }>;
3426
3591
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3427
3592
  message: z.ZodOptional<z.ZodString>;
@@ -3464,6 +3629,61 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3464
3629
  vimeo: "vimeo";
3465
3630
  }>>;
3466
3631
  type: z.ZodLiteral<"exit_form">;
3632
+ completionCta: z.ZodOptional<z.ZodObject<{
3633
+ label: z.ZodOptional<z.ZodString>;
3634
+ autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
3635
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3636
+ action: z.ZodLiteral<"dismiss">;
3637
+ }, z.core.$strip>, z.ZodObject<{
3638
+ action: z.ZodLiteral<"app_navigate">;
3639
+ route: z.ZodString;
3640
+ }, z.core.$strip>, z.ZodObject<{
3641
+ action: z.ZodLiteral<"redirect_internal">;
3642
+ url: z.ZodString;
3643
+ }, z.core.$strip>, z.ZodObject<{
3644
+ action: z.ZodLiteral<"redirect_external">;
3645
+ url: z.ZodString;
3646
+ }, z.core.$strip>], "action">>;
3647
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3648
+ action: z.ZodLiteral<"dismiss">;
3649
+ }, z.core.$strip>, z.ZodObject<{
3650
+ action: z.ZodLiteral<"app_navigate">;
3651
+ route: z.ZodString;
3652
+ }, z.core.$strip>, z.ZodObject<{
3653
+ action: z.ZodLiteral<"redirect_internal">;
3654
+ url: z.ZodString;
3655
+ }, z.core.$strip>, z.ZodObject<{
3656
+ action: z.ZodLiteral<"redirect_external">;
3657
+ url: z.ZodString;
3658
+ }, z.core.$strip>], "action">>;
3659
+ secondary: z.ZodOptional<z.ZodObject<{
3660
+ label: z.ZodString;
3661
+ inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3662
+ action: z.ZodLiteral<"dismiss">;
3663
+ }, z.core.$strip>, z.ZodObject<{
3664
+ action: z.ZodLiteral<"app_navigate">;
3665
+ route: z.ZodString;
3666
+ }, z.core.$strip>, z.ZodObject<{
3667
+ action: z.ZodLiteral<"redirect_internal">;
3668
+ url: z.ZodString;
3669
+ }, z.core.$strip>, z.ZodObject<{
3670
+ action: z.ZodLiteral<"redirect_external">;
3671
+ url: z.ZodString;
3672
+ }, z.core.$strip>], "action">>;
3673
+ link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
3674
+ action: z.ZodLiteral<"dismiss">;
3675
+ }, z.core.$strip>, z.ZodObject<{
3676
+ action: z.ZodLiteral<"app_navigate">;
3677
+ route: z.ZodString;
3678
+ }, z.core.$strip>, z.ZodObject<{
3679
+ action: z.ZodLiteral<"redirect_internal">;
3680
+ url: z.ZodString;
3681
+ }, z.core.$strip>, z.ZodObject<{
3682
+ action: z.ZodLiteral<"redirect_external">;
3683
+ url: z.ZodString;
3684
+ }, z.core.$strip>], "action">>;
3685
+ }, z.core.$strip>>;
3686
+ }, z.core.$strip>>;
3467
3687
  }, z.core.$strip>, z.ZodObject<{
3468
3688
  id: z.ZodString;
3469
3689
  slug: z.ZodOptional<z.ZodString>;
@@ -3477,13 +3697,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3477
3697
  type: z.ZodEnum<{
3478
3698
  custom: "custom";
3479
3699
  pattern: "pattern";
3700
+ url: "url";
3480
3701
  email: "email";
3481
3702
  required: "required";
3482
3703
  min: "min";
3483
3704
  max: "max";
3484
3705
  minLength: "minLength";
3485
3706
  maxLength: "maxLength";
3486
- url: "url";
3487
3707
  }>;
3488
3708
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3489
3709
  message: z.ZodOptional<z.ZodString>;
@@ -3545,13 +3765,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3545
3765
  type: z.ZodEnum<{
3546
3766
  custom: "custom";
3547
3767
  pattern: "pattern";
3768
+ url: "url";
3548
3769
  email: "email";
3549
3770
  required: "required";
3550
3771
  min: "min";
3551
3772
  max: "max";
3552
3773
  minLength: "minLength";
3553
3774
  maxLength: "maxLength";
3554
- url: "url";
3555
3775
  }>;
3556
3776
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3557
3777
  message: z.ZodOptional<z.ZodString>;
@@ -3607,13 +3827,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3607
3827
  type: z.ZodEnum<{
3608
3828
  custom: "custom";
3609
3829
  pattern: "pattern";
3830
+ url: "url";
3610
3831
  email: "email";
3611
3832
  required: "required";
3612
3833
  min: "min";
3613
3834
  max: "max";
3614
3835
  minLength: "minLength";
3615
3836
  maxLength: "maxLength";
3616
- url: "url";
3617
3837
  }>;
3618
3838
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3619
3839
  message: z.ZodOptional<z.ZodString>;
@@ -3708,13 +3928,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3708
3928
  type: z.ZodEnum<{
3709
3929
  custom: "custom";
3710
3930
  pattern: "pattern";
3931
+ url: "url";
3711
3932
  email: "email";
3712
3933
  required: "required";
3713
3934
  min: "min";
3714
3935
  max: "max";
3715
3936
  minLength: "minLength";
3716
3937
  maxLength: "maxLength";
3717
- url: "url";
3718
3938
  }>;
3719
3939
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3720
3940
  message: z.ZodOptional<z.ZodString>;
@@ -3784,13 +4004,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3784
4004
  type: z.ZodEnum<{
3785
4005
  custom: "custom";
3786
4006
  pattern: "pattern";
4007
+ url: "url";
3787
4008
  email: "email";
3788
4009
  required: "required";
3789
4010
  min: "min";
3790
4011
  max: "max";
3791
4012
  minLength: "minLength";
3792
4013
  maxLength: "maxLength";
3793
- url: "url";
3794
4014
  }>;
3795
4015
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3796
4016
  message: z.ZodOptional<z.ZodString>;
@@ -3862,13 +4082,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3862
4082
  type: z.ZodEnum<{
3863
4083
  custom: "custom";
3864
4084
  pattern: "pattern";
4085
+ url: "url";
3865
4086
  email: "email";
3866
4087
  required: "required";
3867
4088
  min: "min";
3868
4089
  max: "max";
3869
4090
  minLength: "minLength";
3870
4091
  maxLength: "maxLength";
3871
- url: "url";
3872
4092
  }>;
3873
4093
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3874
4094
  message: z.ZodOptional<z.ZodString>;
@@ -3947,13 +4167,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
3947
4167
  type: z.ZodEnum<{
3948
4168
  custom: "custom";
3949
4169
  pattern: "pattern";
4170
+ url: "url";
3950
4171
  email: "email";
3951
4172
  required: "required";
3952
4173
  min: "min";
3953
4174
  max: "max";
3954
4175
  minLength: "minLength";
3955
4176
  maxLength: "maxLength";
3956
- url: "url";
3957
4177
  }>;
3958
4178
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3959
4179
  message: z.ZodOptional<z.ZodString>;
@@ -4033,13 +4253,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4033
4253
  type: z.ZodEnum<{
4034
4254
  custom: "custom";
4035
4255
  pattern: "pattern";
4256
+ url: "url";
4036
4257
  email: "email";
4037
4258
  required: "required";
4038
4259
  min: "min";
4039
4260
  max: "max";
4040
4261
  minLength: "minLength";
4041
4262
  maxLength: "maxLength";
4042
- url: "url";
4043
4263
  }>;
4044
4264
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4045
4265
  message: z.ZodOptional<z.ZodString>;
@@ -4104,13 +4324,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4104
4324
  type: z.ZodEnum<{
4105
4325
  custom: "custom";
4106
4326
  pattern: "pattern";
4327
+ url: "url";
4107
4328
  email: "email";
4108
4329
  required: "required";
4109
4330
  min: "min";
4110
4331
  max: "max";
4111
4332
  minLength: "minLength";
4112
4333
  maxLength: "maxLength";
4113
- url: "url";
4114
4334
  }>;
4115
4335
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4116
4336
  message: z.ZodOptional<z.ZodString>;
@@ -4176,13 +4396,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4176
4396
  type: z.ZodEnum<{
4177
4397
  custom: "custom";
4178
4398
  pattern: "pattern";
4399
+ url: "url";
4179
4400
  email: "email";
4180
4401
  required: "required";
4181
4402
  min: "min";
4182
4403
  max: "max";
4183
4404
  minLength: "minLength";
4184
4405
  maxLength: "maxLength";
4185
- url: "url";
4186
4406
  }>;
4187
4407
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4188
4408
  message: z.ZodOptional<z.ZodString>;
@@ -4247,13 +4467,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4247
4467
  type: z.ZodEnum<{
4248
4468
  custom: "custom";
4249
4469
  pattern: "pattern";
4470
+ url: "url";
4250
4471
  email: "email";
4251
4472
  required: "required";
4252
4473
  min: "min";
4253
4474
  max: "max";
4254
4475
  minLength: "minLength";
4255
4476
  maxLength: "maxLength";
4256
- url: "url";
4257
4477
  }>;
4258
4478
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4259
4479
  message: z.ZodOptional<z.ZodString>;
@@ -4325,13 +4545,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4325
4545
  type: z.ZodEnum<{
4326
4546
  custom: "custom";
4327
4547
  pattern: "pattern";
4548
+ url: "url";
4328
4549
  email: "email";
4329
4550
  required: "required";
4330
4551
  min: "min";
4331
4552
  max: "max";
4332
4553
  minLength: "minLength";
4333
4554
  maxLength: "maxLength";
4334
- url: "url";
4335
4555
  }>;
4336
4556
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4337
4557
  message: z.ZodOptional<z.ZodString>;
@@ -4405,13 +4625,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4405
4625
  type: z.ZodEnum<{
4406
4626
  custom: "custom";
4407
4627
  pattern: "pattern";
4628
+ url: "url";
4408
4629
  email: "email";
4409
4630
  required: "required";
4410
4631
  min: "min";
4411
4632
  max: "max";
4412
4633
  minLength: "minLength";
4413
4634
  maxLength: "maxLength";
4414
- url: "url";
4415
4635
  }>;
4416
4636
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4417
4637
  message: z.ZodOptional<z.ZodString>;
@@ -4478,13 +4698,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4478
4698
  type: z.ZodEnum<{
4479
4699
  custom: "custom";
4480
4700
  pattern: "pattern";
4701
+ url: "url";
4481
4702
  email: "email";
4482
4703
  required: "required";
4483
4704
  min: "min";
4484
4705
  max: "max";
4485
4706
  minLength: "minLength";
4486
4707
  maxLength: "maxLength";
4487
- url: "url";
4488
4708
  }>;
4489
4709
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4490
4710
  message: z.ZodOptional<z.ZodString>;
@@ -4544,13 +4764,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4544
4764
  type: z.ZodEnum<{
4545
4765
  custom: "custom";
4546
4766
  pattern: "pattern";
4767
+ url: "url";
4547
4768
  email: "email";
4548
4769
  required: "required";
4549
4770
  min: "min";
4550
4771
  max: "max";
4551
4772
  minLength: "minLength";
4552
4773
  maxLength: "maxLength";
4553
- url: "url";
4554
4774
  }>;
4555
4775
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4556
4776
  message: z.ZodOptional<z.ZodString>;
@@ -4621,13 +4841,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4621
4841
  type: z.ZodEnum<{
4622
4842
  custom: "custom";
4623
4843
  pattern: "pattern";
4844
+ url: "url";
4624
4845
  email: "email";
4625
4846
  required: "required";
4626
4847
  min: "min";
4627
4848
  max: "max";
4628
4849
  minLength: "minLength";
4629
4850
  maxLength: "maxLength";
4630
- url: "url";
4631
4851
  }>;
4632
4852
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4633
4853
  message: z.ZodOptional<z.ZodString>;
@@ -4704,13 +4924,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4704
4924
  type: z.ZodEnum<{
4705
4925
  custom: "custom";
4706
4926
  pattern: "pattern";
4927
+ url: "url";
4707
4928
  email: "email";
4708
4929
  required: "required";
4709
4930
  min: "min";
4710
4931
  max: "max";
4711
4932
  minLength: "minLength";
4712
4933
  maxLength: "maxLength";
4713
- url: "url";
4714
4934
  }>;
4715
4935
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4716
4936
  message: z.ZodOptional<z.ZodString>;
@@ -4790,13 +5010,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4790
5010
  type: z.ZodEnum<{
4791
5011
  custom: "custom";
4792
5012
  pattern: "pattern";
5013
+ url: "url";
4793
5014
  email: "email";
4794
5015
  required: "required";
4795
5016
  min: "min";
4796
5017
  max: "max";
4797
5018
  minLength: "minLength";
4798
5019
  maxLength: "maxLength";
4799
- url: "url";
4800
5020
  }>;
4801
5021
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4802
5022
  message: z.ZodOptional<z.ZodString>;
@@ -4857,13 +5077,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4857
5077
  type: z.ZodEnum<{
4858
5078
  custom: "custom";
4859
5079
  pattern: "pattern";
5080
+ url: "url";
4860
5081
  email: "email";
4861
5082
  required: "required";
4862
5083
  min: "min";
4863
5084
  max: "max";
4864
5085
  minLength: "minLength";
4865
5086
  maxLength: "maxLength";
4866
- url: "url";
4867
5087
  }>;
4868
5088
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4869
5089
  message: z.ZodOptional<z.ZodString>;
@@ -4921,13 +5141,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4921
5141
  type: z.ZodEnum<{
4922
5142
  custom: "custom";
4923
5143
  pattern: "pattern";
5144
+ url: "url";
4924
5145
  email: "email";
4925
5146
  required: "required";
4926
5147
  min: "min";
4927
5148
  max: "max";
4928
5149
  minLength: "minLength";
4929
5150
  maxLength: "maxLength";
4930
- url: "url";
4931
5151
  }>;
4932
5152
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4933
5153
  message: z.ZodOptional<z.ZodString>;
@@ -4990,13 +5210,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
4990
5210
  type: z.ZodEnum<{
4991
5211
  custom: "custom";
4992
5212
  pattern: "pattern";
5213
+ url: "url";
4993
5214
  email: "email";
4994
5215
  required: "required";
4995
5216
  min: "min";
4996
5217
  max: "max";
4997
5218
  minLength: "minLength";
4998
5219
  maxLength: "maxLength";
4999
- url: "url";
5000
5220
  }>;
5001
5221
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5002
5222
  message: z.ZodOptional<z.ZodString>;
@@ -5054,13 +5274,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5054
5274
  type: z.ZodEnum<{
5055
5275
  custom: "custom";
5056
5276
  pattern: "pattern";
5277
+ url: "url";
5057
5278
  email: "email";
5058
5279
  required: "required";
5059
5280
  min: "min";
5060
5281
  max: "max";
5061
5282
  minLength: "minLength";
5062
5283
  maxLength: "maxLength";
5063
- url: "url";
5064
5284
  }>;
5065
5285
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5066
5286
  message: z.ZodOptional<z.ZodString>;
@@ -5120,13 +5340,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5120
5340
  type: z.ZodEnum<{
5121
5341
  custom: "custom";
5122
5342
  pattern: "pattern";
5343
+ url: "url";
5123
5344
  email: "email";
5124
5345
  required: "required";
5125
5346
  min: "min";
5126
5347
  max: "max";
5127
5348
  minLength: "minLength";
5128
5349
  maxLength: "maxLength";
5129
- url: "url";
5130
5350
  }>;
5131
5351
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5132
5352
  message: z.ZodOptional<z.ZodString>;
@@ -5219,13 +5439,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5219
5439
  type: z.ZodEnum<{
5220
5440
  custom: "custom";
5221
5441
  pattern: "pattern";
5442
+ url: "url";
5222
5443
  email: "email";
5223
5444
  required: "required";
5224
5445
  min: "min";
5225
5446
  max: "max";
5226
5447
  minLength: "minLength";
5227
5448
  maxLength: "maxLength";
5228
- url: "url";
5229
5449
  }>;
5230
5450
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5231
5451
  message: z.ZodOptional<z.ZodString>;
@@ -5307,13 +5527,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5307
5527
  type: z.ZodEnum<{
5308
5528
  custom: "custom";
5309
5529
  pattern: "pattern";
5530
+ url: "url";
5310
5531
  email: "email";
5311
5532
  required: "required";
5312
5533
  min: "min";
5313
5534
  max: "max";
5314
5535
  minLength: "minLength";
5315
5536
  maxLength: "maxLength";
5316
- url: "url";
5317
5537
  }>;
5318
5538
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5319
5539
  message: z.ZodOptional<z.ZodString>;
@@ -5379,13 +5599,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5379
5599
  type: z.ZodEnum<{
5380
5600
  custom: "custom";
5381
5601
  pattern: "pattern";
5602
+ url: "url";
5382
5603
  email: "email";
5383
5604
  required: "required";
5384
5605
  min: "min";
5385
5606
  max: "max";
5386
5607
  minLength: "minLength";
5387
5608
  maxLength: "maxLength";
5388
- url: "url";
5389
5609
  }>;
5390
5610
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5391
5611
  message: z.ZodOptional<z.ZodString>;
@@ -5449,13 +5669,13 @@ export declare const combinedQuestionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
5449
5669
  type: z.ZodEnum<{
5450
5670
  custom: "custom";
5451
5671
  pattern: "pattern";
5672
+ url: "url";
5452
5673
  email: "email";
5453
5674
  required: "required";
5454
5675
  min: "min";
5455
5676
  max: "max";
5456
5677
  minLength: "minLength";
5457
5678
  maxLength: "maxLength";
5458
- url: "url";
5459
5679
  }>;
5460
5680
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5461
5681
  message: z.ZodOptional<z.ZodString>;