@authhero/kysely-adapter 10.96.0 → 10.97.0
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/kysely-adapter.cjs +57 -8
- package/dist/kysely-adapter.d.ts +1539 -76
- package/dist/kysely-adapter.mjs +2365 -2161
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -565,7 +565,7 @@ export interface Totals {
|
|
|
565
565
|
}
|
|
566
566
|
declare const userInsertSchema: z.ZodObject<{
|
|
567
567
|
email: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
568
|
-
username: z.ZodOptional<z.ZodString
|
|
568
|
+
username: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
569
569
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
570
570
|
phone_verified: z.ZodOptional<z.ZodBoolean>;
|
|
571
571
|
given_name: z.ZodOptional<z.ZodString>;
|
|
@@ -795,7 +795,7 @@ declare const userSchema: z.ZodObject<{
|
|
|
795
795
|
updated_at: z.ZodString;
|
|
796
796
|
name: z.ZodOptional<z.ZodString>;
|
|
797
797
|
email_verified: z.ZodDefault<z.ZodBoolean>;
|
|
798
|
-
username: z.ZodOptional<z.ZodString
|
|
798
|
+
username: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
799
799
|
given_name: z.ZodOptional<z.ZodString>;
|
|
800
800
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
801
801
|
phone_verified: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1718,7 +1718,367 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1718
1718
|
enable?: boolean | undefined;
|
|
1719
1719
|
dictionary?: string[] | undefined;
|
|
1720
1720
|
}>>;
|
|
1721
|
+
disable_signup: z.ZodOptional<z.ZodBoolean>;
|
|
1722
|
+
brute_force_protection: z.ZodOptional<z.ZodBoolean>;
|
|
1723
|
+
import_mode: z.ZodOptional<z.ZodBoolean>;
|
|
1724
|
+
attributes: z.ZodOptional<z.ZodObject<{
|
|
1725
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
1726
|
+
identifier: z.ZodOptional<z.ZodObject<{
|
|
1727
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
1728
|
+
}, "strip", z.ZodTypeAny, {
|
|
1729
|
+
active?: boolean | undefined;
|
|
1730
|
+
}, {
|
|
1731
|
+
active?: boolean | undefined;
|
|
1732
|
+
}>>;
|
|
1733
|
+
signup: z.ZodOptional<z.ZodObject<{
|
|
1734
|
+
status: z.ZodOptional<z.ZodEnum<[
|
|
1735
|
+
"required",
|
|
1736
|
+
"optional",
|
|
1737
|
+
"disabled"
|
|
1738
|
+
]>>;
|
|
1739
|
+
verification: z.ZodOptional<z.ZodObject<{
|
|
1740
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
1741
|
+
}, "strip", z.ZodTypeAny, {
|
|
1742
|
+
active?: boolean | undefined;
|
|
1743
|
+
}, {
|
|
1744
|
+
active?: boolean | undefined;
|
|
1745
|
+
}>>;
|
|
1746
|
+
}, "strip", z.ZodTypeAny, {
|
|
1747
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1748
|
+
verification?: {
|
|
1749
|
+
active?: boolean | undefined;
|
|
1750
|
+
} | undefined;
|
|
1751
|
+
}, {
|
|
1752
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1753
|
+
verification?: {
|
|
1754
|
+
active?: boolean | undefined;
|
|
1755
|
+
} | undefined;
|
|
1756
|
+
}>>;
|
|
1757
|
+
validation: z.ZodOptional<z.ZodObject<{
|
|
1758
|
+
allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1759
|
+
}, "strip", z.ZodTypeAny, {
|
|
1760
|
+
allowed?: boolean | undefined;
|
|
1761
|
+
}, {
|
|
1762
|
+
allowed?: boolean | undefined;
|
|
1763
|
+
}>>;
|
|
1764
|
+
unique: z.ZodOptional<z.ZodBoolean>;
|
|
1765
|
+
profile_required: z.ZodOptional<z.ZodBoolean>;
|
|
1766
|
+
verification_method: z.ZodOptional<z.ZodEnum<[
|
|
1767
|
+
"link",
|
|
1768
|
+
"code"
|
|
1769
|
+
]>>;
|
|
1770
|
+
}, "strip", z.ZodTypeAny, {
|
|
1771
|
+
validation?: {
|
|
1772
|
+
allowed?: boolean | undefined;
|
|
1773
|
+
} | undefined;
|
|
1774
|
+
identifier?: {
|
|
1775
|
+
active?: boolean | undefined;
|
|
1776
|
+
} | undefined;
|
|
1777
|
+
signup?: {
|
|
1778
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1779
|
+
verification?: {
|
|
1780
|
+
active?: boolean | undefined;
|
|
1781
|
+
} | undefined;
|
|
1782
|
+
} | undefined;
|
|
1783
|
+
unique?: boolean | undefined;
|
|
1784
|
+
profile_required?: boolean | undefined;
|
|
1785
|
+
verification_method?: "code" | "link" | undefined;
|
|
1786
|
+
}, {
|
|
1787
|
+
validation?: {
|
|
1788
|
+
allowed?: boolean | undefined;
|
|
1789
|
+
} | undefined;
|
|
1790
|
+
identifier?: {
|
|
1791
|
+
active?: boolean | undefined;
|
|
1792
|
+
} | undefined;
|
|
1793
|
+
signup?: {
|
|
1794
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1795
|
+
verification?: {
|
|
1796
|
+
active?: boolean | undefined;
|
|
1797
|
+
} | undefined;
|
|
1798
|
+
} | undefined;
|
|
1799
|
+
unique?: boolean | undefined;
|
|
1800
|
+
profile_required?: boolean | undefined;
|
|
1801
|
+
verification_method?: "code" | "link" | undefined;
|
|
1802
|
+
}>>;
|
|
1803
|
+
username: z.ZodOptional<z.ZodObject<{
|
|
1804
|
+
identifier: z.ZodOptional<z.ZodObject<{
|
|
1805
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
1806
|
+
}, "strip", z.ZodTypeAny, {
|
|
1807
|
+
active?: boolean | undefined;
|
|
1808
|
+
}, {
|
|
1809
|
+
active?: boolean | undefined;
|
|
1810
|
+
}>>;
|
|
1811
|
+
signup: z.ZodOptional<z.ZodObject<{
|
|
1812
|
+
status: z.ZodOptional<z.ZodEnum<[
|
|
1813
|
+
"required",
|
|
1814
|
+
"optional",
|
|
1815
|
+
"disabled"
|
|
1816
|
+
]>>;
|
|
1817
|
+
}, "strip", z.ZodTypeAny, {
|
|
1818
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1819
|
+
}, {
|
|
1820
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1821
|
+
}>>;
|
|
1822
|
+
validation: z.ZodOptional<z.ZodObject<{
|
|
1823
|
+
max_length: z.ZodOptional<z.ZodNumber>;
|
|
1824
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
1825
|
+
allowed_types: z.ZodOptional<z.ZodObject<{
|
|
1826
|
+
email: z.ZodOptional<z.ZodBoolean>;
|
|
1827
|
+
phone_number: z.ZodOptional<z.ZodBoolean>;
|
|
1828
|
+
}, "strip", z.ZodTypeAny, {
|
|
1829
|
+
email?: boolean | undefined;
|
|
1830
|
+
phone_number?: boolean | undefined;
|
|
1831
|
+
}, {
|
|
1832
|
+
email?: boolean | undefined;
|
|
1833
|
+
phone_number?: boolean | undefined;
|
|
1834
|
+
}>>;
|
|
1835
|
+
}, "strip", z.ZodTypeAny, {
|
|
1836
|
+
min_length?: number | undefined;
|
|
1837
|
+
max_length?: number | undefined;
|
|
1838
|
+
allowed_types?: {
|
|
1839
|
+
email?: boolean | undefined;
|
|
1840
|
+
phone_number?: boolean | undefined;
|
|
1841
|
+
} | undefined;
|
|
1842
|
+
}, {
|
|
1843
|
+
min_length?: number | undefined;
|
|
1844
|
+
max_length?: number | undefined;
|
|
1845
|
+
allowed_types?: {
|
|
1846
|
+
email?: boolean | undefined;
|
|
1847
|
+
phone_number?: boolean | undefined;
|
|
1848
|
+
} | undefined;
|
|
1849
|
+
}>>;
|
|
1850
|
+
profile_required: z.ZodOptional<z.ZodBoolean>;
|
|
1851
|
+
}, "strip", z.ZodTypeAny, {
|
|
1852
|
+
validation?: {
|
|
1853
|
+
min_length?: number | undefined;
|
|
1854
|
+
max_length?: number | undefined;
|
|
1855
|
+
allowed_types?: {
|
|
1856
|
+
email?: boolean | undefined;
|
|
1857
|
+
phone_number?: boolean | undefined;
|
|
1858
|
+
} | undefined;
|
|
1859
|
+
} | undefined;
|
|
1860
|
+
identifier?: {
|
|
1861
|
+
active?: boolean | undefined;
|
|
1862
|
+
} | undefined;
|
|
1863
|
+
signup?: {
|
|
1864
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1865
|
+
} | undefined;
|
|
1866
|
+
profile_required?: boolean | undefined;
|
|
1867
|
+
}, {
|
|
1868
|
+
validation?: {
|
|
1869
|
+
min_length?: number | undefined;
|
|
1870
|
+
max_length?: number | undefined;
|
|
1871
|
+
allowed_types?: {
|
|
1872
|
+
email?: boolean | undefined;
|
|
1873
|
+
phone_number?: boolean | undefined;
|
|
1874
|
+
} | undefined;
|
|
1875
|
+
} | undefined;
|
|
1876
|
+
identifier?: {
|
|
1877
|
+
active?: boolean | undefined;
|
|
1878
|
+
} | undefined;
|
|
1879
|
+
signup?: {
|
|
1880
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1881
|
+
} | undefined;
|
|
1882
|
+
profile_required?: boolean | undefined;
|
|
1883
|
+
}>>;
|
|
1884
|
+
phone_number: z.ZodOptional<z.ZodObject<{
|
|
1885
|
+
identifier: z.ZodOptional<z.ZodObject<{
|
|
1886
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
1887
|
+
}, "strip", z.ZodTypeAny, {
|
|
1888
|
+
active?: boolean | undefined;
|
|
1889
|
+
}, {
|
|
1890
|
+
active?: boolean | undefined;
|
|
1891
|
+
}>>;
|
|
1892
|
+
signup: z.ZodOptional<z.ZodObject<{
|
|
1893
|
+
status: z.ZodOptional<z.ZodEnum<[
|
|
1894
|
+
"required",
|
|
1895
|
+
"optional",
|
|
1896
|
+
"disabled"
|
|
1897
|
+
]>>;
|
|
1898
|
+
}, "strip", z.ZodTypeAny, {
|
|
1899
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1900
|
+
}, {
|
|
1901
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1902
|
+
}>>;
|
|
1903
|
+
}, "strip", z.ZodTypeAny, {
|
|
1904
|
+
identifier?: {
|
|
1905
|
+
active?: boolean | undefined;
|
|
1906
|
+
} | undefined;
|
|
1907
|
+
signup?: {
|
|
1908
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1909
|
+
} | undefined;
|
|
1910
|
+
}, {
|
|
1911
|
+
identifier?: {
|
|
1912
|
+
active?: boolean | undefined;
|
|
1913
|
+
} | undefined;
|
|
1914
|
+
signup?: {
|
|
1915
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1916
|
+
} | undefined;
|
|
1917
|
+
}>>;
|
|
1918
|
+
}, "strip", z.ZodTypeAny, {
|
|
1919
|
+
email?: {
|
|
1920
|
+
validation?: {
|
|
1921
|
+
allowed?: boolean | undefined;
|
|
1922
|
+
} | undefined;
|
|
1923
|
+
identifier?: {
|
|
1924
|
+
active?: boolean | undefined;
|
|
1925
|
+
} | undefined;
|
|
1926
|
+
signup?: {
|
|
1927
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1928
|
+
verification?: {
|
|
1929
|
+
active?: boolean | undefined;
|
|
1930
|
+
} | undefined;
|
|
1931
|
+
} | undefined;
|
|
1932
|
+
unique?: boolean | undefined;
|
|
1933
|
+
profile_required?: boolean | undefined;
|
|
1934
|
+
verification_method?: "code" | "link" | undefined;
|
|
1935
|
+
} | undefined;
|
|
1936
|
+
username?: {
|
|
1937
|
+
validation?: {
|
|
1938
|
+
min_length?: number | undefined;
|
|
1939
|
+
max_length?: number | undefined;
|
|
1940
|
+
allowed_types?: {
|
|
1941
|
+
email?: boolean | undefined;
|
|
1942
|
+
phone_number?: boolean | undefined;
|
|
1943
|
+
} | undefined;
|
|
1944
|
+
} | undefined;
|
|
1945
|
+
identifier?: {
|
|
1946
|
+
active?: boolean | undefined;
|
|
1947
|
+
} | undefined;
|
|
1948
|
+
signup?: {
|
|
1949
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1950
|
+
} | undefined;
|
|
1951
|
+
profile_required?: boolean | undefined;
|
|
1952
|
+
} | undefined;
|
|
1953
|
+
phone_number?: {
|
|
1954
|
+
identifier?: {
|
|
1955
|
+
active?: boolean | undefined;
|
|
1956
|
+
} | undefined;
|
|
1957
|
+
signup?: {
|
|
1958
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1959
|
+
} | undefined;
|
|
1960
|
+
} | undefined;
|
|
1961
|
+
}, {
|
|
1962
|
+
email?: {
|
|
1963
|
+
validation?: {
|
|
1964
|
+
allowed?: boolean | undefined;
|
|
1965
|
+
} | undefined;
|
|
1966
|
+
identifier?: {
|
|
1967
|
+
active?: boolean | undefined;
|
|
1968
|
+
} | undefined;
|
|
1969
|
+
signup?: {
|
|
1970
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1971
|
+
verification?: {
|
|
1972
|
+
active?: boolean | undefined;
|
|
1973
|
+
} | undefined;
|
|
1974
|
+
} | undefined;
|
|
1975
|
+
unique?: boolean | undefined;
|
|
1976
|
+
profile_required?: boolean | undefined;
|
|
1977
|
+
verification_method?: "code" | "link" | undefined;
|
|
1978
|
+
} | undefined;
|
|
1979
|
+
username?: {
|
|
1980
|
+
validation?: {
|
|
1981
|
+
min_length?: number | undefined;
|
|
1982
|
+
max_length?: number | undefined;
|
|
1983
|
+
allowed_types?: {
|
|
1984
|
+
email?: boolean | undefined;
|
|
1985
|
+
phone_number?: boolean | undefined;
|
|
1986
|
+
} | undefined;
|
|
1987
|
+
} | undefined;
|
|
1988
|
+
identifier?: {
|
|
1989
|
+
active?: boolean | undefined;
|
|
1990
|
+
} | undefined;
|
|
1991
|
+
signup?: {
|
|
1992
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1993
|
+
} | undefined;
|
|
1994
|
+
profile_required?: boolean | undefined;
|
|
1995
|
+
} | undefined;
|
|
1996
|
+
phone_number?: {
|
|
1997
|
+
identifier?: {
|
|
1998
|
+
active?: boolean | undefined;
|
|
1999
|
+
} | undefined;
|
|
2000
|
+
signup?: {
|
|
2001
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2002
|
+
} | undefined;
|
|
2003
|
+
} | undefined;
|
|
2004
|
+
}>>;
|
|
2005
|
+
authentication_methods: z.ZodOptional<z.ZodObject<{
|
|
2006
|
+
password: z.ZodOptional<z.ZodObject<{
|
|
2007
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2008
|
+
}, "strip", z.ZodTypeAny, {
|
|
2009
|
+
enabled?: boolean | undefined;
|
|
2010
|
+
}, {
|
|
2011
|
+
enabled?: boolean | undefined;
|
|
2012
|
+
}>>;
|
|
2013
|
+
passkey: z.ZodOptional<z.ZodObject<{
|
|
2014
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2015
|
+
}, "strip", z.ZodTypeAny, {
|
|
2016
|
+
enabled?: boolean | undefined;
|
|
2017
|
+
}, {
|
|
2018
|
+
enabled?: boolean | undefined;
|
|
2019
|
+
}>>;
|
|
2020
|
+
}, "strip", z.ZodTypeAny, {
|
|
2021
|
+
password?: {
|
|
2022
|
+
enabled?: boolean | undefined;
|
|
2023
|
+
} | undefined;
|
|
2024
|
+
passkey?: {
|
|
2025
|
+
enabled?: boolean | undefined;
|
|
2026
|
+
} | undefined;
|
|
2027
|
+
}, {
|
|
2028
|
+
password?: {
|
|
2029
|
+
enabled?: boolean | undefined;
|
|
2030
|
+
} | undefined;
|
|
2031
|
+
passkey?: {
|
|
2032
|
+
enabled?: boolean | undefined;
|
|
2033
|
+
} | undefined;
|
|
2034
|
+
}>>;
|
|
2035
|
+
passkey_options: z.ZodOptional<z.ZodObject<{
|
|
2036
|
+
challenge_ui: z.ZodOptional<z.ZodEnum<[
|
|
2037
|
+
"both",
|
|
2038
|
+
"autofill",
|
|
2039
|
+
"button"
|
|
2040
|
+
]>>;
|
|
2041
|
+
local_enrollment_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2042
|
+
progressive_enrollment_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2043
|
+
}, "strip", z.ZodTypeAny, {
|
|
2044
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
2045
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
2046
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
2047
|
+
}, {
|
|
2048
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
2049
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
2050
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
2051
|
+
}>>;
|
|
2052
|
+
requires_username: z.ZodOptional<z.ZodBoolean>;
|
|
2053
|
+
validation: z.ZodOptional<z.ZodObject<{
|
|
2054
|
+
username: z.ZodOptional<z.ZodObject<{
|
|
2055
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2056
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2057
|
+
}, "strip", z.ZodTypeAny, {
|
|
2058
|
+
min?: number | undefined;
|
|
2059
|
+
max?: number | undefined;
|
|
2060
|
+
}, {
|
|
2061
|
+
min?: number | undefined;
|
|
2062
|
+
max?: number | undefined;
|
|
2063
|
+
}>>;
|
|
2064
|
+
}, "strip", z.ZodTypeAny, {
|
|
2065
|
+
username?: {
|
|
2066
|
+
min?: number | undefined;
|
|
2067
|
+
max?: number | undefined;
|
|
2068
|
+
} | undefined;
|
|
2069
|
+
}, {
|
|
2070
|
+
username?: {
|
|
2071
|
+
min?: number | undefined;
|
|
2072
|
+
max?: number | undefined;
|
|
2073
|
+
} | undefined;
|
|
2074
|
+
}>>;
|
|
1721
2075
|
}, "strip", z.ZodTypeAny, {
|
|
2076
|
+
validation?: {
|
|
2077
|
+
username?: {
|
|
2078
|
+
min?: number | undefined;
|
|
2079
|
+
max?: number | undefined;
|
|
2080
|
+
} | undefined;
|
|
2081
|
+
} | undefined;
|
|
1722
2082
|
provider?: string | undefined;
|
|
1723
2083
|
client_id?: string | undefined;
|
|
1724
2084
|
client_secret?: string | undefined;
|
|
@@ -1753,7 +2113,74 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1753
2113
|
enable?: boolean | undefined;
|
|
1754
2114
|
dictionary?: string[] | undefined;
|
|
1755
2115
|
} | undefined;
|
|
2116
|
+
disable_signup?: boolean | undefined;
|
|
2117
|
+
brute_force_protection?: boolean | undefined;
|
|
2118
|
+
import_mode?: boolean | undefined;
|
|
2119
|
+
attributes?: {
|
|
2120
|
+
email?: {
|
|
2121
|
+
validation?: {
|
|
2122
|
+
allowed?: boolean | undefined;
|
|
2123
|
+
} | undefined;
|
|
2124
|
+
identifier?: {
|
|
2125
|
+
active?: boolean | undefined;
|
|
2126
|
+
} | undefined;
|
|
2127
|
+
signup?: {
|
|
2128
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2129
|
+
verification?: {
|
|
2130
|
+
active?: boolean | undefined;
|
|
2131
|
+
} | undefined;
|
|
2132
|
+
} | undefined;
|
|
2133
|
+
unique?: boolean | undefined;
|
|
2134
|
+
profile_required?: boolean | undefined;
|
|
2135
|
+
verification_method?: "code" | "link" | undefined;
|
|
2136
|
+
} | undefined;
|
|
2137
|
+
username?: {
|
|
2138
|
+
validation?: {
|
|
2139
|
+
min_length?: number | undefined;
|
|
2140
|
+
max_length?: number | undefined;
|
|
2141
|
+
allowed_types?: {
|
|
2142
|
+
email?: boolean | undefined;
|
|
2143
|
+
phone_number?: boolean | undefined;
|
|
2144
|
+
} | undefined;
|
|
2145
|
+
} | undefined;
|
|
2146
|
+
identifier?: {
|
|
2147
|
+
active?: boolean | undefined;
|
|
2148
|
+
} | undefined;
|
|
2149
|
+
signup?: {
|
|
2150
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2151
|
+
} | undefined;
|
|
2152
|
+
profile_required?: boolean | undefined;
|
|
2153
|
+
} | undefined;
|
|
2154
|
+
phone_number?: {
|
|
2155
|
+
identifier?: {
|
|
2156
|
+
active?: boolean | undefined;
|
|
2157
|
+
} | undefined;
|
|
2158
|
+
signup?: {
|
|
2159
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2160
|
+
} | undefined;
|
|
2161
|
+
} | undefined;
|
|
2162
|
+
} | undefined;
|
|
2163
|
+
authentication_methods?: {
|
|
2164
|
+
password?: {
|
|
2165
|
+
enabled?: boolean | undefined;
|
|
2166
|
+
} | undefined;
|
|
2167
|
+
passkey?: {
|
|
2168
|
+
enabled?: boolean | undefined;
|
|
2169
|
+
} | undefined;
|
|
2170
|
+
} | undefined;
|
|
2171
|
+
passkey_options?: {
|
|
2172
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
2173
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
2174
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
2175
|
+
} | undefined;
|
|
2176
|
+
requires_username?: boolean | undefined;
|
|
1756
2177
|
}, {
|
|
2178
|
+
validation?: {
|
|
2179
|
+
username?: {
|
|
2180
|
+
min?: number | undefined;
|
|
2181
|
+
max?: number | undefined;
|
|
2182
|
+
} | undefined;
|
|
2183
|
+
} | undefined;
|
|
1757
2184
|
provider?: string | undefined;
|
|
1758
2185
|
client_id?: string | undefined;
|
|
1759
2186
|
client_secret?: string | undefined;
|
|
@@ -1788,6 +2215,67 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1788
2215
|
enable?: boolean | undefined;
|
|
1789
2216
|
dictionary?: string[] | undefined;
|
|
1790
2217
|
} | undefined;
|
|
2218
|
+
disable_signup?: boolean | undefined;
|
|
2219
|
+
brute_force_protection?: boolean | undefined;
|
|
2220
|
+
import_mode?: boolean | undefined;
|
|
2221
|
+
attributes?: {
|
|
2222
|
+
email?: {
|
|
2223
|
+
validation?: {
|
|
2224
|
+
allowed?: boolean | undefined;
|
|
2225
|
+
} | undefined;
|
|
2226
|
+
identifier?: {
|
|
2227
|
+
active?: boolean | undefined;
|
|
2228
|
+
} | undefined;
|
|
2229
|
+
signup?: {
|
|
2230
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2231
|
+
verification?: {
|
|
2232
|
+
active?: boolean | undefined;
|
|
2233
|
+
} | undefined;
|
|
2234
|
+
} | undefined;
|
|
2235
|
+
unique?: boolean | undefined;
|
|
2236
|
+
profile_required?: boolean | undefined;
|
|
2237
|
+
verification_method?: "code" | "link" | undefined;
|
|
2238
|
+
} | undefined;
|
|
2239
|
+
username?: {
|
|
2240
|
+
validation?: {
|
|
2241
|
+
min_length?: number | undefined;
|
|
2242
|
+
max_length?: number | undefined;
|
|
2243
|
+
allowed_types?: {
|
|
2244
|
+
email?: boolean | undefined;
|
|
2245
|
+
phone_number?: boolean | undefined;
|
|
2246
|
+
} | undefined;
|
|
2247
|
+
} | undefined;
|
|
2248
|
+
identifier?: {
|
|
2249
|
+
active?: boolean | undefined;
|
|
2250
|
+
} | undefined;
|
|
2251
|
+
signup?: {
|
|
2252
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2253
|
+
} | undefined;
|
|
2254
|
+
profile_required?: boolean | undefined;
|
|
2255
|
+
} | undefined;
|
|
2256
|
+
phone_number?: {
|
|
2257
|
+
identifier?: {
|
|
2258
|
+
active?: boolean | undefined;
|
|
2259
|
+
} | undefined;
|
|
2260
|
+
signup?: {
|
|
2261
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2262
|
+
} | undefined;
|
|
2263
|
+
} | undefined;
|
|
2264
|
+
} | undefined;
|
|
2265
|
+
authentication_methods?: {
|
|
2266
|
+
password?: {
|
|
2267
|
+
enabled?: boolean | undefined;
|
|
2268
|
+
} | undefined;
|
|
2269
|
+
passkey?: {
|
|
2270
|
+
enabled?: boolean | undefined;
|
|
2271
|
+
} | undefined;
|
|
2272
|
+
} | undefined;
|
|
2273
|
+
passkey_options?: {
|
|
2274
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
2275
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
2276
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
2277
|
+
} | undefined;
|
|
2278
|
+
requires_username?: boolean | undefined;
|
|
1791
2279
|
}>>;
|
|
1792
2280
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1793
2281
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -1798,6 +2286,12 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1798
2286
|
is_system: z.ZodOptional<z.ZodBoolean>;
|
|
1799
2287
|
}, "strip", z.ZodTypeAny, {
|
|
1800
2288
|
options: {
|
|
2289
|
+
validation?: {
|
|
2290
|
+
username?: {
|
|
2291
|
+
min?: number | undefined;
|
|
2292
|
+
max?: number | undefined;
|
|
2293
|
+
} | undefined;
|
|
2294
|
+
} | undefined;
|
|
1801
2295
|
provider?: string | undefined;
|
|
1802
2296
|
client_id?: string | undefined;
|
|
1803
2297
|
client_secret?: string | undefined;
|
|
@@ -1832,6 +2326,67 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1832
2326
|
enable?: boolean | undefined;
|
|
1833
2327
|
dictionary?: string[] | undefined;
|
|
1834
2328
|
} | undefined;
|
|
2329
|
+
disable_signup?: boolean | undefined;
|
|
2330
|
+
brute_force_protection?: boolean | undefined;
|
|
2331
|
+
import_mode?: boolean | undefined;
|
|
2332
|
+
attributes?: {
|
|
2333
|
+
email?: {
|
|
2334
|
+
validation?: {
|
|
2335
|
+
allowed?: boolean | undefined;
|
|
2336
|
+
} | undefined;
|
|
2337
|
+
identifier?: {
|
|
2338
|
+
active?: boolean | undefined;
|
|
2339
|
+
} | undefined;
|
|
2340
|
+
signup?: {
|
|
2341
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2342
|
+
verification?: {
|
|
2343
|
+
active?: boolean | undefined;
|
|
2344
|
+
} | undefined;
|
|
2345
|
+
} | undefined;
|
|
2346
|
+
unique?: boolean | undefined;
|
|
2347
|
+
profile_required?: boolean | undefined;
|
|
2348
|
+
verification_method?: "code" | "link" | undefined;
|
|
2349
|
+
} | undefined;
|
|
2350
|
+
username?: {
|
|
2351
|
+
validation?: {
|
|
2352
|
+
min_length?: number | undefined;
|
|
2353
|
+
max_length?: number | undefined;
|
|
2354
|
+
allowed_types?: {
|
|
2355
|
+
email?: boolean | undefined;
|
|
2356
|
+
phone_number?: boolean | undefined;
|
|
2357
|
+
} | undefined;
|
|
2358
|
+
} | undefined;
|
|
2359
|
+
identifier?: {
|
|
2360
|
+
active?: boolean | undefined;
|
|
2361
|
+
} | undefined;
|
|
2362
|
+
signup?: {
|
|
2363
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2364
|
+
} | undefined;
|
|
2365
|
+
profile_required?: boolean | undefined;
|
|
2366
|
+
} | undefined;
|
|
2367
|
+
phone_number?: {
|
|
2368
|
+
identifier?: {
|
|
2369
|
+
active?: boolean | undefined;
|
|
2370
|
+
} | undefined;
|
|
2371
|
+
signup?: {
|
|
2372
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2373
|
+
} | undefined;
|
|
2374
|
+
} | undefined;
|
|
2375
|
+
} | undefined;
|
|
2376
|
+
authentication_methods?: {
|
|
2377
|
+
password?: {
|
|
2378
|
+
enabled?: boolean | undefined;
|
|
2379
|
+
} | undefined;
|
|
2380
|
+
passkey?: {
|
|
2381
|
+
enabled?: boolean | undefined;
|
|
2382
|
+
} | undefined;
|
|
2383
|
+
} | undefined;
|
|
2384
|
+
passkey_options?: {
|
|
2385
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
2386
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
2387
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
2388
|
+
} | undefined;
|
|
2389
|
+
requires_username?: boolean | undefined;
|
|
1835
2390
|
};
|
|
1836
2391
|
name: string;
|
|
1837
2392
|
strategy: string;
|
|
@@ -1848,6 +2403,12 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1848
2403
|
name: string;
|
|
1849
2404
|
strategy: string;
|
|
1850
2405
|
options?: {
|
|
2406
|
+
validation?: {
|
|
2407
|
+
username?: {
|
|
2408
|
+
min?: number | undefined;
|
|
2409
|
+
max?: number | undefined;
|
|
2410
|
+
} | undefined;
|
|
2411
|
+
} | undefined;
|
|
1851
2412
|
provider?: string | undefined;
|
|
1852
2413
|
client_id?: string | undefined;
|
|
1853
2414
|
client_secret?: string | undefined;
|
|
@@ -1882,6 +2443,67 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1882
2443
|
enable?: boolean | undefined;
|
|
1883
2444
|
dictionary?: string[] | undefined;
|
|
1884
2445
|
} | undefined;
|
|
2446
|
+
disable_signup?: boolean | undefined;
|
|
2447
|
+
brute_force_protection?: boolean | undefined;
|
|
2448
|
+
import_mode?: boolean | undefined;
|
|
2449
|
+
attributes?: {
|
|
2450
|
+
email?: {
|
|
2451
|
+
validation?: {
|
|
2452
|
+
allowed?: boolean | undefined;
|
|
2453
|
+
} | undefined;
|
|
2454
|
+
identifier?: {
|
|
2455
|
+
active?: boolean | undefined;
|
|
2456
|
+
} | undefined;
|
|
2457
|
+
signup?: {
|
|
2458
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2459
|
+
verification?: {
|
|
2460
|
+
active?: boolean | undefined;
|
|
2461
|
+
} | undefined;
|
|
2462
|
+
} | undefined;
|
|
2463
|
+
unique?: boolean | undefined;
|
|
2464
|
+
profile_required?: boolean | undefined;
|
|
2465
|
+
verification_method?: "code" | "link" | undefined;
|
|
2466
|
+
} | undefined;
|
|
2467
|
+
username?: {
|
|
2468
|
+
validation?: {
|
|
2469
|
+
min_length?: number | undefined;
|
|
2470
|
+
max_length?: number | undefined;
|
|
2471
|
+
allowed_types?: {
|
|
2472
|
+
email?: boolean | undefined;
|
|
2473
|
+
phone_number?: boolean | undefined;
|
|
2474
|
+
} | undefined;
|
|
2475
|
+
} | undefined;
|
|
2476
|
+
identifier?: {
|
|
2477
|
+
active?: boolean | undefined;
|
|
2478
|
+
} | undefined;
|
|
2479
|
+
signup?: {
|
|
2480
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2481
|
+
} | undefined;
|
|
2482
|
+
profile_required?: boolean | undefined;
|
|
2483
|
+
} | undefined;
|
|
2484
|
+
phone_number?: {
|
|
2485
|
+
identifier?: {
|
|
2486
|
+
active?: boolean | undefined;
|
|
2487
|
+
} | undefined;
|
|
2488
|
+
signup?: {
|
|
2489
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2490
|
+
} | undefined;
|
|
2491
|
+
} | undefined;
|
|
2492
|
+
} | undefined;
|
|
2493
|
+
authentication_methods?: {
|
|
2494
|
+
password?: {
|
|
2495
|
+
enabled?: boolean | undefined;
|
|
2496
|
+
} | undefined;
|
|
2497
|
+
passkey?: {
|
|
2498
|
+
enabled?: boolean | undefined;
|
|
2499
|
+
} | undefined;
|
|
2500
|
+
} | undefined;
|
|
2501
|
+
passkey_options?: {
|
|
2502
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
2503
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
2504
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
2505
|
+
} | undefined;
|
|
2506
|
+
requires_username?: boolean | undefined;
|
|
1885
2507
|
} | undefined;
|
|
1886
2508
|
id?: string | undefined;
|
|
1887
2509
|
is_system?: boolean | undefined;
|
|
@@ -1963,7 +2585,367 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1963
2585
|
enable?: boolean | undefined;
|
|
1964
2586
|
dictionary?: string[] | undefined;
|
|
1965
2587
|
}>>;
|
|
2588
|
+
disable_signup: z.ZodOptional<z.ZodBoolean>;
|
|
2589
|
+
brute_force_protection: z.ZodOptional<z.ZodBoolean>;
|
|
2590
|
+
import_mode: z.ZodOptional<z.ZodBoolean>;
|
|
2591
|
+
attributes: z.ZodOptional<z.ZodObject<{
|
|
2592
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
2593
|
+
identifier: z.ZodOptional<z.ZodObject<{
|
|
2594
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
2595
|
+
}, "strip", z.ZodTypeAny, {
|
|
2596
|
+
active?: boolean | undefined;
|
|
2597
|
+
}, {
|
|
2598
|
+
active?: boolean | undefined;
|
|
2599
|
+
}>>;
|
|
2600
|
+
signup: z.ZodOptional<z.ZodObject<{
|
|
2601
|
+
status: z.ZodOptional<z.ZodEnum<[
|
|
2602
|
+
"required",
|
|
2603
|
+
"optional",
|
|
2604
|
+
"disabled"
|
|
2605
|
+
]>>;
|
|
2606
|
+
verification: z.ZodOptional<z.ZodObject<{
|
|
2607
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
2608
|
+
}, "strip", z.ZodTypeAny, {
|
|
2609
|
+
active?: boolean | undefined;
|
|
2610
|
+
}, {
|
|
2611
|
+
active?: boolean | undefined;
|
|
2612
|
+
}>>;
|
|
2613
|
+
}, "strip", z.ZodTypeAny, {
|
|
2614
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2615
|
+
verification?: {
|
|
2616
|
+
active?: boolean | undefined;
|
|
2617
|
+
} | undefined;
|
|
2618
|
+
}, {
|
|
2619
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2620
|
+
verification?: {
|
|
2621
|
+
active?: boolean | undefined;
|
|
2622
|
+
} | undefined;
|
|
2623
|
+
}>>;
|
|
2624
|
+
validation: z.ZodOptional<z.ZodObject<{
|
|
2625
|
+
allowed: z.ZodOptional<z.ZodBoolean>;
|
|
2626
|
+
}, "strip", z.ZodTypeAny, {
|
|
2627
|
+
allowed?: boolean | undefined;
|
|
2628
|
+
}, {
|
|
2629
|
+
allowed?: boolean | undefined;
|
|
2630
|
+
}>>;
|
|
2631
|
+
unique: z.ZodOptional<z.ZodBoolean>;
|
|
2632
|
+
profile_required: z.ZodOptional<z.ZodBoolean>;
|
|
2633
|
+
verification_method: z.ZodOptional<z.ZodEnum<[
|
|
2634
|
+
"link",
|
|
2635
|
+
"code"
|
|
2636
|
+
]>>;
|
|
2637
|
+
}, "strip", z.ZodTypeAny, {
|
|
2638
|
+
validation?: {
|
|
2639
|
+
allowed?: boolean | undefined;
|
|
2640
|
+
} | undefined;
|
|
2641
|
+
identifier?: {
|
|
2642
|
+
active?: boolean | undefined;
|
|
2643
|
+
} | undefined;
|
|
2644
|
+
signup?: {
|
|
2645
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2646
|
+
verification?: {
|
|
2647
|
+
active?: boolean | undefined;
|
|
2648
|
+
} | undefined;
|
|
2649
|
+
} | undefined;
|
|
2650
|
+
unique?: boolean | undefined;
|
|
2651
|
+
profile_required?: boolean | undefined;
|
|
2652
|
+
verification_method?: "code" | "link" | undefined;
|
|
2653
|
+
}, {
|
|
2654
|
+
validation?: {
|
|
2655
|
+
allowed?: boolean | undefined;
|
|
2656
|
+
} | undefined;
|
|
2657
|
+
identifier?: {
|
|
2658
|
+
active?: boolean | undefined;
|
|
2659
|
+
} | undefined;
|
|
2660
|
+
signup?: {
|
|
2661
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2662
|
+
verification?: {
|
|
2663
|
+
active?: boolean | undefined;
|
|
2664
|
+
} | undefined;
|
|
2665
|
+
} | undefined;
|
|
2666
|
+
unique?: boolean | undefined;
|
|
2667
|
+
profile_required?: boolean | undefined;
|
|
2668
|
+
verification_method?: "code" | "link" | undefined;
|
|
2669
|
+
}>>;
|
|
2670
|
+
username: z.ZodOptional<z.ZodObject<{
|
|
2671
|
+
identifier: z.ZodOptional<z.ZodObject<{
|
|
2672
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
2673
|
+
}, "strip", z.ZodTypeAny, {
|
|
2674
|
+
active?: boolean | undefined;
|
|
2675
|
+
}, {
|
|
2676
|
+
active?: boolean | undefined;
|
|
2677
|
+
}>>;
|
|
2678
|
+
signup: z.ZodOptional<z.ZodObject<{
|
|
2679
|
+
status: z.ZodOptional<z.ZodEnum<[
|
|
2680
|
+
"required",
|
|
2681
|
+
"optional",
|
|
2682
|
+
"disabled"
|
|
2683
|
+
]>>;
|
|
2684
|
+
}, "strip", z.ZodTypeAny, {
|
|
2685
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2686
|
+
}, {
|
|
2687
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2688
|
+
}>>;
|
|
2689
|
+
validation: z.ZodOptional<z.ZodObject<{
|
|
2690
|
+
max_length: z.ZodOptional<z.ZodNumber>;
|
|
2691
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
2692
|
+
allowed_types: z.ZodOptional<z.ZodObject<{
|
|
2693
|
+
email: z.ZodOptional<z.ZodBoolean>;
|
|
2694
|
+
phone_number: z.ZodOptional<z.ZodBoolean>;
|
|
2695
|
+
}, "strip", z.ZodTypeAny, {
|
|
2696
|
+
email?: boolean | undefined;
|
|
2697
|
+
phone_number?: boolean | undefined;
|
|
2698
|
+
}, {
|
|
2699
|
+
email?: boolean | undefined;
|
|
2700
|
+
phone_number?: boolean | undefined;
|
|
2701
|
+
}>>;
|
|
2702
|
+
}, "strip", z.ZodTypeAny, {
|
|
2703
|
+
min_length?: number | undefined;
|
|
2704
|
+
max_length?: number | undefined;
|
|
2705
|
+
allowed_types?: {
|
|
2706
|
+
email?: boolean | undefined;
|
|
2707
|
+
phone_number?: boolean | undefined;
|
|
2708
|
+
} | undefined;
|
|
2709
|
+
}, {
|
|
2710
|
+
min_length?: number | undefined;
|
|
2711
|
+
max_length?: number | undefined;
|
|
2712
|
+
allowed_types?: {
|
|
2713
|
+
email?: boolean | undefined;
|
|
2714
|
+
phone_number?: boolean | undefined;
|
|
2715
|
+
} | undefined;
|
|
2716
|
+
}>>;
|
|
2717
|
+
profile_required: z.ZodOptional<z.ZodBoolean>;
|
|
2718
|
+
}, "strip", z.ZodTypeAny, {
|
|
2719
|
+
validation?: {
|
|
2720
|
+
min_length?: number | undefined;
|
|
2721
|
+
max_length?: number | undefined;
|
|
2722
|
+
allowed_types?: {
|
|
2723
|
+
email?: boolean | undefined;
|
|
2724
|
+
phone_number?: boolean | undefined;
|
|
2725
|
+
} | undefined;
|
|
2726
|
+
} | undefined;
|
|
2727
|
+
identifier?: {
|
|
2728
|
+
active?: boolean | undefined;
|
|
2729
|
+
} | undefined;
|
|
2730
|
+
signup?: {
|
|
2731
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2732
|
+
} | undefined;
|
|
2733
|
+
profile_required?: boolean | undefined;
|
|
2734
|
+
}, {
|
|
2735
|
+
validation?: {
|
|
2736
|
+
min_length?: number | undefined;
|
|
2737
|
+
max_length?: number | undefined;
|
|
2738
|
+
allowed_types?: {
|
|
2739
|
+
email?: boolean | undefined;
|
|
2740
|
+
phone_number?: boolean | undefined;
|
|
2741
|
+
} | undefined;
|
|
2742
|
+
} | undefined;
|
|
2743
|
+
identifier?: {
|
|
2744
|
+
active?: boolean | undefined;
|
|
2745
|
+
} | undefined;
|
|
2746
|
+
signup?: {
|
|
2747
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2748
|
+
} | undefined;
|
|
2749
|
+
profile_required?: boolean | undefined;
|
|
2750
|
+
}>>;
|
|
2751
|
+
phone_number: z.ZodOptional<z.ZodObject<{
|
|
2752
|
+
identifier: z.ZodOptional<z.ZodObject<{
|
|
2753
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
2754
|
+
}, "strip", z.ZodTypeAny, {
|
|
2755
|
+
active?: boolean | undefined;
|
|
2756
|
+
}, {
|
|
2757
|
+
active?: boolean | undefined;
|
|
2758
|
+
}>>;
|
|
2759
|
+
signup: z.ZodOptional<z.ZodObject<{
|
|
2760
|
+
status: z.ZodOptional<z.ZodEnum<[
|
|
2761
|
+
"required",
|
|
2762
|
+
"optional",
|
|
2763
|
+
"disabled"
|
|
2764
|
+
]>>;
|
|
2765
|
+
}, "strip", z.ZodTypeAny, {
|
|
2766
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2767
|
+
}, {
|
|
2768
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2769
|
+
}>>;
|
|
2770
|
+
}, "strip", z.ZodTypeAny, {
|
|
2771
|
+
identifier?: {
|
|
2772
|
+
active?: boolean | undefined;
|
|
2773
|
+
} | undefined;
|
|
2774
|
+
signup?: {
|
|
2775
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2776
|
+
} | undefined;
|
|
2777
|
+
}, {
|
|
2778
|
+
identifier?: {
|
|
2779
|
+
active?: boolean | undefined;
|
|
2780
|
+
} | undefined;
|
|
2781
|
+
signup?: {
|
|
2782
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2783
|
+
} | undefined;
|
|
2784
|
+
}>>;
|
|
2785
|
+
}, "strip", z.ZodTypeAny, {
|
|
2786
|
+
email?: {
|
|
2787
|
+
validation?: {
|
|
2788
|
+
allowed?: boolean | undefined;
|
|
2789
|
+
} | undefined;
|
|
2790
|
+
identifier?: {
|
|
2791
|
+
active?: boolean | undefined;
|
|
2792
|
+
} | undefined;
|
|
2793
|
+
signup?: {
|
|
2794
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2795
|
+
verification?: {
|
|
2796
|
+
active?: boolean | undefined;
|
|
2797
|
+
} | undefined;
|
|
2798
|
+
} | undefined;
|
|
2799
|
+
unique?: boolean | undefined;
|
|
2800
|
+
profile_required?: boolean | undefined;
|
|
2801
|
+
verification_method?: "code" | "link" | undefined;
|
|
2802
|
+
} | undefined;
|
|
2803
|
+
username?: {
|
|
2804
|
+
validation?: {
|
|
2805
|
+
min_length?: number | undefined;
|
|
2806
|
+
max_length?: number | undefined;
|
|
2807
|
+
allowed_types?: {
|
|
2808
|
+
email?: boolean | undefined;
|
|
2809
|
+
phone_number?: boolean | undefined;
|
|
2810
|
+
} | undefined;
|
|
2811
|
+
} | undefined;
|
|
2812
|
+
identifier?: {
|
|
2813
|
+
active?: boolean | undefined;
|
|
2814
|
+
} | undefined;
|
|
2815
|
+
signup?: {
|
|
2816
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2817
|
+
} | undefined;
|
|
2818
|
+
profile_required?: boolean | undefined;
|
|
2819
|
+
} | undefined;
|
|
2820
|
+
phone_number?: {
|
|
2821
|
+
identifier?: {
|
|
2822
|
+
active?: boolean | undefined;
|
|
2823
|
+
} | undefined;
|
|
2824
|
+
signup?: {
|
|
2825
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2826
|
+
} | undefined;
|
|
2827
|
+
} | undefined;
|
|
2828
|
+
}, {
|
|
2829
|
+
email?: {
|
|
2830
|
+
validation?: {
|
|
2831
|
+
allowed?: boolean | undefined;
|
|
2832
|
+
} | undefined;
|
|
2833
|
+
identifier?: {
|
|
2834
|
+
active?: boolean | undefined;
|
|
2835
|
+
} | undefined;
|
|
2836
|
+
signup?: {
|
|
2837
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2838
|
+
verification?: {
|
|
2839
|
+
active?: boolean | undefined;
|
|
2840
|
+
} | undefined;
|
|
2841
|
+
} | undefined;
|
|
2842
|
+
unique?: boolean | undefined;
|
|
2843
|
+
profile_required?: boolean | undefined;
|
|
2844
|
+
verification_method?: "code" | "link" | undefined;
|
|
2845
|
+
} | undefined;
|
|
2846
|
+
username?: {
|
|
2847
|
+
validation?: {
|
|
2848
|
+
min_length?: number | undefined;
|
|
2849
|
+
max_length?: number | undefined;
|
|
2850
|
+
allowed_types?: {
|
|
2851
|
+
email?: boolean | undefined;
|
|
2852
|
+
phone_number?: boolean | undefined;
|
|
2853
|
+
} | undefined;
|
|
2854
|
+
} | undefined;
|
|
2855
|
+
identifier?: {
|
|
2856
|
+
active?: boolean | undefined;
|
|
2857
|
+
} | undefined;
|
|
2858
|
+
signup?: {
|
|
2859
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2860
|
+
} | undefined;
|
|
2861
|
+
profile_required?: boolean | undefined;
|
|
2862
|
+
} | undefined;
|
|
2863
|
+
phone_number?: {
|
|
2864
|
+
identifier?: {
|
|
2865
|
+
active?: boolean | undefined;
|
|
2866
|
+
} | undefined;
|
|
2867
|
+
signup?: {
|
|
2868
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2869
|
+
} | undefined;
|
|
2870
|
+
} | undefined;
|
|
2871
|
+
}>>;
|
|
2872
|
+
authentication_methods: z.ZodOptional<z.ZodObject<{
|
|
2873
|
+
password: z.ZodOptional<z.ZodObject<{
|
|
2874
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2875
|
+
}, "strip", z.ZodTypeAny, {
|
|
2876
|
+
enabled?: boolean | undefined;
|
|
2877
|
+
}, {
|
|
2878
|
+
enabled?: boolean | undefined;
|
|
2879
|
+
}>>;
|
|
2880
|
+
passkey: z.ZodOptional<z.ZodObject<{
|
|
2881
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2882
|
+
}, "strip", z.ZodTypeAny, {
|
|
2883
|
+
enabled?: boolean | undefined;
|
|
2884
|
+
}, {
|
|
2885
|
+
enabled?: boolean | undefined;
|
|
2886
|
+
}>>;
|
|
2887
|
+
}, "strip", z.ZodTypeAny, {
|
|
2888
|
+
password?: {
|
|
2889
|
+
enabled?: boolean | undefined;
|
|
2890
|
+
} | undefined;
|
|
2891
|
+
passkey?: {
|
|
2892
|
+
enabled?: boolean | undefined;
|
|
2893
|
+
} | undefined;
|
|
2894
|
+
}, {
|
|
2895
|
+
password?: {
|
|
2896
|
+
enabled?: boolean | undefined;
|
|
2897
|
+
} | undefined;
|
|
2898
|
+
passkey?: {
|
|
2899
|
+
enabled?: boolean | undefined;
|
|
2900
|
+
} | undefined;
|
|
2901
|
+
}>>;
|
|
2902
|
+
passkey_options: z.ZodOptional<z.ZodObject<{
|
|
2903
|
+
challenge_ui: z.ZodOptional<z.ZodEnum<[
|
|
2904
|
+
"both",
|
|
2905
|
+
"autofill",
|
|
2906
|
+
"button"
|
|
2907
|
+
]>>;
|
|
2908
|
+
local_enrollment_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2909
|
+
progressive_enrollment_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2910
|
+
}, "strip", z.ZodTypeAny, {
|
|
2911
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
2912
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
2913
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
2914
|
+
}, {
|
|
2915
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
2916
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
2917
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
2918
|
+
}>>;
|
|
2919
|
+
requires_username: z.ZodOptional<z.ZodBoolean>;
|
|
2920
|
+
validation: z.ZodOptional<z.ZodObject<{
|
|
2921
|
+
username: z.ZodOptional<z.ZodObject<{
|
|
2922
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2923
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2924
|
+
}, "strip", z.ZodTypeAny, {
|
|
2925
|
+
min?: number | undefined;
|
|
2926
|
+
max?: number | undefined;
|
|
2927
|
+
}, {
|
|
2928
|
+
min?: number | undefined;
|
|
2929
|
+
max?: number | undefined;
|
|
2930
|
+
}>>;
|
|
2931
|
+
}, "strip", z.ZodTypeAny, {
|
|
2932
|
+
username?: {
|
|
2933
|
+
min?: number | undefined;
|
|
2934
|
+
max?: number | undefined;
|
|
2935
|
+
} | undefined;
|
|
2936
|
+
}, {
|
|
2937
|
+
username?: {
|
|
2938
|
+
min?: number | undefined;
|
|
2939
|
+
max?: number | undefined;
|
|
2940
|
+
} | undefined;
|
|
2941
|
+
}>>;
|
|
1966
2942
|
}, "strip", z.ZodTypeAny, {
|
|
2943
|
+
validation?: {
|
|
2944
|
+
username?: {
|
|
2945
|
+
min?: number | undefined;
|
|
2946
|
+
max?: number | undefined;
|
|
2947
|
+
} | undefined;
|
|
2948
|
+
} | undefined;
|
|
1967
2949
|
provider?: string | undefined;
|
|
1968
2950
|
client_id?: string | undefined;
|
|
1969
2951
|
client_secret?: string | undefined;
|
|
@@ -1991,14 +2973,81 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1991
2973
|
enable?: boolean | undefined;
|
|
1992
2974
|
size?: number | undefined;
|
|
1993
2975
|
} | undefined;
|
|
1994
|
-
password_no_personal_info?: {
|
|
1995
|
-
enable?: boolean | undefined;
|
|
2976
|
+
password_no_personal_info?: {
|
|
2977
|
+
enable?: boolean | undefined;
|
|
2978
|
+
} | undefined;
|
|
2979
|
+
password_dictionary?: {
|
|
2980
|
+
enable?: boolean | undefined;
|
|
2981
|
+
dictionary?: string[] | undefined;
|
|
2982
|
+
} | undefined;
|
|
2983
|
+
disable_signup?: boolean | undefined;
|
|
2984
|
+
brute_force_protection?: boolean | undefined;
|
|
2985
|
+
import_mode?: boolean | undefined;
|
|
2986
|
+
attributes?: {
|
|
2987
|
+
email?: {
|
|
2988
|
+
validation?: {
|
|
2989
|
+
allowed?: boolean | undefined;
|
|
2990
|
+
} | undefined;
|
|
2991
|
+
identifier?: {
|
|
2992
|
+
active?: boolean | undefined;
|
|
2993
|
+
} | undefined;
|
|
2994
|
+
signup?: {
|
|
2995
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
2996
|
+
verification?: {
|
|
2997
|
+
active?: boolean | undefined;
|
|
2998
|
+
} | undefined;
|
|
2999
|
+
} | undefined;
|
|
3000
|
+
unique?: boolean | undefined;
|
|
3001
|
+
profile_required?: boolean | undefined;
|
|
3002
|
+
verification_method?: "code" | "link" | undefined;
|
|
3003
|
+
} | undefined;
|
|
3004
|
+
username?: {
|
|
3005
|
+
validation?: {
|
|
3006
|
+
min_length?: number | undefined;
|
|
3007
|
+
max_length?: number | undefined;
|
|
3008
|
+
allowed_types?: {
|
|
3009
|
+
email?: boolean | undefined;
|
|
3010
|
+
phone_number?: boolean | undefined;
|
|
3011
|
+
} | undefined;
|
|
3012
|
+
} | undefined;
|
|
3013
|
+
identifier?: {
|
|
3014
|
+
active?: boolean | undefined;
|
|
3015
|
+
} | undefined;
|
|
3016
|
+
signup?: {
|
|
3017
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3018
|
+
} | undefined;
|
|
3019
|
+
profile_required?: boolean | undefined;
|
|
3020
|
+
} | undefined;
|
|
3021
|
+
phone_number?: {
|
|
3022
|
+
identifier?: {
|
|
3023
|
+
active?: boolean | undefined;
|
|
3024
|
+
} | undefined;
|
|
3025
|
+
signup?: {
|
|
3026
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3027
|
+
} | undefined;
|
|
3028
|
+
} | undefined;
|
|
3029
|
+
} | undefined;
|
|
3030
|
+
authentication_methods?: {
|
|
3031
|
+
password?: {
|
|
3032
|
+
enabled?: boolean | undefined;
|
|
3033
|
+
} | undefined;
|
|
3034
|
+
passkey?: {
|
|
3035
|
+
enabled?: boolean | undefined;
|
|
3036
|
+
} | undefined;
|
|
1996
3037
|
} | undefined;
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
3038
|
+
passkey_options?: {
|
|
3039
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
3040
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
3041
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
2000
3042
|
} | undefined;
|
|
3043
|
+
requires_username?: boolean | undefined;
|
|
2001
3044
|
}, {
|
|
3045
|
+
validation?: {
|
|
3046
|
+
username?: {
|
|
3047
|
+
min?: number | undefined;
|
|
3048
|
+
max?: number | undefined;
|
|
3049
|
+
} | undefined;
|
|
3050
|
+
} | undefined;
|
|
2002
3051
|
provider?: string | undefined;
|
|
2003
3052
|
client_id?: string | undefined;
|
|
2004
3053
|
client_secret?: string | undefined;
|
|
@@ -2033,6 +3082,67 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
2033
3082
|
enable?: boolean | undefined;
|
|
2034
3083
|
dictionary?: string[] | undefined;
|
|
2035
3084
|
} | undefined;
|
|
3085
|
+
disable_signup?: boolean | undefined;
|
|
3086
|
+
brute_force_protection?: boolean | undefined;
|
|
3087
|
+
import_mode?: boolean | undefined;
|
|
3088
|
+
attributes?: {
|
|
3089
|
+
email?: {
|
|
3090
|
+
validation?: {
|
|
3091
|
+
allowed?: boolean | undefined;
|
|
3092
|
+
} | undefined;
|
|
3093
|
+
identifier?: {
|
|
3094
|
+
active?: boolean | undefined;
|
|
3095
|
+
} | undefined;
|
|
3096
|
+
signup?: {
|
|
3097
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3098
|
+
verification?: {
|
|
3099
|
+
active?: boolean | undefined;
|
|
3100
|
+
} | undefined;
|
|
3101
|
+
} | undefined;
|
|
3102
|
+
unique?: boolean | undefined;
|
|
3103
|
+
profile_required?: boolean | undefined;
|
|
3104
|
+
verification_method?: "code" | "link" | undefined;
|
|
3105
|
+
} | undefined;
|
|
3106
|
+
username?: {
|
|
3107
|
+
validation?: {
|
|
3108
|
+
min_length?: number | undefined;
|
|
3109
|
+
max_length?: number | undefined;
|
|
3110
|
+
allowed_types?: {
|
|
3111
|
+
email?: boolean | undefined;
|
|
3112
|
+
phone_number?: boolean | undefined;
|
|
3113
|
+
} | undefined;
|
|
3114
|
+
} | undefined;
|
|
3115
|
+
identifier?: {
|
|
3116
|
+
active?: boolean | undefined;
|
|
3117
|
+
} | undefined;
|
|
3118
|
+
signup?: {
|
|
3119
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3120
|
+
} | undefined;
|
|
3121
|
+
profile_required?: boolean | undefined;
|
|
3122
|
+
} | undefined;
|
|
3123
|
+
phone_number?: {
|
|
3124
|
+
identifier?: {
|
|
3125
|
+
active?: boolean | undefined;
|
|
3126
|
+
} | undefined;
|
|
3127
|
+
signup?: {
|
|
3128
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3129
|
+
} | undefined;
|
|
3130
|
+
} | undefined;
|
|
3131
|
+
} | undefined;
|
|
3132
|
+
authentication_methods?: {
|
|
3133
|
+
password?: {
|
|
3134
|
+
enabled?: boolean | undefined;
|
|
3135
|
+
} | undefined;
|
|
3136
|
+
passkey?: {
|
|
3137
|
+
enabled?: boolean | undefined;
|
|
3138
|
+
} | undefined;
|
|
3139
|
+
} | undefined;
|
|
3140
|
+
passkey_options?: {
|
|
3141
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
3142
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
3143
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
3144
|
+
} | undefined;
|
|
3145
|
+
requires_username?: boolean | undefined;
|
|
2036
3146
|
}>>;
|
|
2037
3147
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
2038
3148
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -2045,6 +3155,12 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
2045
3155
|
created_at: string;
|
|
2046
3156
|
updated_at: string;
|
|
2047
3157
|
options: {
|
|
3158
|
+
validation?: {
|
|
3159
|
+
username?: {
|
|
3160
|
+
min?: number | undefined;
|
|
3161
|
+
max?: number | undefined;
|
|
3162
|
+
} | undefined;
|
|
3163
|
+
} | undefined;
|
|
2048
3164
|
provider?: string | undefined;
|
|
2049
3165
|
client_id?: string | undefined;
|
|
2050
3166
|
client_secret?: string | undefined;
|
|
@@ -2079,6 +3195,67 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
2079
3195
|
enable?: boolean | undefined;
|
|
2080
3196
|
dictionary?: string[] | undefined;
|
|
2081
3197
|
} | undefined;
|
|
3198
|
+
disable_signup?: boolean | undefined;
|
|
3199
|
+
brute_force_protection?: boolean | undefined;
|
|
3200
|
+
import_mode?: boolean | undefined;
|
|
3201
|
+
attributes?: {
|
|
3202
|
+
email?: {
|
|
3203
|
+
validation?: {
|
|
3204
|
+
allowed?: boolean | undefined;
|
|
3205
|
+
} | undefined;
|
|
3206
|
+
identifier?: {
|
|
3207
|
+
active?: boolean | undefined;
|
|
3208
|
+
} | undefined;
|
|
3209
|
+
signup?: {
|
|
3210
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3211
|
+
verification?: {
|
|
3212
|
+
active?: boolean | undefined;
|
|
3213
|
+
} | undefined;
|
|
3214
|
+
} | undefined;
|
|
3215
|
+
unique?: boolean | undefined;
|
|
3216
|
+
profile_required?: boolean | undefined;
|
|
3217
|
+
verification_method?: "code" | "link" | undefined;
|
|
3218
|
+
} | undefined;
|
|
3219
|
+
username?: {
|
|
3220
|
+
validation?: {
|
|
3221
|
+
min_length?: number | undefined;
|
|
3222
|
+
max_length?: number | undefined;
|
|
3223
|
+
allowed_types?: {
|
|
3224
|
+
email?: boolean | undefined;
|
|
3225
|
+
phone_number?: boolean | undefined;
|
|
3226
|
+
} | undefined;
|
|
3227
|
+
} | undefined;
|
|
3228
|
+
identifier?: {
|
|
3229
|
+
active?: boolean | undefined;
|
|
3230
|
+
} | undefined;
|
|
3231
|
+
signup?: {
|
|
3232
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3233
|
+
} | undefined;
|
|
3234
|
+
profile_required?: boolean | undefined;
|
|
3235
|
+
} | undefined;
|
|
3236
|
+
phone_number?: {
|
|
3237
|
+
identifier?: {
|
|
3238
|
+
active?: boolean | undefined;
|
|
3239
|
+
} | undefined;
|
|
3240
|
+
signup?: {
|
|
3241
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3242
|
+
} | undefined;
|
|
3243
|
+
} | undefined;
|
|
3244
|
+
} | undefined;
|
|
3245
|
+
authentication_methods?: {
|
|
3246
|
+
password?: {
|
|
3247
|
+
enabled?: boolean | undefined;
|
|
3248
|
+
} | undefined;
|
|
3249
|
+
passkey?: {
|
|
3250
|
+
enabled?: boolean | undefined;
|
|
3251
|
+
} | undefined;
|
|
3252
|
+
} | undefined;
|
|
3253
|
+
passkey_options?: {
|
|
3254
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
3255
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
3256
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
3257
|
+
} | undefined;
|
|
3258
|
+
requires_username?: boolean | undefined;
|
|
2082
3259
|
};
|
|
2083
3260
|
name: string;
|
|
2084
3261
|
strategy: string;
|
|
@@ -2097,6 +3274,12 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
2097
3274
|
name: string;
|
|
2098
3275
|
strategy: string;
|
|
2099
3276
|
options?: {
|
|
3277
|
+
validation?: {
|
|
3278
|
+
username?: {
|
|
3279
|
+
min?: number | undefined;
|
|
3280
|
+
max?: number | undefined;
|
|
3281
|
+
} | undefined;
|
|
3282
|
+
} | undefined;
|
|
2100
3283
|
provider?: string | undefined;
|
|
2101
3284
|
client_id?: string | undefined;
|
|
2102
3285
|
client_secret?: string | undefined;
|
|
@@ -2131,6 +3314,67 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
2131
3314
|
enable?: boolean | undefined;
|
|
2132
3315
|
dictionary?: string[] | undefined;
|
|
2133
3316
|
} | undefined;
|
|
3317
|
+
disable_signup?: boolean | undefined;
|
|
3318
|
+
brute_force_protection?: boolean | undefined;
|
|
3319
|
+
import_mode?: boolean | undefined;
|
|
3320
|
+
attributes?: {
|
|
3321
|
+
email?: {
|
|
3322
|
+
validation?: {
|
|
3323
|
+
allowed?: boolean | undefined;
|
|
3324
|
+
} | undefined;
|
|
3325
|
+
identifier?: {
|
|
3326
|
+
active?: boolean | undefined;
|
|
3327
|
+
} | undefined;
|
|
3328
|
+
signup?: {
|
|
3329
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3330
|
+
verification?: {
|
|
3331
|
+
active?: boolean | undefined;
|
|
3332
|
+
} | undefined;
|
|
3333
|
+
} | undefined;
|
|
3334
|
+
unique?: boolean | undefined;
|
|
3335
|
+
profile_required?: boolean | undefined;
|
|
3336
|
+
verification_method?: "code" | "link" | undefined;
|
|
3337
|
+
} | undefined;
|
|
3338
|
+
username?: {
|
|
3339
|
+
validation?: {
|
|
3340
|
+
min_length?: number | undefined;
|
|
3341
|
+
max_length?: number | undefined;
|
|
3342
|
+
allowed_types?: {
|
|
3343
|
+
email?: boolean | undefined;
|
|
3344
|
+
phone_number?: boolean | undefined;
|
|
3345
|
+
} | undefined;
|
|
3346
|
+
} | undefined;
|
|
3347
|
+
identifier?: {
|
|
3348
|
+
active?: boolean | undefined;
|
|
3349
|
+
} | undefined;
|
|
3350
|
+
signup?: {
|
|
3351
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3352
|
+
} | undefined;
|
|
3353
|
+
profile_required?: boolean | undefined;
|
|
3354
|
+
} | undefined;
|
|
3355
|
+
phone_number?: {
|
|
3356
|
+
identifier?: {
|
|
3357
|
+
active?: boolean | undefined;
|
|
3358
|
+
} | undefined;
|
|
3359
|
+
signup?: {
|
|
3360
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
3361
|
+
} | undefined;
|
|
3362
|
+
} | undefined;
|
|
3363
|
+
} | undefined;
|
|
3364
|
+
authentication_methods?: {
|
|
3365
|
+
password?: {
|
|
3366
|
+
enabled?: boolean | undefined;
|
|
3367
|
+
} | undefined;
|
|
3368
|
+
passkey?: {
|
|
3369
|
+
enabled?: boolean | undefined;
|
|
3370
|
+
} | undefined;
|
|
3371
|
+
} | undefined;
|
|
3372
|
+
passkey_options?: {
|
|
3373
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
3374
|
+
local_enrollment_enabled?: boolean | undefined;
|
|
3375
|
+
progressive_enrollment_enabled?: boolean | undefined;
|
|
3376
|
+
} | undefined;
|
|
3377
|
+
requires_username?: boolean | undefined;
|
|
2134
3378
|
} | undefined;
|
|
2135
3379
|
id?: string | undefined;
|
|
2136
3380
|
is_system?: boolean | undefined;
|
|
@@ -2167,16 +3411,16 @@ declare const customDomainInsertSchema: z.ZodObject<{
|
|
|
2167
3411
|
}, "strip", z.ZodTypeAny, {
|
|
2168
3412
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
2169
3413
|
domain: string;
|
|
2170
|
-
custom_domain_id?: string | undefined;
|
|
2171
3414
|
verification_method?: "txt" | undefined;
|
|
3415
|
+
custom_domain_id?: string | undefined;
|
|
2172
3416
|
tls_policy?: "recommended" | undefined;
|
|
2173
3417
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
2174
3418
|
domain_metadata?: Record<string, string> | undefined;
|
|
2175
3419
|
}, {
|
|
2176
3420
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
2177
3421
|
domain: string;
|
|
2178
|
-
custom_domain_id?: string | undefined;
|
|
2179
3422
|
verification_method?: "txt" | undefined;
|
|
3423
|
+
custom_domain_id?: string | undefined;
|
|
2180
3424
|
tls_policy?: "recommended" | undefined;
|
|
2181
3425
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
2182
3426
|
domain_metadata?: Record<string, string> | undefined;
|
|
@@ -2242,11 +3486,6 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
2242
3486
|
primary: boolean;
|
|
2243
3487
|
domain: string;
|
|
2244
3488
|
custom_domain_id: string;
|
|
2245
|
-
verification_method?: "txt" | undefined;
|
|
2246
|
-
tls_policy?: string | undefined;
|
|
2247
|
-
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
2248
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
2249
|
-
origin_domain_name?: string | undefined;
|
|
2250
3489
|
verification?: {
|
|
2251
3490
|
methods: {
|
|
2252
3491
|
name: "txt";
|
|
@@ -2254,17 +3493,17 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
2254
3493
|
record: string;
|
|
2255
3494
|
}[];
|
|
2256
3495
|
} | undefined;
|
|
3496
|
+
verification_method?: "txt" | undefined;
|
|
3497
|
+
tls_policy?: string | undefined;
|
|
3498
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
3499
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
3500
|
+
origin_domain_name?: string | undefined;
|
|
2257
3501
|
}, {
|
|
2258
3502
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
2259
3503
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
2260
3504
|
primary: boolean;
|
|
2261
3505
|
domain: string;
|
|
2262
3506
|
custom_domain_id: string;
|
|
2263
|
-
verification_method?: "txt" | undefined;
|
|
2264
|
-
tls_policy?: string | undefined;
|
|
2265
|
-
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
2266
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
2267
|
-
origin_domain_name?: string | undefined;
|
|
2268
3507
|
verification?: {
|
|
2269
3508
|
methods: {
|
|
2270
3509
|
name: "txt";
|
|
@@ -2272,6 +3511,11 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
2272
3511
|
record: string;
|
|
2273
3512
|
}[];
|
|
2274
3513
|
} | undefined;
|
|
3514
|
+
verification_method?: "txt" | undefined;
|
|
3515
|
+
tls_policy?: string | undefined;
|
|
3516
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
3517
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
3518
|
+
origin_domain_name?: string | undefined;
|
|
2275
3519
|
}>;
|
|
2276
3520
|
export type CustomDomain = z.infer<typeof customDomainSchema>;
|
|
2277
3521
|
declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
@@ -2337,11 +3581,6 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
2337
3581
|
domain: string;
|
|
2338
3582
|
custom_domain_id: string;
|
|
2339
3583
|
tenant_id: string;
|
|
2340
|
-
verification_method?: "txt" | undefined;
|
|
2341
|
-
tls_policy?: string | undefined;
|
|
2342
|
-
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
2343
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
2344
|
-
origin_domain_name?: string | undefined;
|
|
2345
3584
|
verification?: {
|
|
2346
3585
|
methods: {
|
|
2347
3586
|
name: "txt";
|
|
@@ -2349,6 +3588,11 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
2349
3588
|
record: string;
|
|
2350
3589
|
}[];
|
|
2351
3590
|
} | undefined;
|
|
3591
|
+
verification_method?: "txt" | undefined;
|
|
3592
|
+
tls_policy?: string | undefined;
|
|
3593
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
3594
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
3595
|
+
origin_domain_name?: string | undefined;
|
|
2352
3596
|
}, {
|
|
2353
3597
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
2354
3598
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
@@ -2356,11 +3600,6 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
2356
3600
|
domain: string;
|
|
2357
3601
|
custom_domain_id: string;
|
|
2358
3602
|
tenant_id: string;
|
|
2359
|
-
verification_method?: "txt" | undefined;
|
|
2360
|
-
tls_policy?: string | undefined;
|
|
2361
|
-
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
2362
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
2363
|
-
origin_domain_name?: string | undefined;
|
|
2364
3603
|
verification?: {
|
|
2365
3604
|
methods: {
|
|
2366
3605
|
name: "txt";
|
|
@@ -2368,6 +3607,11 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
2368
3607
|
record: string;
|
|
2369
3608
|
}[];
|
|
2370
3609
|
} | undefined;
|
|
3610
|
+
verification_method?: "txt" | undefined;
|
|
3611
|
+
tls_policy?: string | undefined;
|
|
3612
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
3613
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
3614
|
+
origin_domain_name?: string | undefined;
|
|
2371
3615
|
}>;
|
|
2372
3616
|
export type CustomDomainWithTenantId = z.infer<typeof customDomainWithTenantIdSchema>;
|
|
2373
3617
|
declare const formInsertSchema: z.ZodObject<{
|
|
@@ -3270,14 +4514,17 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3270
4514
|
format: z.ZodOptional<z.ZodString>;
|
|
3271
4515
|
min: z.ZodOptional<z.ZodString>;
|
|
3272
4516
|
max: z.ZodOptional<z.ZodString>;
|
|
4517
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
3273
4518
|
}, "strip", z.ZodTypeAny, {
|
|
3274
4519
|
format?: string | undefined;
|
|
3275
4520
|
min?: string | undefined;
|
|
3276
4521
|
max?: string | undefined;
|
|
4522
|
+
default_value?: string | undefined;
|
|
3277
4523
|
}, {
|
|
3278
4524
|
format?: string | undefined;
|
|
3279
4525
|
min?: string | undefined;
|
|
3280
4526
|
max?: string | undefined;
|
|
4527
|
+
default_value?: string | undefined;
|
|
3281
4528
|
}>>;
|
|
3282
4529
|
}, "strip", z.ZodTypeAny, {
|
|
3283
4530
|
type: "DATE";
|
|
@@ -3289,6 +4536,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3289
4536
|
format?: string | undefined;
|
|
3290
4537
|
min?: string | undefined;
|
|
3291
4538
|
max?: string | undefined;
|
|
4539
|
+
default_value?: string | undefined;
|
|
3292
4540
|
} | undefined;
|
|
3293
4541
|
sensitive?: boolean | undefined;
|
|
3294
4542
|
label?: string | undefined;
|
|
@@ -3303,6 +4551,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3303
4551
|
format?: string | undefined;
|
|
3304
4552
|
min?: string | undefined;
|
|
3305
4553
|
max?: string | undefined;
|
|
4554
|
+
default_value?: string | undefined;
|
|
3306
4555
|
} | undefined;
|
|
3307
4556
|
sensitive?: boolean | undefined;
|
|
3308
4557
|
label?: string | undefined;
|
|
@@ -3414,10 +4663,13 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3414
4663
|
type: z.ZodLiteral<"EMAIL">;
|
|
3415
4664
|
config: z.ZodOptional<z.ZodObject<{
|
|
3416
4665
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
4666
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
3417
4667
|
}, "strip", z.ZodTypeAny, {
|
|
3418
4668
|
placeholder?: string | undefined;
|
|
4669
|
+
default_value?: string | undefined;
|
|
3419
4670
|
}, {
|
|
3420
4671
|
placeholder?: string | undefined;
|
|
4672
|
+
default_value?: string | undefined;
|
|
3421
4673
|
}>>;
|
|
3422
4674
|
}, "strip", z.ZodTypeAny, {
|
|
3423
4675
|
type: "EMAIL";
|
|
@@ -3427,6 +4679,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3427
4679
|
category?: "FIELD" | undefined;
|
|
3428
4680
|
config?: {
|
|
3429
4681
|
placeholder?: string | undefined;
|
|
4682
|
+
default_value?: string | undefined;
|
|
3430
4683
|
} | undefined;
|
|
3431
4684
|
sensitive?: boolean | undefined;
|
|
3432
4685
|
label?: string | undefined;
|
|
@@ -3439,6 +4692,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3439
4692
|
category?: "FIELD" | undefined;
|
|
3440
4693
|
config?: {
|
|
3441
4694
|
placeholder?: string | undefined;
|
|
4695
|
+
default_value?: string | undefined;
|
|
3442
4696
|
} | undefined;
|
|
3443
4697
|
sensitive?: boolean | undefined;
|
|
3444
4698
|
label?: string | undefined;
|
|
@@ -3570,15 +4824,18 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3570
4824
|
min: z.ZodOptional<z.ZodNumber>;
|
|
3571
4825
|
max: z.ZodOptional<z.ZodNumber>;
|
|
3572
4826
|
step: z.ZodOptional<z.ZodNumber>;
|
|
4827
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
3573
4828
|
}, "strip", z.ZodTypeAny, {
|
|
3574
4829
|
placeholder?: string | undefined;
|
|
3575
4830
|
min?: number | undefined;
|
|
3576
4831
|
max?: number | undefined;
|
|
4832
|
+
default_value?: string | undefined;
|
|
3577
4833
|
step?: number | undefined;
|
|
3578
4834
|
}, {
|
|
3579
4835
|
placeholder?: string | undefined;
|
|
3580
4836
|
min?: number | undefined;
|
|
3581
4837
|
max?: number | undefined;
|
|
4838
|
+
default_value?: string | undefined;
|
|
3582
4839
|
step?: number | undefined;
|
|
3583
4840
|
}>>;
|
|
3584
4841
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3591,6 +4848,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3591
4848
|
placeholder?: string | undefined;
|
|
3592
4849
|
min?: number | undefined;
|
|
3593
4850
|
max?: number | undefined;
|
|
4851
|
+
default_value?: string | undefined;
|
|
3594
4852
|
step?: number | undefined;
|
|
3595
4853
|
} | undefined;
|
|
3596
4854
|
sensitive?: boolean | undefined;
|
|
@@ -3606,6 +4864,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3606
4864
|
placeholder?: string | undefined;
|
|
3607
4865
|
min?: number | undefined;
|
|
3608
4866
|
max?: number | undefined;
|
|
4867
|
+
default_value?: string | undefined;
|
|
3609
4868
|
step?: number | undefined;
|
|
3610
4869
|
} | undefined;
|
|
3611
4870
|
sensitive?: boolean | undefined;
|
|
@@ -3631,14 +4890,17 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3631
4890
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
3632
4891
|
show_toggle: z.ZodOptional<z.ZodBoolean>;
|
|
3633
4892
|
forgot_password_link: z.ZodOptional<z.ZodString>;
|
|
4893
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
3634
4894
|
}, "strip", z.ZodTypeAny, {
|
|
3635
4895
|
placeholder?: string | undefined;
|
|
3636
4896
|
min_length?: number | undefined;
|
|
4897
|
+
default_value?: string | undefined;
|
|
3637
4898
|
show_toggle?: boolean | undefined;
|
|
3638
4899
|
forgot_password_link?: string | undefined;
|
|
3639
4900
|
}, {
|
|
3640
4901
|
placeholder?: string | undefined;
|
|
3641
4902
|
min_length?: number | undefined;
|
|
4903
|
+
default_value?: string | undefined;
|
|
3642
4904
|
show_toggle?: boolean | undefined;
|
|
3643
4905
|
forgot_password_link?: string | undefined;
|
|
3644
4906
|
}>>;
|
|
@@ -3651,6 +4913,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3651
4913
|
config?: {
|
|
3652
4914
|
placeholder?: string | undefined;
|
|
3653
4915
|
min_length?: number | undefined;
|
|
4916
|
+
default_value?: string | undefined;
|
|
3654
4917
|
show_toggle?: boolean | undefined;
|
|
3655
4918
|
forgot_password_link?: string | undefined;
|
|
3656
4919
|
} | undefined;
|
|
@@ -3666,6 +4929,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3666
4929
|
config?: {
|
|
3667
4930
|
placeholder?: string | undefined;
|
|
3668
4931
|
min_length?: number | undefined;
|
|
4932
|
+
default_value?: string | undefined;
|
|
3669
4933
|
show_toggle?: boolean | undefined;
|
|
3670
4934
|
forgot_password_link?: string | undefined;
|
|
3671
4935
|
} | undefined;
|
|
@@ -3827,11 +5091,14 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3827
5091
|
config: z.ZodOptional<z.ZodObject<{
|
|
3828
5092
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3829
5093
|
default_country: z.ZodOptional<z.ZodString>;
|
|
5094
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
3830
5095
|
}, "strip", z.ZodTypeAny, {
|
|
3831
5096
|
placeholder?: string | undefined;
|
|
5097
|
+
default_value?: string | undefined;
|
|
3832
5098
|
default_country?: string | undefined;
|
|
3833
5099
|
}, {
|
|
3834
5100
|
placeholder?: string | undefined;
|
|
5101
|
+
default_value?: string | undefined;
|
|
3835
5102
|
default_country?: string | undefined;
|
|
3836
5103
|
}>>;
|
|
3837
5104
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3842,6 +5109,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3842
5109
|
category?: "FIELD" | undefined;
|
|
3843
5110
|
config?: {
|
|
3844
5111
|
placeholder?: string | undefined;
|
|
5112
|
+
default_value?: string | undefined;
|
|
3845
5113
|
default_country?: string | undefined;
|
|
3846
5114
|
} | undefined;
|
|
3847
5115
|
sensitive?: boolean | undefined;
|
|
@@ -3855,6 +5123,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3855
5123
|
category?: "FIELD" | undefined;
|
|
3856
5124
|
config?: {
|
|
3857
5125
|
placeholder?: string | undefined;
|
|
5126
|
+
default_value?: string | undefined;
|
|
3858
5127
|
default_country?: string | undefined;
|
|
3859
5128
|
} | undefined;
|
|
3860
5129
|
sensitive?: boolean | undefined;
|
|
@@ -3879,14 +5148,17 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3879
5148
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3880
5149
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
3881
5150
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
5151
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
3882
5152
|
}, "strip", z.ZodTypeAny, {
|
|
3883
5153
|
placeholder?: string | undefined;
|
|
3884
|
-
multiline?: boolean | undefined;
|
|
3885
5154
|
max_length?: number | undefined;
|
|
5155
|
+
default_value?: string | undefined;
|
|
5156
|
+
multiline?: boolean | undefined;
|
|
3886
5157
|
}, {
|
|
3887
5158
|
placeholder?: string | undefined;
|
|
3888
|
-
multiline?: boolean | undefined;
|
|
3889
5159
|
max_length?: number | undefined;
|
|
5160
|
+
default_value?: string | undefined;
|
|
5161
|
+
multiline?: boolean | undefined;
|
|
3890
5162
|
}>>;
|
|
3891
5163
|
}, "strip", z.ZodTypeAny, {
|
|
3892
5164
|
type: "TEXT";
|
|
@@ -3896,8 +5168,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3896
5168
|
category?: "FIELD" | undefined;
|
|
3897
5169
|
config?: {
|
|
3898
5170
|
placeholder?: string | undefined;
|
|
3899
|
-
multiline?: boolean | undefined;
|
|
3900
5171
|
max_length?: number | undefined;
|
|
5172
|
+
default_value?: string | undefined;
|
|
5173
|
+
multiline?: boolean | undefined;
|
|
3901
5174
|
} | undefined;
|
|
3902
5175
|
sensitive?: boolean | undefined;
|
|
3903
5176
|
label?: string | undefined;
|
|
@@ -3910,8 +5183,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3910
5183
|
category?: "FIELD" | undefined;
|
|
3911
5184
|
config?: {
|
|
3912
5185
|
placeholder?: string | undefined;
|
|
3913
|
-
multiline?: boolean | undefined;
|
|
3914
5186
|
max_length?: number | undefined;
|
|
5187
|
+
default_value?: string | undefined;
|
|
5188
|
+
multiline?: boolean | undefined;
|
|
3915
5189
|
} | undefined;
|
|
3916
5190
|
sensitive?: boolean | undefined;
|
|
3917
5191
|
label?: string | undefined;
|
|
@@ -3933,10 +5207,13 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3933
5207
|
type: z.ZodLiteral<"URL">;
|
|
3934
5208
|
config: z.ZodOptional<z.ZodObject<{
|
|
3935
5209
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
5210
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
3936
5211
|
}, "strip", z.ZodTypeAny, {
|
|
3937
5212
|
placeholder?: string | undefined;
|
|
5213
|
+
default_value?: string | undefined;
|
|
3938
5214
|
}, {
|
|
3939
5215
|
placeholder?: string | undefined;
|
|
5216
|
+
default_value?: string | undefined;
|
|
3940
5217
|
}>>;
|
|
3941
5218
|
}, "strip", z.ZodTypeAny, {
|
|
3942
5219
|
type: "URL";
|
|
@@ -3946,6 +5223,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3946
5223
|
category?: "FIELD" | undefined;
|
|
3947
5224
|
config?: {
|
|
3948
5225
|
placeholder?: string | undefined;
|
|
5226
|
+
default_value?: string | undefined;
|
|
3949
5227
|
} | undefined;
|
|
3950
5228
|
sensitive?: boolean | undefined;
|
|
3951
5229
|
label?: string | undefined;
|
|
@@ -3958,6 +5236,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
3958
5236
|
category?: "FIELD" | undefined;
|
|
3959
5237
|
config?: {
|
|
3960
5238
|
placeholder?: string | undefined;
|
|
5239
|
+
default_value?: string | undefined;
|
|
3961
5240
|
} | undefined;
|
|
3962
5241
|
sensitive?: boolean | undefined;
|
|
3963
5242
|
label?: string | undefined;
|
|
@@ -4160,6 +5439,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4160
5439
|
format?: string | undefined;
|
|
4161
5440
|
min?: string | undefined;
|
|
4162
5441
|
max?: string | undefined;
|
|
5442
|
+
default_value?: string | undefined;
|
|
4163
5443
|
} | undefined;
|
|
4164
5444
|
sensitive?: boolean | undefined;
|
|
4165
5445
|
label?: string | undefined;
|
|
@@ -4193,6 +5473,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4193
5473
|
category?: "FIELD" | undefined;
|
|
4194
5474
|
config?: {
|
|
4195
5475
|
placeholder?: string | undefined;
|
|
5476
|
+
default_value?: string | undefined;
|
|
4196
5477
|
} | undefined;
|
|
4197
5478
|
sensitive?: boolean | undefined;
|
|
4198
5479
|
label?: string | undefined;
|
|
@@ -4237,6 +5518,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4237
5518
|
placeholder?: string | undefined;
|
|
4238
5519
|
min?: number | undefined;
|
|
4239
5520
|
max?: number | undefined;
|
|
5521
|
+
default_value?: string | undefined;
|
|
4240
5522
|
step?: number | undefined;
|
|
4241
5523
|
} | undefined;
|
|
4242
5524
|
sensitive?: boolean | undefined;
|
|
@@ -4252,6 +5534,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4252
5534
|
config?: {
|
|
4253
5535
|
placeholder?: string | undefined;
|
|
4254
5536
|
min_length?: number | undefined;
|
|
5537
|
+
default_value?: string | undefined;
|
|
4255
5538
|
show_toggle?: boolean | undefined;
|
|
4256
5539
|
forgot_password_link?: string | undefined;
|
|
4257
5540
|
} | undefined;
|
|
@@ -4300,6 +5583,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4300
5583
|
category?: "FIELD" | undefined;
|
|
4301
5584
|
config?: {
|
|
4302
5585
|
placeholder?: string | undefined;
|
|
5586
|
+
default_value?: string | undefined;
|
|
4303
5587
|
default_country?: string | undefined;
|
|
4304
5588
|
} | undefined;
|
|
4305
5589
|
sensitive?: boolean | undefined;
|
|
@@ -4314,8 +5598,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4314
5598
|
category?: "FIELD" | undefined;
|
|
4315
5599
|
config?: {
|
|
4316
5600
|
placeholder?: string | undefined;
|
|
4317
|
-
multiline?: boolean | undefined;
|
|
4318
5601
|
max_length?: number | undefined;
|
|
5602
|
+
default_value?: string | undefined;
|
|
5603
|
+
multiline?: boolean | undefined;
|
|
4319
5604
|
} | undefined;
|
|
4320
5605
|
sensitive?: boolean | undefined;
|
|
4321
5606
|
label?: string | undefined;
|
|
@@ -4329,6 +5614,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4329
5614
|
category?: "FIELD" | undefined;
|
|
4330
5615
|
config?: {
|
|
4331
5616
|
placeholder?: string | undefined;
|
|
5617
|
+
default_value?: string | undefined;
|
|
4332
5618
|
} | undefined;
|
|
4333
5619
|
sensitive?: boolean | undefined;
|
|
4334
5620
|
label?: string | undefined;
|
|
@@ -4527,6 +5813,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4527
5813
|
format?: string | undefined;
|
|
4528
5814
|
min?: string | undefined;
|
|
4529
5815
|
max?: string | undefined;
|
|
5816
|
+
default_value?: string | undefined;
|
|
4530
5817
|
} | undefined;
|
|
4531
5818
|
sensitive?: boolean | undefined;
|
|
4532
5819
|
label?: string | undefined;
|
|
@@ -4560,6 +5847,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4560
5847
|
category?: "FIELD" | undefined;
|
|
4561
5848
|
config?: {
|
|
4562
5849
|
placeholder?: string | undefined;
|
|
5850
|
+
default_value?: string | undefined;
|
|
4563
5851
|
} | undefined;
|
|
4564
5852
|
sensitive?: boolean | undefined;
|
|
4565
5853
|
label?: string | undefined;
|
|
@@ -4604,6 +5892,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4604
5892
|
placeholder?: string | undefined;
|
|
4605
5893
|
min?: number | undefined;
|
|
4606
5894
|
max?: number | undefined;
|
|
5895
|
+
default_value?: string | undefined;
|
|
4607
5896
|
step?: number | undefined;
|
|
4608
5897
|
} | undefined;
|
|
4609
5898
|
sensitive?: boolean | undefined;
|
|
@@ -4619,6 +5908,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4619
5908
|
config?: {
|
|
4620
5909
|
placeholder?: string | undefined;
|
|
4621
5910
|
min_length?: number | undefined;
|
|
5911
|
+
default_value?: string | undefined;
|
|
4622
5912
|
show_toggle?: boolean | undefined;
|
|
4623
5913
|
forgot_password_link?: string | undefined;
|
|
4624
5914
|
} | undefined;
|
|
@@ -4667,6 +5957,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4667
5957
|
category?: "FIELD" | undefined;
|
|
4668
5958
|
config?: {
|
|
4669
5959
|
placeholder?: string | undefined;
|
|
5960
|
+
default_value?: string | undefined;
|
|
4670
5961
|
default_country?: string | undefined;
|
|
4671
5962
|
} | undefined;
|
|
4672
5963
|
sensitive?: boolean | undefined;
|
|
@@ -4681,8 +5972,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4681
5972
|
category?: "FIELD" | undefined;
|
|
4682
5973
|
config?: {
|
|
4683
5974
|
placeholder?: string | undefined;
|
|
4684
|
-
multiline?: boolean | undefined;
|
|
4685
5975
|
max_length?: number | undefined;
|
|
5976
|
+
default_value?: string | undefined;
|
|
5977
|
+
multiline?: boolean | undefined;
|
|
4686
5978
|
} | undefined;
|
|
4687
5979
|
sensitive?: boolean | undefined;
|
|
4688
5980
|
label?: string | undefined;
|
|
@@ -4696,6 +5988,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4696
5988
|
category?: "FIELD" | undefined;
|
|
4697
5989
|
config?: {
|
|
4698
5990
|
placeholder?: string | undefined;
|
|
5991
|
+
default_value?: string | undefined;
|
|
4699
5992
|
} | undefined;
|
|
4700
5993
|
sensitive?: boolean | undefined;
|
|
4701
5994
|
label?: string | undefined;
|
|
@@ -4900,6 +6193,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4900
6193
|
format?: string | undefined;
|
|
4901
6194
|
min?: string | undefined;
|
|
4902
6195
|
max?: string | undefined;
|
|
6196
|
+
default_value?: string | undefined;
|
|
4903
6197
|
} | undefined;
|
|
4904
6198
|
sensitive?: boolean | undefined;
|
|
4905
6199
|
label?: string | undefined;
|
|
@@ -4933,6 +6227,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4933
6227
|
category?: "FIELD" | undefined;
|
|
4934
6228
|
config?: {
|
|
4935
6229
|
placeholder?: string | undefined;
|
|
6230
|
+
default_value?: string | undefined;
|
|
4936
6231
|
} | undefined;
|
|
4937
6232
|
sensitive?: boolean | undefined;
|
|
4938
6233
|
label?: string | undefined;
|
|
@@ -4977,6 +6272,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4977
6272
|
placeholder?: string | undefined;
|
|
4978
6273
|
min?: number | undefined;
|
|
4979
6274
|
max?: number | undefined;
|
|
6275
|
+
default_value?: string | undefined;
|
|
4980
6276
|
step?: number | undefined;
|
|
4981
6277
|
} | undefined;
|
|
4982
6278
|
sensitive?: boolean | undefined;
|
|
@@ -4992,6 +6288,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
4992
6288
|
config?: {
|
|
4993
6289
|
placeholder?: string | undefined;
|
|
4994
6290
|
min_length?: number | undefined;
|
|
6291
|
+
default_value?: string | undefined;
|
|
4995
6292
|
show_toggle?: boolean | undefined;
|
|
4996
6293
|
forgot_password_link?: string | undefined;
|
|
4997
6294
|
} | undefined;
|
|
@@ -5040,6 +6337,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5040
6337
|
category?: "FIELD" | undefined;
|
|
5041
6338
|
config?: {
|
|
5042
6339
|
placeholder?: string | undefined;
|
|
6340
|
+
default_value?: string | undefined;
|
|
5043
6341
|
default_country?: string | undefined;
|
|
5044
6342
|
} | undefined;
|
|
5045
6343
|
sensitive?: boolean | undefined;
|
|
@@ -5054,8 +6352,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5054
6352
|
category?: "FIELD" | undefined;
|
|
5055
6353
|
config?: {
|
|
5056
6354
|
placeholder?: string | undefined;
|
|
5057
|
-
multiline?: boolean | undefined;
|
|
5058
6355
|
max_length?: number | undefined;
|
|
6356
|
+
default_value?: string | undefined;
|
|
6357
|
+
multiline?: boolean | undefined;
|
|
5059
6358
|
} | undefined;
|
|
5060
6359
|
sensitive?: boolean | undefined;
|
|
5061
6360
|
label?: string | undefined;
|
|
@@ -5069,6 +6368,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5069
6368
|
category?: "FIELD" | undefined;
|
|
5070
6369
|
config?: {
|
|
5071
6370
|
placeholder?: string | undefined;
|
|
6371
|
+
default_value?: string | undefined;
|
|
5072
6372
|
} | undefined;
|
|
5073
6373
|
sensitive?: boolean | undefined;
|
|
5074
6374
|
label?: string | undefined;
|
|
@@ -5276,6 +6576,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5276
6576
|
format?: string | undefined;
|
|
5277
6577
|
min?: string | undefined;
|
|
5278
6578
|
max?: string | undefined;
|
|
6579
|
+
default_value?: string | undefined;
|
|
5279
6580
|
} | undefined;
|
|
5280
6581
|
sensitive?: boolean | undefined;
|
|
5281
6582
|
label?: string | undefined;
|
|
@@ -5309,6 +6610,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5309
6610
|
category?: "FIELD" | undefined;
|
|
5310
6611
|
config?: {
|
|
5311
6612
|
placeholder?: string | undefined;
|
|
6613
|
+
default_value?: string | undefined;
|
|
5312
6614
|
} | undefined;
|
|
5313
6615
|
sensitive?: boolean | undefined;
|
|
5314
6616
|
label?: string | undefined;
|
|
@@ -5353,6 +6655,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5353
6655
|
placeholder?: string | undefined;
|
|
5354
6656
|
min?: number | undefined;
|
|
5355
6657
|
max?: number | undefined;
|
|
6658
|
+
default_value?: string | undefined;
|
|
5356
6659
|
step?: number | undefined;
|
|
5357
6660
|
} | undefined;
|
|
5358
6661
|
sensitive?: boolean | undefined;
|
|
@@ -5368,6 +6671,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5368
6671
|
config?: {
|
|
5369
6672
|
placeholder?: string | undefined;
|
|
5370
6673
|
min_length?: number | undefined;
|
|
6674
|
+
default_value?: string | undefined;
|
|
5371
6675
|
show_toggle?: boolean | undefined;
|
|
5372
6676
|
forgot_password_link?: string | undefined;
|
|
5373
6677
|
} | undefined;
|
|
@@ -5416,6 +6720,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5416
6720
|
category?: "FIELD" | undefined;
|
|
5417
6721
|
config?: {
|
|
5418
6722
|
placeholder?: string | undefined;
|
|
6723
|
+
default_value?: string | undefined;
|
|
5419
6724
|
default_country?: string | undefined;
|
|
5420
6725
|
} | undefined;
|
|
5421
6726
|
sensitive?: boolean | undefined;
|
|
@@ -5430,8 +6735,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5430
6735
|
category?: "FIELD" | undefined;
|
|
5431
6736
|
config?: {
|
|
5432
6737
|
placeholder?: string | undefined;
|
|
5433
|
-
multiline?: boolean | undefined;
|
|
5434
6738
|
max_length?: number | undefined;
|
|
6739
|
+
default_value?: string | undefined;
|
|
6740
|
+
multiline?: boolean | undefined;
|
|
5435
6741
|
} | undefined;
|
|
5436
6742
|
sensitive?: boolean | undefined;
|
|
5437
6743
|
label?: string | undefined;
|
|
@@ -5445,6 +6751,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5445
6751
|
category?: "FIELD" | undefined;
|
|
5446
6752
|
config?: {
|
|
5447
6753
|
placeholder?: string | undefined;
|
|
6754
|
+
default_value?: string | undefined;
|
|
5448
6755
|
} | undefined;
|
|
5449
6756
|
sensitive?: boolean | undefined;
|
|
5450
6757
|
label?: string | undefined;
|
|
@@ -5821,6 +7128,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5821
7128
|
format?: string | undefined;
|
|
5822
7129
|
min?: string | undefined;
|
|
5823
7130
|
max?: string | undefined;
|
|
7131
|
+
default_value?: string | undefined;
|
|
5824
7132
|
} | undefined;
|
|
5825
7133
|
sensitive?: boolean | undefined;
|
|
5826
7134
|
label?: string | undefined;
|
|
@@ -5854,6 +7162,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5854
7162
|
category?: "FIELD" | undefined;
|
|
5855
7163
|
config?: {
|
|
5856
7164
|
placeholder?: string | undefined;
|
|
7165
|
+
default_value?: string | undefined;
|
|
5857
7166
|
} | undefined;
|
|
5858
7167
|
sensitive?: boolean | undefined;
|
|
5859
7168
|
label?: string | undefined;
|
|
@@ -5898,6 +7207,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5898
7207
|
placeholder?: string | undefined;
|
|
5899
7208
|
min?: number | undefined;
|
|
5900
7209
|
max?: number | undefined;
|
|
7210
|
+
default_value?: string | undefined;
|
|
5901
7211
|
step?: number | undefined;
|
|
5902
7212
|
} | undefined;
|
|
5903
7213
|
sensitive?: boolean | undefined;
|
|
@@ -5913,6 +7223,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5913
7223
|
config?: {
|
|
5914
7224
|
placeholder?: string | undefined;
|
|
5915
7225
|
min_length?: number | undefined;
|
|
7226
|
+
default_value?: string | undefined;
|
|
5916
7227
|
show_toggle?: boolean | undefined;
|
|
5917
7228
|
forgot_password_link?: string | undefined;
|
|
5918
7229
|
} | undefined;
|
|
@@ -5961,6 +7272,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5961
7272
|
category?: "FIELD" | undefined;
|
|
5962
7273
|
config?: {
|
|
5963
7274
|
placeholder?: string | undefined;
|
|
7275
|
+
default_value?: string | undefined;
|
|
5964
7276
|
default_country?: string | undefined;
|
|
5965
7277
|
} | undefined;
|
|
5966
7278
|
sensitive?: boolean | undefined;
|
|
@@ -5975,8 +7287,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5975
7287
|
category?: "FIELD" | undefined;
|
|
5976
7288
|
config?: {
|
|
5977
7289
|
placeholder?: string | undefined;
|
|
5978
|
-
multiline?: boolean | undefined;
|
|
5979
7290
|
max_length?: number | undefined;
|
|
7291
|
+
default_value?: string | undefined;
|
|
7292
|
+
multiline?: boolean | undefined;
|
|
5980
7293
|
} | undefined;
|
|
5981
7294
|
sensitive?: boolean | undefined;
|
|
5982
7295
|
label?: string | undefined;
|
|
@@ -5990,6 +7303,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5990
7303
|
category?: "FIELD" | undefined;
|
|
5991
7304
|
config?: {
|
|
5992
7305
|
placeholder?: string | undefined;
|
|
7306
|
+
default_value?: string | undefined;
|
|
5993
7307
|
} | undefined;
|
|
5994
7308
|
sensitive?: boolean | undefined;
|
|
5995
7309
|
label?: string | undefined;
|
|
@@ -6270,6 +7584,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6270
7584
|
format?: string | undefined;
|
|
6271
7585
|
min?: string | undefined;
|
|
6272
7586
|
max?: string | undefined;
|
|
7587
|
+
default_value?: string | undefined;
|
|
6273
7588
|
} | undefined;
|
|
6274
7589
|
sensitive?: boolean | undefined;
|
|
6275
7590
|
label?: string | undefined;
|
|
@@ -6303,6 +7618,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6303
7618
|
category?: "FIELD" | undefined;
|
|
6304
7619
|
config?: {
|
|
6305
7620
|
placeholder?: string | undefined;
|
|
7621
|
+
default_value?: string | undefined;
|
|
6306
7622
|
} | undefined;
|
|
6307
7623
|
sensitive?: boolean | undefined;
|
|
6308
7624
|
label?: string | undefined;
|
|
@@ -6347,6 +7663,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6347
7663
|
placeholder?: string | undefined;
|
|
6348
7664
|
min?: number | undefined;
|
|
6349
7665
|
max?: number | undefined;
|
|
7666
|
+
default_value?: string | undefined;
|
|
6350
7667
|
step?: number | undefined;
|
|
6351
7668
|
} | undefined;
|
|
6352
7669
|
sensitive?: boolean | undefined;
|
|
@@ -6362,6 +7679,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6362
7679
|
config?: {
|
|
6363
7680
|
placeholder?: string | undefined;
|
|
6364
7681
|
min_length?: number | undefined;
|
|
7682
|
+
default_value?: string | undefined;
|
|
6365
7683
|
show_toggle?: boolean | undefined;
|
|
6366
7684
|
forgot_password_link?: string | undefined;
|
|
6367
7685
|
} | undefined;
|
|
@@ -6410,6 +7728,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6410
7728
|
category?: "FIELD" | undefined;
|
|
6411
7729
|
config?: {
|
|
6412
7730
|
placeholder?: string | undefined;
|
|
7731
|
+
default_value?: string | undefined;
|
|
6413
7732
|
default_country?: string | undefined;
|
|
6414
7733
|
} | undefined;
|
|
6415
7734
|
sensitive?: boolean | undefined;
|
|
@@ -6424,8 +7743,9 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6424
7743
|
category?: "FIELD" | undefined;
|
|
6425
7744
|
config?: {
|
|
6426
7745
|
placeholder?: string | undefined;
|
|
6427
|
-
multiline?: boolean | undefined;
|
|
6428
7746
|
max_length?: number | undefined;
|
|
7747
|
+
default_value?: string | undefined;
|
|
7748
|
+
multiline?: boolean | undefined;
|
|
6429
7749
|
} | undefined;
|
|
6430
7750
|
sensitive?: boolean | undefined;
|
|
6431
7751
|
label?: string | undefined;
|
|
@@ -6439,6 +7759,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6439
7759
|
category?: "FIELD" | undefined;
|
|
6440
7760
|
config?: {
|
|
6441
7761
|
placeholder?: string | undefined;
|
|
7762
|
+
default_value?: string | undefined;
|
|
6442
7763
|
} | undefined;
|
|
6443
7764
|
sensitive?: boolean | undefined;
|
|
6444
7765
|
label?: string | undefined;
|
|
@@ -7380,14 +8701,17 @@ declare const formSchema: z.ZodObject<{
|
|
|
7380
8701
|
format: z.ZodOptional<z.ZodString>;
|
|
7381
8702
|
min: z.ZodOptional<z.ZodString>;
|
|
7382
8703
|
max: z.ZodOptional<z.ZodString>;
|
|
8704
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
7383
8705
|
}, "strip", z.ZodTypeAny, {
|
|
7384
8706
|
format?: string | undefined;
|
|
7385
8707
|
min?: string | undefined;
|
|
7386
8708
|
max?: string | undefined;
|
|
8709
|
+
default_value?: string | undefined;
|
|
7387
8710
|
}, {
|
|
7388
8711
|
format?: string | undefined;
|
|
7389
8712
|
min?: string | undefined;
|
|
7390
8713
|
max?: string | undefined;
|
|
8714
|
+
default_value?: string | undefined;
|
|
7391
8715
|
}>>;
|
|
7392
8716
|
}, "strip", z.ZodTypeAny, {
|
|
7393
8717
|
type: "DATE";
|
|
@@ -7399,6 +8723,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7399
8723
|
format?: string | undefined;
|
|
7400
8724
|
min?: string | undefined;
|
|
7401
8725
|
max?: string | undefined;
|
|
8726
|
+
default_value?: string | undefined;
|
|
7402
8727
|
} | undefined;
|
|
7403
8728
|
sensitive?: boolean | undefined;
|
|
7404
8729
|
label?: string | undefined;
|
|
@@ -7413,6 +8738,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7413
8738
|
format?: string | undefined;
|
|
7414
8739
|
min?: string | undefined;
|
|
7415
8740
|
max?: string | undefined;
|
|
8741
|
+
default_value?: string | undefined;
|
|
7416
8742
|
} | undefined;
|
|
7417
8743
|
sensitive?: boolean | undefined;
|
|
7418
8744
|
label?: string | undefined;
|
|
@@ -7524,10 +8850,13 @@ declare const formSchema: z.ZodObject<{
|
|
|
7524
8850
|
type: z.ZodLiteral<"EMAIL">;
|
|
7525
8851
|
config: z.ZodOptional<z.ZodObject<{
|
|
7526
8852
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
8853
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
7527
8854
|
}, "strip", z.ZodTypeAny, {
|
|
7528
8855
|
placeholder?: string | undefined;
|
|
8856
|
+
default_value?: string | undefined;
|
|
7529
8857
|
}, {
|
|
7530
8858
|
placeholder?: string | undefined;
|
|
8859
|
+
default_value?: string | undefined;
|
|
7531
8860
|
}>>;
|
|
7532
8861
|
}, "strip", z.ZodTypeAny, {
|
|
7533
8862
|
type: "EMAIL";
|
|
@@ -7537,6 +8866,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7537
8866
|
category?: "FIELD" | undefined;
|
|
7538
8867
|
config?: {
|
|
7539
8868
|
placeholder?: string | undefined;
|
|
8869
|
+
default_value?: string | undefined;
|
|
7540
8870
|
} | undefined;
|
|
7541
8871
|
sensitive?: boolean | undefined;
|
|
7542
8872
|
label?: string | undefined;
|
|
@@ -7549,6 +8879,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7549
8879
|
category?: "FIELD" | undefined;
|
|
7550
8880
|
config?: {
|
|
7551
8881
|
placeholder?: string | undefined;
|
|
8882
|
+
default_value?: string | undefined;
|
|
7552
8883
|
} | undefined;
|
|
7553
8884
|
sensitive?: boolean | undefined;
|
|
7554
8885
|
label?: string | undefined;
|
|
@@ -7680,15 +9011,18 @@ declare const formSchema: z.ZodObject<{
|
|
|
7680
9011
|
min: z.ZodOptional<z.ZodNumber>;
|
|
7681
9012
|
max: z.ZodOptional<z.ZodNumber>;
|
|
7682
9013
|
step: z.ZodOptional<z.ZodNumber>;
|
|
9014
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
7683
9015
|
}, "strip", z.ZodTypeAny, {
|
|
7684
9016
|
placeholder?: string | undefined;
|
|
7685
9017
|
min?: number | undefined;
|
|
7686
9018
|
max?: number | undefined;
|
|
9019
|
+
default_value?: string | undefined;
|
|
7687
9020
|
step?: number | undefined;
|
|
7688
9021
|
}, {
|
|
7689
9022
|
placeholder?: string | undefined;
|
|
7690
9023
|
min?: number | undefined;
|
|
7691
9024
|
max?: number | undefined;
|
|
9025
|
+
default_value?: string | undefined;
|
|
7692
9026
|
step?: number | undefined;
|
|
7693
9027
|
}>>;
|
|
7694
9028
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7701,6 +9035,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7701
9035
|
placeholder?: string | undefined;
|
|
7702
9036
|
min?: number | undefined;
|
|
7703
9037
|
max?: number | undefined;
|
|
9038
|
+
default_value?: string | undefined;
|
|
7704
9039
|
step?: number | undefined;
|
|
7705
9040
|
} | undefined;
|
|
7706
9041
|
sensitive?: boolean | undefined;
|
|
@@ -7716,6 +9051,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7716
9051
|
placeholder?: string | undefined;
|
|
7717
9052
|
min?: number | undefined;
|
|
7718
9053
|
max?: number | undefined;
|
|
9054
|
+
default_value?: string | undefined;
|
|
7719
9055
|
step?: number | undefined;
|
|
7720
9056
|
} | undefined;
|
|
7721
9057
|
sensitive?: boolean | undefined;
|
|
@@ -7741,14 +9077,17 @@ declare const formSchema: z.ZodObject<{
|
|
|
7741
9077
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
7742
9078
|
show_toggle: z.ZodOptional<z.ZodBoolean>;
|
|
7743
9079
|
forgot_password_link: z.ZodOptional<z.ZodString>;
|
|
9080
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
7744
9081
|
}, "strip", z.ZodTypeAny, {
|
|
7745
9082
|
placeholder?: string | undefined;
|
|
7746
9083
|
min_length?: number | undefined;
|
|
9084
|
+
default_value?: string | undefined;
|
|
7747
9085
|
show_toggle?: boolean | undefined;
|
|
7748
9086
|
forgot_password_link?: string | undefined;
|
|
7749
9087
|
}, {
|
|
7750
9088
|
placeholder?: string | undefined;
|
|
7751
9089
|
min_length?: number | undefined;
|
|
9090
|
+
default_value?: string | undefined;
|
|
7752
9091
|
show_toggle?: boolean | undefined;
|
|
7753
9092
|
forgot_password_link?: string | undefined;
|
|
7754
9093
|
}>>;
|
|
@@ -7761,6 +9100,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7761
9100
|
config?: {
|
|
7762
9101
|
placeholder?: string | undefined;
|
|
7763
9102
|
min_length?: number | undefined;
|
|
9103
|
+
default_value?: string | undefined;
|
|
7764
9104
|
show_toggle?: boolean | undefined;
|
|
7765
9105
|
forgot_password_link?: string | undefined;
|
|
7766
9106
|
} | undefined;
|
|
@@ -7776,6 +9116,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7776
9116
|
config?: {
|
|
7777
9117
|
placeholder?: string | undefined;
|
|
7778
9118
|
min_length?: number | undefined;
|
|
9119
|
+
default_value?: string | undefined;
|
|
7779
9120
|
show_toggle?: boolean | undefined;
|
|
7780
9121
|
forgot_password_link?: string | undefined;
|
|
7781
9122
|
} | undefined;
|
|
@@ -7937,11 +9278,14 @@ declare const formSchema: z.ZodObject<{
|
|
|
7937
9278
|
config: z.ZodOptional<z.ZodObject<{
|
|
7938
9279
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
7939
9280
|
default_country: z.ZodOptional<z.ZodString>;
|
|
9281
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
7940
9282
|
}, "strip", z.ZodTypeAny, {
|
|
7941
9283
|
placeholder?: string | undefined;
|
|
9284
|
+
default_value?: string | undefined;
|
|
7942
9285
|
default_country?: string | undefined;
|
|
7943
9286
|
}, {
|
|
7944
9287
|
placeholder?: string | undefined;
|
|
9288
|
+
default_value?: string | undefined;
|
|
7945
9289
|
default_country?: string | undefined;
|
|
7946
9290
|
}>>;
|
|
7947
9291
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7952,6 +9296,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7952
9296
|
category?: "FIELD" | undefined;
|
|
7953
9297
|
config?: {
|
|
7954
9298
|
placeholder?: string | undefined;
|
|
9299
|
+
default_value?: string | undefined;
|
|
7955
9300
|
default_country?: string | undefined;
|
|
7956
9301
|
} | undefined;
|
|
7957
9302
|
sensitive?: boolean | undefined;
|
|
@@ -7965,6 +9310,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
7965
9310
|
category?: "FIELD" | undefined;
|
|
7966
9311
|
config?: {
|
|
7967
9312
|
placeholder?: string | undefined;
|
|
9313
|
+
default_value?: string | undefined;
|
|
7968
9314
|
default_country?: string | undefined;
|
|
7969
9315
|
} | undefined;
|
|
7970
9316
|
sensitive?: boolean | undefined;
|
|
@@ -7989,14 +9335,17 @@ declare const formSchema: z.ZodObject<{
|
|
|
7989
9335
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
7990
9336
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
7991
9337
|
max_length: z.ZodOptional<z.ZodNumber>;
|
|
9338
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
7992
9339
|
}, "strip", z.ZodTypeAny, {
|
|
7993
9340
|
placeholder?: string | undefined;
|
|
7994
|
-
multiline?: boolean | undefined;
|
|
7995
9341
|
max_length?: number | undefined;
|
|
9342
|
+
default_value?: string | undefined;
|
|
9343
|
+
multiline?: boolean | undefined;
|
|
7996
9344
|
}, {
|
|
7997
9345
|
placeholder?: string | undefined;
|
|
7998
|
-
multiline?: boolean | undefined;
|
|
7999
9346
|
max_length?: number | undefined;
|
|
9347
|
+
default_value?: string | undefined;
|
|
9348
|
+
multiline?: boolean | undefined;
|
|
8000
9349
|
}>>;
|
|
8001
9350
|
}, "strip", z.ZodTypeAny, {
|
|
8002
9351
|
type: "TEXT";
|
|
@@ -8006,8 +9355,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
8006
9355
|
category?: "FIELD" | undefined;
|
|
8007
9356
|
config?: {
|
|
8008
9357
|
placeholder?: string | undefined;
|
|
8009
|
-
multiline?: boolean | undefined;
|
|
8010
9358
|
max_length?: number | undefined;
|
|
9359
|
+
default_value?: string | undefined;
|
|
9360
|
+
multiline?: boolean | undefined;
|
|
8011
9361
|
} | undefined;
|
|
8012
9362
|
sensitive?: boolean | undefined;
|
|
8013
9363
|
label?: string | undefined;
|
|
@@ -8020,8 +9370,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
8020
9370
|
category?: "FIELD" | undefined;
|
|
8021
9371
|
config?: {
|
|
8022
9372
|
placeholder?: string | undefined;
|
|
8023
|
-
multiline?: boolean | undefined;
|
|
8024
9373
|
max_length?: number | undefined;
|
|
9374
|
+
default_value?: string | undefined;
|
|
9375
|
+
multiline?: boolean | undefined;
|
|
8025
9376
|
} | undefined;
|
|
8026
9377
|
sensitive?: boolean | undefined;
|
|
8027
9378
|
label?: string | undefined;
|
|
@@ -8043,10 +9394,13 @@ declare const formSchema: z.ZodObject<{
|
|
|
8043
9394
|
type: z.ZodLiteral<"URL">;
|
|
8044
9395
|
config: z.ZodOptional<z.ZodObject<{
|
|
8045
9396
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
9397
|
+
default_value: z.ZodOptional<z.ZodString>;
|
|
8046
9398
|
}, "strip", z.ZodTypeAny, {
|
|
8047
9399
|
placeholder?: string | undefined;
|
|
9400
|
+
default_value?: string | undefined;
|
|
8048
9401
|
}, {
|
|
8049
9402
|
placeholder?: string | undefined;
|
|
9403
|
+
default_value?: string | undefined;
|
|
8050
9404
|
}>>;
|
|
8051
9405
|
}, "strip", z.ZodTypeAny, {
|
|
8052
9406
|
type: "URL";
|
|
@@ -8056,6 +9410,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8056
9410
|
category?: "FIELD" | undefined;
|
|
8057
9411
|
config?: {
|
|
8058
9412
|
placeholder?: string | undefined;
|
|
9413
|
+
default_value?: string | undefined;
|
|
8059
9414
|
} | undefined;
|
|
8060
9415
|
sensitive?: boolean | undefined;
|
|
8061
9416
|
label?: string | undefined;
|
|
@@ -8068,6 +9423,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8068
9423
|
category?: "FIELD" | undefined;
|
|
8069
9424
|
config?: {
|
|
8070
9425
|
placeholder?: string | undefined;
|
|
9426
|
+
default_value?: string | undefined;
|
|
8071
9427
|
} | undefined;
|
|
8072
9428
|
sensitive?: boolean | undefined;
|
|
8073
9429
|
label?: string | undefined;
|
|
@@ -8270,6 +9626,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8270
9626
|
format?: string | undefined;
|
|
8271
9627
|
min?: string | undefined;
|
|
8272
9628
|
max?: string | undefined;
|
|
9629
|
+
default_value?: string | undefined;
|
|
8273
9630
|
} | undefined;
|
|
8274
9631
|
sensitive?: boolean | undefined;
|
|
8275
9632
|
label?: string | undefined;
|
|
@@ -8303,6 +9660,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8303
9660
|
category?: "FIELD" | undefined;
|
|
8304
9661
|
config?: {
|
|
8305
9662
|
placeholder?: string | undefined;
|
|
9663
|
+
default_value?: string | undefined;
|
|
8306
9664
|
} | undefined;
|
|
8307
9665
|
sensitive?: boolean | undefined;
|
|
8308
9666
|
label?: string | undefined;
|
|
@@ -8347,6 +9705,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8347
9705
|
placeholder?: string | undefined;
|
|
8348
9706
|
min?: number | undefined;
|
|
8349
9707
|
max?: number | undefined;
|
|
9708
|
+
default_value?: string | undefined;
|
|
8350
9709
|
step?: number | undefined;
|
|
8351
9710
|
} | undefined;
|
|
8352
9711
|
sensitive?: boolean | undefined;
|
|
@@ -8362,6 +9721,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8362
9721
|
config?: {
|
|
8363
9722
|
placeholder?: string | undefined;
|
|
8364
9723
|
min_length?: number | undefined;
|
|
9724
|
+
default_value?: string | undefined;
|
|
8365
9725
|
show_toggle?: boolean | undefined;
|
|
8366
9726
|
forgot_password_link?: string | undefined;
|
|
8367
9727
|
} | undefined;
|
|
@@ -8410,6 +9770,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8410
9770
|
category?: "FIELD" | undefined;
|
|
8411
9771
|
config?: {
|
|
8412
9772
|
placeholder?: string | undefined;
|
|
9773
|
+
default_value?: string | undefined;
|
|
8413
9774
|
default_country?: string | undefined;
|
|
8414
9775
|
} | undefined;
|
|
8415
9776
|
sensitive?: boolean | undefined;
|
|
@@ -8424,8 +9785,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
8424
9785
|
category?: "FIELD" | undefined;
|
|
8425
9786
|
config?: {
|
|
8426
9787
|
placeholder?: string | undefined;
|
|
8427
|
-
multiline?: boolean | undefined;
|
|
8428
9788
|
max_length?: number | undefined;
|
|
9789
|
+
default_value?: string | undefined;
|
|
9790
|
+
multiline?: boolean | undefined;
|
|
8429
9791
|
} | undefined;
|
|
8430
9792
|
sensitive?: boolean | undefined;
|
|
8431
9793
|
label?: string | undefined;
|
|
@@ -8439,6 +9801,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8439
9801
|
category?: "FIELD" | undefined;
|
|
8440
9802
|
config?: {
|
|
8441
9803
|
placeholder?: string | undefined;
|
|
9804
|
+
default_value?: string | undefined;
|
|
8442
9805
|
} | undefined;
|
|
8443
9806
|
sensitive?: boolean | undefined;
|
|
8444
9807
|
label?: string | undefined;
|
|
@@ -8637,6 +10000,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8637
10000
|
format?: string | undefined;
|
|
8638
10001
|
min?: string | undefined;
|
|
8639
10002
|
max?: string | undefined;
|
|
10003
|
+
default_value?: string | undefined;
|
|
8640
10004
|
} | undefined;
|
|
8641
10005
|
sensitive?: boolean | undefined;
|
|
8642
10006
|
label?: string | undefined;
|
|
@@ -8670,6 +10034,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8670
10034
|
category?: "FIELD" | undefined;
|
|
8671
10035
|
config?: {
|
|
8672
10036
|
placeholder?: string | undefined;
|
|
10037
|
+
default_value?: string | undefined;
|
|
8673
10038
|
} | undefined;
|
|
8674
10039
|
sensitive?: boolean | undefined;
|
|
8675
10040
|
label?: string | undefined;
|
|
@@ -8714,6 +10079,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8714
10079
|
placeholder?: string | undefined;
|
|
8715
10080
|
min?: number | undefined;
|
|
8716
10081
|
max?: number | undefined;
|
|
10082
|
+
default_value?: string | undefined;
|
|
8717
10083
|
step?: number | undefined;
|
|
8718
10084
|
} | undefined;
|
|
8719
10085
|
sensitive?: boolean | undefined;
|
|
@@ -8729,6 +10095,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8729
10095
|
config?: {
|
|
8730
10096
|
placeholder?: string | undefined;
|
|
8731
10097
|
min_length?: number | undefined;
|
|
10098
|
+
default_value?: string | undefined;
|
|
8732
10099
|
show_toggle?: boolean | undefined;
|
|
8733
10100
|
forgot_password_link?: string | undefined;
|
|
8734
10101
|
} | undefined;
|
|
@@ -8777,6 +10144,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8777
10144
|
category?: "FIELD" | undefined;
|
|
8778
10145
|
config?: {
|
|
8779
10146
|
placeholder?: string | undefined;
|
|
10147
|
+
default_value?: string | undefined;
|
|
8780
10148
|
default_country?: string | undefined;
|
|
8781
10149
|
} | undefined;
|
|
8782
10150
|
sensitive?: boolean | undefined;
|
|
@@ -8791,8 +10159,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
8791
10159
|
category?: "FIELD" | undefined;
|
|
8792
10160
|
config?: {
|
|
8793
10161
|
placeholder?: string | undefined;
|
|
8794
|
-
multiline?: boolean | undefined;
|
|
8795
10162
|
max_length?: number | undefined;
|
|
10163
|
+
default_value?: string | undefined;
|
|
10164
|
+
multiline?: boolean | undefined;
|
|
8796
10165
|
} | undefined;
|
|
8797
10166
|
sensitive?: boolean | undefined;
|
|
8798
10167
|
label?: string | undefined;
|
|
@@ -8806,6 +10175,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
8806
10175
|
category?: "FIELD" | undefined;
|
|
8807
10176
|
config?: {
|
|
8808
10177
|
placeholder?: string | undefined;
|
|
10178
|
+
default_value?: string | undefined;
|
|
8809
10179
|
} | undefined;
|
|
8810
10180
|
sensitive?: boolean | undefined;
|
|
8811
10181
|
label?: string | undefined;
|
|
@@ -9010,6 +10380,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9010
10380
|
format?: string | undefined;
|
|
9011
10381
|
min?: string | undefined;
|
|
9012
10382
|
max?: string | undefined;
|
|
10383
|
+
default_value?: string | undefined;
|
|
9013
10384
|
} | undefined;
|
|
9014
10385
|
sensitive?: boolean | undefined;
|
|
9015
10386
|
label?: string | undefined;
|
|
@@ -9043,6 +10414,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9043
10414
|
category?: "FIELD" | undefined;
|
|
9044
10415
|
config?: {
|
|
9045
10416
|
placeholder?: string | undefined;
|
|
10417
|
+
default_value?: string | undefined;
|
|
9046
10418
|
} | undefined;
|
|
9047
10419
|
sensitive?: boolean | undefined;
|
|
9048
10420
|
label?: string | undefined;
|
|
@@ -9087,6 +10459,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9087
10459
|
placeholder?: string | undefined;
|
|
9088
10460
|
min?: number | undefined;
|
|
9089
10461
|
max?: number | undefined;
|
|
10462
|
+
default_value?: string | undefined;
|
|
9090
10463
|
step?: number | undefined;
|
|
9091
10464
|
} | undefined;
|
|
9092
10465
|
sensitive?: boolean | undefined;
|
|
@@ -9102,6 +10475,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9102
10475
|
config?: {
|
|
9103
10476
|
placeholder?: string | undefined;
|
|
9104
10477
|
min_length?: number | undefined;
|
|
10478
|
+
default_value?: string | undefined;
|
|
9105
10479
|
show_toggle?: boolean | undefined;
|
|
9106
10480
|
forgot_password_link?: string | undefined;
|
|
9107
10481
|
} | undefined;
|
|
@@ -9150,6 +10524,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9150
10524
|
category?: "FIELD" | undefined;
|
|
9151
10525
|
config?: {
|
|
9152
10526
|
placeholder?: string | undefined;
|
|
10527
|
+
default_value?: string | undefined;
|
|
9153
10528
|
default_country?: string | undefined;
|
|
9154
10529
|
} | undefined;
|
|
9155
10530
|
sensitive?: boolean | undefined;
|
|
@@ -9164,8 +10539,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
9164
10539
|
category?: "FIELD" | undefined;
|
|
9165
10540
|
config?: {
|
|
9166
10541
|
placeholder?: string | undefined;
|
|
9167
|
-
multiline?: boolean | undefined;
|
|
9168
10542
|
max_length?: number | undefined;
|
|
10543
|
+
default_value?: string | undefined;
|
|
10544
|
+
multiline?: boolean | undefined;
|
|
9169
10545
|
} | undefined;
|
|
9170
10546
|
sensitive?: boolean | undefined;
|
|
9171
10547
|
label?: string | undefined;
|
|
@@ -9179,6 +10555,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9179
10555
|
category?: "FIELD" | undefined;
|
|
9180
10556
|
config?: {
|
|
9181
10557
|
placeholder?: string | undefined;
|
|
10558
|
+
default_value?: string | undefined;
|
|
9182
10559
|
} | undefined;
|
|
9183
10560
|
sensitive?: boolean | undefined;
|
|
9184
10561
|
label?: string | undefined;
|
|
@@ -9386,6 +10763,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9386
10763
|
format?: string | undefined;
|
|
9387
10764
|
min?: string | undefined;
|
|
9388
10765
|
max?: string | undefined;
|
|
10766
|
+
default_value?: string | undefined;
|
|
9389
10767
|
} | undefined;
|
|
9390
10768
|
sensitive?: boolean | undefined;
|
|
9391
10769
|
label?: string | undefined;
|
|
@@ -9419,6 +10797,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9419
10797
|
category?: "FIELD" | undefined;
|
|
9420
10798
|
config?: {
|
|
9421
10799
|
placeholder?: string | undefined;
|
|
10800
|
+
default_value?: string | undefined;
|
|
9422
10801
|
} | undefined;
|
|
9423
10802
|
sensitive?: boolean | undefined;
|
|
9424
10803
|
label?: string | undefined;
|
|
@@ -9463,6 +10842,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9463
10842
|
placeholder?: string | undefined;
|
|
9464
10843
|
min?: number | undefined;
|
|
9465
10844
|
max?: number | undefined;
|
|
10845
|
+
default_value?: string | undefined;
|
|
9466
10846
|
step?: number | undefined;
|
|
9467
10847
|
} | undefined;
|
|
9468
10848
|
sensitive?: boolean | undefined;
|
|
@@ -9478,6 +10858,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9478
10858
|
config?: {
|
|
9479
10859
|
placeholder?: string | undefined;
|
|
9480
10860
|
min_length?: number | undefined;
|
|
10861
|
+
default_value?: string | undefined;
|
|
9481
10862
|
show_toggle?: boolean | undefined;
|
|
9482
10863
|
forgot_password_link?: string | undefined;
|
|
9483
10864
|
} | undefined;
|
|
@@ -9526,6 +10907,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9526
10907
|
category?: "FIELD" | undefined;
|
|
9527
10908
|
config?: {
|
|
9528
10909
|
placeholder?: string | undefined;
|
|
10910
|
+
default_value?: string | undefined;
|
|
9529
10911
|
default_country?: string | undefined;
|
|
9530
10912
|
} | undefined;
|
|
9531
10913
|
sensitive?: boolean | undefined;
|
|
@@ -9540,8 +10922,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
9540
10922
|
category?: "FIELD" | undefined;
|
|
9541
10923
|
config?: {
|
|
9542
10924
|
placeholder?: string | undefined;
|
|
9543
|
-
multiline?: boolean | undefined;
|
|
9544
10925
|
max_length?: number | undefined;
|
|
10926
|
+
default_value?: string | undefined;
|
|
10927
|
+
multiline?: boolean | undefined;
|
|
9545
10928
|
} | undefined;
|
|
9546
10929
|
sensitive?: boolean | undefined;
|
|
9547
10930
|
label?: string | undefined;
|
|
@@ -9555,6 +10938,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9555
10938
|
category?: "FIELD" | undefined;
|
|
9556
10939
|
config?: {
|
|
9557
10940
|
placeholder?: string | undefined;
|
|
10941
|
+
default_value?: string | undefined;
|
|
9558
10942
|
} | undefined;
|
|
9559
10943
|
sensitive?: boolean | undefined;
|
|
9560
10944
|
label?: string | undefined;
|
|
@@ -9936,6 +11320,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9936
11320
|
format?: string | undefined;
|
|
9937
11321
|
min?: string | undefined;
|
|
9938
11322
|
max?: string | undefined;
|
|
11323
|
+
default_value?: string | undefined;
|
|
9939
11324
|
} | undefined;
|
|
9940
11325
|
sensitive?: boolean | undefined;
|
|
9941
11326
|
label?: string | undefined;
|
|
@@ -9969,6 +11354,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
9969
11354
|
category?: "FIELD" | undefined;
|
|
9970
11355
|
config?: {
|
|
9971
11356
|
placeholder?: string | undefined;
|
|
11357
|
+
default_value?: string | undefined;
|
|
9972
11358
|
} | undefined;
|
|
9973
11359
|
sensitive?: boolean | undefined;
|
|
9974
11360
|
label?: string | undefined;
|
|
@@ -10013,6 +11399,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10013
11399
|
placeholder?: string | undefined;
|
|
10014
11400
|
min?: number | undefined;
|
|
10015
11401
|
max?: number | undefined;
|
|
11402
|
+
default_value?: string | undefined;
|
|
10016
11403
|
step?: number | undefined;
|
|
10017
11404
|
} | undefined;
|
|
10018
11405
|
sensitive?: boolean | undefined;
|
|
@@ -10028,6 +11415,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10028
11415
|
config?: {
|
|
10029
11416
|
placeholder?: string | undefined;
|
|
10030
11417
|
min_length?: number | undefined;
|
|
11418
|
+
default_value?: string | undefined;
|
|
10031
11419
|
show_toggle?: boolean | undefined;
|
|
10032
11420
|
forgot_password_link?: string | undefined;
|
|
10033
11421
|
} | undefined;
|
|
@@ -10076,6 +11464,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10076
11464
|
category?: "FIELD" | undefined;
|
|
10077
11465
|
config?: {
|
|
10078
11466
|
placeholder?: string | undefined;
|
|
11467
|
+
default_value?: string | undefined;
|
|
10079
11468
|
default_country?: string | undefined;
|
|
10080
11469
|
} | undefined;
|
|
10081
11470
|
sensitive?: boolean | undefined;
|
|
@@ -10090,8 +11479,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
10090
11479
|
category?: "FIELD" | undefined;
|
|
10091
11480
|
config?: {
|
|
10092
11481
|
placeholder?: string | undefined;
|
|
10093
|
-
multiline?: boolean | undefined;
|
|
10094
11482
|
max_length?: number | undefined;
|
|
11483
|
+
default_value?: string | undefined;
|
|
11484
|
+
multiline?: boolean | undefined;
|
|
10095
11485
|
} | undefined;
|
|
10096
11486
|
sensitive?: boolean | undefined;
|
|
10097
11487
|
label?: string | undefined;
|
|
@@ -10105,6 +11495,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10105
11495
|
category?: "FIELD" | undefined;
|
|
10106
11496
|
config?: {
|
|
10107
11497
|
placeholder?: string | undefined;
|
|
11498
|
+
default_value?: string | undefined;
|
|
10108
11499
|
} | undefined;
|
|
10109
11500
|
sensitive?: boolean | undefined;
|
|
10110
11501
|
label?: string | undefined;
|
|
@@ -10388,6 +11779,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10388
11779
|
format?: string | undefined;
|
|
10389
11780
|
min?: string | undefined;
|
|
10390
11781
|
max?: string | undefined;
|
|
11782
|
+
default_value?: string | undefined;
|
|
10391
11783
|
} | undefined;
|
|
10392
11784
|
sensitive?: boolean | undefined;
|
|
10393
11785
|
label?: string | undefined;
|
|
@@ -10421,6 +11813,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10421
11813
|
category?: "FIELD" | undefined;
|
|
10422
11814
|
config?: {
|
|
10423
11815
|
placeholder?: string | undefined;
|
|
11816
|
+
default_value?: string | undefined;
|
|
10424
11817
|
} | undefined;
|
|
10425
11818
|
sensitive?: boolean | undefined;
|
|
10426
11819
|
label?: string | undefined;
|
|
@@ -10465,6 +11858,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10465
11858
|
placeholder?: string | undefined;
|
|
10466
11859
|
min?: number | undefined;
|
|
10467
11860
|
max?: number | undefined;
|
|
11861
|
+
default_value?: string | undefined;
|
|
10468
11862
|
step?: number | undefined;
|
|
10469
11863
|
} | undefined;
|
|
10470
11864
|
sensitive?: boolean | undefined;
|
|
@@ -10480,6 +11874,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10480
11874
|
config?: {
|
|
10481
11875
|
placeholder?: string | undefined;
|
|
10482
11876
|
min_length?: number | undefined;
|
|
11877
|
+
default_value?: string | undefined;
|
|
10483
11878
|
show_toggle?: boolean | undefined;
|
|
10484
11879
|
forgot_password_link?: string | undefined;
|
|
10485
11880
|
} | undefined;
|
|
@@ -10528,6 +11923,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10528
11923
|
category?: "FIELD" | undefined;
|
|
10529
11924
|
config?: {
|
|
10530
11925
|
placeholder?: string | undefined;
|
|
11926
|
+
default_value?: string | undefined;
|
|
10531
11927
|
default_country?: string | undefined;
|
|
10532
11928
|
} | undefined;
|
|
10533
11929
|
sensitive?: boolean | undefined;
|
|
@@ -10542,8 +11938,9 @@ declare const formSchema: z.ZodObject<{
|
|
|
10542
11938
|
category?: "FIELD" | undefined;
|
|
10543
11939
|
config?: {
|
|
10544
11940
|
placeholder?: string | undefined;
|
|
10545
|
-
multiline?: boolean | undefined;
|
|
10546
11941
|
max_length?: number | undefined;
|
|
11942
|
+
default_value?: string | undefined;
|
|
11943
|
+
multiline?: boolean | undefined;
|
|
10547
11944
|
} | undefined;
|
|
10548
11945
|
sensitive?: boolean | undefined;
|
|
10549
11946
|
label?: string | undefined;
|
|
@@ -10557,6 +11954,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10557
11954
|
category?: "FIELD" | undefined;
|
|
10558
11955
|
config?: {
|
|
10559
11956
|
placeholder?: string | undefined;
|
|
11957
|
+
default_value?: string | undefined;
|
|
10560
11958
|
} | undefined;
|
|
10561
11959
|
sensitive?: boolean | undefined;
|
|
10562
11960
|
label?: string | undefined;
|
|
@@ -10614,8 +12012,8 @@ declare const hookInsertSchema: z.ZodUnion<[
|
|
|
10614
12012
|
hook_id: z.ZodOptional<z.ZodString>;
|
|
10615
12013
|
}, "strip", z.ZodTypeAny, {
|
|
10616
12014
|
url: string;
|
|
10617
|
-
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10618
12015
|
enabled: boolean;
|
|
12016
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10619
12017
|
synchronous: boolean;
|
|
10620
12018
|
priority?: number | undefined;
|
|
10621
12019
|
hook_id?: string | undefined;
|
|
@@ -10642,8 +12040,8 @@ declare const hookInsertSchema: z.ZodUnion<[
|
|
|
10642
12040
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
10643
12041
|
hook_id: z.ZodOptional<z.ZodString>;
|
|
10644
12042
|
}, "strip", z.ZodTypeAny, {
|
|
10645
|
-
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10646
12043
|
enabled: boolean;
|
|
12044
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10647
12045
|
synchronous: boolean;
|
|
10648
12046
|
form_id: string;
|
|
10649
12047
|
priority?: number | undefined;
|
|
@@ -10655,6 +12053,34 @@ declare const hookInsertSchema: z.ZodUnion<[
|
|
|
10655
12053
|
synchronous?: boolean | undefined;
|
|
10656
12054
|
priority?: number | undefined;
|
|
10657
12055
|
hook_id?: string | undefined;
|
|
12056
|
+
}>,
|
|
12057
|
+
z.ZodObject<{
|
|
12058
|
+
trigger_id: z.ZodEnum<[
|
|
12059
|
+
"post-user-login",
|
|
12060
|
+
"credentials-exchange"
|
|
12061
|
+
]>;
|
|
12062
|
+
template_id: z.ZodEnum<[
|
|
12063
|
+
"ensure-username",
|
|
12064
|
+
"set-preferred-username"
|
|
12065
|
+
]>;
|
|
12066
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
12067
|
+
synchronous: z.ZodDefault<z.ZodBoolean>;
|
|
12068
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
12069
|
+
hook_id: z.ZodOptional<z.ZodString>;
|
|
12070
|
+
}, "strip", z.ZodTypeAny, {
|
|
12071
|
+
enabled: boolean;
|
|
12072
|
+
trigger_id: "post-user-login" | "credentials-exchange";
|
|
12073
|
+
synchronous: boolean;
|
|
12074
|
+
template_id: "ensure-username" | "set-preferred-username";
|
|
12075
|
+
priority?: number | undefined;
|
|
12076
|
+
hook_id?: string | undefined;
|
|
12077
|
+
}, {
|
|
12078
|
+
trigger_id: "post-user-login" | "credentials-exchange";
|
|
12079
|
+
template_id: "ensure-username" | "set-preferred-username";
|
|
12080
|
+
enabled?: boolean | undefined;
|
|
12081
|
+
synchronous?: boolean | undefined;
|
|
12082
|
+
priority?: number | undefined;
|
|
12083
|
+
hook_id?: string | undefined;
|
|
10658
12084
|
}>
|
|
10659
12085
|
]>;
|
|
10660
12086
|
export type HookInsert = z.infer<typeof hookInsertSchema>;
|
|
@@ -10679,8 +12105,8 @@ declare const hookSchema: z.ZodUnion<[
|
|
|
10679
12105
|
created_at: string;
|
|
10680
12106
|
updated_at: string;
|
|
10681
12107
|
url: string;
|
|
10682
|
-
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10683
12108
|
enabled: boolean;
|
|
12109
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10684
12110
|
synchronous: boolean;
|
|
10685
12111
|
hook_id: string;
|
|
10686
12112
|
priority?: number | undefined;
|
|
@@ -10713,8 +12139,8 @@ declare const hookSchema: z.ZodUnion<[
|
|
|
10713
12139
|
}, "strip", z.ZodTypeAny, {
|
|
10714
12140
|
created_at: string;
|
|
10715
12141
|
updated_at: string;
|
|
10716
|
-
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10717
12142
|
enabled: boolean;
|
|
12143
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10718
12144
|
synchronous: boolean;
|
|
10719
12145
|
hook_id: string;
|
|
10720
12146
|
form_id: string;
|
|
@@ -10728,6 +12154,40 @@ declare const hookSchema: z.ZodUnion<[
|
|
|
10728
12154
|
enabled?: boolean | undefined;
|
|
10729
12155
|
synchronous?: boolean | undefined;
|
|
10730
12156
|
priority?: number | undefined;
|
|
12157
|
+
}>,
|
|
12158
|
+
z.ZodObject<{
|
|
12159
|
+
hook_id: z.ZodString;
|
|
12160
|
+
template_id: z.ZodEnum<[
|
|
12161
|
+
"ensure-username",
|
|
12162
|
+
"set-preferred-username"
|
|
12163
|
+
]>;
|
|
12164
|
+
created_at: z.ZodString;
|
|
12165
|
+
updated_at: z.ZodString;
|
|
12166
|
+
trigger_id: z.ZodEnum<[
|
|
12167
|
+
"post-user-login",
|
|
12168
|
+
"credentials-exchange"
|
|
12169
|
+
]>;
|
|
12170
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
12171
|
+
synchronous: z.ZodDefault<z.ZodBoolean>;
|
|
12172
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
12173
|
+
}, "strip", z.ZodTypeAny, {
|
|
12174
|
+
created_at: string;
|
|
12175
|
+
updated_at: string;
|
|
12176
|
+
enabled: boolean;
|
|
12177
|
+
trigger_id: "post-user-login" | "credentials-exchange";
|
|
12178
|
+
synchronous: boolean;
|
|
12179
|
+
hook_id: string;
|
|
12180
|
+
template_id: "ensure-username" | "set-preferred-username";
|
|
12181
|
+
priority?: number | undefined;
|
|
12182
|
+
}, {
|
|
12183
|
+
created_at: string;
|
|
12184
|
+
updated_at: string;
|
|
12185
|
+
trigger_id: "post-user-login" | "credentials-exchange";
|
|
12186
|
+
hook_id: string;
|
|
12187
|
+
template_id: "ensure-username" | "set-preferred-username";
|
|
12188
|
+
enabled?: boolean | undefined;
|
|
12189
|
+
synchronous?: boolean | undefined;
|
|
12190
|
+
priority?: number | undefined;
|
|
10731
12191
|
}>
|
|
10732
12192
|
]>;
|
|
10733
12193
|
export type Hook = z.infer<typeof hookSchema>;
|
|
@@ -11850,21 +13310,21 @@ declare const tenantSchema: z.ZodObject<{
|
|
|
11850
13310
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
11851
13311
|
html: z.ZodOptional<z.ZodString>;
|
|
11852
13312
|
}, "strip", z.ZodTypeAny, {
|
|
11853
|
-
html?: string | undefined;
|
|
11854
13313
|
enabled?: boolean | undefined;
|
|
11855
|
-
}, {
|
|
11856
13314
|
html?: string | undefined;
|
|
13315
|
+
}, {
|
|
11857
13316
|
enabled?: boolean | undefined;
|
|
13317
|
+
html?: string | undefined;
|
|
11858
13318
|
}>>;
|
|
11859
13319
|
guardian_mfa_page: z.ZodOptional<z.ZodObject<{
|
|
11860
13320
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
11861
13321
|
html: z.ZodOptional<z.ZodString>;
|
|
11862
13322
|
}, "strip", z.ZodTypeAny, {
|
|
11863
|
-
html?: string | undefined;
|
|
11864
13323
|
enabled?: boolean | undefined;
|
|
11865
|
-
}, {
|
|
11866
13324
|
html?: string | undefined;
|
|
13325
|
+
}, {
|
|
11867
13326
|
enabled?: boolean | undefined;
|
|
13327
|
+
html?: string | undefined;
|
|
11868
13328
|
}>>;
|
|
11869
13329
|
device_flow: z.ZodOptional<z.ZodObject<{
|
|
11870
13330
|
charset: z.ZodOptional<z.ZodEnum<[
|
|
@@ -12120,12 +13580,12 @@ declare const tenantSchema: z.ZodObject<{
|
|
|
12120
13580
|
legacy_sandbox_version?: string | undefined;
|
|
12121
13581
|
sandbox_versions_available?: string[] | undefined;
|
|
12122
13582
|
change_password?: {
|
|
12123
|
-
html?: string | undefined;
|
|
12124
13583
|
enabled?: boolean | undefined;
|
|
13584
|
+
html?: string | undefined;
|
|
12125
13585
|
} | undefined;
|
|
12126
13586
|
guardian_mfa_page?: {
|
|
12127
|
-
html?: string | undefined;
|
|
12128
13587
|
enabled?: boolean | undefined;
|
|
13588
|
+
html?: string | undefined;
|
|
12129
13589
|
} | undefined;
|
|
12130
13590
|
device_flow?: {
|
|
12131
13591
|
charset?: "base20" | "digits" | undefined;
|
|
@@ -12245,12 +13705,12 @@ declare const tenantSchema: z.ZodObject<{
|
|
|
12245
13705
|
legacy_sandbox_version?: string | undefined;
|
|
12246
13706
|
sandbox_versions_available?: string[] | undefined;
|
|
12247
13707
|
change_password?: {
|
|
12248
|
-
html?: string | undefined;
|
|
12249
13708
|
enabled?: boolean | undefined;
|
|
13709
|
+
html?: string | undefined;
|
|
12250
13710
|
} | undefined;
|
|
12251
13711
|
guardian_mfa_page?: {
|
|
12252
|
-
html?: string | undefined;
|
|
12253
13712
|
enabled?: boolean | undefined;
|
|
13713
|
+
html?: string | undefined;
|
|
12254
13714
|
} | undefined;
|
|
12255
13715
|
device_flow?: {
|
|
12256
13716
|
charset?: "base20" | "digits" | undefined;
|
|
@@ -14874,7 +16334,7 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
14874
16334
|
created_at: z.ZodString;
|
|
14875
16335
|
updated_at: z.ZodString;
|
|
14876
16336
|
name: z.ZodOptional<z.ZodString>;
|
|
14877
|
-
username: z.ZodOptional<z.ZodString
|
|
16337
|
+
username: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
14878
16338
|
given_name: z.ZodOptional<z.ZodString>;
|
|
14879
16339
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
14880
16340
|
family_name: z.ZodOptional<z.ZodString>;
|
|
@@ -15005,8 +16465,8 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
15005
16465
|
}>;
|
|
15006
16466
|
declare const sqlHookSchema: z.ZodObject<{
|
|
15007
16467
|
tenant_id: z.ZodString;
|
|
15008
|
-
|
|
15009
|
-
|
|
16468
|
+
created_at_ts: z.ZodNumber;
|
|
16469
|
+
updated_at_ts: z.ZodNumber;
|
|
15010
16470
|
hook_id: z.ZodString;
|
|
15011
16471
|
trigger_id: z.ZodString;
|
|
15012
16472
|
priority: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -15014,10 +16474,11 @@ declare const sqlHookSchema: z.ZodObject<{
|
|
|
15014
16474
|
synchronous: z.ZodNumber;
|
|
15015
16475
|
url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15016
16476
|
form_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16477
|
+
template_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15017
16478
|
}, "strip", z.ZodTypeAny, {
|
|
15018
16479
|
tenant_id: string;
|
|
15019
|
-
|
|
15020
|
-
|
|
16480
|
+
created_at_ts: number;
|
|
16481
|
+
updated_at_ts: number;
|
|
15021
16482
|
hook_id: string;
|
|
15022
16483
|
trigger_id: string;
|
|
15023
16484
|
enabled: number;
|
|
@@ -15025,10 +16486,11 @@ declare const sqlHookSchema: z.ZodObject<{
|
|
|
15025
16486
|
priority?: number | null | undefined;
|
|
15026
16487
|
url?: string | null | undefined;
|
|
15027
16488
|
form_id?: string | null | undefined;
|
|
16489
|
+
template_id?: string | null | undefined;
|
|
15028
16490
|
}, {
|
|
15029
16491
|
tenant_id: string;
|
|
15030
|
-
|
|
15031
|
-
|
|
16492
|
+
created_at_ts: number;
|
|
16493
|
+
updated_at_ts: number;
|
|
15032
16494
|
hook_id: string;
|
|
15033
16495
|
trigger_id: string;
|
|
15034
16496
|
enabled: number;
|
|
@@ -15036,6 +16498,7 @@ declare const sqlHookSchema: z.ZodObject<{
|
|
|
15036
16498
|
priority?: number | null | undefined;
|
|
15037
16499
|
url?: string | null | undefined;
|
|
15038
16500
|
form_id?: string | null | undefined;
|
|
16501
|
+
template_id?: string | null | undefined;
|
|
15039
16502
|
}>;
|
|
15040
16503
|
declare const sqlEmailProvidersSchema: z.ZodObject<{
|
|
15041
16504
|
tenant_id: z.ZodString;
|
|
@@ -15804,21 +17267,21 @@ declare const sqlTenantSchema: z.ZodObject<{
|
|
|
15804
17267
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
15805
17268
|
html: z.ZodOptional<z.ZodString>;
|
|
15806
17269
|
}, "strip", z.ZodTypeAny, {
|
|
15807
|
-
html?: string | undefined;
|
|
15808
17270
|
enabled?: boolean | undefined;
|
|
15809
|
-
}, {
|
|
15810
17271
|
html?: string | undefined;
|
|
17272
|
+
}, {
|
|
15811
17273
|
enabled?: boolean | undefined;
|
|
17274
|
+
html?: string | undefined;
|
|
15812
17275
|
}>>;
|
|
15813
17276
|
guardian_mfa_page: z.ZodOptional<z.ZodObject<{
|
|
15814
17277
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
15815
17278
|
html: z.ZodOptional<z.ZodString>;
|
|
15816
17279
|
}, "strip", z.ZodTypeAny, {
|
|
15817
|
-
html?: string | undefined;
|
|
15818
17280
|
enabled?: boolean | undefined;
|
|
15819
|
-
}, {
|
|
15820
17281
|
html?: string | undefined;
|
|
17282
|
+
}, {
|
|
15821
17283
|
enabled?: boolean | undefined;
|
|
17284
|
+
html?: string | undefined;
|
|
15822
17285
|
}>>;
|
|
15823
17286
|
device_flow: z.ZodOptional<z.ZodObject<{
|
|
15824
17287
|
charset: z.ZodOptional<z.ZodEnum<[
|
|
@@ -16070,12 +17533,12 @@ declare const sqlTenantSchema: z.ZodObject<{
|
|
|
16070
17533
|
legacy_sandbox_version?: string | undefined;
|
|
16071
17534
|
sandbox_versions_available?: string[] | undefined;
|
|
16072
17535
|
change_password?: {
|
|
16073
|
-
html?: string | undefined;
|
|
16074
17536
|
enabled?: boolean | undefined;
|
|
17537
|
+
html?: string | undefined;
|
|
16075
17538
|
} | undefined;
|
|
16076
17539
|
guardian_mfa_page?: {
|
|
16077
|
-
html?: string | undefined;
|
|
16078
17540
|
enabled?: boolean | undefined;
|
|
17541
|
+
html?: string | undefined;
|
|
16079
17542
|
} | undefined;
|
|
16080
17543
|
device_flow?: {
|
|
16081
17544
|
charset?: "base20" | "digits" | undefined;
|
|
@@ -16195,12 +17658,12 @@ declare const sqlTenantSchema: z.ZodObject<{
|
|
|
16195
17658
|
legacy_sandbox_version?: string | undefined;
|
|
16196
17659
|
sandbox_versions_available?: string[] | undefined;
|
|
16197
17660
|
change_password?: {
|
|
16198
|
-
html?: string | undefined;
|
|
16199
17661
|
enabled?: boolean | undefined;
|
|
17662
|
+
html?: string | undefined;
|
|
16200
17663
|
} | undefined;
|
|
16201
17664
|
guardian_mfa_page?: {
|
|
16202
|
-
html?: string | undefined;
|
|
16203
17665
|
enabled?: boolean | undefined;
|
|
17666
|
+
html?: string | undefined;
|
|
16204
17667
|
} | undefined;
|
|
16205
17668
|
device_flow?: {
|
|
16206
17669
|
charset?: "base20" | "digits" | undefined;
|