authhero 8.16.0 → 8.17.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.
Files changed (36) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +100 -100
  3. package/dist/authhero.d.ts +132 -130
  4. package/dist/authhero.mjs +9256 -9203
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +5 -5
  7. package/dist/types/helpers/logging.d.ts +11 -0
  8. package/dist/types/index.d.ts +132 -130
  9. package/dist/types/routes/auth-api/authorize.d.ts +14 -14
  10. package/dist/types/routes/auth-api/index.d.ts +51 -51
  11. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  12. package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
  13. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  14. package/dist/types/routes/management-api/actions.d.ts +1 -1
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +7 -7
  17. package/dist/types/routes/management-api/clients.d.ts +6 -6
  18. package/dist/types/routes/management-api/connections.d.ts +16 -16
  19. package/dist/types/routes/management-api/failed-events.d.ts +3 -1
  20. package/dist/types/routes/management-api/forms.d.ts +126 -126
  21. package/dist/types/routes/management-api/index.d.ts +181 -179
  22. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  23. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  24. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  25. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  26. package/dist/types/routes/management-api/tenants.d.ts +34 -34
  27. package/dist/types/routes/management-api/themes.d.ts +3 -3
  28. package/dist/types/routes/universal-login/common.d.ts +8 -8
  29. package/dist/types/routes/universal-login/continue.d.ts +2 -2
  30. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  31. package/dist/types/routes/universal-login/impersonate.d.ts +2 -2
  32. package/dist/types/routes/universal-login/index.d.ts +6 -6
  33. package/dist/types/routes/universal-login/u2-index.d.ts +7 -7
  34. package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
  35. package/dist/types/utils/username-password-provider.d.ts +1 -10
  36. package/package.json +5 -5
@@ -59,8 +59,8 @@ export declare function init(config: AuthHeroConfig): {
59
59
  $get: {
60
60
  input: {
61
61
  query: {
62
- include_password_hashes?: "true" | "false" | undefined;
63
- gzip?: "true" | "false" | undefined;
62
+ include_password_hashes?: "false" | "true" | undefined;
63
+ gzip?: "false" | "true" | undefined;
64
64
  };
65
65
  } & {
66
66
  header: {
@@ -73,8 +73,8 @@ export declare function init(config: AuthHeroConfig): {
73
73
  } | {
74
74
  input: {
75
75
  query: {
76
- include_password_hashes?: "true" | "false" | undefined;
77
- gzip?: "true" | "false" | undefined;
76
+ include_password_hashes?: "false" | "true" | undefined;
77
+ gzip?: "false" | "true" | undefined;
78
78
  };
79
79
  } & {
80
80
  header: {
@@ -93,7 +93,7 @@ export declare function init(config: AuthHeroConfig): {
93
93
  $post: {
94
94
  input: {
95
95
  query: {
96
- include_password_hashes?: "true" | "false" | undefined;
96
+ include_password_hashes?: "false" | "true" | undefined;
97
97
  };
98
98
  } & {
99
99
  header: {
@@ -147,7 +147,7 @@ export declare function init(config: AuthHeroConfig): {
147
147
  };
148
148
  } & {
149
149
  json: {
150
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
150
+ type: "push" | "email" | "passkey" | "phone" | "webauthn-roaming" | "webauthn-platform" | "totp";
151
151
  phone_number?: string | undefined;
152
152
  totp_secret?: string | undefined;
153
153
  credential_id?: string | undefined;
@@ -287,7 +287,7 @@ export declare function init(config: AuthHeroConfig): {
287
287
  };
288
288
  };
289
289
  output: {
290
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
290
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
291
291
  enabled: boolean;
292
292
  trial_expired?: boolean | undefined;
293
293
  }[];
@@ -442,7 +442,7 @@ export declare function init(config: AuthHeroConfig): {
442
442
  $get: {
443
443
  input: {
444
444
  param: {
445
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
445
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
446
446
  };
447
447
  } & {
448
448
  header: {
@@ -450,7 +450,7 @@ export declare function init(config: AuthHeroConfig): {
450
450
  };
451
451
  };
452
452
  output: {
453
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
453
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
454
454
  enabled: boolean;
455
455
  trial_expired?: boolean | undefined;
456
456
  };
@@ -463,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
463
463
  $put: {
464
464
  input: {
465
465
  param: {
466
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
466
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
467
467
  };
468
468
  } & {
469
469
  header: {
@@ -475,7 +475,7 @@ export declare function init(config: AuthHeroConfig): {
475
475
  };
476
476
  };
477
477
  output: {
478
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
478
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
479
479
  enabled: boolean;
480
480
  trial_expired?: boolean | undefined;
481
481
  };
@@ -2075,7 +2075,7 @@ export declare function init(config: AuthHeroConfig): {
2075
2075
  type: "REDIRECT";
2076
2076
  action: "REDIRECT_USER";
2077
2077
  params: {
2078
- target: "custom" | "change-email" | "account";
2078
+ target: "custom" | "account" | "change-email";
2079
2079
  custom_url?: string | undefined;
2080
2080
  };
2081
2081
  alias?: string | undefined;
@@ -2128,7 +2128,7 @@ export declare function init(config: AuthHeroConfig): {
2128
2128
  type: "REDIRECT";
2129
2129
  action: "REDIRECT_USER";
2130
2130
  params: {
2131
- target: "custom" | "change-email" | "account";
2131
+ target: "custom" | "account" | "change-email";
2132
2132
  custom_url?: string | undefined;
2133
2133
  };
2134
2134
  alias?: string | undefined;
@@ -2196,7 +2196,7 @@ export declare function init(config: AuthHeroConfig): {
2196
2196
  type: "REDIRECT";
2197
2197
  action: "REDIRECT_USER";
2198
2198
  params: {
2199
- target: "custom" | "change-email" | "account";
2199
+ target: "custom" | "account" | "change-email";
2200
2200
  custom_url?: string | undefined;
2201
2201
  };
2202
2202
  alias?: string | undefined;
@@ -2277,7 +2277,7 @@ export declare function init(config: AuthHeroConfig): {
2277
2277
  type: "REDIRECT";
2278
2278
  action: "REDIRECT_USER";
2279
2279
  params: {
2280
- target: "custom" | "change-email" | "account";
2280
+ target: "custom" | "account" | "change-email";
2281
2281
  custom_url?: string | undefined;
2282
2282
  };
2283
2283
  alias?: string | undefined;
@@ -2325,7 +2325,7 @@ export declare function init(config: AuthHeroConfig): {
2325
2325
  type: "REDIRECT";
2326
2326
  action: "REDIRECT_USER";
2327
2327
  params: {
2328
- target: "custom" | "change-email" | "account";
2328
+ target: "custom" | "account" | "change-email";
2329
2329
  custom_url?: string | undefined;
2330
2330
  };
2331
2331
  alias?: string | undefined;
@@ -2385,7 +2385,7 @@ export declare function init(config: AuthHeroConfig): {
2385
2385
  type: "REDIRECT";
2386
2386
  action: "REDIRECT_USER";
2387
2387
  params: {
2388
- target: "custom" | "change-email" | "account";
2388
+ target: "custom" | "account" | "change-email";
2389
2389
  custom_url?: string | undefined;
2390
2390
  };
2391
2391
  alias?: string | undefined;
@@ -2433,7 +2433,7 @@ export declare function init(config: AuthHeroConfig): {
2433
2433
  type: "REDIRECT";
2434
2434
  action: "REDIRECT_USER";
2435
2435
  params: {
2436
- target: "custom" | "change-email" | "account";
2436
+ target: "custom" | "account" | "change-email";
2437
2437
  custom_url?: string | undefined;
2438
2438
  };
2439
2439
  alias?: string | undefined;
@@ -2703,7 +2703,7 @@ export declare function init(config: AuthHeroConfig): {
2703
2703
  value: string;
2704
2704
  label: string;
2705
2705
  }[] | undefined;
2706
- display?: "radio" | "checkbox" | undefined;
2706
+ display?: "checkbox" | "radio" | undefined;
2707
2707
  multiple?: boolean | undefined;
2708
2708
  default_value?: string | string[] | undefined;
2709
2709
  } | undefined;
@@ -3304,7 +3304,7 @@ export declare function init(config: AuthHeroConfig): {
3304
3304
  value: string;
3305
3305
  label: string;
3306
3306
  }[] | undefined;
3307
- display?: "radio" | "checkbox" | undefined;
3307
+ display?: "checkbox" | "radio" | undefined;
3308
3308
  multiple?: boolean | undefined;
3309
3309
  default_value?: string | string[] | undefined;
3310
3310
  } | undefined;
@@ -3920,7 +3920,7 @@ export declare function init(config: AuthHeroConfig): {
3920
3920
  value: string;
3921
3921
  label: string;
3922
3922
  }[] | undefined;
3923
- display?: "radio" | "checkbox" | undefined;
3923
+ display?: "checkbox" | "radio" | undefined;
3924
3924
  multiple?: boolean | undefined;
3925
3925
  default_value?: string | string[] | undefined;
3926
3926
  } | undefined;
@@ -4542,7 +4542,7 @@ export declare function init(config: AuthHeroConfig): {
4542
4542
  value: string;
4543
4543
  label: string;
4544
4544
  }[] | undefined;
4545
- display?: "radio" | "checkbox" | undefined;
4545
+ display?: "checkbox" | "radio" | undefined;
4546
4546
  multiple?: boolean | undefined;
4547
4547
  default_value?: string | string[] | undefined;
4548
4548
  } | undefined;
@@ -5137,7 +5137,7 @@ export declare function init(config: AuthHeroConfig): {
5137
5137
  value: string;
5138
5138
  label: string;
5139
5139
  }[] | undefined;
5140
- display?: "radio" | "checkbox" | undefined;
5140
+ display?: "checkbox" | "radio" | undefined;
5141
5141
  multiple?: boolean | undefined;
5142
5142
  default_value?: string | string[] | undefined;
5143
5143
  } | undefined;
@@ -5738,7 +5738,7 @@ export declare function init(config: AuthHeroConfig): {
5738
5738
  value: string;
5739
5739
  label: string;
5740
5740
  }[] | undefined;
5741
- display?: "radio" | "checkbox" | undefined;
5741
+ display?: "checkbox" | "radio" | undefined;
5742
5742
  multiple?: boolean | undefined;
5743
5743
  default_value?: string | string[] | undefined;
5744
5744
  } | undefined;
@@ -6333,7 +6333,7 @@ export declare function init(config: AuthHeroConfig): {
6333
6333
  value: string;
6334
6334
  label: string;
6335
6335
  }[] | undefined;
6336
- display?: "radio" | "checkbox" | undefined;
6336
+ display?: "checkbox" | "radio" | undefined;
6337
6337
  multiple?: boolean | undefined;
6338
6338
  default_value?: string | string[] | undefined;
6339
6339
  } | undefined;
@@ -6841,7 +6841,7 @@ export declare function init(config: AuthHeroConfig): {
6841
6841
  };
6842
6842
  };
6843
6843
  output: {
6844
- universal_login_experience: "new" | "classic";
6844
+ universal_login_experience: "classic" | "new";
6845
6845
  identifier_first: boolean;
6846
6846
  password_first: boolean;
6847
6847
  webauthn_platform_first_factor: boolean;
@@ -6859,7 +6859,7 @@ export declare function init(config: AuthHeroConfig): {
6859
6859
  };
6860
6860
  } & {
6861
6861
  json: {
6862
- universal_login_experience?: "new" | "classic" | undefined;
6862
+ universal_login_experience?: "classic" | "new" | undefined;
6863
6863
  identifier_first?: boolean | undefined;
6864
6864
  password_first?: boolean | undefined;
6865
6865
  webauthn_platform_first_factor?: boolean | undefined;
@@ -6879,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
6879
6879
  };
6880
6880
  };
6881
6881
  output: {
6882
- prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6882
+ prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "email-otp-challenge" | "login-id" | "reset-password" | "mfa-login-options" | "consent" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6883
6883
  language: string;
6884
6884
  }[];
6885
6885
  outputFormat: "json";
@@ -6917,7 +6917,7 @@ export declare function init(config: AuthHeroConfig): {
6917
6917
  $get: {
6918
6918
  input: {
6919
6919
  param: {
6920
- prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6920
+ prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "email-otp-challenge" | "login-id" | "reset-password" | "mfa-login-options" | "consent" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6921
6921
  language: string;
6922
6922
  };
6923
6923
  } & {
@@ -6939,7 +6939,7 @@ export declare function init(config: AuthHeroConfig): {
6939
6939
  $put: {
6940
6940
  input: {
6941
6941
  param: {
6942
- prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6942
+ prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "email-otp-challenge" | "login-id" | "reset-password" | "mfa-login-options" | "consent" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6943
6943
  language: string;
6944
6944
  };
6945
6945
  } & {
@@ -6963,7 +6963,7 @@ export declare function init(config: AuthHeroConfig): {
6963
6963
  $delete: {
6964
6964
  input: {
6965
6965
  param: {
6966
- prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6966
+ prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "email-otp-challenge" | "login-id" | "reset-password" | "mfa-login-options" | "consent" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6967
6967
  language: string;
6968
6968
  };
6969
6969
  } & {
@@ -7055,7 +7055,7 @@ export declare function init(config: AuthHeroConfig): {
7055
7055
  active?: boolean | undefined;
7056
7056
  } | undefined;
7057
7057
  signup?: {
7058
- status?: "required" | "optional" | "disabled" | undefined;
7058
+ status?: "optional" | "required" | "disabled" | undefined;
7059
7059
  verification?: {
7060
7060
  active?: boolean | undefined;
7061
7061
  } | undefined;
@@ -7072,7 +7072,7 @@ export declare function init(config: AuthHeroConfig): {
7072
7072
  active?: boolean | undefined;
7073
7073
  } | undefined;
7074
7074
  signup?: {
7075
- status?: "required" | "optional" | "disabled" | undefined;
7075
+ status?: "optional" | "required" | "disabled" | undefined;
7076
7076
  } | undefined;
7077
7077
  validation?: {
7078
7078
  max_length?: number | undefined;
@@ -7089,7 +7089,7 @@ export declare function init(config: AuthHeroConfig): {
7089
7089
  active?: boolean | undefined;
7090
7090
  } | undefined;
7091
7091
  signup?: {
7092
- status?: "required" | "optional" | "disabled" | undefined;
7092
+ status?: "optional" | "required" | "disabled" | undefined;
7093
7093
  } | undefined;
7094
7094
  } | undefined;
7095
7095
  } | undefined;
@@ -7189,7 +7189,7 @@ export declare function init(config: AuthHeroConfig): {
7189
7189
  active?: boolean | undefined;
7190
7190
  } | undefined;
7191
7191
  signup?: {
7192
- status?: "required" | "optional" | "disabled" | undefined;
7192
+ status?: "optional" | "required" | "disabled" | undefined;
7193
7193
  verification?: {
7194
7194
  active?: boolean | undefined;
7195
7195
  } | undefined;
@@ -7206,7 +7206,7 @@ export declare function init(config: AuthHeroConfig): {
7206
7206
  active?: boolean | undefined;
7207
7207
  } | undefined;
7208
7208
  signup?: {
7209
- status?: "required" | "optional" | "disabled" | undefined;
7209
+ status?: "optional" | "required" | "disabled" | undefined;
7210
7210
  } | undefined;
7211
7211
  validation?: {
7212
7212
  max_length?: number | undefined;
@@ -7223,7 +7223,7 @@ export declare function init(config: AuthHeroConfig): {
7223
7223
  active?: boolean | undefined;
7224
7224
  } | undefined;
7225
7225
  signup?: {
7226
- status?: "required" | "optional" | "disabled" | undefined;
7226
+ status?: "optional" | "required" | "disabled" | undefined;
7227
7227
  } | undefined;
7228
7228
  } | undefined;
7229
7229
  } | undefined;
@@ -7338,7 +7338,7 @@ export declare function init(config: AuthHeroConfig): {
7338
7338
  active?: boolean | undefined;
7339
7339
  } | undefined;
7340
7340
  signup?: {
7341
- status?: "required" | "optional" | "disabled" | undefined;
7341
+ status?: "optional" | "required" | "disabled" | undefined;
7342
7342
  verification?: {
7343
7343
  active?: boolean | undefined;
7344
7344
  } | undefined;
@@ -7355,7 +7355,7 @@ export declare function init(config: AuthHeroConfig): {
7355
7355
  active?: boolean | undefined;
7356
7356
  } | undefined;
7357
7357
  signup?: {
7358
- status?: "required" | "optional" | "disabled" | undefined;
7358
+ status?: "optional" | "required" | "disabled" | undefined;
7359
7359
  } | undefined;
7360
7360
  validation?: {
7361
7361
  max_length?: number | undefined;
@@ -7372,7 +7372,7 @@ export declare function init(config: AuthHeroConfig): {
7372
7372
  active?: boolean | undefined;
7373
7373
  } | undefined;
7374
7374
  signup?: {
7375
- status?: "required" | "optional" | "disabled" | undefined;
7375
+ status?: "optional" | "required" | "disabled" | undefined;
7376
7376
  } | undefined;
7377
7377
  } | undefined;
7378
7378
  } | undefined;
@@ -7517,7 +7517,7 @@ export declare function init(config: AuthHeroConfig): {
7517
7517
  active?: boolean | undefined;
7518
7518
  } | undefined;
7519
7519
  signup?: {
7520
- status?: "required" | "optional" | "disabled" | undefined;
7520
+ status?: "optional" | "required" | "disabled" | undefined;
7521
7521
  verification?: {
7522
7522
  active?: boolean | undefined;
7523
7523
  } | undefined;
@@ -7534,7 +7534,7 @@ export declare function init(config: AuthHeroConfig): {
7534
7534
  active?: boolean | undefined;
7535
7535
  } | undefined;
7536
7536
  signup?: {
7537
- status?: "required" | "optional" | "disabled" | undefined;
7537
+ status?: "optional" | "required" | "disabled" | undefined;
7538
7538
  } | undefined;
7539
7539
  validation?: {
7540
7540
  max_length?: number | undefined;
@@ -7551,7 +7551,7 @@ export declare function init(config: AuthHeroConfig): {
7551
7551
  active?: boolean | undefined;
7552
7552
  } | undefined;
7553
7553
  signup?: {
7554
- status?: "required" | "optional" | "disabled" | undefined;
7554
+ status?: "optional" | "required" | "disabled" | undefined;
7555
7555
  } | undefined;
7556
7556
  } | undefined;
7557
7557
  } | undefined;
@@ -7675,7 +7675,7 @@ export declare function init(config: AuthHeroConfig): {
7675
7675
  active?: boolean | undefined;
7676
7676
  } | undefined;
7677
7677
  signup?: {
7678
- status?: "required" | "optional" | "disabled" | undefined;
7678
+ status?: "optional" | "required" | "disabled" | undefined;
7679
7679
  verification?: {
7680
7680
  active?: boolean | undefined;
7681
7681
  } | undefined;
@@ -7692,7 +7692,7 @@ export declare function init(config: AuthHeroConfig): {
7692
7692
  active?: boolean | undefined;
7693
7693
  } | undefined;
7694
7694
  signup?: {
7695
- status?: "required" | "optional" | "disabled" | undefined;
7695
+ status?: "optional" | "required" | "disabled" | undefined;
7696
7696
  } | undefined;
7697
7697
  validation?: {
7698
7698
  max_length?: number | undefined;
@@ -7709,7 +7709,7 @@ export declare function init(config: AuthHeroConfig): {
7709
7709
  active?: boolean | undefined;
7710
7710
  } | undefined;
7711
7711
  signup?: {
7712
- status?: "required" | "optional" | "disabled" | undefined;
7712
+ status?: "optional" | "required" | "disabled" | undefined;
7713
7713
  } | undefined;
7714
7714
  } | undefined;
7715
7715
  } | undefined;
@@ -8464,7 +8464,7 @@ export declare function init(config: AuthHeroConfig): {
8464
8464
  log_type: string;
8465
8465
  category: "user_action" | "admin_action" | "system" | "api";
8466
8466
  actor: {
8467
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8467
+ type: "client_credentials" | "user" | "system" | "api_key" | "admin";
8468
8468
  id?: string | undefined;
8469
8469
  email?: string | undefined;
8470
8470
  org_id?: string | undefined;
@@ -8513,6 +8513,8 @@ export declare function init(config: AuthHeroConfig): {
8513
8513
  body?: import("hono/utils/types").JSONValue | undefined;
8514
8514
  } | undefined;
8515
8515
  connection?: string | undefined;
8516
+ connection_id?: string | undefined;
8517
+ client_name?: string | undefined;
8516
8518
  strategy?: string | undefined;
8517
8519
  strategy_type?: string | undefined;
8518
8520
  audience?: string | undefined;
@@ -9112,7 +9114,7 @@ export declare function init(config: AuthHeroConfig): {
9112
9114
  };
9113
9115
  };
9114
9116
  output: {
9115
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9117
+ type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9116
9118
  date: string;
9117
9119
  isMobile: boolean;
9118
9120
  log_id: string;
@@ -9151,7 +9153,7 @@ export declare function init(config: AuthHeroConfig): {
9151
9153
  limit: number;
9152
9154
  length: number;
9153
9155
  logs: {
9154
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9156
+ type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9155
9157
  date: string;
9156
9158
  isMobile: boolean;
9157
9159
  log_id: string;
@@ -9205,7 +9207,7 @@ export declare function init(config: AuthHeroConfig): {
9205
9207
  };
9206
9208
  };
9207
9209
  output: {
9208
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9210
+ type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9209
9211
  date: string;
9210
9212
  isMobile: boolean;
9211
9213
  log_id: string;
@@ -9593,7 +9595,7 @@ export declare function init(config: AuthHeroConfig): {
9593
9595
  addons?: {
9594
9596
  [x: string]: any;
9595
9597
  } | undefined;
9596
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9598
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9597
9599
  client_metadata?: {
9598
9600
  [x: string]: string;
9599
9601
  } | undefined;
@@ -9689,7 +9691,7 @@ export declare function init(config: AuthHeroConfig): {
9689
9691
  addons?: {
9690
9692
  [x: string]: any;
9691
9693
  } | undefined;
9692
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9694
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9693
9695
  client_metadata?: {
9694
9696
  [x: string]: string;
9695
9697
  } | undefined;
@@ -9800,7 +9802,7 @@ export declare function init(config: AuthHeroConfig): {
9800
9802
  addons?: {
9801
9803
  [x: string]: any;
9802
9804
  } | undefined;
9803
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9805
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9804
9806
  client_metadata?: {
9805
9807
  [x: string]: string;
9806
9808
  } | undefined;
@@ -9910,7 +9912,7 @@ export declare function init(config: AuthHeroConfig): {
9910
9912
  custom_login_page_preview?: string | undefined;
9911
9913
  form_template?: string | undefined;
9912
9914
  addons?: Record<string, any> | undefined;
9913
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9915
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9914
9916
  client_metadata?: Record<string, string> | undefined;
9915
9917
  hide_sign_up_disabled_error?: boolean | undefined;
9916
9918
  mobile?: Record<string, any> | undefined;
@@ -9990,7 +9992,7 @@ export declare function init(config: AuthHeroConfig): {
9990
9992
  addons?: {
9991
9993
  [x: string]: any;
9992
9994
  } | undefined;
9993
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9995
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9994
9996
  client_metadata?: {
9995
9997
  [x: string]: string;
9996
9998
  } | undefined;
@@ -10079,7 +10081,7 @@ export declare function init(config: AuthHeroConfig): {
10079
10081
  custom_login_page_preview?: string | undefined;
10080
10082
  form_template?: string | undefined;
10081
10083
  addons?: Record<string, any> | undefined;
10082
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10084
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10083
10085
  client_metadata?: Record<string, string> | undefined;
10084
10086
  hide_sign_up_disabled_error?: boolean | undefined;
10085
10087
  mobile?: Record<string, any> | undefined;
@@ -10159,7 +10161,7 @@ export declare function init(config: AuthHeroConfig): {
10159
10161
  addons?: {
10160
10162
  [x: string]: any;
10161
10163
  } | undefined;
10162
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10164
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10163
10165
  client_metadata?: {
10164
10166
  [x: string]: string;
10165
10167
  } | undefined;
@@ -10281,7 +10283,7 @@ export declare function init(config: AuthHeroConfig): {
10281
10283
  active?: boolean | undefined;
10282
10284
  } | undefined;
10283
10285
  signup?: {
10284
- status?: "required" | "optional" | "disabled" | undefined;
10286
+ status?: "optional" | "required" | "disabled" | undefined;
10285
10287
  verification?: {
10286
10288
  active?: boolean | undefined;
10287
10289
  } | undefined;
@@ -10298,7 +10300,7 @@ export declare function init(config: AuthHeroConfig): {
10298
10300
  active?: boolean | undefined;
10299
10301
  } | undefined;
10300
10302
  signup?: {
10301
- status?: "required" | "optional" | "disabled" | undefined;
10303
+ status?: "optional" | "required" | "disabled" | undefined;
10302
10304
  } | undefined;
10303
10305
  validation?: {
10304
10306
  max_length?: number | undefined;
@@ -10315,7 +10317,7 @@ export declare function init(config: AuthHeroConfig): {
10315
10317
  active?: boolean | undefined;
10316
10318
  } | undefined;
10317
10319
  signup?: {
10318
- status?: "required" | "optional" | "disabled" | undefined;
10320
+ status?: "optional" | "required" | "disabled" | undefined;
10319
10321
  } | undefined;
10320
10322
  } | undefined;
10321
10323
  } | undefined;
@@ -10435,7 +10437,7 @@ export declare function init(config: AuthHeroConfig): {
10435
10437
  active?: boolean | undefined;
10436
10438
  } | undefined;
10437
10439
  signup?: {
10438
- status?: "required" | "optional" | "disabled" | undefined;
10440
+ status?: "optional" | "required" | "disabled" | undefined;
10439
10441
  verification?: {
10440
10442
  active?: boolean | undefined;
10441
10443
  } | undefined;
@@ -10452,7 +10454,7 @@ export declare function init(config: AuthHeroConfig): {
10452
10454
  active?: boolean | undefined;
10453
10455
  } | undefined;
10454
10456
  signup?: {
10455
- status?: "required" | "optional" | "disabled" | undefined;
10457
+ status?: "optional" | "required" | "disabled" | undefined;
10456
10458
  } | undefined;
10457
10459
  validation?: {
10458
10460
  max_length?: number | undefined;
@@ -10469,7 +10471,7 @@ export declare function init(config: AuthHeroConfig): {
10469
10471
  active?: boolean | undefined;
10470
10472
  } | undefined;
10471
10473
  signup?: {
10472
- status?: "required" | "optional" | "disabled" | undefined;
10474
+ status?: "optional" | "required" | "disabled" | undefined;
10473
10475
  } | undefined;
10474
10476
  } | undefined;
10475
10477
  } | undefined;
@@ -11423,7 +11425,7 @@ export declare function init(config: AuthHeroConfig): {
11423
11425
  };
11424
11426
  };
11425
11427
  output: {
11426
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11428
+ type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11427
11429
  date: string;
11428
11430
  isMobile: boolean;
11429
11431
  log_id: string;
@@ -11462,7 +11464,7 @@ export declare function init(config: AuthHeroConfig): {
11462
11464
  limit: number;
11463
11465
  length: number;
11464
11466
  logs: {
11465
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11467
+ type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11466
11468
  date: string;
11467
11469
  isMobile: boolean;
11468
11470
  log_id: string;
@@ -12971,7 +12973,7 @@ export declare function init(config: AuthHeroConfig): {
12971
12973
  } & {
12972
12974
  json: {
12973
12975
  body?: string | undefined;
12974
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
12976
+ screen?: "password" | "signup" | "identifier" | "login" | undefined;
12975
12977
  branding?: {
12976
12978
  colors?: {
12977
12979
  primary: string;
@@ -14240,7 +14242,7 @@ export declare function init(config: AuthHeroConfig): {
14240
14242
  scope?: string | undefined;
14241
14243
  grant_types?: string[] | undefined;
14242
14244
  response_types?: string[] | undefined;
14243
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14245
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14244
14246
  jwks_uri?: string | undefined;
14245
14247
  jwks?: Record<string, unknown> | undefined;
14246
14248
  software_id?: string | undefined;
@@ -14329,7 +14331,7 @@ export declare function init(config: AuthHeroConfig): {
14329
14331
  scope?: string | undefined;
14330
14332
  grant_types?: string[] | undefined;
14331
14333
  response_types?: string[] | undefined;
14332
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14334
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14333
14335
  jwks_uri?: string | undefined;
14334
14336
  jwks?: Record<string, unknown> | undefined;
14335
14337
  software_id?: string | undefined;
@@ -14386,7 +14388,7 @@ export declare function init(config: AuthHeroConfig): {
14386
14388
  client_id: string;
14387
14389
  redirect_url?: string | undefined;
14388
14390
  login_hint?: string | undefined;
14389
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14391
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14390
14392
  };
14391
14393
  };
14392
14394
  output: {};
@@ -14398,7 +14400,7 @@ export declare function init(config: AuthHeroConfig): {
14398
14400
  client_id: string;
14399
14401
  redirect_url?: string | undefined;
14400
14402
  login_hint?: string | undefined;
14401
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14403
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14402
14404
  };
14403
14405
  };
14404
14406
  output: {
@@ -14475,9 +14477,17 @@ export declare function init(config: AuthHeroConfig): {
14475
14477
  request_uri?: string | undefined;
14476
14478
  };
14477
14479
  };
14478
- output: {};
14479
- outputFormat: string;
14480
- status: 302;
14480
+ output: string | {
14481
+ access_token: string;
14482
+ token_type: string;
14483
+ expires_in: number;
14484
+ id_token?: string | undefined;
14485
+ scope?: string | undefined;
14486
+ state?: string | undefined;
14487
+ refresh_token?: string | undefined;
14488
+ };
14489
+ outputFormat: "json";
14490
+ status: 200;
14481
14491
  } | {
14482
14492
  input: {
14483
14493
  query: {
@@ -14509,17 +14519,9 @@ export declare function init(config: AuthHeroConfig): {
14509
14519
  request_uri?: string | undefined;
14510
14520
  };
14511
14521
  };
14512
- output: string | {
14513
- access_token: string;
14514
- token_type: string;
14515
- expires_in: number;
14516
- id_token?: string | undefined;
14517
- scope?: string | undefined;
14518
- state?: string | undefined;
14519
- refresh_token?: string | undefined;
14520
- };
14521
- outputFormat: "json";
14522
- status: 200;
14522
+ output: {};
14523
+ outputFormat: string;
14524
+ status: 302;
14523
14525
  } | {
14524
14526
  input: {
14525
14527
  query: {
@@ -14675,22 +14677,21 @@ export declare function init(config: AuthHeroConfig): {
14675
14677
  email: string;
14676
14678
  send: "code" | "link";
14677
14679
  authParams: {
14678
- username?: string | undefined;
14680
+ vendor_id?: string | undefined;
14681
+ redirect_uri?: string | undefined;
14682
+ scope?: string | undefined;
14679
14683
  state?: string | undefined;
14680
- audience?: string | undefined;
14681
- response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14684
+ prompt?: string | undefined;
14682
14685
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14683
- scope?: string | undefined;
14684
- organization?: string | undefined;
14686
+ response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14687
+ audience?: string | undefined;
14685
14688
  nonce?: string | undefined;
14686
- act_as?: string | undefined;
14687
- redirect_uri?: string | undefined;
14688
- prompt?: string | undefined;
14689
+ max_age?: number | undefined;
14690
+ acr_values?: string | undefined;
14689
14691
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14690
14692
  code_challenge?: string | undefined;
14693
+ organization?: string | undefined;
14691
14694
  ui_locales?: string | undefined;
14692
- max_age?: number | undefined;
14693
- acr_values?: string | undefined;
14694
14695
  claims?: {
14695
14696
  userinfo?: Record<string, {
14696
14697
  essential?: boolean | undefined;
@@ -14703,7 +14704,8 @@ export declare function init(config: AuthHeroConfig): {
14703
14704
  values?: unknown[] | undefined;
14704
14705
  } | null> | undefined;
14705
14706
  } | undefined;
14706
- vendor_id?: string | undefined;
14707
+ act_as?: string | undefined;
14708
+ username?: string | undefined;
14707
14709
  };
14708
14710
  } | {
14709
14711
  client_id: string;
@@ -14711,22 +14713,21 @@ export declare function init(config: AuthHeroConfig): {
14711
14713
  phone_number: string;
14712
14714
  send: "code" | "link";
14713
14715
  authParams: {
14714
- username?: string | undefined;
14716
+ vendor_id?: string | undefined;
14717
+ redirect_uri?: string | undefined;
14718
+ scope?: string | undefined;
14715
14719
  state?: string | undefined;
14716
- audience?: string | undefined;
14717
- response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14720
+ prompt?: string | undefined;
14718
14721
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14719
- scope?: string | undefined;
14720
- organization?: string | undefined;
14722
+ response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14723
+ audience?: string | undefined;
14721
14724
  nonce?: string | undefined;
14722
- act_as?: string | undefined;
14723
- redirect_uri?: string | undefined;
14724
- prompt?: string | undefined;
14725
+ max_age?: number | undefined;
14726
+ acr_values?: string | undefined;
14725
14727
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14726
14728
  code_challenge?: string | undefined;
14729
+ organization?: string | undefined;
14727
14730
  ui_locales?: string | undefined;
14728
- max_age?: number | undefined;
14729
- acr_values?: string | undefined;
14730
14731
  claims?: {
14731
14732
  userinfo?: Record<string, {
14732
14733
  essential?: boolean | undefined;
@@ -14739,7 +14740,8 @@ export declare function init(config: AuthHeroConfig): {
14739
14740
  values?: unknown[] | undefined;
14740
14741
  } | null> | undefined;
14741
14742
  } | undefined;
14742
- vendor_id?: string | undefined;
14743
+ act_as?: string | undefined;
14744
+ username?: string | undefined;
14743
14745
  };
14744
14746
  };
14745
14747
  };
@@ -14855,14 +14857,14 @@ export declare function init(config: AuthHeroConfig): {
14855
14857
  input: {
14856
14858
  form: {
14857
14859
  token: string;
14858
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14860
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14859
14861
  client_id?: string | undefined;
14860
14862
  client_secret?: string | undefined;
14861
14863
  };
14862
14864
  } & {
14863
14865
  json: {
14864
14866
  token: string;
14865
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14867
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14866
14868
  client_id?: string | undefined;
14867
14869
  client_secret?: string | undefined;
14868
14870
  };
@@ -14874,14 +14876,14 @@ export declare function init(config: AuthHeroConfig): {
14874
14876
  input: {
14875
14877
  form: {
14876
14878
  token: string;
14877
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14879
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14878
14880
  client_id?: string | undefined;
14879
14881
  client_secret?: string | undefined;
14880
14882
  };
14881
14883
  } & {
14882
14884
  json: {
14883
14885
  token: string;
14884
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14886
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14885
14887
  client_id?: string | undefined;
14886
14888
  client_secret?: string | undefined;
14887
14889
  };
@@ -14896,14 +14898,14 @@ export declare function init(config: AuthHeroConfig): {
14896
14898
  input: {
14897
14899
  form: {
14898
14900
  token: string;
14899
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14901
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14900
14902
  client_id?: string | undefined;
14901
14903
  client_secret?: string | undefined;
14902
14904
  };
14903
14905
  } & {
14904
14906
  json: {
14905
14907
  token: string;
14906
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14908
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14907
14909
  client_id?: string | undefined;
14908
14910
  client_secret?: string | undefined;
14909
14911
  };
@@ -15327,7 +15329,7 @@ export declare function init(config: AuthHeroConfig): {
15327
15329
  error_description?: string | undefined;
15328
15330
  };
15329
15331
  outputFormat: "json";
15330
- status: 401;
15332
+ status: 403;
15331
15333
  } | {
15332
15334
  input: {
15333
15335
  form: {
@@ -15429,7 +15431,7 @@ export declare function init(config: AuthHeroConfig): {
15429
15431
  error_description?: string | undefined;
15430
15432
  };
15431
15433
  outputFormat: "json";
15432
- status: 403;
15434
+ status: 401;
15433
15435
  };
15434
15436
  };
15435
15437
  }, "/oauth/token"> & import("hono/types").MergeSchemaPath<{
@@ -15628,7 +15630,7 @@ export declare function init(config: AuthHeroConfig): {
15628
15630
  };
15629
15631
  output: {};
15630
15632
  outputFormat: string;
15631
- status: 200;
15633
+ status: 302;
15632
15634
  } | {
15633
15635
  input: {
15634
15636
  query: {
@@ -15642,7 +15644,7 @@ export declare function init(config: AuthHeroConfig): {
15642
15644
  };
15643
15645
  output: {};
15644
15646
  outputFormat: string;
15645
- status: 400;
15647
+ status: 200;
15646
15648
  } | {
15647
15649
  input: {
15648
15650
  query: {
@@ -15656,7 +15658,7 @@ export declare function init(config: AuthHeroConfig): {
15656
15658
  };
15657
15659
  output: {};
15658
15660
  outputFormat: string;
15659
- status: 302;
15661
+ status: 400;
15660
15662
  };
15661
15663
  };
15662
15664
  }, "/oidc/logout"> & import("hono/types").MergeSchemaPath<{
@@ -15763,7 +15765,7 @@ export declare function init(config: AuthHeroConfig): {
15763
15765
  };
15764
15766
  output: {};
15765
15767
  outputFormat: string;
15766
- status: 400;
15768
+ status: 302;
15767
15769
  } | {
15768
15770
  input: {
15769
15771
  query: {
@@ -15772,7 +15774,7 @@ export declare function init(config: AuthHeroConfig): {
15772
15774
  };
15773
15775
  output: {};
15774
15776
  outputFormat: string;
15775
- status: 302;
15777
+ status: 400;
15776
15778
  } | {
15777
15779
  input: {
15778
15780
  query: {
@@ -15901,7 +15903,7 @@ export declare function init(config: AuthHeroConfig): {
15901
15903
  };
15902
15904
  output: {};
15903
15905
  outputFormat: string;
15904
- status: 400;
15906
+ status: 302;
15905
15907
  } | {
15906
15908
  input: {
15907
15909
  query: {
@@ -15914,7 +15916,7 @@ export declare function init(config: AuthHeroConfig): {
15914
15916
  };
15915
15917
  output: {};
15916
15918
  outputFormat: string;
15917
- status: 302;
15919
+ status: 400;
15918
15920
  };
15919
15921
  };
15920
15922
  }, "/impersonate"> & import("hono/types").MergeSchemaPath<{
@@ -16256,7 +16258,7 @@ export declare function init(config: AuthHeroConfig): {
16256
16258
  };
16257
16259
  output: {};
16258
16260
  outputFormat: string;
16259
- status: 400;
16261
+ status: 302;
16260
16262
  } | {
16261
16263
  input: {
16262
16264
  query: {
@@ -16270,7 +16272,7 @@ export declare function init(config: AuthHeroConfig): {
16270
16272
  };
16271
16273
  output: {};
16272
16274
  outputFormat: string;
16273
- status: 302;
16275
+ status: 400;
16274
16276
  };
16275
16277
  };
16276
16278
  }, "/login/identifier"> & import("hono/types").MergeSchemaPath<{
@@ -16630,7 +16632,7 @@ export declare function init(config: AuthHeroConfig): {
16630
16632
  $get: {
16631
16633
  input: {
16632
16634
  param: {
16633
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16635
+ screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16634
16636
  };
16635
16637
  } & {
16636
16638
  query: {
@@ -16646,7 +16648,7 @@ export declare function init(config: AuthHeroConfig): {
16646
16648
  } | {
16647
16649
  input: {
16648
16650
  param: {
16649
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16651
+ screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16650
16652
  };
16651
16653
  } & {
16652
16654
  query: {
@@ -16658,11 +16660,11 @@ export declare function init(config: AuthHeroConfig): {
16658
16660
  };
16659
16661
  output: {};
16660
16662
  outputFormat: string;
16661
- status: 400;
16663
+ status: 302;
16662
16664
  } | {
16663
16665
  input: {
16664
16666
  param: {
16665
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16667
+ screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16666
16668
  };
16667
16669
  } & {
16668
16670
  query: {
@@ -16674,7 +16676,7 @@ export declare function init(config: AuthHeroConfig): {
16674
16676
  };
16675
16677
  output: {};
16676
16678
  outputFormat: string;
16677
- status: 302;
16679
+ status: 400;
16678
16680
  };
16679
16681
  };
16680
16682
  } & {
@@ -16682,7 +16684,7 @@ export declare function init(config: AuthHeroConfig): {
16682
16684
  $post: {
16683
16685
  input: {
16684
16686
  param: {
16685
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16687
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16686
16688
  };
16687
16689
  } & {
16688
16690
  query: {
@@ -16700,7 +16702,7 @@ export declare function init(config: AuthHeroConfig): {
16700
16702
  } | {
16701
16703
  input: {
16702
16704
  param: {
16703
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16705
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16704
16706
  };
16705
16707
  } & {
16706
16708
  query: {