@authhero/kysely-adapter 10.95.0 → 10.96.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 +4 -4
- package/dist/kysely-adapter.d.ts +592 -72
- package/dist/kysely-adapter.mjs +1963 -1950
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1677,6 +1677,47 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1677
1677
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
1678
1678
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
1679
1679
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
1680
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
1681
|
+
"none",
|
|
1682
|
+
"low",
|
|
1683
|
+
"fair",
|
|
1684
|
+
"good",
|
|
1685
|
+
"excellent"
|
|
1686
|
+
]>>;
|
|
1687
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
1688
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
1689
|
+
}, "strip", z.ZodTypeAny, {
|
|
1690
|
+
min_length?: number | undefined;
|
|
1691
|
+
}, {
|
|
1692
|
+
min_length?: number | undefined;
|
|
1693
|
+
}>>;
|
|
1694
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
1695
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
1696
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1697
|
+
}, "strip", z.ZodTypeAny, {
|
|
1698
|
+
enable?: boolean | undefined;
|
|
1699
|
+
size?: number | undefined;
|
|
1700
|
+
}, {
|
|
1701
|
+
enable?: boolean | undefined;
|
|
1702
|
+
size?: number | undefined;
|
|
1703
|
+
}>>;
|
|
1704
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
1705
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
1706
|
+
}, "strip", z.ZodTypeAny, {
|
|
1707
|
+
enable?: boolean | undefined;
|
|
1708
|
+
}, {
|
|
1709
|
+
enable?: boolean | undefined;
|
|
1710
|
+
}>>;
|
|
1711
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
1712
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
1713
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1714
|
+
}, "strip", z.ZodTypeAny, {
|
|
1715
|
+
enable?: boolean | undefined;
|
|
1716
|
+
dictionary?: string[] | undefined;
|
|
1717
|
+
}, {
|
|
1718
|
+
enable?: boolean | undefined;
|
|
1719
|
+
dictionary?: string[] | undefined;
|
|
1720
|
+
}>>;
|
|
1680
1721
|
}, "strip", z.ZodTypeAny, {
|
|
1681
1722
|
provider?: string | undefined;
|
|
1682
1723
|
client_id?: string | undefined;
|
|
@@ -1697,6 +1738,21 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1697
1738
|
twilio_sid?: string | undefined;
|
|
1698
1739
|
twilio_token?: string | undefined;
|
|
1699
1740
|
icon_url?: string | undefined;
|
|
1741
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
1742
|
+
password_complexity_options?: {
|
|
1743
|
+
min_length?: number | undefined;
|
|
1744
|
+
} | undefined;
|
|
1745
|
+
password_history?: {
|
|
1746
|
+
enable?: boolean | undefined;
|
|
1747
|
+
size?: number | undefined;
|
|
1748
|
+
} | undefined;
|
|
1749
|
+
password_no_personal_info?: {
|
|
1750
|
+
enable?: boolean | undefined;
|
|
1751
|
+
} | undefined;
|
|
1752
|
+
password_dictionary?: {
|
|
1753
|
+
enable?: boolean | undefined;
|
|
1754
|
+
dictionary?: string[] | undefined;
|
|
1755
|
+
} | undefined;
|
|
1700
1756
|
}, {
|
|
1701
1757
|
provider?: string | undefined;
|
|
1702
1758
|
client_id?: string | undefined;
|
|
@@ -1717,6 +1773,21 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1717
1773
|
twilio_sid?: string | undefined;
|
|
1718
1774
|
twilio_token?: string | undefined;
|
|
1719
1775
|
icon_url?: string | undefined;
|
|
1776
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
1777
|
+
password_complexity_options?: {
|
|
1778
|
+
min_length?: number | undefined;
|
|
1779
|
+
} | undefined;
|
|
1780
|
+
password_history?: {
|
|
1781
|
+
enable?: boolean | undefined;
|
|
1782
|
+
size?: number | undefined;
|
|
1783
|
+
} | undefined;
|
|
1784
|
+
password_no_personal_info?: {
|
|
1785
|
+
enable?: boolean | undefined;
|
|
1786
|
+
} | undefined;
|
|
1787
|
+
password_dictionary?: {
|
|
1788
|
+
enable?: boolean | undefined;
|
|
1789
|
+
dictionary?: string[] | undefined;
|
|
1790
|
+
} | undefined;
|
|
1720
1791
|
}>>;
|
|
1721
1792
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1722
1793
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -1746,6 +1817,21 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1746
1817
|
twilio_sid?: string | undefined;
|
|
1747
1818
|
twilio_token?: string | undefined;
|
|
1748
1819
|
icon_url?: string | undefined;
|
|
1820
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
1821
|
+
password_complexity_options?: {
|
|
1822
|
+
min_length?: number | undefined;
|
|
1823
|
+
} | undefined;
|
|
1824
|
+
password_history?: {
|
|
1825
|
+
enable?: boolean | undefined;
|
|
1826
|
+
size?: number | undefined;
|
|
1827
|
+
} | undefined;
|
|
1828
|
+
password_no_personal_info?: {
|
|
1829
|
+
enable?: boolean | undefined;
|
|
1830
|
+
} | undefined;
|
|
1831
|
+
password_dictionary?: {
|
|
1832
|
+
enable?: boolean | undefined;
|
|
1833
|
+
dictionary?: string[] | undefined;
|
|
1834
|
+
} | undefined;
|
|
1749
1835
|
};
|
|
1750
1836
|
name: string;
|
|
1751
1837
|
strategy: string;
|
|
@@ -1781,6 +1867,21 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
1781
1867
|
twilio_sid?: string | undefined;
|
|
1782
1868
|
twilio_token?: string | undefined;
|
|
1783
1869
|
icon_url?: string | undefined;
|
|
1870
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
1871
|
+
password_complexity_options?: {
|
|
1872
|
+
min_length?: number | undefined;
|
|
1873
|
+
} | undefined;
|
|
1874
|
+
password_history?: {
|
|
1875
|
+
enable?: boolean | undefined;
|
|
1876
|
+
size?: number | undefined;
|
|
1877
|
+
} | undefined;
|
|
1878
|
+
password_no_personal_info?: {
|
|
1879
|
+
enable?: boolean | undefined;
|
|
1880
|
+
} | undefined;
|
|
1881
|
+
password_dictionary?: {
|
|
1882
|
+
enable?: boolean | undefined;
|
|
1883
|
+
dictionary?: string[] | undefined;
|
|
1884
|
+
} | undefined;
|
|
1784
1885
|
} | undefined;
|
|
1785
1886
|
id?: string | undefined;
|
|
1786
1887
|
is_system?: boolean | undefined;
|
|
@@ -1821,6 +1922,47 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1821
1922
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
1822
1923
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
1823
1924
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
1925
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
1926
|
+
"none",
|
|
1927
|
+
"low",
|
|
1928
|
+
"fair",
|
|
1929
|
+
"good",
|
|
1930
|
+
"excellent"
|
|
1931
|
+
]>>;
|
|
1932
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
1933
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
1934
|
+
}, "strip", z.ZodTypeAny, {
|
|
1935
|
+
min_length?: number | undefined;
|
|
1936
|
+
}, {
|
|
1937
|
+
min_length?: number | undefined;
|
|
1938
|
+
}>>;
|
|
1939
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
1940
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
1941
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1942
|
+
}, "strip", z.ZodTypeAny, {
|
|
1943
|
+
enable?: boolean | undefined;
|
|
1944
|
+
size?: number | undefined;
|
|
1945
|
+
}, {
|
|
1946
|
+
enable?: boolean | undefined;
|
|
1947
|
+
size?: number | undefined;
|
|
1948
|
+
}>>;
|
|
1949
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
1950
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
1951
|
+
}, "strip", z.ZodTypeAny, {
|
|
1952
|
+
enable?: boolean | undefined;
|
|
1953
|
+
}, {
|
|
1954
|
+
enable?: boolean | undefined;
|
|
1955
|
+
}>>;
|
|
1956
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
1957
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
1958
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1959
|
+
}, "strip", z.ZodTypeAny, {
|
|
1960
|
+
enable?: boolean | undefined;
|
|
1961
|
+
dictionary?: string[] | undefined;
|
|
1962
|
+
}, {
|
|
1963
|
+
enable?: boolean | undefined;
|
|
1964
|
+
dictionary?: string[] | undefined;
|
|
1965
|
+
}>>;
|
|
1824
1966
|
}, "strip", z.ZodTypeAny, {
|
|
1825
1967
|
provider?: string | undefined;
|
|
1826
1968
|
client_id?: string | undefined;
|
|
@@ -1841,6 +1983,21 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1841
1983
|
twilio_sid?: string | undefined;
|
|
1842
1984
|
twilio_token?: string | undefined;
|
|
1843
1985
|
icon_url?: string | undefined;
|
|
1986
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
1987
|
+
password_complexity_options?: {
|
|
1988
|
+
min_length?: number | undefined;
|
|
1989
|
+
} | undefined;
|
|
1990
|
+
password_history?: {
|
|
1991
|
+
enable?: boolean | undefined;
|
|
1992
|
+
size?: number | undefined;
|
|
1993
|
+
} | undefined;
|
|
1994
|
+
password_no_personal_info?: {
|
|
1995
|
+
enable?: boolean | undefined;
|
|
1996
|
+
} | undefined;
|
|
1997
|
+
password_dictionary?: {
|
|
1998
|
+
enable?: boolean | undefined;
|
|
1999
|
+
dictionary?: string[] | undefined;
|
|
2000
|
+
} | undefined;
|
|
1844
2001
|
}, {
|
|
1845
2002
|
provider?: string | undefined;
|
|
1846
2003
|
client_id?: string | undefined;
|
|
@@ -1861,6 +2018,21 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1861
2018
|
twilio_sid?: string | undefined;
|
|
1862
2019
|
twilio_token?: string | undefined;
|
|
1863
2020
|
icon_url?: string | undefined;
|
|
2021
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
2022
|
+
password_complexity_options?: {
|
|
2023
|
+
min_length?: number | undefined;
|
|
2024
|
+
} | undefined;
|
|
2025
|
+
password_history?: {
|
|
2026
|
+
enable?: boolean | undefined;
|
|
2027
|
+
size?: number | undefined;
|
|
2028
|
+
} | undefined;
|
|
2029
|
+
password_no_personal_info?: {
|
|
2030
|
+
enable?: boolean | undefined;
|
|
2031
|
+
} | undefined;
|
|
2032
|
+
password_dictionary?: {
|
|
2033
|
+
enable?: boolean | undefined;
|
|
2034
|
+
dictionary?: string[] | undefined;
|
|
2035
|
+
} | undefined;
|
|
1864
2036
|
}>>;
|
|
1865
2037
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1866
2038
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -1892,6 +2064,21 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1892
2064
|
twilio_sid?: string | undefined;
|
|
1893
2065
|
twilio_token?: string | undefined;
|
|
1894
2066
|
icon_url?: string | undefined;
|
|
2067
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
2068
|
+
password_complexity_options?: {
|
|
2069
|
+
min_length?: number | undefined;
|
|
2070
|
+
} | undefined;
|
|
2071
|
+
password_history?: {
|
|
2072
|
+
enable?: boolean | undefined;
|
|
2073
|
+
size?: number | undefined;
|
|
2074
|
+
} | undefined;
|
|
2075
|
+
password_no_personal_info?: {
|
|
2076
|
+
enable?: boolean | undefined;
|
|
2077
|
+
} | undefined;
|
|
2078
|
+
password_dictionary?: {
|
|
2079
|
+
enable?: boolean | undefined;
|
|
2080
|
+
dictionary?: string[] | undefined;
|
|
2081
|
+
} | undefined;
|
|
1895
2082
|
};
|
|
1896
2083
|
name: string;
|
|
1897
2084
|
strategy: string;
|
|
@@ -1929,6 +2116,21 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
1929
2116
|
twilio_sid?: string | undefined;
|
|
1930
2117
|
twilio_token?: string | undefined;
|
|
1931
2118
|
icon_url?: string | undefined;
|
|
2119
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
2120
|
+
password_complexity_options?: {
|
|
2121
|
+
min_length?: number | undefined;
|
|
2122
|
+
} | undefined;
|
|
2123
|
+
password_history?: {
|
|
2124
|
+
enable?: boolean | undefined;
|
|
2125
|
+
size?: number | undefined;
|
|
2126
|
+
} | undefined;
|
|
2127
|
+
password_no_personal_info?: {
|
|
2128
|
+
enable?: boolean | undefined;
|
|
2129
|
+
} | undefined;
|
|
2130
|
+
password_dictionary?: {
|
|
2131
|
+
enable?: boolean | undefined;
|
|
2132
|
+
dictionary?: string[] | undefined;
|
|
2133
|
+
} | undefined;
|
|
1932
2134
|
} | undefined;
|
|
1933
2135
|
id?: string | undefined;
|
|
1934
2136
|
is_system?: boolean | undefined;
|
|
@@ -11735,6 +11937,117 @@ declare const tenantSchema: z.ZodObject<{
|
|
|
11735
11937
|
}>>;
|
|
11736
11938
|
pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
|
|
11737
11939
|
authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
|
11940
|
+
mfa: z.ZodOptional<z.ZodObject<{
|
|
11941
|
+
factors: z.ZodOptional<z.ZodObject<{
|
|
11942
|
+
sms: z.ZodDefault<z.ZodBoolean>;
|
|
11943
|
+
otp: z.ZodDefault<z.ZodBoolean>;
|
|
11944
|
+
email: z.ZodDefault<z.ZodBoolean>;
|
|
11945
|
+
push_notification: z.ZodDefault<z.ZodBoolean>;
|
|
11946
|
+
webauthn_roaming: z.ZodDefault<z.ZodBoolean>;
|
|
11947
|
+
webauthn_platform: z.ZodDefault<z.ZodBoolean>;
|
|
11948
|
+
recovery_code: z.ZodDefault<z.ZodBoolean>;
|
|
11949
|
+
duo: z.ZodDefault<z.ZodBoolean>;
|
|
11950
|
+
}, "strip", z.ZodTypeAny, {
|
|
11951
|
+
email: boolean;
|
|
11952
|
+
otp: boolean;
|
|
11953
|
+
sms: boolean;
|
|
11954
|
+
push_notification: boolean;
|
|
11955
|
+
webauthn_roaming: boolean;
|
|
11956
|
+
webauthn_platform: boolean;
|
|
11957
|
+
recovery_code: boolean;
|
|
11958
|
+
duo: boolean;
|
|
11959
|
+
}, {
|
|
11960
|
+
email?: boolean | undefined;
|
|
11961
|
+
otp?: boolean | undefined;
|
|
11962
|
+
sms?: boolean | undefined;
|
|
11963
|
+
push_notification?: boolean | undefined;
|
|
11964
|
+
webauthn_roaming?: boolean | undefined;
|
|
11965
|
+
webauthn_platform?: boolean | undefined;
|
|
11966
|
+
recovery_code?: boolean | undefined;
|
|
11967
|
+
duo?: boolean | undefined;
|
|
11968
|
+
}>>;
|
|
11969
|
+
sms_provider: z.ZodOptional<z.ZodObject<{
|
|
11970
|
+
provider: z.ZodOptional<z.ZodEnum<[
|
|
11971
|
+
"twilio",
|
|
11972
|
+
"vonage",
|
|
11973
|
+
"aws_sns",
|
|
11974
|
+
"phone_message_hook"
|
|
11975
|
+
]>>;
|
|
11976
|
+
}, "strip", z.ZodTypeAny, {
|
|
11977
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
11978
|
+
}, {
|
|
11979
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
11980
|
+
}>>;
|
|
11981
|
+
twilio: z.ZodOptional<z.ZodObject<{
|
|
11982
|
+
sid: z.ZodOptional<z.ZodString>;
|
|
11983
|
+
auth_token: z.ZodOptional<z.ZodString>;
|
|
11984
|
+
from: z.ZodOptional<z.ZodString>;
|
|
11985
|
+
messaging_service_sid: z.ZodOptional<z.ZodString>;
|
|
11986
|
+
}, "strip", z.ZodTypeAny, {
|
|
11987
|
+
from?: string | undefined;
|
|
11988
|
+
sid?: string | undefined;
|
|
11989
|
+
auth_token?: string | undefined;
|
|
11990
|
+
messaging_service_sid?: string | undefined;
|
|
11991
|
+
}, {
|
|
11992
|
+
from?: string | undefined;
|
|
11993
|
+
sid?: string | undefined;
|
|
11994
|
+
auth_token?: string | undefined;
|
|
11995
|
+
messaging_service_sid?: string | undefined;
|
|
11996
|
+
}>>;
|
|
11997
|
+
phone_message: z.ZodOptional<z.ZodObject<{
|
|
11998
|
+
message: z.ZodOptional<z.ZodString>;
|
|
11999
|
+
}, "strip", z.ZodTypeAny, {
|
|
12000
|
+
message?: string | undefined;
|
|
12001
|
+
}, {
|
|
12002
|
+
message?: string | undefined;
|
|
12003
|
+
}>>;
|
|
12004
|
+
}, "strip", z.ZodTypeAny, {
|
|
12005
|
+
factors?: {
|
|
12006
|
+
email: boolean;
|
|
12007
|
+
otp: boolean;
|
|
12008
|
+
sms: boolean;
|
|
12009
|
+
push_notification: boolean;
|
|
12010
|
+
webauthn_roaming: boolean;
|
|
12011
|
+
webauthn_platform: boolean;
|
|
12012
|
+
recovery_code: boolean;
|
|
12013
|
+
duo: boolean;
|
|
12014
|
+
} | undefined;
|
|
12015
|
+
twilio?: {
|
|
12016
|
+
from?: string | undefined;
|
|
12017
|
+
sid?: string | undefined;
|
|
12018
|
+
auth_token?: string | undefined;
|
|
12019
|
+
messaging_service_sid?: string | undefined;
|
|
12020
|
+
} | undefined;
|
|
12021
|
+
sms_provider?: {
|
|
12022
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
12023
|
+
} | undefined;
|
|
12024
|
+
phone_message?: {
|
|
12025
|
+
message?: string | undefined;
|
|
12026
|
+
} | undefined;
|
|
12027
|
+
}, {
|
|
12028
|
+
factors?: {
|
|
12029
|
+
email?: boolean | undefined;
|
|
12030
|
+
otp?: boolean | undefined;
|
|
12031
|
+
sms?: boolean | undefined;
|
|
12032
|
+
push_notification?: boolean | undefined;
|
|
12033
|
+
webauthn_roaming?: boolean | undefined;
|
|
12034
|
+
webauthn_platform?: boolean | undefined;
|
|
12035
|
+
recovery_code?: boolean | undefined;
|
|
12036
|
+
duo?: boolean | undefined;
|
|
12037
|
+
} | undefined;
|
|
12038
|
+
twilio?: {
|
|
12039
|
+
from?: string | undefined;
|
|
12040
|
+
sid?: string | undefined;
|
|
12041
|
+
auth_token?: string | undefined;
|
|
12042
|
+
messaging_service_sid?: string | undefined;
|
|
12043
|
+
} | undefined;
|
|
12044
|
+
sms_provider?: {
|
|
12045
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
12046
|
+
} | undefined;
|
|
12047
|
+
phone_message?: {
|
|
12048
|
+
message?: string | undefined;
|
|
12049
|
+
} | undefined;
|
|
12050
|
+
}>>;
|
|
11738
12051
|
created_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
11739
12052
|
updated_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
11740
12053
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11838,6 +12151,30 @@ declare const tenantSchema: z.ZodObject<{
|
|
|
11838
12151
|
} | undefined;
|
|
11839
12152
|
pushed_authorization_requests_supported?: boolean | undefined;
|
|
11840
12153
|
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
12154
|
+
mfa?: {
|
|
12155
|
+
factors?: {
|
|
12156
|
+
email: boolean;
|
|
12157
|
+
otp: boolean;
|
|
12158
|
+
sms: boolean;
|
|
12159
|
+
push_notification: boolean;
|
|
12160
|
+
webauthn_roaming: boolean;
|
|
12161
|
+
webauthn_platform: boolean;
|
|
12162
|
+
recovery_code: boolean;
|
|
12163
|
+
duo: boolean;
|
|
12164
|
+
} | undefined;
|
|
12165
|
+
twilio?: {
|
|
12166
|
+
from?: string | undefined;
|
|
12167
|
+
sid?: string | undefined;
|
|
12168
|
+
auth_token?: string | undefined;
|
|
12169
|
+
messaging_service_sid?: string | undefined;
|
|
12170
|
+
} | undefined;
|
|
12171
|
+
sms_provider?: {
|
|
12172
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
12173
|
+
} | undefined;
|
|
12174
|
+
phone_message?: {
|
|
12175
|
+
message?: string | undefined;
|
|
12176
|
+
} | undefined;
|
|
12177
|
+
} | undefined;
|
|
11841
12178
|
}, {
|
|
11842
12179
|
created_at: string | null;
|
|
11843
12180
|
updated_at: string | null;
|
|
@@ -11939,6 +12276,30 @@ declare const tenantSchema: z.ZodObject<{
|
|
|
11939
12276
|
} | undefined;
|
|
11940
12277
|
pushed_authorization_requests_supported?: boolean | undefined;
|
|
11941
12278
|
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
12279
|
+
mfa?: {
|
|
12280
|
+
factors?: {
|
|
12281
|
+
email?: boolean | undefined;
|
|
12282
|
+
otp?: boolean | undefined;
|
|
12283
|
+
sms?: boolean | undefined;
|
|
12284
|
+
push_notification?: boolean | undefined;
|
|
12285
|
+
webauthn_roaming?: boolean | undefined;
|
|
12286
|
+
webauthn_platform?: boolean | undefined;
|
|
12287
|
+
recovery_code?: boolean | undefined;
|
|
12288
|
+
duo?: boolean | undefined;
|
|
12289
|
+
} | undefined;
|
|
12290
|
+
twilio?: {
|
|
12291
|
+
from?: string | undefined;
|
|
12292
|
+
sid?: string | undefined;
|
|
12293
|
+
auth_token?: string | undefined;
|
|
12294
|
+
messaging_service_sid?: string | undefined;
|
|
12295
|
+
} | undefined;
|
|
12296
|
+
sms_provider?: {
|
|
12297
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
12298
|
+
} | undefined;
|
|
12299
|
+
phone_message?: {
|
|
12300
|
+
message?: string | undefined;
|
|
12301
|
+
} | undefined;
|
|
12302
|
+
} | undefined;
|
|
11942
12303
|
}>;
|
|
11943
12304
|
export type Tenant = z.infer<typeof tenantSchema>;
|
|
11944
12305
|
declare const themeInsertSchema: z.ZodObject<{
|
|
@@ -12052,42 +12413,42 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
12052
12413
|
bold: z.ZodBoolean;
|
|
12053
12414
|
size: z.ZodNumber;
|
|
12054
12415
|
}, "strip", z.ZodTypeAny, {
|
|
12055
|
-
bold: boolean;
|
|
12056
12416
|
size: number;
|
|
12057
|
-
}, {
|
|
12058
12417
|
bold: boolean;
|
|
12418
|
+
}, {
|
|
12059
12419
|
size: number;
|
|
12420
|
+
bold: boolean;
|
|
12060
12421
|
}>;
|
|
12061
12422
|
buttons_text: z.ZodObject<{
|
|
12062
12423
|
bold: z.ZodBoolean;
|
|
12063
12424
|
size: z.ZodNumber;
|
|
12064
12425
|
}, "strip", z.ZodTypeAny, {
|
|
12065
|
-
bold: boolean;
|
|
12066
12426
|
size: number;
|
|
12067
|
-
}, {
|
|
12068
12427
|
bold: boolean;
|
|
12428
|
+
}, {
|
|
12069
12429
|
size: number;
|
|
12430
|
+
bold: boolean;
|
|
12070
12431
|
}>;
|
|
12071
12432
|
font_url: z.ZodString;
|
|
12072
12433
|
input_labels: z.ZodObject<{
|
|
12073
12434
|
bold: z.ZodBoolean;
|
|
12074
12435
|
size: z.ZodNumber;
|
|
12075
12436
|
}, "strip", z.ZodTypeAny, {
|
|
12076
|
-
bold: boolean;
|
|
12077
12437
|
size: number;
|
|
12078
|
-
}, {
|
|
12079
12438
|
bold: boolean;
|
|
12439
|
+
}, {
|
|
12080
12440
|
size: number;
|
|
12441
|
+
bold: boolean;
|
|
12081
12442
|
}>;
|
|
12082
12443
|
links: z.ZodObject<{
|
|
12083
12444
|
bold: z.ZodBoolean;
|
|
12084
12445
|
size: z.ZodNumber;
|
|
12085
12446
|
}, "strip", z.ZodTypeAny, {
|
|
12086
|
-
bold: boolean;
|
|
12087
12447
|
size: number;
|
|
12088
|
-
}, {
|
|
12089
12448
|
bold: boolean;
|
|
12449
|
+
}, {
|
|
12090
12450
|
size: number;
|
|
12451
|
+
bold: boolean;
|
|
12091
12452
|
}>;
|
|
12092
12453
|
links_style: z.ZodEnum<[
|
|
12093
12454
|
"normal",
|
|
@@ -12098,77 +12459,77 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
12098
12459
|
bold: z.ZodBoolean;
|
|
12099
12460
|
size: z.ZodNumber;
|
|
12100
12461
|
}, "strip", z.ZodTypeAny, {
|
|
12101
|
-
bold: boolean;
|
|
12102
12462
|
size: number;
|
|
12103
|
-
}, {
|
|
12104
12463
|
bold: boolean;
|
|
12464
|
+
}, {
|
|
12105
12465
|
size: number;
|
|
12466
|
+
bold: boolean;
|
|
12106
12467
|
}>;
|
|
12107
12468
|
title: z.ZodObject<{
|
|
12108
12469
|
bold: z.ZodBoolean;
|
|
12109
12470
|
size: z.ZodNumber;
|
|
12110
12471
|
}, "strip", z.ZodTypeAny, {
|
|
12111
|
-
bold: boolean;
|
|
12112
12472
|
size: number;
|
|
12113
|
-
}, {
|
|
12114
12473
|
bold: boolean;
|
|
12474
|
+
}, {
|
|
12115
12475
|
size: number;
|
|
12476
|
+
bold: boolean;
|
|
12116
12477
|
}>;
|
|
12117
12478
|
}, "strip", z.ZodTypeAny, {
|
|
12118
12479
|
title: {
|
|
12119
|
-
bold: boolean;
|
|
12120
12480
|
size: number;
|
|
12481
|
+
bold: boolean;
|
|
12121
12482
|
};
|
|
12122
12483
|
links: {
|
|
12123
|
-
bold: boolean;
|
|
12124
12484
|
size: number;
|
|
12485
|
+
bold: boolean;
|
|
12125
12486
|
};
|
|
12126
12487
|
body_text: {
|
|
12127
|
-
bold: boolean;
|
|
12128
12488
|
size: number;
|
|
12489
|
+
bold: boolean;
|
|
12129
12490
|
};
|
|
12130
12491
|
buttons_text: {
|
|
12131
|
-
bold: boolean;
|
|
12132
12492
|
size: number;
|
|
12493
|
+
bold: boolean;
|
|
12133
12494
|
};
|
|
12134
12495
|
font_url: string;
|
|
12135
12496
|
input_labels: {
|
|
12136
|
-
bold: boolean;
|
|
12137
12497
|
size: number;
|
|
12498
|
+
bold: boolean;
|
|
12138
12499
|
};
|
|
12139
12500
|
links_style: "normal" | "underlined";
|
|
12140
12501
|
reference_text_size: number;
|
|
12141
12502
|
subtitle: {
|
|
12142
|
-
bold: boolean;
|
|
12143
12503
|
size: number;
|
|
12504
|
+
bold: boolean;
|
|
12144
12505
|
};
|
|
12145
12506
|
}, {
|
|
12146
12507
|
title: {
|
|
12147
|
-
bold: boolean;
|
|
12148
12508
|
size: number;
|
|
12509
|
+
bold: boolean;
|
|
12149
12510
|
};
|
|
12150
12511
|
links: {
|
|
12151
|
-
bold: boolean;
|
|
12152
12512
|
size: number;
|
|
12513
|
+
bold: boolean;
|
|
12153
12514
|
};
|
|
12154
12515
|
body_text: {
|
|
12155
|
-
bold: boolean;
|
|
12156
12516
|
size: number;
|
|
12517
|
+
bold: boolean;
|
|
12157
12518
|
};
|
|
12158
12519
|
buttons_text: {
|
|
12159
|
-
bold: boolean;
|
|
12160
12520
|
size: number;
|
|
12521
|
+
bold: boolean;
|
|
12161
12522
|
};
|
|
12162
12523
|
font_url: string;
|
|
12163
12524
|
input_labels: {
|
|
12164
|
-
bold: boolean;
|
|
12165
12525
|
size: number;
|
|
12526
|
+
bold: boolean;
|
|
12166
12527
|
};
|
|
12167
12528
|
links_style: "normal" | "underlined";
|
|
12168
12529
|
reference_text_size: number;
|
|
12169
12530
|
subtitle: {
|
|
12170
|
-
bold: boolean;
|
|
12171
12531
|
size: number;
|
|
12532
|
+
bold: boolean;
|
|
12172
12533
|
};
|
|
12173
12534
|
}>;
|
|
12174
12535
|
page_background: z.ZodObject<{
|
|
@@ -12260,31 +12621,31 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
12260
12621
|
displayName: string;
|
|
12261
12622
|
fonts: {
|
|
12262
12623
|
title: {
|
|
12263
|
-
bold: boolean;
|
|
12264
12624
|
size: number;
|
|
12625
|
+
bold: boolean;
|
|
12265
12626
|
};
|
|
12266
12627
|
links: {
|
|
12267
|
-
bold: boolean;
|
|
12268
12628
|
size: number;
|
|
12629
|
+
bold: boolean;
|
|
12269
12630
|
};
|
|
12270
12631
|
body_text: {
|
|
12271
|
-
bold: boolean;
|
|
12272
12632
|
size: number;
|
|
12633
|
+
bold: boolean;
|
|
12273
12634
|
};
|
|
12274
12635
|
buttons_text: {
|
|
12275
|
-
bold: boolean;
|
|
12276
12636
|
size: number;
|
|
12637
|
+
bold: boolean;
|
|
12277
12638
|
};
|
|
12278
12639
|
font_url: string;
|
|
12279
12640
|
input_labels: {
|
|
12280
|
-
bold: boolean;
|
|
12281
12641
|
size: number;
|
|
12642
|
+
bold: boolean;
|
|
12282
12643
|
};
|
|
12283
12644
|
links_style: "normal" | "underlined";
|
|
12284
12645
|
reference_text_size: number;
|
|
12285
12646
|
subtitle: {
|
|
12286
|
-
bold: boolean;
|
|
12287
12647
|
size: number;
|
|
12648
|
+
bold: boolean;
|
|
12288
12649
|
};
|
|
12289
12650
|
};
|
|
12290
12651
|
widget: {
|
|
@@ -12335,31 +12696,31 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
12335
12696
|
displayName: string;
|
|
12336
12697
|
fonts: {
|
|
12337
12698
|
title: {
|
|
12338
|
-
bold: boolean;
|
|
12339
12699
|
size: number;
|
|
12700
|
+
bold: boolean;
|
|
12340
12701
|
};
|
|
12341
12702
|
links: {
|
|
12342
|
-
bold: boolean;
|
|
12343
12703
|
size: number;
|
|
12704
|
+
bold: boolean;
|
|
12344
12705
|
};
|
|
12345
12706
|
body_text: {
|
|
12346
|
-
bold: boolean;
|
|
12347
12707
|
size: number;
|
|
12708
|
+
bold: boolean;
|
|
12348
12709
|
};
|
|
12349
12710
|
buttons_text: {
|
|
12350
|
-
bold: boolean;
|
|
12351
12711
|
size: number;
|
|
12712
|
+
bold: boolean;
|
|
12352
12713
|
};
|
|
12353
12714
|
font_url: string;
|
|
12354
12715
|
input_labels: {
|
|
12355
|
-
bold: boolean;
|
|
12356
12716
|
size: number;
|
|
12717
|
+
bold: boolean;
|
|
12357
12718
|
};
|
|
12358
12719
|
links_style: "normal" | "underlined";
|
|
12359
12720
|
reference_text_size: number;
|
|
12360
12721
|
subtitle: {
|
|
12361
|
-
bold: boolean;
|
|
12362
12722
|
size: number;
|
|
12723
|
+
bold: boolean;
|
|
12363
12724
|
};
|
|
12364
12725
|
};
|
|
12365
12726
|
widget: {
|
|
@@ -12482,42 +12843,42 @@ declare const themeSchema: z.ZodObject<{
|
|
|
12482
12843
|
bold: z.ZodBoolean;
|
|
12483
12844
|
size: z.ZodNumber;
|
|
12484
12845
|
}, "strip", z.ZodTypeAny, {
|
|
12485
|
-
bold: boolean;
|
|
12486
12846
|
size: number;
|
|
12487
|
-
}, {
|
|
12488
12847
|
bold: boolean;
|
|
12848
|
+
}, {
|
|
12489
12849
|
size: number;
|
|
12850
|
+
bold: boolean;
|
|
12490
12851
|
}>;
|
|
12491
12852
|
buttons_text: z.ZodObject<{
|
|
12492
12853
|
bold: z.ZodBoolean;
|
|
12493
12854
|
size: z.ZodNumber;
|
|
12494
12855
|
}, "strip", z.ZodTypeAny, {
|
|
12495
|
-
bold: boolean;
|
|
12496
12856
|
size: number;
|
|
12497
|
-
}, {
|
|
12498
12857
|
bold: boolean;
|
|
12858
|
+
}, {
|
|
12499
12859
|
size: number;
|
|
12860
|
+
bold: boolean;
|
|
12500
12861
|
}>;
|
|
12501
12862
|
font_url: z.ZodString;
|
|
12502
12863
|
input_labels: z.ZodObject<{
|
|
12503
12864
|
bold: z.ZodBoolean;
|
|
12504
12865
|
size: z.ZodNumber;
|
|
12505
12866
|
}, "strip", z.ZodTypeAny, {
|
|
12506
|
-
bold: boolean;
|
|
12507
12867
|
size: number;
|
|
12508
|
-
}, {
|
|
12509
12868
|
bold: boolean;
|
|
12869
|
+
}, {
|
|
12510
12870
|
size: number;
|
|
12871
|
+
bold: boolean;
|
|
12511
12872
|
}>;
|
|
12512
12873
|
links: z.ZodObject<{
|
|
12513
12874
|
bold: z.ZodBoolean;
|
|
12514
12875
|
size: z.ZodNumber;
|
|
12515
12876
|
}, "strip", z.ZodTypeAny, {
|
|
12516
|
-
bold: boolean;
|
|
12517
12877
|
size: number;
|
|
12518
|
-
}, {
|
|
12519
12878
|
bold: boolean;
|
|
12879
|
+
}, {
|
|
12520
12880
|
size: number;
|
|
12881
|
+
bold: boolean;
|
|
12521
12882
|
}>;
|
|
12522
12883
|
links_style: z.ZodEnum<[
|
|
12523
12884
|
"normal",
|
|
@@ -12528,77 +12889,77 @@ declare const themeSchema: z.ZodObject<{
|
|
|
12528
12889
|
bold: z.ZodBoolean;
|
|
12529
12890
|
size: z.ZodNumber;
|
|
12530
12891
|
}, "strip", z.ZodTypeAny, {
|
|
12531
|
-
bold: boolean;
|
|
12532
12892
|
size: number;
|
|
12533
|
-
}, {
|
|
12534
12893
|
bold: boolean;
|
|
12894
|
+
}, {
|
|
12535
12895
|
size: number;
|
|
12896
|
+
bold: boolean;
|
|
12536
12897
|
}>;
|
|
12537
12898
|
title: z.ZodObject<{
|
|
12538
12899
|
bold: z.ZodBoolean;
|
|
12539
12900
|
size: z.ZodNumber;
|
|
12540
12901
|
}, "strip", z.ZodTypeAny, {
|
|
12541
|
-
bold: boolean;
|
|
12542
12902
|
size: number;
|
|
12543
|
-
}, {
|
|
12544
12903
|
bold: boolean;
|
|
12904
|
+
}, {
|
|
12545
12905
|
size: number;
|
|
12906
|
+
bold: boolean;
|
|
12546
12907
|
}>;
|
|
12547
12908
|
}, "strip", z.ZodTypeAny, {
|
|
12548
12909
|
title: {
|
|
12549
|
-
bold: boolean;
|
|
12550
12910
|
size: number;
|
|
12911
|
+
bold: boolean;
|
|
12551
12912
|
};
|
|
12552
12913
|
links: {
|
|
12553
|
-
bold: boolean;
|
|
12554
12914
|
size: number;
|
|
12915
|
+
bold: boolean;
|
|
12555
12916
|
};
|
|
12556
12917
|
body_text: {
|
|
12557
|
-
bold: boolean;
|
|
12558
12918
|
size: number;
|
|
12919
|
+
bold: boolean;
|
|
12559
12920
|
};
|
|
12560
12921
|
buttons_text: {
|
|
12561
|
-
bold: boolean;
|
|
12562
12922
|
size: number;
|
|
12923
|
+
bold: boolean;
|
|
12563
12924
|
};
|
|
12564
12925
|
font_url: string;
|
|
12565
12926
|
input_labels: {
|
|
12566
|
-
bold: boolean;
|
|
12567
12927
|
size: number;
|
|
12928
|
+
bold: boolean;
|
|
12568
12929
|
};
|
|
12569
12930
|
links_style: "normal" | "underlined";
|
|
12570
12931
|
reference_text_size: number;
|
|
12571
12932
|
subtitle: {
|
|
12572
|
-
bold: boolean;
|
|
12573
12933
|
size: number;
|
|
12934
|
+
bold: boolean;
|
|
12574
12935
|
};
|
|
12575
12936
|
}, {
|
|
12576
12937
|
title: {
|
|
12577
|
-
bold: boolean;
|
|
12578
12938
|
size: number;
|
|
12939
|
+
bold: boolean;
|
|
12579
12940
|
};
|
|
12580
12941
|
links: {
|
|
12581
|
-
bold: boolean;
|
|
12582
12942
|
size: number;
|
|
12943
|
+
bold: boolean;
|
|
12583
12944
|
};
|
|
12584
12945
|
body_text: {
|
|
12585
|
-
bold: boolean;
|
|
12586
12946
|
size: number;
|
|
12947
|
+
bold: boolean;
|
|
12587
12948
|
};
|
|
12588
12949
|
buttons_text: {
|
|
12589
|
-
bold: boolean;
|
|
12590
12950
|
size: number;
|
|
12951
|
+
bold: boolean;
|
|
12591
12952
|
};
|
|
12592
12953
|
font_url: string;
|
|
12593
12954
|
input_labels: {
|
|
12594
|
-
bold: boolean;
|
|
12595
12955
|
size: number;
|
|
12956
|
+
bold: boolean;
|
|
12596
12957
|
};
|
|
12597
12958
|
links_style: "normal" | "underlined";
|
|
12598
12959
|
reference_text_size: number;
|
|
12599
12960
|
subtitle: {
|
|
12600
|
-
bold: boolean;
|
|
12601
12961
|
size: number;
|
|
12962
|
+
bold: boolean;
|
|
12602
12963
|
};
|
|
12603
12964
|
}>;
|
|
12604
12965
|
page_background: z.ZodObject<{
|
|
@@ -12692,31 +13053,31 @@ declare const themeSchema: z.ZodObject<{
|
|
|
12692
13053
|
displayName: string;
|
|
12693
13054
|
fonts: {
|
|
12694
13055
|
title: {
|
|
12695
|
-
bold: boolean;
|
|
12696
13056
|
size: number;
|
|
13057
|
+
bold: boolean;
|
|
12697
13058
|
};
|
|
12698
13059
|
links: {
|
|
12699
|
-
bold: boolean;
|
|
12700
13060
|
size: number;
|
|
13061
|
+
bold: boolean;
|
|
12701
13062
|
};
|
|
12702
13063
|
body_text: {
|
|
12703
|
-
bold: boolean;
|
|
12704
13064
|
size: number;
|
|
13065
|
+
bold: boolean;
|
|
12705
13066
|
};
|
|
12706
13067
|
buttons_text: {
|
|
12707
|
-
bold: boolean;
|
|
12708
13068
|
size: number;
|
|
13069
|
+
bold: boolean;
|
|
12709
13070
|
};
|
|
12710
13071
|
font_url: string;
|
|
12711
13072
|
input_labels: {
|
|
12712
|
-
bold: boolean;
|
|
12713
13073
|
size: number;
|
|
13074
|
+
bold: boolean;
|
|
12714
13075
|
};
|
|
12715
13076
|
links_style: "normal" | "underlined";
|
|
12716
13077
|
reference_text_size: number;
|
|
12717
13078
|
subtitle: {
|
|
12718
|
-
bold: boolean;
|
|
12719
13079
|
size: number;
|
|
13080
|
+
bold: boolean;
|
|
12720
13081
|
};
|
|
12721
13082
|
};
|
|
12722
13083
|
widget: {
|
|
@@ -12768,31 +13129,31 @@ declare const themeSchema: z.ZodObject<{
|
|
|
12768
13129
|
displayName: string;
|
|
12769
13130
|
fonts: {
|
|
12770
13131
|
title: {
|
|
12771
|
-
bold: boolean;
|
|
12772
13132
|
size: number;
|
|
13133
|
+
bold: boolean;
|
|
12773
13134
|
};
|
|
12774
13135
|
links: {
|
|
12775
|
-
bold: boolean;
|
|
12776
13136
|
size: number;
|
|
13137
|
+
bold: boolean;
|
|
12777
13138
|
};
|
|
12778
13139
|
body_text: {
|
|
12779
|
-
bold: boolean;
|
|
12780
13140
|
size: number;
|
|
13141
|
+
bold: boolean;
|
|
12781
13142
|
};
|
|
12782
13143
|
buttons_text: {
|
|
12783
|
-
bold: boolean;
|
|
12784
13144
|
size: number;
|
|
13145
|
+
bold: boolean;
|
|
12785
13146
|
};
|
|
12786
13147
|
font_url: string;
|
|
12787
13148
|
input_labels: {
|
|
12788
|
-
bold: boolean;
|
|
12789
13149
|
size: number;
|
|
13150
|
+
bold: boolean;
|
|
12790
13151
|
};
|
|
12791
13152
|
links_style: "normal" | "underlined";
|
|
12792
13153
|
reference_text_size: number;
|
|
12793
13154
|
subtitle: {
|
|
12794
|
-
bold: boolean;
|
|
12795
13155
|
size: number;
|
|
13156
|
+
bold: boolean;
|
|
12796
13157
|
};
|
|
12797
13158
|
};
|
|
12798
13159
|
widget: {
|
|
@@ -15530,6 +15891,117 @@ declare const sqlTenantSchema: z.ZodObject<{
|
|
|
15530
15891
|
}>>;
|
|
15531
15892
|
pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
|
|
15532
15893
|
authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
|
15894
|
+
mfa: z.ZodOptional<z.ZodObject<{
|
|
15895
|
+
factors: z.ZodOptional<z.ZodObject<{
|
|
15896
|
+
sms: z.ZodDefault<z.ZodBoolean>;
|
|
15897
|
+
otp: z.ZodDefault<z.ZodBoolean>;
|
|
15898
|
+
email: z.ZodDefault<z.ZodBoolean>;
|
|
15899
|
+
push_notification: z.ZodDefault<z.ZodBoolean>;
|
|
15900
|
+
webauthn_roaming: z.ZodDefault<z.ZodBoolean>;
|
|
15901
|
+
webauthn_platform: z.ZodDefault<z.ZodBoolean>;
|
|
15902
|
+
recovery_code: z.ZodDefault<z.ZodBoolean>;
|
|
15903
|
+
duo: z.ZodDefault<z.ZodBoolean>;
|
|
15904
|
+
}, "strip", z.ZodTypeAny, {
|
|
15905
|
+
email: boolean;
|
|
15906
|
+
otp: boolean;
|
|
15907
|
+
sms: boolean;
|
|
15908
|
+
push_notification: boolean;
|
|
15909
|
+
webauthn_roaming: boolean;
|
|
15910
|
+
webauthn_platform: boolean;
|
|
15911
|
+
recovery_code: boolean;
|
|
15912
|
+
duo: boolean;
|
|
15913
|
+
}, {
|
|
15914
|
+
email?: boolean | undefined;
|
|
15915
|
+
otp?: boolean | undefined;
|
|
15916
|
+
sms?: boolean | undefined;
|
|
15917
|
+
push_notification?: boolean | undefined;
|
|
15918
|
+
webauthn_roaming?: boolean | undefined;
|
|
15919
|
+
webauthn_platform?: boolean | undefined;
|
|
15920
|
+
recovery_code?: boolean | undefined;
|
|
15921
|
+
duo?: boolean | undefined;
|
|
15922
|
+
}>>;
|
|
15923
|
+
sms_provider: z.ZodOptional<z.ZodObject<{
|
|
15924
|
+
provider: z.ZodOptional<z.ZodEnum<[
|
|
15925
|
+
"twilio",
|
|
15926
|
+
"vonage",
|
|
15927
|
+
"aws_sns",
|
|
15928
|
+
"phone_message_hook"
|
|
15929
|
+
]>>;
|
|
15930
|
+
}, "strip", z.ZodTypeAny, {
|
|
15931
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
15932
|
+
}, {
|
|
15933
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
15934
|
+
}>>;
|
|
15935
|
+
twilio: z.ZodOptional<z.ZodObject<{
|
|
15936
|
+
sid: z.ZodOptional<z.ZodString>;
|
|
15937
|
+
auth_token: z.ZodOptional<z.ZodString>;
|
|
15938
|
+
from: z.ZodOptional<z.ZodString>;
|
|
15939
|
+
messaging_service_sid: z.ZodOptional<z.ZodString>;
|
|
15940
|
+
}, "strip", z.ZodTypeAny, {
|
|
15941
|
+
from?: string | undefined;
|
|
15942
|
+
sid?: string | undefined;
|
|
15943
|
+
auth_token?: string | undefined;
|
|
15944
|
+
messaging_service_sid?: string | undefined;
|
|
15945
|
+
}, {
|
|
15946
|
+
from?: string | undefined;
|
|
15947
|
+
sid?: string | undefined;
|
|
15948
|
+
auth_token?: string | undefined;
|
|
15949
|
+
messaging_service_sid?: string | undefined;
|
|
15950
|
+
}>>;
|
|
15951
|
+
phone_message: z.ZodOptional<z.ZodObject<{
|
|
15952
|
+
message: z.ZodOptional<z.ZodString>;
|
|
15953
|
+
}, "strip", z.ZodTypeAny, {
|
|
15954
|
+
message?: string | undefined;
|
|
15955
|
+
}, {
|
|
15956
|
+
message?: string | undefined;
|
|
15957
|
+
}>>;
|
|
15958
|
+
}, "strip", z.ZodTypeAny, {
|
|
15959
|
+
factors?: {
|
|
15960
|
+
email: boolean;
|
|
15961
|
+
otp: boolean;
|
|
15962
|
+
sms: boolean;
|
|
15963
|
+
push_notification: boolean;
|
|
15964
|
+
webauthn_roaming: boolean;
|
|
15965
|
+
webauthn_platform: boolean;
|
|
15966
|
+
recovery_code: boolean;
|
|
15967
|
+
duo: boolean;
|
|
15968
|
+
} | undefined;
|
|
15969
|
+
twilio?: {
|
|
15970
|
+
from?: string | undefined;
|
|
15971
|
+
sid?: string | undefined;
|
|
15972
|
+
auth_token?: string | undefined;
|
|
15973
|
+
messaging_service_sid?: string | undefined;
|
|
15974
|
+
} | undefined;
|
|
15975
|
+
sms_provider?: {
|
|
15976
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
15977
|
+
} | undefined;
|
|
15978
|
+
phone_message?: {
|
|
15979
|
+
message?: string | undefined;
|
|
15980
|
+
} | undefined;
|
|
15981
|
+
}, {
|
|
15982
|
+
factors?: {
|
|
15983
|
+
email?: boolean | undefined;
|
|
15984
|
+
otp?: boolean | undefined;
|
|
15985
|
+
sms?: boolean | undefined;
|
|
15986
|
+
push_notification?: boolean | undefined;
|
|
15987
|
+
webauthn_roaming?: boolean | undefined;
|
|
15988
|
+
webauthn_platform?: boolean | undefined;
|
|
15989
|
+
recovery_code?: boolean | undefined;
|
|
15990
|
+
duo?: boolean | undefined;
|
|
15991
|
+
} | undefined;
|
|
15992
|
+
twilio?: {
|
|
15993
|
+
from?: string | undefined;
|
|
15994
|
+
sid?: string | undefined;
|
|
15995
|
+
auth_token?: string | undefined;
|
|
15996
|
+
messaging_service_sid?: string | undefined;
|
|
15997
|
+
} | undefined;
|
|
15998
|
+
sms_provider?: {
|
|
15999
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
16000
|
+
} | undefined;
|
|
16001
|
+
phone_message?: {
|
|
16002
|
+
message?: string | undefined;
|
|
16003
|
+
} | undefined;
|
|
16004
|
+
}>>;
|
|
15533
16005
|
created_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
15534
16006
|
updated_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
15535
16007
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15633,6 +16105,30 @@ declare const sqlTenantSchema: z.ZodObject<{
|
|
|
15633
16105
|
} | undefined;
|
|
15634
16106
|
pushed_authorization_requests_supported?: boolean | undefined;
|
|
15635
16107
|
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
16108
|
+
mfa?: {
|
|
16109
|
+
factors?: {
|
|
16110
|
+
email: boolean;
|
|
16111
|
+
otp: boolean;
|
|
16112
|
+
sms: boolean;
|
|
16113
|
+
push_notification: boolean;
|
|
16114
|
+
webauthn_roaming: boolean;
|
|
16115
|
+
webauthn_platform: boolean;
|
|
16116
|
+
recovery_code: boolean;
|
|
16117
|
+
duo: boolean;
|
|
16118
|
+
} | undefined;
|
|
16119
|
+
twilio?: {
|
|
16120
|
+
from?: string | undefined;
|
|
16121
|
+
sid?: string | undefined;
|
|
16122
|
+
auth_token?: string | undefined;
|
|
16123
|
+
messaging_service_sid?: string | undefined;
|
|
16124
|
+
} | undefined;
|
|
16125
|
+
sms_provider?: {
|
|
16126
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
16127
|
+
} | undefined;
|
|
16128
|
+
phone_message?: {
|
|
16129
|
+
message?: string | undefined;
|
|
16130
|
+
} | undefined;
|
|
16131
|
+
} | undefined;
|
|
15636
16132
|
}, {
|
|
15637
16133
|
created_at: string | null;
|
|
15638
16134
|
updated_at: string | null;
|
|
@@ -15734,6 +16230,30 @@ declare const sqlTenantSchema: z.ZodObject<{
|
|
|
15734
16230
|
} | undefined;
|
|
15735
16231
|
pushed_authorization_requests_supported?: boolean | undefined;
|
|
15736
16232
|
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
16233
|
+
mfa?: {
|
|
16234
|
+
factors?: {
|
|
16235
|
+
email?: boolean | undefined;
|
|
16236
|
+
otp?: boolean | undefined;
|
|
16237
|
+
sms?: boolean | undefined;
|
|
16238
|
+
push_notification?: boolean | undefined;
|
|
16239
|
+
webauthn_roaming?: boolean | undefined;
|
|
16240
|
+
webauthn_platform?: boolean | undefined;
|
|
16241
|
+
recovery_code?: boolean | undefined;
|
|
16242
|
+
duo?: boolean | undefined;
|
|
16243
|
+
} | undefined;
|
|
16244
|
+
twilio?: {
|
|
16245
|
+
from?: string | undefined;
|
|
16246
|
+
sid?: string | undefined;
|
|
16247
|
+
auth_token?: string | undefined;
|
|
16248
|
+
messaging_service_sid?: string | undefined;
|
|
16249
|
+
} | undefined;
|
|
16250
|
+
sms_provider?: {
|
|
16251
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
16252
|
+
} | undefined;
|
|
16253
|
+
phone_message?: {
|
|
16254
|
+
message?: string | undefined;
|
|
16255
|
+
} | undefined;
|
|
16256
|
+
} | undefined;
|
|
15737
16257
|
}>;
|
|
15738
16258
|
declare const sqlClientGrantSchema: z.ZodObject<{
|
|
15739
16259
|
id: z.ZodString;
|