@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.
- package/dist/esm/index.js +830 -749
- package/dist/esm/index.js.map +4 -4
- package/dist/types/index.d.ts +1 -0
- package/dist/types/schemas/api/fetch-feedback-schema.d.ts +286 -66
- package/dist/types/schemas/fields/app-props-schema.d.ts +149 -33
- package/dist/types/schemas/fields/completion-cta-schema.d.ts +99 -0
- package/dist/types/schemas/fields/field-schema.d.ts +289 -69
- package/dist/types/schemas/fields/form-properties-schema.d.ts +149 -33
- package/dist/types/schemas/fields/translations-schema.d.ts +30 -0
- package/package.json +1 -1
|
@@ -1328,13 +1328,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1328
1328
|
type: z.ZodEnum<{
|
|
1329
1329
|
custom: "custom";
|
|
1330
1330
|
pattern: "pattern";
|
|
1331
|
+
url: "url";
|
|
1331
1332
|
email: "email";
|
|
1332
1333
|
required: "required";
|
|
1333
1334
|
min: "min";
|
|
1334
1335
|
max: "max";
|
|
1335
1336
|
minLength: "minLength";
|
|
1336
1337
|
maxLength: "maxLength";
|
|
1337
|
-
url: "url";
|
|
1338
1338
|
}>;
|
|
1339
1339
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1340
1340
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1408,13 +1408,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1408
1408
|
type: z.ZodEnum<{
|
|
1409
1409
|
custom: "custom";
|
|
1410
1410
|
pattern: "pattern";
|
|
1411
|
+
url: "url";
|
|
1411
1412
|
email: "email";
|
|
1412
1413
|
required: "required";
|
|
1413
1414
|
min: "min";
|
|
1414
1415
|
max: "max";
|
|
1415
1416
|
minLength: "minLength";
|
|
1416
1417
|
maxLength: "maxLength";
|
|
1417
|
-
url: "url";
|
|
1418
1418
|
}>;
|
|
1419
1419
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1420
1420
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1470,13 +1470,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1470
1470
|
type: z.ZodEnum<{
|
|
1471
1471
|
custom: "custom";
|
|
1472
1472
|
pattern: "pattern";
|
|
1473
|
+
url: "url";
|
|
1473
1474
|
email: "email";
|
|
1474
1475
|
required: "required";
|
|
1475
1476
|
min: "min";
|
|
1476
1477
|
max: "max";
|
|
1477
1478
|
minLength: "minLength";
|
|
1478
1479
|
maxLength: "maxLength";
|
|
1479
|
-
url: "url";
|
|
1480
1480
|
}>;
|
|
1481
1481
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1482
1482
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1533,13 +1533,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1533
1533
|
type: z.ZodEnum<{
|
|
1534
1534
|
custom: "custom";
|
|
1535
1535
|
pattern: "pattern";
|
|
1536
|
+
url: "url";
|
|
1536
1537
|
email: "email";
|
|
1537
1538
|
required: "required";
|
|
1538
1539
|
min: "min";
|
|
1539
1540
|
max: "max";
|
|
1540
1541
|
minLength: "minLength";
|
|
1541
1542
|
maxLength: "maxLength";
|
|
1542
|
-
url: "url";
|
|
1543
1543
|
}>;
|
|
1544
1544
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1545
1545
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1585,6 +1585,61 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1585
1585
|
title: z.ZodString;
|
|
1586
1586
|
description: z.ZodOptional<z.ZodString>;
|
|
1587
1587
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
1588
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
1589
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1590
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
1591
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1592
|
+
action: z.ZodLiteral<"dismiss">;
|
|
1593
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1594
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
1595
|
+
route: z.ZodString;
|
|
1596
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1597
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
1598
|
+
url: z.ZodString;
|
|
1599
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1600
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
1601
|
+
url: z.ZodString;
|
|
1602
|
+
}, z.core.$strip>], "action">>;
|
|
1603
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1604
|
+
action: z.ZodLiteral<"dismiss">;
|
|
1605
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1606
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
1607
|
+
route: z.ZodString;
|
|
1608
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1609
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
1610
|
+
url: z.ZodString;
|
|
1611
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1612
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
1613
|
+
url: z.ZodString;
|
|
1614
|
+
}, z.core.$strip>], "action">>;
|
|
1615
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
1616
|
+
label: z.ZodString;
|
|
1617
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1618
|
+
action: z.ZodLiteral<"dismiss">;
|
|
1619
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1620
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
1621
|
+
route: z.ZodString;
|
|
1622
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1623
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
1624
|
+
url: z.ZodString;
|
|
1625
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1626
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
1627
|
+
url: z.ZodString;
|
|
1628
|
+
}, z.core.$strip>], "action">>;
|
|
1629
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1630
|
+
action: z.ZodLiteral<"dismiss">;
|
|
1631
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1632
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
1633
|
+
route: z.ZodString;
|
|
1634
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1635
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
1636
|
+
url: z.ZodString;
|
|
1637
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1638
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
1639
|
+
url: z.ZodString;
|
|
1640
|
+
}, z.core.$strip>], "action">>;
|
|
1641
|
+
}, z.core.$strip>>;
|
|
1642
|
+
}, z.core.$strip>>;
|
|
1588
1643
|
}, z.core.$strip>, z.ZodObject<{
|
|
1589
1644
|
id: z.ZodString;
|
|
1590
1645
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -1596,13 +1651,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1596
1651
|
type: z.ZodEnum<{
|
|
1597
1652
|
custom: "custom";
|
|
1598
1653
|
pattern: "pattern";
|
|
1654
|
+
url: "url";
|
|
1599
1655
|
email: "email";
|
|
1600
1656
|
required: "required";
|
|
1601
1657
|
min: "min";
|
|
1602
1658
|
max: "max";
|
|
1603
1659
|
minLength: "minLength";
|
|
1604
1660
|
maxLength: "maxLength";
|
|
1605
|
-
url: "url";
|
|
1606
1661
|
}>;
|
|
1607
1662
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1608
1663
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1661,13 +1716,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1661
1716
|
type: z.ZodEnum<{
|
|
1662
1717
|
custom: "custom";
|
|
1663
1718
|
pattern: "pattern";
|
|
1719
|
+
url: "url";
|
|
1664
1720
|
email: "email";
|
|
1665
1721
|
required: "required";
|
|
1666
1722
|
min: "min";
|
|
1667
1723
|
max: "max";
|
|
1668
1724
|
minLength: "minLength";
|
|
1669
1725
|
maxLength: "maxLength";
|
|
1670
|
-
url: "url";
|
|
1671
1726
|
}>;
|
|
1672
1727
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1673
1728
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1710,6 +1765,61 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1710
1765
|
vimeo: "vimeo";
|
|
1711
1766
|
}>>;
|
|
1712
1767
|
type: z.ZodLiteral<"exit_form">;
|
|
1768
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
1769
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1770
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
1771
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1772
|
+
action: z.ZodLiteral<"dismiss">;
|
|
1773
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1774
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
1775
|
+
route: z.ZodString;
|
|
1776
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1777
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
1778
|
+
url: z.ZodString;
|
|
1779
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1780
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
1781
|
+
url: z.ZodString;
|
|
1782
|
+
}, z.core.$strip>], "action">>;
|
|
1783
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1784
|
+
action: z.ZodLiteral<"dismiss">;
|
|
1785
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1786
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
1787
|
+
route: z.ZodString;
|
|
1788
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1789
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
1790
|
+
url: z.ZodString;
|
|
1791
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1792
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
1793
|
+
url: z.ZodString;
|
|
1794
|
+
}, z.core.$strip>], "action">>;
|
|
1795
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
1796
|
+
label: z.ZodString;
|
|
1797
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1798
|
+
action: z.ZodLiteral<"dismiss">;
|
|
1799
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1800
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
1801
|
+
route: z.ZodString;
|
|
1802
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1803
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
1804
|
+
url: z.ZodString;
|
|
1805
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1806
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
1807
|
+
url: z.ZodString;
|
|
1808
|
+
}, z.core.$strip>], "action">>;
|
|
1809
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1810
|
+
action: z.ZodLiteral<"dismiss">;
|
|
1811
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1812
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
1813
|
+
route: z.ZodString;
|
|
1814
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1815
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
1816
|
+
url: z.ZodString;
|
|
1817
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1818
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
1819
|
+
url: z.ZodString;
|
|
1820
|
+
}, z.core.$strip>], "action">>;
|
|
1821
|
+
}, z.core.$strip>>;
|
|
1822
|
+
}, z.core.$strip>>;
|
|
1713
1823
|
}, z.core.$strip>, z.ZodObject<{
|
|
1714
1824
|
id: z.ZodString;
|
|
1715
1825
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -1723,13 +1833,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1723
1833
|
type: z.ZodEnum<{
|
|
1724
1834
|
custom: "custom";
|
|
1725
1835
|
pattern: "pattern";
|
|
1836
|
+
url: "url";
|
|
1726
1837
|
email: "email";
|
|
1727
1838
|
required: "required";
|
|
1728
1839
|
min: "min";
|
|
1729
1840
|
max: "max";
|
|
1730
1841
|
minLength: "minLength";
|
|
1731
1842
|
maxLength: "maxLength";
|
|
1732
|
-
url: "url";
|
|
1733
1843
|
}>;
|
|
1734
1844
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1735
1845
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1791,13 +1901,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1791
1901
|
type: z.ZodEnum<{
|
|
1792
1902
|
custom: "custom";
|
|
1793
1903
|
pattern: "pattern";
|
|
1904
|
+
url: "url";
|
|
1794
1905
|
email: "email";
|
|
1795
1906
|
required: "required";
|
|
1796
1907
|
min: "min";
|
|
1797
1908
|
max: "max";
|
|
1798
1909
|
minLength: "minLength";
|
|
1799
1910
|
maxLength: "maxLength";
|
|
1800
|
-
url: "url";
|
|
1801
1911
|
}>;
|
|
1802
1912
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1803
1913
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1853,13 +1963,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1853
1963
|
type: z.ZodEnum<{
|
|
1854
1964
|
custom: "custom";
|
|
1855
1965
|
pattern: "pattern";
|
|
1966
|
+
url: "url";
|
|
1856
1967
|
email: "email";
|
|
1857
1968
|
required: "required";
|
|
1858
1969
|
min: "min";
|
|
1859
1970
|
max: "max";
|
|
1860
1971
|
minLength: "minLength";
|
|
1861
1972
|
maxLength: "maxLength";
|
|
1862
|
-
url: "url";
|
|
1863
1973
|
}>;
|
|
1864
1974
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1865
1975
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1954,13 +2064,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
1954
2064
|
type: z.ZodEnum<{
|
|
1955
2065
|
custom: "custom";
|
|
1956
2066
|
pattern: "pattern";
|
|
2067
|
+
url: "url";
|
|
1957
2068
|
email: "email";
|
|
1958
2069
|
required: "required";
|
|
1959
2070
|
min: "min";
|
|
1960
2071
|
max: "max";
|
|
1961
2072
|
minLength: "minLength";
|
|
1962
2073
|
maxLength: "maxLength";
|
|
1963
|
-
url: "url";
|
|
1964
2074
|
}>;
|
|
1965
2075
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1966
2076
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2030,13 +2140,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2030
2140
|
type: z.ZodEnum<{
|
|
2031
2141
|
custom: "custom";
|
|
2032
2142
|
pattern: "pattern";
|
|
2143
|
+
url: "url";
|
|
2033
2144
|
email: "email";
|
|
2034
2145
|
required: "required";
|
|
2035
2146
|
min: "min";
|
|
2036
2147
|
max: "max";
|
|
2037
2148
|
minLength: "minLength";
|
|
2038
2149
|
maxLength: "maxLength";
|
|
2039
|
-
url: "url";
|
|
2040
2150
|
}>;
|
|
2041
2151
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2042
2152
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2108,13 +2218,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2108
2218
|
type: z.ZodEnum<{
|
|
2109
2219
|
custom: "custom";
|
|
2110
2220
|
pattern: "pattern";
|
|
2221
|
+
url: "url";
|
|
2111
2222
|
email: "email";
|
|
2112
2223
|
required: "required";
|
|
2113
2224
|
min: "min";
|
|
2114
2225
|
max: "max";
|
|
2115
2226
|
minLength: "minLength";
|
|
2116
2227
|
maxLength: "maxLength";
|
|
2117
|
-
url: "url";
|
|
2118
2228
|
}>;
|
|
2119
2229
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2120
2230
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2193,13 +2303,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2193
2303
|
type: z.ZodEnum<{
|
|
2194
2304
|
custom: "custom";
|
|
2195
2305
|
pattern: "pattern";
|
|
2306
|
+
url: "url";
|
|
2196
2307
|
email: "email";
|
|
2197
2308
|
required: "required";
|
|
2198
2309
|
min: "min";
|
|
2199
2310
|
max: "max";
|
|
2200
2311
|
minLength: "minLength";
|
|
2201
2312
|
maxLength: "maxLength";
|
|
2202
|
-
url: "url";
|
|
2203
2313
|
}>;
|
|
2204
2314
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2205
2315
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2279,13 +2389,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2279
2389
|
type: z.ZodEnum<{
|
|
2280
2390
|
custom: "custom";
|
|
2281
2391
|
pattern: "pattern";
|
|
2392
|
+
url: "url";
|
|
2282
2393
|
email: "email";
|
|
2283
2394
|
required: "required";
|
|
2284
2395
|
min: "min";
|
|
2285
2396
|
max: "max";
|
|
2286
2397
|
minLength: "minLength";
|
|
2287
2398
|
maxLength: "maxLength";
|
|
2288
|
-
url: "url";
|
|
2289
2399
|
}>;
|
|
2290
2400
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2291
2401
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2350,13 +2460,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2350
2460
|
type: z.ZodEnum<{
|
|
2351
2461
|
custom: "custom";
|
|
2352
2462
|
pattern: "pattern";
|
|
2463
|
+
url: "url";
|
|
2353
2464
|
email: "email";
|
|
2354
2465
|
required: "required";
|
|
2355
2466
|
min: "min";
|
|
2356
2467
|
max: "max";
|
|
2357
2468
|
minLength: "minLength";
|
|
2358
2469
|
maxLength: "maxLength";
|
|
2359
|
-
url: "url";
|
|
2360
2470
|
}>;
|
|
2361
2471
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2362
2472
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2422,13 +2532,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2422
2532
|
type: z.ZodEnum<{
|
|
2423
2533
|
custom: "custom";
|
|
2424
2534
|
pattern: "pattern";
|
|
2535
|
+
url: "url";
|
|
2425
2536
|
email: "email";
|
|
2426
2537
|
required: "required";
|
|
2427
2538
|
min: "min";
|
|
2428
2539
|
max: "max";
|
|
2429
2540
|
minLength: "minLength";
|
|
2430
2541
|
maxLength: "maxLength";
|
|
2431
|
-
url: "url";
|
|
2432
2542
|
}>;
|
|
2433
2543
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2434
2544
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2493,13 +2603,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2493
2603
|
type: z.ZodEnum<{
|
|
2494
2604
|
custom: "custom";
|
|
2495
2605
|
pattern: "pattern";
|
|
2606
|
+
url: "url";
|
|
2496
2607
|
email: "email";
|
|
2497
2608
|
required: "required";
|
|
2498
2609
|
min: "min";
|
|
2499
2610
|
max: "max";
|
|
2500
2611
|
minLength: "minLength";
|
|
2501
2612
|
maxLength: "maxLength";
|
|
2502
|
-
url: "url";
|
|
2503
2613
|
}>;
|
|
2504
2614
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2505
2615
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2571,13 +2681,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2571
2681
|
type: z.ZodEnum<{
|
|
2572
2682
|
custom: "custom";
|
|
2573
2683
|
pattern: "pattern";
|
|
2684
|
+
url: "url";
|
|
2574
2685
|
email: "email";
|
|
2575
2686
|
required: "required";
|
|
2576
2687
|
min: "min";
|
|
2577
2688
|
max: "max";
|
|
2578
2689
|
minLength: "minLength";
|
|
2579
2690
|
maxLength: "maxLength";
|
|
2580
|
-
url: "url";
|
|
2581
2691
|
}>;
|
|
2582
2692
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2583
2693
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2651,13 +2761,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2651
2761
|
type: z.ZodEnum<{
|
|
2652
2762
|
custom: "custom";
|
|
2653
2763
|
pattern: "pattern";
|
|
2764
|
+
url: "url";
|
|
2654
2765
|
email: "email";
|
|
2655
2766
|
required: "required";
|
|
2656
2767
|
min: "min";
|
|
2657
2768
|
max: "max";
|
|
2658
2769
|
minLength: "minLength";
|
|
2659
2770
|
maxLength: "maxLength";
|
|
2660
|
-
url: "url";
|
|
2661
2771
|
}>;
|
|
2662
2772
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2663
2773
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2724,13 +2834,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2724
2834
|
type: z.ZodEnum<{
|
|
2725
2835
|
custom: "custom";
|
|
2726
2836
|
pattern: "pattern";
|
|
2837
|
+
url: "url";
|
|
2727
2838
|
email: "email";
|
|
2728
2839
|
required: "required";
|
|
2729
2840
|
min: "min";
|
|
2730
2841
|
max: "max";
|
|
2731
2842
|
minLength: "minLength";
|
|
2732
2843
|
maxLength: "maxLength";
|
|
2733
|
-
url: "url";
|
|
2734
2844
|
}>;
|
|
2735
2845
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2736
2846
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2790,13 +2900,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2790
2900
|
type: z.ZodEnum<{
|
|
2791
2901
|
custom: "custom";
|
|
2792
2902
|
pattern: "pattern";
|
|
2903
|
+
url: "url";
|
|
2793
2904
|
email: "email";
|
|
2794
2905
|
required: "required";
|
|
2795
2906
|
min: "min";
|
|
2796
2907
|
max: "max";
|
|
2797
2908
|
minLength: "minLength";
|
|
2798
2909
|
maxLength: "maxLength";
|
|
2799
|
-
url: "url";
|
|
2800
2910
|
}>;
|
|
2801
2911
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2802
2912
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2867,13 +2977,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2867
2977
|
type: z.ZodEnum<{
|
|
2868
2978
|
custom: "custom";
|
|
2869
2979
|
pattern: "pattern";
|
|
2980
|
+
url: "url";
|
|
2870
2981
|
email: "email";
|
|
2871
2982
|
required: "required";
|
|
2872
2983
|
min: "min";
|
|
2873
2984
|
max: "max";
|
|
2874
2985
|
minLength: "minLength";
|
|
2875
2986
|
maxLength: "maxLength";
|
|
2876
|
-
url: "url";
|
|
2877
2987
|
}>;
|
|
2878
2988
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2879
2989
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2950,13 +3060,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
2950
3060
|
type: z.ZodEnum<{
|
|
2951
3061
|
custom: "custom";
|
|
2952
3062
|
pattern: "pattern";
|
|
3063
|
+
url: "url";
|
|
2953
3064
|
email: "email";
|
|
2954
3065
|
required: "required";
|
|
2955
3066
|
min: "min";
|
|
2956
3067
|
max: "max";
|
|
2957
3068
|
minLength: "minLength";
|
|
2958
3069
|
maxLength: "maxLength";
|
|
2959
|
-
url: "url";
|
|
2960
3070
|
}>;
|
|
2961
3071
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2962
3072
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3036,13 +3146,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3036
3146
|
type: z.ZodEnum<{
|
|
3037
3147
|
custom: "custom";
|
|
3038
3148
|
pattern: "pattern";
|
|
3149
|
+
url: "url";
|
|
3039
3150
|
email: "email";
|
|
3040
3151
|
required: "required";
|
|
3041
3152
|
min: "min";
|
|
3042
3153
|
max: "max";
|
|
3043
3154
|
minLength: "minLength";
|
|
3044
3155
|
maxLength: "maxLength";
|
|
3045
|
-
url: "url";
|
|
3046
3156
|
}>;
|
|
3047
3157
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3048
3158
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3103,13 +3213,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3103
3213
|
type: z.ZodEnum<{
|
|
3104
3214
|
custom: "custom";
|
|
3105
3215
|
pattern: "pattern";
|
|
3216
|
+
url: "url";
|
|
3106
3217
|
email: "email";
|
|
3107
3218
|
required: "required";
|
|
3108
3219
|
min: "min";
|
|
3109
3220
|
max: "max";
|
|
3110
3221
|
minLength: "minLength";
|
|
3111
3222
|
maxLength: "maxLength";
|
|
3112
|
-
url: "url";
|
|
3113
3223
|
}>;
|
|
3114
3224
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3115
3225
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3167,13 +3277,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3167
3277
|
type: z.ZodEnum<{
|
|
3168
3278
|
custom: "custom";
|
|
3169
3279
|
pattern: "pattern";
|
|
3280
|
+
url: "url";
|
|
3170
3281
|
email: "email";
|
|
3171
3282
|
required: "required";
|
|
3172
3283
|
min: "min";
|
|
3173
3284
|
max: "max";
|
|
3174
3285
|
minLength: "minLength";
|
|
3175
3286
|
maxLength: "maxLength";
|
|
3176
|
-
url: "url";
|
|
3177
3287
|
}>;
|
|
3178
3288
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3179
3289
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3236,13 +3346,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3236
3346
|
type: z.ZodEnum<{
|
|
3237
3347
|
custom: "custom";
|
|
3238
3348
|
pattern: "pattern";
|
|
3349
|
+
url: "url";
|
|
3239
3350
|
email: "email";
|
|
3240
3351
|
required: "required";
|
|
3241
3352
|
min: "min";
|
|
3242
3353
|
max: "max";
|
|
3243
3354
|
minLength: "minLength";
|
|
3244
3355
|
maxLength: "maxLength";
|
|
3245
|
-
url: "url";
|
|
3246
3356
|
}>;
|
|
3247
3357
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3248
3358
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3300,13 +3410,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3300
3410
|
type: z.ZodEnum<{
|
|
3301
3411
|
custom: "custom";
|
|
3302
3412
|
pattern: "pattern";
|
|
3413
|
+
url: "url";
|
|
3303
3414
|
email: "email";
|
|
3304
3415
|
required: "required";
|
|
3305
3416
|
min: "min";
|
|
3306
3417
|
max: "max";
|
|
3307
3418
|
minLength: "minLength";
|
|
3308
3419
|
maxLength: "maxLength";
|
|
3309
|
-
url: "url";
|
|
3310
3420
|
}>;
|
|
3311
3421
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3312
3422
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3366,13 +3476,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3366
3476
|
type: z.ZodEnum<{
|
|
3367
3477
|
custom: "custom";
|
|
3368
3478
|
pattern: "pattern";
|
|
3479
|
+
url: "url";
|
|
3369
3480
|
email: "email";
|
|
3370
3481
|
required: "required";
|
|
3371
3482
|
min: "min";
|
|
3372
3483
|
max: "max";
|
|
3373
3484
|
minLength: "minLength";
|
|
3374
3485
|
maxLength: "maxLength";
|
|
3375
|
-
url: "url";
|
|
3376
3486
|
}>;
|
|
3377
3487
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3378
3488
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3465,13 +3575,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3465
3575
|
type: z.ZodEnum<{
|
|
3466
3576
|
custom: "custom";
|
|
3467
3577
|
pattern: "pattern";
|
|
3578
|
+
url: "url";
|
|
3468
3579
|
email: "email";
|
|
3469
3580
|
required: "required";
|
|
3470
3581
|
min: "min";
|
|
3471
3582
|
max: "max";
|
|
3472
3583
|
minLength: "minLength";
|
|
3473
3584
|
maxLength: "maxLength";
|
|
3474
|
-
url: "url";
|
|
3475
3585
|
}>;
|
|
3476
3586
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3477
3587
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3553,13 +3663,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3553
3663
|
type: z.ZodEnum<{
|
|
3554
3664
|
custom: "custom";
|
|
3555
3665
|
pattern: "pattern";
|
|
3666
|
+
url: "url";
|
|
3556
3667
|
email: "email";
|
|
3557
3668
|
required: "required";
|
|
3558
3669
|
min: "min";
|
|
3559
3670
|
max: "max";
|
|
3560
3671
|
minLength: "minLength";
|
|
3561
3672
|
maxLength: "maxLength";
|
|
3562
|
-
url: "url";
|
|
3563
3673
|
}>;
|
|
3564
3674
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3565
3675
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3625,13 +3735,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3625
3735
|
type: z.ZodEnum<{
|
|
3626
3736
|
custom: "custom";
|
|
3627
3737
|
pattern: "pattern";
|
|
3738
|
+
url: "url";
|
|
3628
3739
|
email: "email";
|
|
3629
3740
|
required: "required";
|
|
3630
3741
|
min: "min";
|
|
3631
3742
|
max: "max";
|
|
3632
3743
|
minLength: "minLength";
|
|
3633
3744
|
maxLength: "maxLength";
|
|
3634
|
-
url: "url";
|
|
3635
3745
|
}>;
|
|
3636
3746
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3637
3747
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3695,13 +3805,13 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3695
3805
|
type: z.ZodEnum<{
|
|
3696
3806
|
custom: "custom";
|
|
3697
3807
|
pattern: "pattern";
|
|
3808
|
+
url: "url";
|
|
3698
3809
|
email: "email";
|
|
3699
3810
|
required: "required";
|
|
3700
3811
|
min: "min";
|
|
3701
3812
|
max: "max";
|
|
3702
3813
|
minLength: "minLength";
|
|
3703
3814
|
maxLength: "maxLength";
|
|
3704
|
-
url: "url";
|
|
3705
3815
|
}>;
|
|
3706
3816
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3707
3817
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3937,6 +4047,12 @@ export declare const formPropertiesSchema: z.ZodObject<{
|
|
|
3937
4047
|
errorMessage: z.ZodOptional<z.ZodString>;
|
|
3938
4048
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
3939
4049
|
type: z.ZodLiteral<"thank_you">;
|
|
4050
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
4051
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4052
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
4053
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4054
|
+
}, z.core.$strip>>;
|
|
4055
|
+
}, z.core.$strip>>;
|
|
3940
4056
|
}, z.core.$strip>, z.ZodObject<{
|
|
3941
4057
|
title: z.ZodString;
|
|
3942
4058
|
description: z.ZodOptional<z.ZodString>;
|