@authhero/kysely-adapter 10.132.1 → 10.132.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/kysely-adapter.d.ts +25 -9
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1843,7 +1843,9 @@ declare const clientInsertSchema: z.ZodObject<{
|
|
|
1843
1843
|
token_endpoint_auth_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
1844
1844
|
"none",
|
|
1845
1845
|
"client_secret_post",
|
|
1846
|
-
"client_secret_basic"
|
|
1846
|
+
"client_secret_basic",
|
|
1847
|
+
"client_secret_jwt",
|
|
1848
|
+
"private_key_jwt"
|
|
1847
1849
|
]>>>;
|
|
1848
1850
|
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1849
1851
|
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
@@ -1959,7 +1961,7 @@ declare const clientInsertSchema: z.ZodObject<{
|
|
|
1959
1961
|
custom_login_page_preview?: string | undefined;
|
|
1960
1962
|
form_template?: string | undefined;
|
|
1961
1963
|
addons?: Record<string, any> | undefined;
|
|
1962
|
-
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
1964
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
1963
1965
|
client_metadata?: Record<string, string> | undefined;
|
|
1964
1966
|
mobile?: Record<string, any> | undefined;
|
|
1965
1967
|
initiate_login_uri?: string | undefined;
|
|
@@ -2018,7 +2020,7 @@ declare const clientInsertSchema: z.ZodObject<{
|
|
|
2018
2020
|
custom_login_page_preview?: string | undefined;
|
|
2019
2021
|
form_template?: string | undefined;
|
|
2020
2022
|
addons?: Record<string, any> | undefined;
|
|
2021
|
-
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
2023
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
2022
2024
|
client_metadata?: Record<string, string> | undefined;
|
|
2023
2025
|
mobile?: Record<string, any> | undefined;
|
|
2024
2026
|
initiate_login_uri?: string | undefined;
|
|
@@ -2101,7 +2103,9 @@ declare const clientSchema: z.ZodObject<{
|
|
|
2101
2103
|
token_endpoint_auth_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
2102
2104
|
"none",
|
|
2103
2105
|
"client_secret_post",
|
|
2104
|
-
"client_secret_basic"
|
|
2106
|
+
"client_secret_basic",
|
|
2107
|
+
"client_secret_jwt",
|
|
2108
|
+
"private_key_jwt"
|
|
2105
2109
|
]>>>;
|
|
2106
2110
|
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2107
2111
|
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
@@ -2221,7 +2225,7 @@ declare const clientSchema: z.ZodObject<{
|
|
|
2221
2225
|
custom_login_page_preview?: string | undefined;
|
|
2222
2226
|
form_template?: string | undefined;
|
|
2223
2227
|
addons?: Record<string, any> | undefined;
|
|
2224
|
-
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
2228
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
2225
2229
|
client_metadata?: Record<string, string> | undefined;
|
|
2226
2230
|
mobile?: Record<string, any> | undefined;
|
|
2227
2231
|
initiate_login_uri?: string | undefined;
|
|
@@ -2282,7 +2286,7 @@ declare const clientSchema: z.ZodObject<{
|
|
|
2282
2286
|
custom_login_page_preview?: string | undefined;
|
|
2283
2287
|
form_template?: string | undefined;
|
|
2284
2288
|
addons?: Record<string, any> | undefined;
|
|
2285
|
-
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
2289
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
2286
2290
|
client_metadata?: Record<string, string> | undefined;
|
|
2287
2291
|
mobile?: Record<string, any> | undefined;
|
|
2288
2292
|
initiate_login_uri?: string | undefined;
|
|
@@ -2711,6 +2715,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
2711
2715
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
2712
2716
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
2713
2717
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
2718
|
+
domain_aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2714
2719
|
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
2715
2720
|
"none",
|
|
2716
2721
|
"low",
|
|
@@ -3137,6 +3142,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3137
3142
|
twilio_sid?: string | undefined;
|
|
3138
3143
|
twilio_token?: string | undefined;
|
|
3139
3144
|
icon_url?: string | undefined;
|
|
3145
|
+
domain_aliases?: string[] | undefined;
|
|
3140
3146
|
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
3141
3147
|
password_complexity_options?: {
|
|
3142
3148
|
min_length?: number | undefined;
|
|
@@ -3240,6 +3246,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3240
3246
|
twilio_sid?: string | undefined;
|
|
3241
3247
|
twilio_token?: string | undefined;
|
|
3242
3248
|
icon_url?: string | undefined;
|
|
3249
|
+
domain_aliases?: string[] | undefined;
|
|
3243
3250
|
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
3244
3251
|
password_complexity_options?: {
|
|
3245
3252
|
min_length?: number | undefined;
|
|
@@ -3343,6 +3350,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3343
3350
|
twilio_sid?: string | undefined;
|
|
3344
3351
|
twilio_token?: string | undefined;
|
|
3345
3352
|
icon_url?: string | undefined;
|
|
3353
|
+
domain_aliases?: string[] | undefined;
|
|
3346
3354
|
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
3347
3355
|
password_complexity_options?: {
|
|
3348
3356
|
min_length?: number | undefined;
|
|
@@ -3455,6 +3463,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3455
3463
|
twilio_sid?: string | undefined;
|
|
3456
3464
|
twilio_token?: string | undefined;
|
|
3457
3465
|
icon_url?: string | undefined;
|
|
3466
|
+
domain_aliases?: string[] | undefined;
|
|
3458
3467
|
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
3459
3468
|
password_complexity_options?: {
|
|
3460
3469
|
min_length?: number | undefined;
|
|
@@ -3587,6 +3596,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
3587
3596
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
3588
3597
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
3589
3598
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
3599
|
+
domain_aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3590
3600
|
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
3591
3601
|
"none",
|
|
3592
3602
|
"low",
|
|
@@ -4013,6 +4023,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4013
4023
|
twilio_sid?: string | undefined;
|
|
4014
4024
|
twilio_token?: string | undefined;
|
|
4015
4025
|
icon_url?: string | undefined;
|
|
4026
|
+
domain_aliases?: string[] | undefined;
|
|
4016
4027
|
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
4017
4028
|
password_complexity_options?: {
|
|
4018
4029
|
min_length?: number | undefined;
|
|
@@ -4116,6 +4127,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4116
4127
|
twilio_sid?: string | undefined;
|
|
4117
4128
|
twilio_token?: string | undefined;
|
|
4118
4129
|
icon_url?: string | undefined;
|
|
4130
|
+
domain_aliases?: string[] | undefined;
|
|
4119
4131
|
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
4120
4132
|
password_complexity_options?: {
|
|
4121
4133
|
min_length?: number | undefined;
|
|
@@ -4219,6 +4231,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4219
4231
|
twilio_sid?: string | undefined;
|
|
4220
4232
|
twilio_token?: string | undefined;
|
|
4221
4233
|
icon_url?: string | undefined;
|
|
4234
|
+
domain_aliases?: string[] | undefined;
|
|
4222
4235
|
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
4223
4236
|
password_complexity_options?: {
|
|
4224
4237
|
min_length?: number | undefined;
|
|
@@ -4333,6 +4346,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4333
4346
|
twilio_sid?: string | undefined;
|
|
4334
4347
|
twilio_token?: string | undefined;
|
|
4335
4348
|
icon_url?: string | undefined;
|
|
4349
|
+
domain_aliases?: string[] | undefined;
|
|
4336
4350
|
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
4337
4351
|
password_complexity_options?: {
|
|
4338
4352
|
min_length?: number | undefined;
|
|
@@ -23053,7 +23067,9 @@ declare const sqlClientSchema: z.ZodObject<{
|
|
|
23053
23067
|
token_endpoint_auth_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
23054
23068
|
"none",
|
|
23055
23069
|
"client_secret_post",
|
|
23056
|
-
"client_secret_basic"
|
|
23070
|
+
"client_secret_basic",
|
|
23071
|
+
"client_secret_jwt",
|
|
23072
|
+
"private_key_jwt"
|
|
23057
23073
|
]>>>;
|
|
23058
23074
|
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
23059
23075
|
organization_usage: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
@@ -23130,7 +23146,7 @@ declare const sqlClientSchema: z.ZodObject<{
|
|
|
23130
23146
|
custom_login_page?: string | undefined;
|
|
23131
23147
|
custom_login_page_preview?: string | undefined;
|
|
23132
23148
|
form_template?: string | undefined;
|
|
23133
|
-
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
23149
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
23134
23150
|
initiate_login_uri?: string | undefined;
|
|
23135
23151
|
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
23136
23152
|
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
@@ -23186,7 +23202,7 @@ declare const sqlClientSchema: z.ZodObject<{
|
|
|
23186
23202
|
custom_login_page?: string | undefined;
|
|
23187
23203
|
custom_login_page_preview?: string | undefined;
|
|
23188
23204
|
form_template?: string | undefined;
|
|
23189
|
-
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
23205
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
23190
23206
|
initiate_login_uri?: string | undefined;
|
|
23191
23207
|
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
23192
23208
|
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
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.132.
|
|
14
|
+
"version": "10.132.2",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"kysely": "^0.27.4",
|
|
44
44
|
"nanoid": "^5.0.8",
|
|
45
|
-
"@authhero/adapter-interfaces": "1.
|
|
45
|
+
"@authhero/adapter-interfaces": "1.13.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@hono/zod-openapi": "^0.19.2",
|