@authhero/kysely-adapter 10.95.0 → 10.95.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/kysely-adapter.d.ts +274 -72
- 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;
|
|
@@ -12052,42 +12254,42 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
12052
12254
|
bold: z.ZodBoolean;
|
|
12053
12255
|
size: z.ZodNumber;
|
|
12054
12256
|
}, "strip", z.ZodTypeAny, {
|
|
12055
|
-
bold: boolean;
|
|
12056
12257
|
size: number;
|
|
12057
|
-
}, {
|
|
12058
12258
|
bold: boolean;
|
|
12259
|
+
}, {
|
|
12059
12260
|
size: number;
|
|
12261
|
+
bold: boolean;
|
|
12060
12262
|
}>;
|
|
12061
12263
|
buttons_text: z.ZodObject<{
|
|
12062
12264
|
bold: z.ZodBoolean;
|
|
12063
12265
|
size: z.ZodNumber;
|
|
12064
12266
|
}, "strip", z.ZodTypeAny, {
|
|
12065
|
-
bold: boolean;
|
|
12066
12267
|
size: number;
|
|
12067
|
-
}, {
|
|
12068
12268
|
bold: boolean;
|
|
12269
|
+
}, {
|
|
12069
12270
|
size: number;
|
|
12271
|
+
bold: boolean;
|
|
12070
12272
|
}>;
|
|
12071
12273
|
font_url: z.ZodString;
|
|
12072
12274
|
input_labels: z.ZodObject<{
|
|
12073
12275
|
bold: z.ZodBoolean;
|
|
12074
12276
|
size: z.ZodNumber;
|
|
12075
12277
|
}, "strip", z.ZodTypeAny, {
|
|
12076
|
-
bold: boolean;
|
|
12077
12278
|
size: number;
|
|
12078
|
-
}, {
|
|
12079
12279
|
bold: boolean;
|
|
12280
|
+
}, {
|
|
12080
12281
|
size: number;
|
|
12282
|
+
bold: boolean;
|
|
12081
12283
|
}>;
|
|
12082
12284
|
links: z.ZodObject<{
|
|
12083
12285
|
bold: z.ZodBoolean;
|
|
12084
12286
|
size: z.ZodNumber;
|
|
12085
12287
|
}, "strip", z.ZodTypeAny, {
|
|
12086
|
-
bold: boolean;
|
|
12087
12288
|
size: number;
|
|
12088
|
-
}, {
|
|
12089
12289
|
bold: boolean;
|
|
12290
|
+
}, {
|
|
12090
12291
|
size: number;
|
|
12292
|
+
bold: boolean;
|
|
12091
12293
|
}>;
|
|
12092
12294
|
links_style: z.ZodEnum<[
|
|
12093
12295
|
"normal",
|
|
@@ -12098,77 +12300,77 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
12098
12300
|
bold: z.ZodBoolean;
|
|
12099
12301
|
size: z.ZodNumber;
|
|
12100
12302
|
}, "strip", z.ZodTypeAny, {
|
|
12101
|
-
bold: boolean;
|
|
12102
12303
|
size: number;
|
|
12103
|
-
}, {
|
|
12104
12304
|
bold: boolean;
|
|
12305
|
+
}, {
|
|
12105
12306
|
size: number;
|
|
12307
|
+
bold: boolean;
|
|
12106
12308
|
}>;
|
|
12107
12309
|
title: z.ZodObject<{
|
|
12108
12310
|
bold: z.ZodBoolean;
|
|
12109
12311
|
size: z.ZodNumber;
|
|
12110
12312
|
}, "strip", z.ZodTypeAny, {
|
|
12111
|
-
bold: boolean;
|
|
12112
12313
|
size: number;
|
|
12113
|
-
}, {
|
|
12114
12314
|
bold: boolean;
|
|
12315
|
+
}, {
|
|
12115
12316
|
size: number;
|
|
12317
|
+
bold: boolean;
|
|
12116
12318
|
}>;
|
|
12117
12319
|
}, "strip", z.ZodTypeAny, {
|
|
12118
12320
|
title: {
|
|
12119
|
-
bold: boolean;
|
|
12120
12321
|
size: number;
|
|
12322
|
+
bold: boolean;
|
|
12121
12323
|
};
|
|
12122
12324
|
links: {
|
|
12123
|
-
bold: boolean;
|
|
12124
12325
|
size: number;
|
|
12326
|
+
bold: boolean;
|
|
12125
12327
|
};
|
|
12126
12328
|
body_text: {
|
|
12127
|
-
bold: boolean;
|
|
12128
12329
|
size: number;
|
|
12330
|
+
bold: boolean;
|
|
12129
12331
|
};
|
|
12130
12332
|
buttons_text: {
|
|
12131
|
-
bold: boolean;
|
|
12132
12333
|
size: number;
|
|
12334
|
+
bold: boolean;
|
|
12133
12335
|
};
|
|
12134
12336
|
font_url: string;
|
|
12135
12337
|
input_labels: {
|
|
12136
|
-
bold: boolean;
|
|
12137
12338
|
size: number;
|
|
12339
|
+
bold: boolean;
|
|
12138
12340
|
};
|
|
12139
12341
|
links_style: "normal" | "underlined";
|
|
12140
12342
|
reference_text_size: number;
|
|
12141
12343
|
subtitle: {
|
|
12142
|
-
bold: boolean;
|
|
12143
12344
|
size: number;
|
|
12345
|
+
bold: boolean;
|
|
12144
12346
|
};
|
|
12145
12347
|
}, {
|
|
12146
12348
|
title: {
|
|
12147
|
-
bold: boolean;
|
|
12148
12349
|
size: number;
|
|
12350
|
+
bold: boolean;
|
|
12149
12351
|
};
|
|
12150
12352
|
links: {
|
|
12151
|
-
bold: boolean;
|
|
12152
12353
|
size: number;
|
|
12354
|
+
bold: boolean;
|
|
12153
12355
|
};
|
|
12154
12356
|
body_text: {
|
|
12155
|
-
bold: boolean;
|
|
12156
12357
|
size: number;
|
|
12358
|
+
bold: boolean;
|
|
12157
12359
|
};
|
|
12158
12360
|
buttons_text: {
|
|
12159
|
-
bold: boolean;
|
|
12160
12361
|
size: number;
|
|
12362
|
+
bold: boolean;
|
|
12161
12363
|
};
|
|
12162
12364
|
font_url: string;
|
|
12163
12365
|
input_labels: {
|
|
12164
|
-
bold: boolean;
|
|
12165
12366
|
size: number;
|
|
12367
|
+
bold: boolean;
|
|
12166
12368
|
};
|
|
12167
12369
|
links_style: "normal" | "underlined";
|
|
12168
12370
|
reference_text_size: number;
|
|
12169
12371
|
subtitle: {
|
|
12170
|
-
bold: boolean;
|
|
12171
12372
|
size: number;
|
|
12373
|
+
bold: boolean;
|
|
12172
12374
|
};
|
|
12173
12375
|
}>;
|
|
12174
12376
|
page_background: z.ZodObject<{
|
|
@@ -12260,31 +12462,31 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
12260
12462
|
displayName: string;
|
|
12261
12463
|
fonts: {
|
|
12262
12464
|
title: {
|
|
12263
|
-
bold: boolean;
|
|
12264
12465
|
size: number;
|
|
12466
|
+
bold: boolean;
|
|
12265
12467
|
};
|
|
12266
12468
|
links: {
|
|
12267
|
-
bold: boolean;
|
|
12268
12469
|
size: number;
|
|
12470
|
+
bold: boolean;
|
|
12269
12471
|
};
|
|
12270
12472
|
body_text: {
|
|
12271
|
-
bold: boolean;
|
|
12272
12473
|
size: number;
|
|
12474
|
+
bold: boolean;
|
|
12273
12475
|
};
|
|
12274
12476
|
buttons_text: {
|
|
12275
|
-
bold: boolean;
|
|
12276
12477
|
size: number;
|
|
12478
|
+
bold: boolean;
|
|
12277
12479
|
};
|
|
12278
12480
|
font_url: string;
|
|
12279
12481
|
input_labels: {
|
|
12280
|
-
bold: boolean;
|
|
12281
12482
|
size: number;
|
|
12483
|
+
bold: boolean;
|
|
12282
12484
|
};
|
|
12283
12485
|
links_style: "normal" | "underlined";
|
|
12284
12486
|
reference_text_size: number;
|
|
12285
12487
|
subtitle: {
|
|
12286
|
-
bold: boolean;
|
|
12287
12488
|
size: number;
|
|
12489
|
+
bold: boolean;
|
|
12288
12490
|
};
|
|
12289
12491
|
};
|
|
12290
12492
|
widget: {
|
|
@@ -12335,31 +12537,31 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
12335
12537
|
displayName: string;
|
|
12336
12538
|
fonts: {
|
|
12337
12539
|
title: {
|
|
12338
|
-
bold: boolean;
|
|
12339
12540
|
size: number;
|
|
12541
|
+
bold: boolean;
|
|
12340
12542
|
};
|
|
12341
12543
|
links: {
|
|
12342
|
-
bold: boolean;
|
|
12343
12544
|
size: number;
|
|
12545
|
+
bold: boolean;
|
|
12344
12546
|
};
|
|
12345
12547
|
body_text: {
|
|
12346
|
-
bold: boolean;
|
|
12347
12548
|
size: number;
|
|
12549
|
+
bold: boolean;
|
|
12348
12550
|
};
|
|
12349
12551
|
buttons_text: {
|
|
12350
|
-
bold: boolean;
|
|
12351
12552
|
size: number;
|
|
12553
|
+
bold: boolean;
|
|
12352
12554
|
};
|
|
12353
12555
|
font_url: string;
|
|
12354
12556
|
input_labels: {
|
|
12355
|
-
bold: boolean;
|
|
12356
12557
|
size: number;
|
|
12558
|
+
bold: boolean;
|
|
12357
12559
|
};
|
|
12358
12560
|
links_style: "normal" | "underlined";
|
|
12359
12561
|
reference_text_size: number;
|
|
12360
12562
|
subtitle: {
|
|
12361
|
-
bold: boolean;
|
|
12362
12563
|
size: number;
|
|
12564
|
+
bold: boolean;
|
|
12363
12565
|
};
|
|
12364
12566
|
};
|
|
12365
12567
|
widget: {
|
|
@@ -12482,42 +12684,42 @@ declare const themeSchema: z.ZodObject<{
|
|
|
12482
12684
|
bold: z.ZodBoolean;
|
|
12483
12685
|
size: z.ZodNumber;
|
|
12484
12686
|
}, "strip", z.ZodTypeAny, {
|
|
12485
|
-
bold: boolean;
|
|
12486
12687
|
size: number;
|
|
12487
|
-
}, {
|
|
12488
12688
|
bold: boolean;
|
|
12689
|
+
}, {
|
|
12489
12690
|
size: number;
|
|
12691
|
+
bold: boolean;
|
|
12490
12692
|
}>;
|
|
12491
12693
|
buttons_text: z.ZodObject<{
|
|
12492
12694
|
bold: z.ZodBoolean;
|
|
12493
12695
|
size: z.ZodNumber;
|
|
12494
12696
|
}, "strip", z.ZodTypeAny, {
|
|
12495
|
-
bold: boolean;
|
|
12496
12697
|
size: number;
|
|
12497
|
-
}, {
|
|
12498
12698
|
bold: boolean;
|
|
12699
|
+
}, {
|
|
12499
12700
|
size: number;
|
|
12701
|
+
bold: boolean;
|
|
12500
12702
|
}>;
|
|
12501
12703
|
font_url: z.ZodString;
|
|
12502
12704
|
input_labels: z.ZodObject<{
|
|
12503
12705
|
bold: z.ZodBoolean;
|
|
12504
12706
|
size: z.ZodNumber;
|
|
12505
12707
|
}, "strip", z.ZodTypeAny, {
|
|
12506
|
-
bold: boolean;
|
|
12507
12708
|
size: number;
|
|
12508
|
-
}, {
|
|
12509
12709
|
bold: boolean;
|
|
12710
|
+
}, {
|
|
12510
12711
|
size: number;
|
|
12712
|
+
bold: boolean;
|
|
12511
12713
|
}>;
|
|
12512
12714
|
links: z.ZodObject<{
|
|
12513
12715
|
bold: z.ZodBoolean;
|
|
12514
12716
|
size: z.ZodNumber;
|
|
12515
12717
|
}, "strip", z.ZodTypeAny, {
|
|
12516
|
-
bold: boolean;
|
|
12517
12718
|
size: number;
|
|
12518
|
-
}, {
|
|
12519
12719
|
bold: boolean;
|
|
12720
|
+
}, {
|
|
12520
12721
|
size: number;
|
|
12722
|
+
bold: boolean;
|
|
12521
12723
|
}>;
|
|
12522
12724
|
links_style: z.ZodEnum<[
|
|
12523
12725
|
"normal",
|
|
@@ -12528,77 +12730,77 @@ declare const themeSchema: z.ZodObject<{
|
|
|
12528
12730
|
bold: z.ZodBoolean;
|
|
12529
12731
|
size: z.ZodNumber;
|
|
12530
12732
|
}, "strip", z.ZodTypeAny, {
|
|
12531
|
-
bold: boolean;
|
|
12532
12733
|
size: number;
|
|
12533
|
-
}, {
|
|
12534
12734
|
bold: boolean;
|
|
12735
|
+
}, {
|
|
12535
12736
|
size: number;
|
|
12737
|
+
bold: boolean;
|
|
12536
12738
|
}>;
|
|
12537
12739
|
title: z.ZodObject<{
|
|
12538
12740
|
bold: z.ZodBoolean;
|
|
12539
12741
|
size: z.ZodNumber;
|
|
12540
12742
|
}, "strip", z.ZodTypeAny, {
|
|
12541
|
-
bold: boolean;
|
|
12542
12743
|
size: number;
|
|
12543
|
-
}, {
|
|
12544
12744
|
bold: boolean;
|
|
12745
|
+
}, {
|
|
12545
12746
|
size: number;
|
|
12747
|
+
bold: boolean;
|
|
12546
12748
|
}>;
|
|
12547
12749
|
}, "strip", z.ZodTypeAny, {
|
|
12548
12750
|
title: {
|
|
12549
|
-
bold: boolean;
|
|
12550
12751
|
size: number;
|
|
12752
|
+
bold: boolean;
|
|
12551
12753
|
};
|
|
12552
12754
|
links: {
|
|
12553
|
-
bold: boolean;
|
|
12554
12755
|
size: number;
|
|
12756
|
+
bold: boolean;
|
|
12555
12757
|
};
|
|
12556
12758
|
body_text: {
|
|
12557
|
-
bold: boolean;
|
|
12558
12759
|
size: number;
|
|
12760
|
+
bold: boolean;
|
|
12559
12761
|
};
|
|
12560
12762
|
buttons_text: {
|
|
12561
|
-
bold: boolean;
|
|
12562
12763
|
size: number;
|
|
12764
|
+
bold: boolean;
|
|
12563
12765
|
};
|
|
12564
12766
|
font_url: string;
|
|
12565
12767
|
input_labels: {
|
|
12566
|
-
bold: boolean;
|
|
12567
12768
|
size: number;
|
|
12769
|
+
bold: boolean;
|
|
12568
12770
|
};
|
|
12569
12771
|
links_style: "normal" | "underlined";
|
|
12570
12772
|
reference_text_size: number;
|
|
12571
12773
|
subtitle: {
|
|
12572
|
-
bold: boolean;
|
|
12573
12774
|
size: number;
|
|
12775
|
+
bold: boolean;
|
|
12574
12776
|
};
|
|
12575
12777
|
}, {
|
|
12576
12778
|
title: {
|
|
12577
|
-
bold: boolean;
|
|
12578
12779
|
size: number;
|
|
12780
|
+
bold: boolean;
|
|
12579
12781
|
};
|
|
12580
12782
|
links: {
|
|
12581
|
-
bold: boolean;
|
|
12582
12783
|
size: number;
|
|
12784
|
+
bold: boolean;
|
|
12583
12785
|
};
|
|
12584
12786
|
body_text: {
|
|
12585
|
-
bold: boolean;
|
|
12586
12787
|
size: number;
|
|
12788
|
+
bold: boolean;
|
|
12587
12789
|
};
|
|
12588
12790
|
buttons_text: {
|
|
12589
|
-
bold: boolean;
|
|
12590
12791
|
size: number;
|
|
12792
|
+
bold: boolean;
|
|
12591
12793
|
};
|
|
12592
12794
|
font_url: string;
|
|
12593
12795
|
input_labels: {
|
|
12594
|
-
bold: boolean;
|
|
12595
12796
|
size: number;
|
|
12797
|
+
bold: boolean;
|
|
12596
12798
|
};
|
|
12597
12799
|
links_style: "normal" | "underlined";
|
|
12598
12800
|
reference_text_size: number;
|
|
12599
12801
|
subtitle: {
|
|
12600
|
-
bold: boolean;
|
|
12601
12802
|
size: number;
|
|
12803
|
+
bold: boolean;
|
|
12602
12804
|
};
|
|
12603
12805
|
}>;
|
|
12604
12806
|
page_background: z.ZodObject<{
|
|
@@ -12692,31 +12894,31 @@ declare const themeSchema: z.ZodObject<{
|
|
|
12692
12894
|
displayName: string;
|
|
12693
12895
|
fonts: {
|
|
12694
12896
|
title: {
|
|
12695
|
-
bold: boolean;
|
|
12696
12897
|
size: number;
|
|
12898
|
+
bold: boolean;
|
|
12697
12899
|
};
|
|
12698
12900
|
links: {
|
|
12699
|
-
bold: boolean;
|
|
12700
12901
|
size: number;
|
|
12902
|
+
bold: boolean;
|
|
12701
12903
|
};
|
|
12702
12904
|
body_text: {
|
|
12703
|
-
bold: boolean;
|
|
12704
12905
|
size: number;
|
|
12906
|
+
bold: boolean;
|
|
12705
12907
|
};
|
|
12706
12908
|
buttons_text: {
|
|
12707
|
-
bold: boolean;
|
|
12708
12909
|
size: number;
|
|
12910
|
+
bold: boolean;
|
|
12709
12911
|
};
|
|
12710
12912
|
font_url: string;
|
|
12711
12913
|
input_labels: {
|
|
12712
|
-
bold: boolean;
|
|
12713
12914
|
size: number;
|
|
12915
|
+
bold: boolean;
|
|
12714
12916
|
};
|
|
12715
12917
|
links_style: "normal" | "underlined";
|
|
12716
12918
|
reference_text_size: number;
|
|
12717
12919
|
subtitle: {
|
|
12718
|
-
bold: boolean;
|
|
12719
12920
|
size: number;
|
|
12921
|
+
bold: boolean;
|
|
12720
12922
|
};
|
|
12721
12923
|
};
|
|
12722
12924
|
widget: {
|
|
@@ -12768,31 +12970,31 @@ declare const themeSchema: z.ZodObject<{
|
|
|
12768
12970
|
displayName: string;
|
|
12769
12971
|
fonts: {
|
|
12770
12972
|
title: {
|
|
12771
|
-
bold: boolean;
|
|
12772
12973
|
size: number;
|
|
12974
|
+
bold: boolean;
|
|
12773
12975
|
};
|
|
12774
12976
|
links: {
|
|
12775
|
-
bold: boolean;
|
|
12776
12977
|
size: number;
|
|
12978
|
+
bold: boolean;
|
|
12777
12979
|
};
|
|
12778
12980
|
body_text: {
|
|
12779
|
-
bold: boolean;
|
|
12780
12981
|
size: number;
|
|
12982
|
+
bold: boolean;
|
|
12781
12983
|
};
|
|
12782
12984
|
buttons_text: {
|
|
12783
|
-
bold: boolean;
|
|
12784
12985
|
size: number;
|
|
12986
|
+
bold: boolean;
|
|
12785
12987
|
};
|
|
12786
12988
|
font_url: string;
|
|
12787
12989
|
input_labels: {
|
|
12788
|
-
bold: boolean;
|
|
12789
12990
|
size: number;
|
|
12991
|
+
bold: boolean;
|
|
12790
12992
|
};
|
|
12791
12993
|
links_style: "normal" | "underlined";
|
|
12792
12994
|
reference_text_size: number;
|
|
12793
12995
|
subtitle: {
|
|
12794
|
-
bold: boolean;
|
|
12795
12996
|
size: number;
|
|
12997
|
+
bold: boolean;
|
|
12796
12998
|
};
|
|
12797
12999
|
};
|
|
12798
13000
|
widget: {
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/markusahlstrand/authhero"
|
|
13
13
|
},
|
|
14
|
-
"version": "10.95.
|
|
14
|
+
"version": "10.95.1",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"kysely": "^0.27.4",
|
|
44
44
|
"nanoid": "^5.0.8",
|
|
45
45
|
"ulid": "^2.3.0",
|
|
46
|
-
"@authhero/adapter-interfaces": "0.
|
|
46
|
+
"@authhero/adapter-interfaces": "0.133.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@hono/zod-openapi": "^0.19.2",
|