authhero 8.14.1 → 8.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +109 -109
  3. package/dist/authhero.d.ts +159 -132
  4. package/dist/authhero.mjs +8675 -8363
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/constants.d.ts +1 -1
  8. package/dist/types/index.d.ts +121 -121
  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 +1 -1
  14. package/dist/types/routes/management-api/actions.d.ts +1 -1
  15. package/dist/types/routes/management-api/branding.d.ts +3 -3
  16. package/dist/types/routes/management-api/clients.d.ts +6 -6
  17. package/dist/types/routes/management-api/connections.d.ts +16 -16
  18. package/dist/types/routes/management-api/forms.d.ts +126 -126
  19. package/dist/types/routes/management-api/index.d.ts +162 -162
  20. package/dist/types/routes/management-api/logs.d.ts +3 -3
  21. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  22. package/dist/types/routes/management-api/tenant-operations.d.ts +128 -0
  23. package/dist/types/routes/management-api/tenants.d.ts +37 -28
  24. package/dist/types/routes/management-api/users.d.ts +2 -2
  25. package/dist/types/routes/universal-login/common.d.ts +6 -6
  26. package/dist/types/routes/universal-login/continue.d.ts +2 -2
  27. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  28. package/dist/types/routes/universal-login/identifier.d.ts +4 -4
  29. package/dist/types/routes/universal-login/impersonate.d.ts +2 -2
  30. package/dist/types/routes/universal-login/index.d.ts +8 -8
  31. package/dist/types/routes/universal-login/u2-index.d.ts +2 -2
  32. package/dist/types/routes/universal-login/u2-routes.d.ts +2 -2
  33. package/dist/types/types/AuthHeroConfig.d.ts +35 -9
  34. package/dist/types/types/Bindings.d.ts +2 -1
  35. package/dist/types/utils/username-password-provider.d.ts +19 -5
  36. package/package.json +5 -5
  37. package/dist/stats.html +0 -4949
@@ -59,8 +59,8 @@ export declare function init(config: AuthHeroConfig): {
59
59
  $get: {
60
60
  input: {
61
61
  query: {
62
- include_password_hashes?: "false" | "true" | undefined;
63
- gzip?: "false" | "true" | undefined;
62
+ include_password_hashes?: "true" | "false" | undefined;
63
+ gzip?: "true" | "false" | 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?: "false" | "true" | undefined;
77
- gzip?: "false" | "true" | undefined;
76
+ include_password_hashes?: "true" | "false" | undefined;
77
+ gzip?: "true" | "false" | 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?: "false" | "true" | undefined;
96
+ include_password_hashes?: "true" | "false" | 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" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
150
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
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" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
290
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
445
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
453
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
466
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
478
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "account" | "change-email";
2078
+ target: "custom" | "change-email" | "account";
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" | "account" | "change-email";
2131
+ target: "custom" | "change-email" | "account";
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" | "account" | "change-email";
2199
+ target: "custom" | "change-email" | "account";
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" | "account" | "change-email";
2280
+ target: "custom" | "change-email" | "account";
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" | "account" | "change-email";
2328
+ target: "custom" | "change-email" | "account";
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" | "account" | "change-email";
2388
+ target: "custom" | "change-email" | "account";
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" | "account" | "change-email";
2436
+ target: "custom" | "change-email" | "account";
2437
2437
  custom_url?: string | undefined;
2438
2438
  };
2439
2439
  alias?: string | undefined;
@@ -6879,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
6879
6879
  };
6880
6880
  };
6881
6881
  output: {
6882
- prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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";
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: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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";
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: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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";
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: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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";
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?: "optional" | "required" | "disabled" | undefined;
7058
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7075
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7092
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7192
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7209
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7226
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7341
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7358
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7375
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7520
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7537
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7554
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7678
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7695
+ status?: "required" | "optional" | "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?: "optional" | "required" | "disabled" | undefined;
7712
+ status?: "required" | "optional" | "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: "client_credentials" | "user" | "system" | "admin" | "api_key";
8467
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8468
8468
  id?: string | undefined;
8469
8469
  email?: string | undefined;
8470
8470
  org_id?: string | undefined;
@@ -9112,7 +9112,7 @@ export declare function init(config: AuthHeroConfig): {
9112
9112
  };
9113
9113
  };
9114
9114
  output: {
9115
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
9116
9116
  date: string;
9117
9117
  isMobile: boolean;
9118
9118
  log_id: string;
@@ -9151,7 +9151,7 @@ export declare function init(config: AuthHeroConfig): {
9151
9151
  limit: number;
9152
9152
  length: number;
9153
9153
  logs: {
9154
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
9155
9155
  date: string;
9156
9156
  isMobile: boolean;
9157
9157
  log_id: string;
@@ -9205,7 +9205,7 @@ export declare function init(config: AuthHeroConfig): {
9205
9205
  };
9206
9206
  };
9207
9207
  output: {
9208
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
9209
9209
  date: string;
9210
9210
  isMobile: boolean;
9211
9211
  log_id: string;
@@ -9593,7 +9593,7 @@ export declare function init(config: AuthHeroConfig): {
9593
9593
  addons?: {
9594
9594
  [x: string]: any;
9595
9595
  } | undefined;
9596
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9596
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9597
9597
  client_metadata?: {
9598
9598
  [x: string]: string;
9599
9599
  } | undefined;
@@ -9689,7 +9689,7 @@ export declare function init(config: AuthHeroConfig): {
9689
9689
  addons?: {
9690
9690
  [x: string]: any;
9691
9691
  } | undefined;
9692
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9692
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9693
9693
  client_metadata?: {
9694
9694
  [x: string]: string;
9695
9695
  } | undefined;
@@ -9800,7 +9800,7 @@ export declare function init(config: AuthHeroConfig): {
9800
9800
  addons?: {
9801
9801
  [x: string]: any;
9802
9802
  } | undefined;
9803
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9803
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9804
9804
  client_metadata?: {
9805
9805
  [x: string]: string;
9806
9806
  } | undefined;
@@ -9910,7 +9910,7 @@ export declare function init(config: AuthHeroConfig): {
9910
9910
  custom_login_page_preview?: string | undefined;
9911
9911
  form_template?: string | undefined;
9912
9912
  addons?: Record<string, any> | undefined;
9913
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9913
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9914
9914
  client_metadata?: Record<string, string> | undefined;
9915
9915
  hide_sign_up_disabled_error?: boolean | undefined;
9916
9916
  mobile?: Record<string, any> | undefined;
@@ -9990,7 +9990,7 @@ export declare function init(config: AuthHeroConfig): {
9990
9990
  addons?: {
9991
9991
  [x: string]: any;
9992
9992
  } | undefined;
9993
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9993
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9994
9994
  client_metadata?: {
9995
9995
  [x: string]: string;
9996
9996
  } | undefined;
@@ -10079,7 +10079,7 @@ export declare function init(config: AuthHeroConfig): {
10079
10079
  custom_login_page_preview?: string | undefined;
10080
10080
  form_template?: string | undefined;
10081
10081
  addons?: Record<string, any> | undefined;
10082
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10082
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10083
10083
  client_metadata?: Record<string, string> | undefined;
10084
10084
  hide_sign_up_disabled_error?: boolean | undefined;
10085
10085
  mobile?: Record<string, any> | undefined;
@@ -10159,7 +10159,7 @@ export declare function init(config: AuthHeroConfig): {
10159
10159
  addons?: {
10160
10160
  [x: string]: any;
10161
10161
  } | undefined;
10162
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10162
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10163
10163
  client_metadata?: {
10164
10164
  [x: string]: string;
10165
10165
  } | undefined;
@@ -10281,7 +10281,7 @@ export declare function init(config: AuthHeroConfig): {
10281
10281
  active?: boolean | undefined;
10282
10282
  } | undefined;
10283
10283
  signup?: {
10284
- status?: "optional" | "required" | "disabled" | undefined;
10284
+ status?: "required" | "optional" | "disabled" | undefined;
10285
10285
  verification?: {
10286
10286
  active?: boolean | undefined;
10287
10287
  } | undefined;
@@ -10298,7 +10298,7 @@ export declare function init(config: AuthHeroConfig): {
10298
10298
  active?: boolean | undefined;
10299
10299
  } | undefined;
10300
10300
  signup?: {
10301
- status?: "optional" | "required" | "disabled" | undefined;
10301
+ status?: "required" | "optional" | "disabled" | undefined;
10302
10302
  } | undefined;
10303
10303
  validation?: {
10304
10304
  max_length?: number | undefined;
@@ -10315,7 +10315,7 @@ export declare function init(config: AuthHeroConfig): {
10315
10315
  active?: boolean | undefined;
10316
10316
  } | undefined;
10317
10317
  signup?: {
10318
- status?: "optional" | "required" | "disabled" | undefined;
10318
+ status?: "required" | "optional" | "disabled" | undefined;
10319
10319
  } | undefined;
10320
10320
  } | undefined;
10321
10321
  } | undefined;
@@ -10435,7 +10435,7 @@ export declare function init(config: AuthHeroConfig): {
10435
10435
  active?: boolean | undefined;
10436
10436
  } | undefined;
10437
10437
  signup?: {
10438
- status?: "optional" | "required" | "disabled" | undefined;
10438
+ status?: "required" | "optional" | "disabled" | undefined;
10439
10439
  verification?: {
10440
10440
  active?: boolean | undefined;
10441
10441
  } | undefined;
@@ -10452,7 +10452,7 @@ export declare function init(config: AuthHeroConfig): {
10452
10452
  active?: boolean | undefined;
10453
10453
  } | undefined;
10454
10454
  signup?: {
10455
- status?: "optional" | "required" | "disabled" | undefined;
10455
+ status?: "required" | "optional" | "disabled" | undefined;
10456
10456
  } | undefined;
10457
10457
  validation?: {
10458
10458
  max_length?: number | undefined;
@@ -10469,7 +10469,7 @@ export declare function init(config: AuthHeroConfig): {
10469
10469
  active?: boolean | undefined;
10470
10470
  } | undefined;
10471
10471
  signup?: {
10472
- status?: "optional" | "required" | "disabled" | undefined;
10472
+ status?: "required" | "optional" | "disabled" | undefined;
10473
10473
  } | undefined;
10474
10474
  } | undefined;
10475
10475
  } | undefined;
@@ -11423,7 +11423,7 @@ export declare function init(config: AuthHeroConfig): {
11423
11423
  };
11424
11424
  };
11425
11425
  output: {
11426
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
11427
11427
  date: string;
11428
11428
  isMobile: boolean;
11429
11429
  log_id: string;
@@ -11462,7 +11462,7 @@ export declare function init(config: AuthHeroConfig): {
11462
11462
  limit: number;
11463
11463
  length: number;
11464
11464
  logs: {
11465
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
11466
11466
  date: string;
11467
11467
  isMobile: boolean;
11468
11468
  log_id: string;
@@ -12971,7 +12971,7 @@ export declare function init(config: AuthHeroConfig): {
12971
12971
  } & {
12972
12972
  json: {
12973
12973
  body?: string | undefined;
12974
- screen?: "password" | "signup" | "identifier" | "login" | undefined;
12974
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
12975
12975
  branding?: {
12976
12976
  colors?: {
12977
12977
  primary: string;
@@ -14240,7 +14240,7 @@ export declare function init(config: AuthHeroConfig): {
14240
14240
  scope?: string | undefined;
14241
14241
  grant_types?: string[] | undefined;
14242
14242
  response_types?: string[] | undefined;
14243
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14243
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14244
14244
  jwks_uri?: string | undefined;
14245
14245
  jwks?: Record<string, unknown> | undefined;
14246
14246
  software_id?: string | undefined;
@@ -14329,7 +14329,7 @@ export declare function init(config: AuthHeroConfig): {
14329
14329
  scope?: string | undefined;
14330
14330
  grant_types?: string[] | undefined;
14331
14331
  response_types?: string[] | undefined;
14332
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14332
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14333
14333
  jwks_uri?: string | undefined;
14334
14334
  jwks?: Record<string, unknown> | undefined;
14335
14335
  software_id?: string | undefined;
@@ -14386,7 +14386,7 @@ export declare function init(config: AuthHeroConfig): {
14386
14386
  client_id: string;
14387
14387
  redirect_url?: string | undefined;
14388
14388
  login_hint?: string | undefined;
14389
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14389
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14390
14390
  };
14391
14391
  };
14392
14392
  output: {};
@@ -14398,7 +14398,7 @@ export declare function init(config: AuthHeroConfig): {
14398
14398
  client_id: string;
14399
14399
  redirect_url?: string | undefined;
14400
14400
  login_hint?: string | undefined;
14401
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14401
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14402
14402
  };
14403
14403
  };
14404
14404
  output: {
@@ -14475,17 +14475,9 @@ export declare function init(config: AuthHeroConfig): {
14475
14475
  request_uri?: string | undefined;
14476
14476
  };
14477
14477
  };
14478
- output: string | {
14479
- access_token: string;
14480
- token_type: string;
14481
- expires_in: number;
14482
- id_token?: string | undefined;
14483
- scope?: string | undefined;
14484
- state?: string | undefined;
14485
- refresh_token?: string | undefined;
14486
- };
14487
- outputFormat: "json";
14488
- status: 200;
14478
+ output: {};
14479
+ outputFormat: string;
14480
+ status: 302;
14489
14481
  } | {
14490
14482
  input: {
14491
14483
  query: {
@@ -14517,9 +14509,17 @@ export declare function init(config: AuthHeroConfig): {
14517
14509
  request_uri?: string | undefined;
14518
14510
  };
14519
14511
  };
14520
- output: {};
14521
- outputFormat: string;
14522
- status: 302;
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;
14523
14523
  } | {
14524
14524
  input: {
14525
14525
  query: {
@@ -14675,21 +14675,22 @@ export declare function init(config: AuthHeroConfig): {
14675
14675
  email: string;
14676
14676
  send: "code" | "link";
14677
14677
  authParams: {
14678
- vendor_id?: string | undefined;
14679
- redirect_uri?: string | undefined;
14680
- scope?: string | undefined;
14678
+ username?: string | undefined;
14681
14679
  state?: string | undefined;
14682
- prompt?: string | undefined;
14683
- response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14684
- response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14685
14680
  audience?: string | undefined;
14681
+ response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14682
+ response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14683
+ scope?: string | undefined;
14684
+ organization?: string | undefined;
14686
14685
  nonce?: string | undefined;
14687
- max_age?: number | undefined;
14688
- acr_values?: string | undefined;
14686
+ act_as?: string | undefined;
14687
+ redirect_uri?: string | undefined;
14688
+ prompt?: string | undefined;
14689
14689
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14690
14690
  code_challenge?: string | undefined;
14691
- organization?: string | undefined;
14692
14691
  ui_locales?: string | undefined;
14692
+ max_age?: number | undefined;
14693
+ acr_values?: string | undefined;
14693
14694
  claims?: {
14694
14695
  userinfo?: Record<string, {
14695
14696
  essential?: boolean | undefined;
@@ -14702,8 +14703,7 @@ export declare function init(config: AuthHeroConfig): {
14702
14703
  values?: unknown[] | undefined;
14703
14704
  } | null> | undefined;
14704
14705
  } | undefined;
14705
- act_as?: string | undefined;
14706
- username?: string | undefined;
14706
+ vendor_id?: string | undefined;
14707
14707
  };
14708
14708
  } | {
14709
14709
  client_id: string;
@@ -14711,21 +14711,22 @@ export declare function init(config: AuthHeroConfig): {
14711
14711
  phone_number: string;
14712
14712
  send: "code" | "link";
14713
14713
  authParams: {
14714
- vendor_id?: string | undefined;
14715
- redirect_uri?: string | undefined;
14716
- scope?: string | undefined;
14714
+ username?: string | undefined;
14717
14715
  state?: string | undefined;
14718
- prompt?: string | undefined;
14719
- response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14720
- response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14721
14716
  audience?: string | undefined;
14717
+ response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14718
+ response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14719
+ scope?: string | undefined;
14720
+ organization?: string | undefined;
14722
14721
  nonce?: string | undefined;
14723
- max_age?: number | undefined;
14724
- acr_values?: string | undefined;
14722
+ act_as?: string | undefined;
14723
+ redirect_uri?: string | undefined;
14724
+ prompt?: string | undefined;
14725
14725
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14726
14726
  code_challenge?: string | undefined;
14727
- organization?: string | undefined;
14728
14727
  ui_locales?: string | undefined;
14728
+ max_age?: number | undefined;
14729
+ acr_values?: string | undefined;
14729
14730
  claims?: {
14730
14731
  userinfo?: Record<string, {
14731
14732
  essential?: boolean | undefined;
@@ -14738,8 +14739,7 @@ export declare function init(config: AuthHeroConfig): {
14738
14739
  values?: unknown[] | undefined;
14739
14740
  } | null> | undefined;
14740
14741
  } | undefined;
14741
- act_as?: string | undefined;
14742
- username?: string | undefined;
14742
+ vendor_id?: string | undefined;
14743
14743
  };
14744
14744
  };
14745
14745
  };
@@ -14855,14 +14855,14 @@ export declare function init(config: AuthHeroConfig): {
14855
14855
  input: {
14856
14856
  form: {
14857
14857
  token: string;
14858
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14858
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14859
14859
  client_id?: string | undefined;
14860
14860
  client_secret?: string | undefined;
14861
14861
  };
14862
14862
  } & {
14863
14863
  json: {
14864
14864
  token: string;
14865
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14865
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14866
14866
  client_id?: string | undefined;
14867
14867
  client_secret?: string | undefined;
14868
14868
  };
@@ -14874,14 +14874,14 @@ export declare function init(config: AuthHeroConfig): {
14874
14874
  input: {
14875
14875
  form: {
14876
14876
  token: string;
14877
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14877
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14878
14878
  client_id?: string | undefined;
14879
14879
  client_secret?: string | undefined;
14880
14880
  };
14881
14881
  } & {
14882
14882
  json: {
14883
14883
  token: string;
14884
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14884
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14885
14885
  client_id?: string | undefined;
14886
14886
  client_secret?: string | undefined;
14887
14887
  };
@@ -14896,14 +14896,14 @@ export declare function init(config: AuthHeroConfig): {
14896
14896
  input: {
14897
14897
  form: {
14898
14898
  token: string;
14899
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14899
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14900
14900
  client_id?: string | undefined;
14901
14901
  client_secret?: string | undefined;
14902
14902
  };
14903
14903
  } & {
14904
14904
  json: {
14905
14905
  token: string;
14906
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14906
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14907
14907
  client_id?: string | undefined;
14908
14908
  client_secret?: string | undefined;
14909
14909
  };
@@ -15327,7 +15327,7 @@ export declare function init(config: AuthHeroConfig): {
15327
15327
  error_description?: string | undefined;
15328
15328
  };
15329
15329
  outputFormat: "json";
15330
- status: 403;
15330
+ status: 401;
15331
15331
  } | {
15332
15332
  input: {
15333
15333
  form: {
@@ -15429,7 +15429,7 @@ export declare function init(config: AuthHeroConfig): {
15429
15429
  error_description?: string | undefined;
15430
15430
  };
15431
15431
  outputFormat: "json";
15432
- status: 401;
15432
+ status: 403;
15433
15433
  };
15434
15434
  };
15435
15435
  }, "/oauth/token"> & import("hono/types").MergeSchemaPath<{
@@ -15628,7 +15628,7 @@ export declare function init(config: AuthHeroConfig): {
15628
15628
  };
15629
15629
  output: {};
15630
15630
  outputFormat: string;
15631
- status: 302;
15631
+ status: 200;
15632
15632
  } | {
15633
15633
  input: {
15634
15634
  query: {
@@ -15642,7 +15642,7 @@ export declare function init(config: AuthHeroConfig): {
15642
15642
  };
15643
15643
  output: {};
15644
15644
  outputFormat: string;
15645
- status: 200;
15645
+ status: 400;
15646
15646
  } | {
15647
15647
  input: {
15648
15648
  query: {
@@ -15656,7 +15656,7 @@ export declare function init(config: AuthHeroConfig): {
15656
15656
  };
15657
15657
  output: {};
15658
15658
  outputFormat: string;
15659
- status: 400;
15659
+ status: 302;
15660
15660
  };
15661
15661
  };
15662
15662
  }, "/oidc/logout"> & import("hono/types").MergeSchemaPath<{
@@ -15763,7 +15763,7 @@ export declare function init(config: AuthHeroConfig): {
15763
15763
  };
15764
15764
  output: {};
15765
15765
  outputFormat: string;
15766
- status: 302;
15766
+ status: 400;
15767
15767
  } | {
15768
15768
  input: {
15769
15769
  query: {
@@ -15772,7 +15772,7 @@ export declare function init(config: AuthHeroConfig): {
15772
15772
  };
15773
15773
  output: {};
15774
15774
  outputFormat: string;
15775
- status: 400;
15775
+ status: 302;
15776
15776
  } | {
15777
15777
  input: {
15778
15778
  query: {
@@ -15901,7 +15901,7 @@ export declare function init(config: AuthHeroConfig): {
15901
15901
  };
15902
15902
  output: {};
15903
15903
  outputFormat: string;
15904
- status: 302;
15904
+ status: 400;
15905
15905
  } | {
15906
15906
  input: {
15907
15907
  query: {
@@ -15914,7 +15914,7 @@ export declare function init(config: AuthHeroConfig): {
15914
15914
  };
15915
15915
  output: {};
15916
15916
  outputFormat: string;
15917
- status: 400;
15917
+ status: 302;
15918
15918
  };
15919
15919
  };
15920
15920
  }, "/impersonate"> & import("hono/types").MergeSchemaPath<{
@@ -16256,7 +16256,7 @@ export declare function init(config: AuthHeroConfig): {
16256
16256
  };
16257
16257
  output: {};
16258
16258
  outputFormat: string;
16259
- status: 302;
16259
+ status: 400;
16260
16260
  } | {
16261
16261
  input: {
16262
16262
  query: {
@@ -16270,7 +16270,7 @@ export declare function init(config: AuthHeroConfig): {
16270
16270
  };
16271
16271
  output: {};
16272
16272
  outputFormat: string;
16273
- status: 400;
16273
+ status: 302;
16274
16274
  };
16275
16275
  };
16276
16276
  }, "/login/identifier"> & import("hono/types").MergeSchemaPath<{
@@ -16630,7 +16630,7 @@ export declare function init(config: AuthHeroConfig): {
16630
16630
  $get: {
16631
16631
  input: {
16632
16632
  param: {
16633
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
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";
16634
16634
  };
16635
16635
  } & {
16636
16636
  query: {
@@ -16646,7 +16646,7 @@ export declare function init(config: AuthHeroConfig): {
16646
16646
  } | {
16647
16647
  input: {
16648
16648
  param: {
16649
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
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";
16650
16650
  };
16651
16651
  } & {
16652
16652
  query: {
@@ -16658,11 +16658,11 @@ export declare function init(config: AuthHeroConfig): {
16658
16658
  };
16659
16659
  output: {};
16660
16660
  outputFormat: string;
16661
- status: 302;
16661
+ status: 400;
16662
16662
  } | {
16663
16663
  input: {
16664
16664
  param: {
16665
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
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";
16666
16666
  };
16667
16667
  } & {
16668
16668
  query: {
@@ -16674,7 +16674,7 @@ export declare function init(config: AuthHeroConfig): {
16674
16674
  };
16675
16675
  output: {};
16676
16676
  outputFormat: string;
16677
- status: 400;
16677
+ status: 302;
16678
16678
  };
16679
16679
  };
16680
16680
  } & {
@@ -16682,7 +16682,7 @@ export declare function init(config: AuthHeroConfig): {
16682
16682
  $post: {
16683
16683
  input: {
16684
16684
  param: {
16685
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
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";
16686
16686
  };
16687
16687
  } & {
16688
16688
  query: {
@@ -16700,7 +16700,7 @@ export declare function init(config: AuthHeroConfig): {
16700
16700
  } | {
16701
16701
  input: {
16702
16702
  param: {
16703
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
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";
16704
16704
  };
16705
16705
  } & {
16706
16706
  query: {