@authhero/kysely-adapter 10.132.1 → 10.132.3

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.
@@ -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,8 @@ 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">>;
2719
+ callback_url: z.ZodOptional<z.ZodString>;
2714
2720
  passwordPolicy: z.ZodOptional<z.ZodEnum<[
2715
2721
  "none",
2716
2722
  "low",
@@ -3137,6 +3143,8 @@ declare const connectionInsertSchema: z.ZodObject<{
3137
3143
  twilio_sid?: string | undefined;
3138
3144
  twilio_token?: string | undefined;
3139
3145
  icon_url?: string | undefined;
3146
+ domain_aliases?: string[] | undefined;
3147
+ callback_url?: string | undefined;
3140
3148
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
3141
3149
  password_complexity_options?: {
3142
3150
  min_length?: number | undefined;
@@ -3240,6 +3248,8 @@ declare const connectionInsertSchema: z.ZodObject<{
3240
3248
  twilio_sid?: string | undefined;
3241
3249
  twilio_token?: string | undefined;
3242
3250
  icon_url?: string | undefined;
3251
+ domain_aliases?: string[] | undefined;
3252
+ callback_url?: string | undefined;
3243
3253
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
3244
3254
  password_complexity_options?: {
3245
3255
  min_length?: number | undefined;
@@ -3343,6 +3353,8 @@ declare const connectionInsertSchema: z.ZodObject<{
3343
3353
  twilio_sid?: string | undefined;
3344
3354
  twilio_token?: string | undefined;
3345
3355
  icon_url?: string | undefined;
3356
+ domain_aliases?: string[] | undefined;
3357
+ callback_url?: string | undefined;
3346
3358
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
3347
3359
  password_complexity_options?: {
3348
3360
  min_length?: number | undefined;
@@ -3455,6 +3467,8 @@ declare const connectionInsertSchema: z.ZodObject<{
3455
3467
  twilio_sid?: string | undefined;
3456
3468
  twilio_token?: string | undefined;
3457
3469
  icon_url?: string | undefined;
3470
+ domain_aliases?: string[] | undefined;
3471
+ callback_url?: string | undefined;
3458
3472
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
3459
3473
  password_complexity_options?: {
3460
3474
  min_length?: number | undefined;
@@ -3587,6 +3601,8 @@ declare const connectionSchema: z.ZodObject<{
3587
3601
  twilio_sid: z.ZodOptional<z.ZodString>;
3588
3602
  twilio_token: z.ZodOptional<z.ZodString>;
3589
3603
  icon_url: z.ZodOptional<z.ZodString>;
3604
+ domain_aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3605
+ callback_url: z.ZodOptional<z.ZodString>;
3590
3606
  passwordPolicy: z.ZodOptional<z.ZodEnum<[
3591
3607
  "none",
3592
3608
  "low",
@@ -4013,6 +4029,8 @@ declare const connectionSchema: z.ZodObject<{
4013
4029
  twilio_sid?: string | undefined;
4014
4030
  twilio_token?: string | undefined;
4015
4031
  icon_url?: string | undefined;
4032
+ domain_aliases?: string[] | undefined;
4033
+ callback_url?: string | undefined;
4016
4034
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
4017
4035
  password_complexity_options?: {
4018
4036
  min_length?: number | undefined;
@@ -4116,6 +4134,8 @@ declare const connectionSchema: z.ZodObject<{
4116
4134
  twilio_sid?: string | undefined;
4117
4135
  twilio_token?: string | undefined;
4118
4136
  icon_url?: string | undefined;
4137
+ domain_aliases?: string[] | undefined;
4138
+ callback_url?: string | undefined;
4119
4139
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
4120
4140
  password_complexity_options?: {
4121
4141
  min_length?: number | undefined;
@@ -4219,6 +4239,8 @@ declare const connectionSchema: z.ZodObject<{
4219
4239
  twilio_sid?: string | undefined;
4220
4240
  twilio_token?: string | undefined;
4221
4241
  icon_url?: string | undefined;
4242
+ domain_aliases?: string[] | undefined;
4243
+ callback_url?: string | undefined;
4222
4244
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
4223
4245
  password_complexity_options?: {
4224
4246
  min_length?: number | undefined;
@@ -4333,6 +4355,8 @@ declare const connectionSchema: z.ZodObject<{
4333
4355
  twilio_sid?: string | undefined;
4334
4356
  twilio_token?: string | undefined;
4335
4357
  icon_url?: string | undefined;
4358
+ domain_aliases?: string[] | undefined;
4359
+ callback_url?: string | undefined;
4336
4360
  passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
4337
4361
  password_complexity_options?: {
4338
4362
  min_length?: number | undefined;
@@ -23053,7 +23077,9 @@ declare const sqlClientSchema: z.ZodObject<{
23053
23077
  token_endpoint_auth_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
23054
23078
  "none",
23055
23079
  "client_secret_post",
23056
- "client_secret_basic"
23080
+ "client_secret_basic",
23081
+ "client_secret_jwt",
23082
+ "private_key_jwt"
23057
23083
  ]>>>;
23058
23084
  initiate_login_uri: z.ZodOptional<z.ZodString>;
23059
23085
  organization_usage: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
@@ -23130,7 +23156,7 @@ declare const sqlClientSchema: z.ZodObject<{
23130
23156
  custom_login_page?: string | undefined;
23131
23157
  custom_login_page_preview?: string | undefined;
23132
23158
  form_template?: string | undefined;
23133
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
23159
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
23134
23160
  initiate_login_uri?: string | undefined;
23135
23161
  organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
23136
23162
  compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
@@ -23186,7 +23212,7 @@ declare const sqlClientSchema: z.ZodObject<{
23186
23212
  custom_login_page?: string | undefined;
23187
23213
  custom_login_page_preview?: string | undefined;
23188
23214
  form_template?: string | undefined;
23189
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
23215
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
23190
23216
  initiate_login_uri?: string | undefined;
23191
23217
  organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
23192
23218
  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.1",
14
+ "version": "10.132.3",
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.12.0"
45
+ "@authhero/adapter-interfaces": "1.14.0"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@hono/zod-openapi": "^0.19.2",