authhero 9.2.0 → 9.4.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 (52) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/index.esm.js +1 -1
  3. package/dist/assets/u/widget/p-b5f14fa6.entry.js +1 -0
  4. package/dist/assets/u/widget/p-f94037cd.entry.js +1 -0
  5. package/dist/authhero.cjs +144 -143
  6. package/dist/authhero.d.ts +241 -120
  7. package/dist/authhero.mjs +13638 -13842
  8. package/dist/tsconfig.types.tsbuildinfo +1 -1
  9. package/dist/types/authentication-flows/passwordless.d.ts +8 -4
  10. package/dist/types/helpers/client.d.ts +4 -0
  11. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  12. package/dist/types/helpers/session-usage.d.ts +48 -0
  13. package/dist/types/hooks/formhooks.d.ts +24 -0
  14. package/dist/types/index.d.ts +237 -120
  15. package/dist/types/oauth2-client/client.d.ts +50 -0
  16. package/dist/types/oauth2-client/index.d.ts +3 -0
  17. package/dist/types/oauth2-client/providers.d.ts +49 -0
  18. package/dist/types/routes/auth-api/index.d.ts +26 -26
  19. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  20. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  21. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  22. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  23. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  24. package/dist/types/routes/management-api/actions.d.ts +1 -1
  25. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  26. package/dist/types/routes/management-api/branding.d.ts +13 -13
  27. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  28. package/dist/types/routes/management-api/clients.d.ts +18 -10
  29. package/dist/types/routes/management-api/connections.d.ts +25 -5
  30. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  31. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  32. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  33. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  34. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  35. package/dist/types/routes/management-api/hooks.d.ts +95 -6
  36. package/dist/types/routes/management-api/index.d.ts +204 -87
  37. package/dist/types/routes/management-api/logs.d.ts +4 -4
  38. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  39. package/dist/types/routes/management-api/roles.d.ts +1 -1
  40. package/dist/types/routes/management-api/themes.d.ts +6 -6
  41. package/dist/types/routes/management-api/users.d.ts +2 -2
  42. package/dist/types/routes/universal-login/common.d.ts +18 -10
  43. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  44. package/dist/types/routes/universal-login/index.d.ts +2 -2
  45. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  46. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  47. package/dist/types/routes/universal-login/u2-widget-page.d.ts +12 -0
  48. package/dist/types/strategies/internal-oauth2.d.ts +5 -5
  49. package/dist/types/utils/locale.d.ts +26 -0
  50. package/package.json +6 -7
  51. package/dist/assets/u/widget/p-cdfc4555.entry.js +0 -1
  52. package/dist/assets/u/widget/p-e95c436f.entry.js +0 -1
@@ -168,7 +168,7 @@ export declare function init(config: AuthHeroConfig): {
168
168
  };
169
169
  } & {
170
170
  json: {
171
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
171
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
172
172
  phone_number?: string | undefined;
173
173
  totp_secret?: string | undefined;
174
174
  credential_id?: string | undefined;
@@ -308,7 +308,7 @@ export declare function init(config: AuthHeroConfig): {
308
308
  };
309
309
  };
310
310
  output: {
311
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
311
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
312
312
  enabled: boolean;
313
313
  trial_expired?: boolean | undefined;
314
314
  }[];
@@ -463,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
463
463
  $get: {
464
464
  input: {
465
465
  param: {
466
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
466
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
467
467
  };
468
468
  } & {
469
469
  header: {
@@ -471,7 +471,7 @@ export declare function init(config: AuthHeroConfig): {
471
471
  };
472
472
  };
473
473
  output: {
474
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
474
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
475
475
  enabled: boolean;
476
476
  trial_expired?: boolean | undefined;
477
477
  };
@@ -484,7 +484,7 @@ export declare function init(config: AuthHeroConfig): {
484
484
  $put: {
485
485
  input: {
486
486
  param: {
487
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
487
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
488
488
  };
489
489
  } & {
490
490
  header: {
@@ -496,7 +496,7 @@ export declare function init(config: AuthHeroConfig): {
496
496
  };
497
497
  };
498
498
  output: {
499
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
499
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
500
500
  enabled: boolean;
501
501
  trial_expired?: boolean | undefined;
502
502
  };
@@ -2035,9 +2035,9 @@ export declare function init(config: AuthHeroConfig): {
2035
2035
  };
2036
2036
  } & {
2037
2037
  query: {
2038
- from?: string | undefined;
2039
2038
  page?: string | undefined;
2040
2039
  include_totals?: string | undefined;
2040
+ from?: string | undefined;
2041
2041
  per_page?: string | undefined;
2042
2042
  take?: string | undefined;
2043
2043
  };
@@ -7033,7 +7033,7 @@ export declare function init(config: AuthHeroConfig): {
7033
7033
  };
7034
7034
  };
7035
7035
  output: {
7036
- prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
7036
+ prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7037
7037
  language: string;
7038
7038
  }[];
7039
7039
  outputFormat: "json";
@@ -7071,7 +7071,7 @@ export declare function init(config: AuthHeroConfig): {
7071
7071
  $get: {
7072
7072
  input: {
7073
7073
  param: {
7074
- prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
7074
+ prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7075
7075
  language: string;
7076
7076
  };
7077
7077
  } & {
@@ -7093,7 +7093,7 @@ export declare function init(config: AuthHeroConfig): {
7093
7093
  $put: {
7094
7094
  input: {
7095
7095
  param: {
7096
- prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
7096
+ prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7097
7097
  language: string;
7098
7098
  };
7099
7099
  } & {
@@ -7117,7 +7117,7 @@ export declare function init(config: AuthHeroConfig): {
7117
7117
  $delete: {
7118
7118
  input: {
7119
7119
  param: {
7120
- prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
7120
+ prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7121
7121
  language: string;
7122
7122
  };
7123
7123
  } & {
@@ -7164,6 +7164,9 @@ export declare function init(config: AuthHeroConfig): {
7164
7164
  client_secret?: string | undefined;
7165
7165
  app_secret?: string | undefined;
7166
7166
  scope?: string | undefined;
7167
+ client_secret_hint?: string | undefined;
7168
+ app_secret_hint?: string | undefined;
7169
+ twilio_token_hint?: string | undefined;
7167
7170
  authorization_endpoint?: string | undefined;
7168
7171
  token_endpoint?: string | undefined;
7169
7172
  userinfo_endpoint?: string | undefined;
@@ -7201,6 +7204,7 @@ export declare function init(config: AuthHeroConfig): {
7201
7204
  userinfo_endpoint?: string | undefined;
7202
7205
  client_id?: string | undefined;
7203
7206
  client_secret?: string | undefined;
7207
+ client_secret_hint?: string | undefined;
7204
7208
  realm?: string | undefined;
7205
7209
  } | undefined;
7206
7210
  attributes?: {
@@ -7256,7 +7260,7 @@ export declare function init(config: AuthHeroConfig): {
7256
7260
  } | undefined;
7257
7261
  } | undefined;
7258
7262
  passkey_options?: {
7259
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7263
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7260
7264
  local_enrollment_enabled?: boolean | undefined;
7261
7265
  progressive_enrollment_enabled?: boolean | undefined;
7262
7266
  } | undefined;
@@ -7298,6 +7302,9 @@ export declare function init(config: AuthHeroConfig): {
7298
7302
  client_secret?: string | undefined;
7299
7303
  app_secret?: string | undefined;
7300
7304
  scope?: string | undefined;
7305
+ client_secret_hint?: string | undefined;
7306
+ app_secret_hint?: string | undefined;
7307
+ twilio_token_hint?: string | undefined;
7301
7308
  authorization_endpoint?: string | undefined;
7302
7309
  token_endpoint?: string | undefined;
7303
7310
  userinfo_endpoint?: string | undefined;
@@ -7335,6 +7342,7 @@ export declare function init(config: AuthHeroConfig): {
7335
7342
  userinfo_endpoint?: string | undefined;
7336
7343
  client_id?: string | undefined;
7337
7344
  client_secret?: string | undefined;
7345
+ client_secret_hint?: string | undefined;
7338
7346
  realm?: string | undefined;
7339
7347
  } | undefined;
7340
7348
  attributes?: {
@@ -7390,7 +7398,7 @@ export declare function init(config: AuthHeroConfig): {
7390
7398
  } | undefined;
7391
7399
  } | undefined;
7392
7400
  passkey_options?: {
7393
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7401
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7394
7402
  local_enrollment_enabled?: boolean | undefined;
7395
7403
  progressive_enrollment_enabled?: boolean | undefined;
7396
7404
  } | undefined;
@@ -7448,6 +7456,9 @@ export declare function init(config: AuthHeroConfig): {
7448
7456
  client_secret?: string | undefined;
7449
7457
  app_secret?: string | undefined;
7450
7458
  scope?: string | undefined;
7459
+ client_secret_hint?: string | undefined;
7460
+ app_secret_hint?: string | undefined;
7461
+ twilio_token_hint?: string | undefined;
7451
7462
  authorization_endpoint?: string | undefined;
7452
7463
  token_endpoint?: string | undefined;
7453
7464
  userinfo_endpoint?: string | undefined;
@@ -7485,6 +7496,7 @@ export declare function init(config: AuthHeroConfig): {
7485
7496
  userinfo_endpoint?: string | undefined;
7486
7497
  client_id?: string | undefined;
7487
7498
  client_secret?: string | undefined;
7499
+ client_secret_hint?: string | undefined;
7488
7500
  realm?: string | undefined;
7489
7501
  } | undefined;
7490
7502
  attributes?: {
@@ -7540,7 +7552,7 @@ export declare function init(config: AuthHeroConfig): {
7540
7552
  } | undefined;
7541
7553
  } | undefined;
7542
7554
  passkey_options?: {
7543
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7555
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7544
7556
  local_enrollment_enabled?: boolean | undefined;
7545
7557
  progressive_enrollment_enabled?: boolean | undefined;
7546
7558
  } | undefined;
@@ -7627,6 +7639,9 @@ export declare function init(config: AuthHeroConfig): {
7627
7639
  client_secret?: string | undefined;
7628
7640
  app_secret?: string | undefined;
7629
7641
  scope?: string | undefined;
7642
+ client_secret_hint?: string | undefined;
7643
+ app_secret_hint?: string | undefined;
7644
+ twilio_token_hint?: string | undefined;
7630
7645
  authorization_endpoint?: string | undefined;
7631
7646
  token_endpoint?: string | undefined;
7632
7647
  userinfo_endpoint?: string | undefined;
@@ -7664,6 +7679,7 @@ export declare function init(config: AuthHeroConfig): {
7664
7679
  userinfo_endpoint?: string | undefined;
7665
7680
  client_id?: string | undefined;
7666
7681
  client_secret?: string | undefined;
7682
+ client_secret_hint?: string | undefined;
7667
7683
  realm?: string | undefined;
7668
7684
  } | undefined;
7669
7685
  attributes?: {
@@ -7719,7 +7735,7 @@ export declare function init(config: AuthHeroConfig): {
7719
7735
  } | undefined;
7720
7736
  } | undefined;
7721
7737
  passkey_options?: {
7722
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7738
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7723
7739
  local_enrollment_enabled?: boolean | undefined;
7724
7740
  progressive_enrollment_enabled?: boolean | undefined;
7725
7741
  } | undefined;
@@ -7785,6 +7801,9 @@ export declare function init(config: AuthHeroConfig): {
7785
7801
  client_secret?: string | undefined;
7786
7802
  app_secret?: string | undefined;
7787
7803
  scope?: string | undefined;
7804
+ client_secret_hint?: string | undefined;
7805
+ app_secret_hint?: string | undefined;
7806
+ twilio_token_hint?: string | undefined;
7788
7807
  authorization_endpoint?: string | undefined;
7789
7808
  token_endpoint?: string | undefined;
7790
7809
  userinfo_endpoint?: string | undefined;
@@ -7822,6 +7841,7 @@ export declare function init(config: AuthHeroConfig): {
7822
7841
  userinfo_endpoint?: string | undefined;
7823
7842
  client_id?: string | undefined;
7824
7843
  client_secret?: string | undefined;
7844
+ client_secret_hint?: string | undefined;
7825
7845
  realm?: string | undefined;
7826
7846
  } | undefined;
7827
7847
  attributes?: {
@@ -7877,7 +7897,7 @@ export declare function init(config: AuthHeroConfig): {
7877
7897
  } | undefined;
7878
7898
  } | undefined;
7879
7899
  passkey_options?: {
7880
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7900
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7881
7901
  local_enrollment_enabled?: boolean | undefined;
7882
7902
  progressive_enrollment_enabled?: boolean | undefined;
7883
7903
  } | undefined;
@@ -8166,7 +8186,7 @@ export declare function init(config: AuthHeroConfig): {
8166
8186
  [x: string]: import("hono/utils/types").JSONValue;
8167
8187
  } | undefined;
8168
8188
  } | {
8169
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8189
+ trigger_id: "post-user-login";
8170
8190
  enabled: boolean;
8171
8191
  synchronous: boolean;
8172
8192
  created_at: string;
@@ -8201,6 +8221,19 @@ export declare function init(config: AuthHeroConfig): {
8201
8221
  metadata?: {
8202
8222
  [x: string]: import("hono/utils/types").JSONValue;
8203
8223
  } | undefined;
8224
+ } | {
8225
+ trigger_id: "post-user-login";
8226
+ enabled: boolean;
8227
+ synchronous: boolean;
8228
+ created_at: string;
8229
+ updated_at: string;
8230
+ hook_id: string;
8231
+ page_id: "impersonate";
8232
+ priority?: number | undefined;
8233
+ metadata?: {
8234
+ [x: string]: import("hono/utils/types").JSONValue;
8235
+ } | undefined;
8236
+ permission_required?: string | undefined;
8204
8237
  })[] | {
8205
8238
  start: number;
8206
8239
  limit: number;
@@ -8218,7 +8251,7 @@ export declare function init(config: AuthHeroConfig): {
8218
8251
  [x: string]: import("hono/utils/types").JSONValue;
8219
8252
  } | undefined;
8220
8253
  } | {
8221
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8254
+ trigger_id: "post-user-login";
8222
8255
  enabled: boolean;
8223
8256
  synchronous: boolean;
8224
8257
  created_at: string;
@@ -8253,6 +8286,19 @@ export declare function init(config: AuthHeroConfig): {
8253
8286
  metadata?: {
8254
8287
  [x: string]: import("hono/utils/types").JSONValue;
8255
8288
  } | undefined;
8289
+ } | {
8290
+ trigger_id: "post-user-login";
8291
+ enabled: boolean;
8292
+ synchronous: boolean;
8293
+ created_at: string;
8294
+ updated_at: string;
8295
+ hook_id: string;
8296
+ page_id: "impersonate";
8297
+ priority?: number | undefined;
8298
+ metadata?: {
8299
+ [x: string]: import("hono/utils/types").JSONValue;
8300
+ } | undefined;
8301
+ permission_required?: string | undefined;
8256
8302
  })[];
8257
8303
  total?: number | undefined;
8258
8304
  next?: string | undefined;
@@ -8278,7 +8324,7 @@ export declare function init(config: AuthHeroConfig): {
8278
8324
  hook_id?: string | undefined;
8279
8325
  metadata?: Record<string, unknown> | undefined;
8280
8326
  } | {
8281
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8327
+ trigger_id: "post-user-login";
8282
8328
  form_id: string;
8283
8329
  enabled?: boolean | undefined;
8284
8330
  synchronous?: boolean | undefined;
@@ -8301,6 +8347,15 @@ export declare function init(config: AuthHeroConfig): {
8301
8347
  priority?: number | undefined;
8302
8348
  hook_id?: string | undefined;
8303
8349
  metadata?: Record<string, unknown> | undefined;
8350
+ } | {
8351
+ trigger_id: "post-user-login";
8352
+ page_id: "impersonate";
8353
+ permission_required?: string | undefined;
8354
+ enabled?: boolean | undefined;
8355
+ synchronous?: boolean | undefined;
8356
+ priority?: number | undefined;
8357
+ hook_id?: string | undefined;
8358
+ metadata?: Record<string, unknown> | undefined;
8304
8359
  };
8305
8360
  };
8306
8361
  output: {
@@ -8316,7 +8371,7 @@ export declare function init(config: AuthHeroConfig): {
8316
8371
  [x: string]: import("hono/utils/types").JSONValue;
8317
8372
  } | undefined;
8318
8373
  } | {
8319
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8374
+ trigger_id: "post-user-login";
8320
8375
  enabled: boolean;
8321
8376
  synchronous: boolean;
8322
8377
  created_at: string;
@@ -8351,6 +8406,19 @@ export declare function init(config: AuthHeroConfig): {
8351
8406
  metadata?: {
8352
8407
  [x: string]: import("hono/utils/types").JSONValue;
8353
8408
  } | undefined;
8409
+ } | {
8410
+ trigger_id: "post-user-login";
8411
+ enabled: boolean;
8412
+ synchronous: boolean;
8413
+ created_at: string;
8414
+ updated_at: string;
8415
+ hook_id: string;
8416
+ page_id: "impersonate";
8417
+ priority?: number | undefined;
8418
+ metadata?: {
8419
+ [x: string]: import("hono/utils/types").JSONValue;
8420
+ } | undefined;
8421
+ permission_required?: string | undefined;
8354
8422
  };
8355
8423
  outputFormat: "json";
8356
8424
  status: 201;
@@ -8359,6 +8427,21 @@ export declare function init(config: AuthHeroConfig): {
8359
8427
  } & {
8360
8428
  "/:hook_id": {
8361
8429
  $patch: {
8430
+ input: {
8431
+ param: {
8432
+ hook_id: string;
8433
+ };
8434
+ } & {
8435
+ header: {
8436
+ "tenant-id"?: string | undefined;
8437
+ };
8438
+ } & {
8439
+ json: unknown;
8440
+ };
8441
+ output: {};
8442
+ outputFormat: string;
8443
+ status: 400;
8444
+ } | {
8362
8445
  input: {
8363
8446
  param: {
8364
8447
  hook_id: string;
@@ -8398,7 +8481,7 @@ export declare function init(config: AuthHeroConfig): {
8398
8481
  [x: string]: import("hono/utils/types").JSONValue;
8399
8482
  } | undefined;
8400
8483
  } | {
8401
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8484
+ trigger_id: "post-user-login";
8402
8485
  enabled: boolean;
8403
8486
  synchronous: boolean;
8404
8487
  created_at: string;
@@ -8433,6 +8516,19 @@ export declare function init(config: AuthHeroConfig): {
8433
8516
  metadata?: {
8434
8517
  [x: string]: import("hono/utils/types").JSONValue;
8435
8518
  } | undefined;
8519
+ } | {
8520
+ trigger_id: "post-user-login";
8521
+ enabled: boolean;
8522
+ synchronous: boolean;
8523
+ created_at: string;
8524
+ updated_at: string;
8525
+ hook_id: string;
8526
+ page_id: "impersonate";
8527
+ priority?: number | undefined;
8528
+ metadata?: {
8529
+ [x: string]: import("hono/utils/types").JSONValue;
8530
+ } | undefined;
8531
+ permission_required?: string | undefined;
8436
8532
  };
8437
8533
  outputFormat: "json";
8438
8534
  status: 200;
@@ -8476,7 +8572,7 @@ export declare function init(config: AuthHeroConfig): {
8476
8572
  [x: string]: import("hono/utils/types").JSONValue;
8477
8573
  } | undefined;
8478
8574
  } | {
8479
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8575
+ trigger_id: "post-user-login";
8480
8576
  enabled: boolean;
8481
8577
  synchronous: boolean;
8482
8578
  created_at: string;
@@ -8511,6 +8607,19 @@ export declare function init(config: AuthHeroConfig): {
8511
8607
  metadata?: {
8512
8608
  [x: string]: import("hono/utils/types").JSONValue;
8513
8609
  } | undefined;
8610
+ } | {
8611
+ trigger_id: "post-user-login";
8612
+ enabled: boolean;
8613
+ synchronous: boolean;
8614
+ created_at: string;
8615
+ updated_at: string;
8616
+ hook_id: string;
8617
+ page_id: "impersonate";
8618
+ priority?: number | undefined;
8619
+ metadata?: {
8620
+ [x: string]: import("hono/utils/types").JSONValue;
8621
+ } | undefined;
8622
+ permission_required?: string | undefined;
8514
8623
  };
8515
8624
  outputFormat: "json";
8516
8625
  status: 200;
@@ -8620,7 +8729,7 @@ export declare function init(config: AuthHeroConfig): {
8620
8729
  log_type: string;
8621
8730
  category: "user_action" | "admin_action" | "system" | "api";
8622
8731
  actor: {
8623
- type: "api_key" | "user" | "client_credentials" | "system" | "admin";
8732
+ type: "user" | "api_key" | "client_credentials" | "system" | "admin";
8624
8733
  id?: string | undefined;
8625
8734
  email?: string | undefined;
8626
8735
  org_id?: string | undefined;
@@ -9271,7 +9380,7 @@ export declare function init(config: AuthHeroConfig): {
9271
9380
  };
9272
9381
  };
9273
9382
  output: {
9274
- type: "fn" | "sapi" | "i" | "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" | "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";
9383
+ type: "i" | "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" | "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";
9275
9384
  date: string;
9276
9385
  isMobile: boolean;
9277
9386
  log_id: string;
@@ -9310,7 +9419,7 @@ export declare function init(config: AuthHeroConfig): {
9310
9419
  limit: number;
9311
9420
  length: number;
9312
9421
  logs: {
9313
- type: "fn" | "sapi" | "i" | "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" | "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";
9422
+ type: "i" | "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" | "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";
9314
9423
  date: string;
9315
9424
  isMobile: boolean;
9316
9425
  log_id: string;
@@ -9349,7 +9458,7 @@ export declare function init(config: AuthHeroConfig): {
9349
9458
  next?: string | undefined;
9350
9459
  } | {
9351
9460
  logs: {
9352
- type: "fn" | "sapi" | "i" | "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" | "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";
9461
+ type: "i" | "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" | "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";
9353
9462
  date: string;
9354
9463
  isMobile: boolean;
9355
9464
  log_id: string;
@@ -9403,7 +9512,7 @@ export declare function init(config: AuthHeroConfig): {
9403
9512
  };
9404
9513
  };
9405
9514
  output: {
9406
- type: "fn" | "sapi" | "i" | "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" | "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";
9515
+ type: "i" | "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" | "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";
9407
9516
  date: string;
9408
9517
  isMobile: boolean;
9409
9518
  log_id: string;
@@ -9559,7 +9668,7 @@ export declare function init(config: AuthHeroConfig): {
9559
9668
  audience?: string | undefined;
9560
9669
  client_id?: string | undefined;
9561
9670
  allow_any_organization?: string | undefined;
9562
- subject_type?: "client" | "user" | undefined;
9671
+ subject_type?: "user" | "client" | undefined;
9563
9672
  };
9564
9673
  } & {
9565
9674
  header: {
@@ -9574,7 +9683,7 @@ export declare function init(config: AuthHeroConfig): {
9574
9683
  organization_usage?: "deny" | "allow" | "require" | undefined;
9575
9684
  allow_any_organization?: boolean | undefined;
9576
9685
  is_system?: boolean | undefined;
9577
- subject_type?: "client" | "user" | undefined;
9686
+ subject_type?: "user" | "client" | undefined;
9578
9687
  authorization_details_types?: string[] | undefined;
9579
9688
  created_at?: string | undefined;
9580
9689
  updated_at?: string | undefined;
@@ -9590,7 +9699,7 @@ export declare function init(config: AuthHeroConfig): {
9590
9699
  organization_usage?: "deny" | "allow" | "require" | undefined;
9591
9700
  allow_any_organization?: boolean | undefined;
9592
9701
  is_system?: boolean | undefined;
9593
- subject_type?: "client" | "user" | undefined;
9702
+ subject_type?: "user" | "client" | undefined;
9594
9703
  authorization_details_types?: string[] | undefined;
9595
9704
  created_at?: string | undefined;
9596
9705
  updated_at?: string | undefined;
@@ -9606,7 +9715,7 @@ export declare function init(config: AuthHeroConfig): {
9606
9715
  organization_usage?: "deny" | "allow" | "require" | undefined;
9607
9716
  allow_any_organization?: boolean | undefined;
9608
9717
  is_system?: boolean | undefined;
9609
- subject_type?: "client" | "user" | undefined;
9718
+ subject_type?: "user" | "client" | undefined;
9610
9719
  authorization_details_types?: string[] | undefined;
9611
9720
  created_at?: string | undefined;
9612
9721
  updated_at?: string | undefined;
@@ -9637,7 +9746,7 @@ export declare function init(config: AuthHeroConfig): {
9637
9746
  organization_usage?: "deny" | "allow" | "require" | undefined;
9638
9747
  allow_any_organization?: boolean | undefined;
9639
9748
  is_system?: boolean | undefined;
9640
- subject_type?: "client" | "user" | undefined;
9749
+ subject_type?: "user" | "client" | undefined;
9641
9750
  authorization_details_types?: string[] | undefined;
9642
9751
  created_at?: string | undefined;
9643
9752
  updated_at?: string | undefined;
@@ -9682,7 +9791,7 @@ export declare function init(config: AuthHeroConfig): {
9682
9791
  organization_usage?: "deny" | "allow" | "require" | undefined;
9683
9792
  allow_any_organization?: boolean | undefined;
9684
9793
  is_system?: boolean | undefined;
9685
- subject_type?: "client" | "user" | undefined;
9794
+ subject_type?: "user" | "client" | undefined;
9686
9795
  authorization_details_types?: string[] | undefined;
9687
9796
  };
9688
9797
  };
@@ -9694,7 +9803,7 @@ export declare function init(config: AuthHeroConfig): {
9694
9803
  organization_usage?: "deny" | "allow" | "require" | undefined;
9695
9804
  allow_any_organization?: boolean | undefined;
9696
9805
  is_system?: boolean | undefined;
9697
- subject_type?: "client" | "user" | undefined;
9806
+ subject_type?: "user" | "client" | undefined;
9698
9807
  authorization_details_types?: string[] | undefined;
9699
9808
  created_at?: string | undefined;
9700
9809
  updated_at?: string | undefined;
@@ -9718,7 +9827,7 @@ export declare function init(config: AuthHeroConfig): {
9718
9827
  organization_usage?: "deny" | "allow" | "require" | undefined;
9719
9828
  allow_any_organization?: boolean | undefined;
9720
9829
  is_system?: boolean | undefined;
9721
- subject_type?: "client" | "user" | undefined;
9830
+ subject_type?: "user" | "client" | undefined;
9722
9831
  authorization_details_types?: string[] | undefined;
9723
9832
  };
9724
9833
  };
@@ -9730,7 +9839,7 @@ export declare function init(config: AuthHeroConfig): {
9730
9839
  organization_usage?: "deny" | "allow" | "require" | undefined;
9731
9840
  allow_any_organization?: boolean | undefined;
9732
9841
  is_system?: boolean | undefined;
9733
- subject_type?: "client" | "user" | undefined;
9842
+ subject_type?: "user" | "client" | undefined;
9734
9843
  authorization_details_types?: string[] | undefined;
9735
9844
  created_at?: string | undefined;
9736
9845
  updated_at?: string | undefined;
@@ -9814,7 +9923,7 @@ export declare function init(config: AuthHeroConfig): {
9814
9923
  addons?: {
9815
9924
  [x: string]: any;
9816
9925
  } | undefined;
9817
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9926
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9818
9927
  client_metadata?: {
9819
9928
  [x: string]: string;
9820
9929
  } | undefined;
@@ -9916,7 +10025,7 @@ export declare function init(config: AuthHeroConfig): {
9916
10025
  addons?: {
9917
10026
  [x: string]: any;
9918
10027
  } | undefined;
9919
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10028
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9920
10029
  client_metadata?: {
9921
10030
  [x: string]: string;
9922
10031
  } | undefined;
@@ -10018,7 +10127,7 @@ export declare function init(config: AuthHeroConfig): {
10018
10127
  addons?: {
10019
10128
  [x: string]: any;
10020
10129
  } | undefined;
10021
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10130
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10022
10131
  client_metadata?: {
10023
10132
  [x: string]: string;
10024
10133
  } | undefined;
@@ -10135,7 +10244,7 @@ export declare function init(config: AuthHeroConfig): {
10135
10244
  addons?: {
10136
10245
  [x: string]: any;
10137
10246
  } | undefined;
10138
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10247
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10139
10248
  client_metadata?: {
10140
10249
  [x: string]: string;
10141
10250
  } | undefined;
@@ -10253,7 +10362,7 @@ export declare function init(config: AuthHeroConfig): {
10253
10362
  custom_login_page_preview?: string | undefined;
10254
10363
  form_template?: string | undefined;
10255
10364
  addons?: Record<string, any> | undefined;
10256
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10365
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10257
10366
  client_metadata?: Record<string, string> | undefined;
10258
10367
  hide_sign_up_disabled_error?: boolean | undefined;
10259
10368
  mobile?: Record<string, any> | undefined;
@@ -10339,7 +10448,7 @@ export declare function init(config: AuthHeroConfig): {
10339
10448
  addons?: {
10340
10449
  [x: string]: any;
10341
10450
  } | undefined;
10342
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10451
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10343
10452
  client_metadata?: {
10344
10453
  [x: string]: string;
10345
10454
  } | undefined;
@@ -10436,7 +10545,7 @@ export declare function init(config: AuthHeroConfig): {
10436
10545
  custom_login_page_preview?: string | undefined;
10437
10546
  form_template?: string | undefined;
10438
10547
  addons?: Record<string, any> | undefined;
10439
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10548
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10440
10549
  client_metadata?: Record<string, string> | undefined;
10441
10550
  hide_sign_up_disabled_error?: boolean | undefined;
10442
10551
  mobile?: Record<string, any> | undefined;
@@ -10522,7 +10631,7 @@ export declare function init(config: AuthHeroConfig): {
10522
10631
  addons?: {
10523
10632
  [x: string]: any;
10524
10633
  } | undefined;
10525
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10634
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10526
10635
  client_metadata?: {
10527
10636
  [x: string]: string;
10528
10637
  } | undefined;
@@ -10599,6 +10708,9 @@ export declare function init(config: AuthHeroConfig): {
10599
10708
  client_secret?: string | undefined;
10600
10709
  app_secret?: string | undefined;
10601
10710
  scope?: string | undefined;
10711
+ client_secret_hint?: string | undefined;
10712
+ app_secret_hint?: string | undefined;
10713
+ twilio_token_hint?: string | undefined;
10602
10714
  authorization_endpoint?: string | undefined;
10603
10715
  token_endpoint?: string | undefined;
10604
10716
  userinfo_endpoint?: string | undefined;
@@ -10636,6 +10748,7 @@ export declare function init(config: AuthHeroConfig): {
10636
10748
  userinfo_endpoint?: string | undefined;
10637
10749
  client_id?: string | undefined;
10638
10750
  client_secret?: string | undefined;
10751
+ client_secret_hint?: string | undefined;
10639
10752
  realm?: string | undefined;
10640
10753
  } | undefined;
10641
10754
  attributes?: {
@@ -10691,7 +10804,7 @@ export declare function init(config: AuthHeroConfig): {
10691
10804
  } | undefined;
10692
10805
  } | undefined;
10693
10806
  passkey_options?: {
10694
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10807
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10695
10808
  local_enrollment_enabled?: boolean | undefined;
10696
10809
  progressive_enrollment_enabled?: boolean | undefined;
10697
10810
  } | undefined;
@@ -10753,6 +10866,9 @@ export declare function init(config: AuthHeroConfig): {
10753
10866
  client_secret?: string | undefined;
10754
10867
  app_secret?: string | undefined;
10755
10868
  scope?: string | undefined;
10869
+ client_secret_hint?: string | undefined;
10870
+ app_secret_hint?: string | undefined;
10871
+ twilio_token_hint?: string | undefined;
10756
10872
  authorization_endpoint?: string | undefined;
10757
10873
  token_endpoint?: string | undefined;
10758
10874
  userinfo_endpoint?: string | undefined;
@@ -10790,6 +10906,7 @@ export declare function init(config: AuthHeroConfig): {
10790
10906
  userinfo_endpoint?: string | undefined;
10791
10907
  client_id?: string | undefined;
10792
10908
  client_secret?: string | undefined;
10909
+ client_secret_hint?: string | undefined;
10793
10910
  realm?: string | undefined;
10794
10911
  } | undefined;
10795
10912
  attributes?: {
@@ -10845,7 +10962,7 @@ export declare function init(config: AuthHeroConfig): {
10845
10962
  } | undefined;
10846
10963
  } | undefined;
10847
10964
  passkey_options?: {
10848
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10965
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10849
10966
  local_enrollment_enabled?: boolean | undefined;
10850
10967
  progressive_enrollment_enabled?: boolean | undefined;
10851
10968
  } | undefined;
@@ -11867,7 +11984,7 @@ export declare function init(config: AuthHeroConfig): {
11867
11984
  };
11868
11985
  };
11869
11986
  output: {
11870
- type: "fn" | "sapi" | "i" | "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" | "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";
11987
+ type: "i" | "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" | "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";
11871
11988
  date: string;
11872
11989
  isMobile: boolean;
11873
11990
  log_id: string;
@@ -11906,7 +12023,7 @@ export declare function init(config: AuthHeroConfig): {
11906
12023
  limit: number;
11907
12024
  length: number;
11908
12025
  logs: {
11909
- type: "fn" | "sapi" | "i" | "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" | "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";
12026
+ type: "i" | "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" | "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";
11910
12027
  date: string;
11911
12028
  isMobile: boolean;
11912
12029
  log_id: string;
@@ -12225,7 +12342,7 @@ export declare function init(config: AuthHeroConfig): {
12225
12342
  };
12226
12343
  } & {
12227
12344
  json: {
12228
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12345
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12229
12346
  body: string;
12230
12347
  from: string;
12231
12348
  subject: string;
@@ -12246,7 +12363,7 @@ export declare function init(config: AuthHeroConfig): {
12246
12363
  };
12247
12364
  } & {
12248
12365
  json: {
12249
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12366
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12250
12367
  body: string;
12251
12368
  from: string;
12252
12369
  subject: string;
@@ -12258,7 +12375,7 @@ export declare function init(config: AuthHeroConfig): {
12258
12375
  };
12259
12376
  };
12260
12377
  output: {
12261
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12378
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12262
12379
  body: string;
12263
12380
  from: string;
12264
12381
  subject: string;
@@ -12281,7 +12398,7 @@ export declare function init(config: AuthHeroConfig): {
12281
12398
  };
12282
12399
  };
12283
12400
  output: {
12284
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12401
+ name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12285
12402
  body: string;
12286
12403
  subject: string;
12287
12404
  }[];
@@ -12294,7 +12411,7 @@ export declare function init(config: AuthHeroConfig): {
12294
12411
  $get: {
12295
12412
  input: {
12296
12413
  param: {
12297
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12414
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12298
12415
  };
12299
12416
  } & {
12300
12417
  header: {
@@ -12307,7 +12424,7 @@ export declare function init(config: AuthHeroConfig): {
12307
12424
  } | {
12308
12425
  input: {
12309
12426
  param: {
12310
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12427
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12311
12428
  };
12312
12429
  } & {
12313
12430
  header: {
@@ -12315,7 +12432,7 @@ export declare function init(config: AuthHeroConfig): {
12315
12432
  };
12316
12433
  };
12317
12434
  output: {
12318
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12435
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12319
12436
  body: string;
12320
12437
  from: string;
12321
12438
  subject: string;
@@ -12334,7 +12451,7 @@ export declare function init(config: AuthHeroConfig): {
12334
12451
  $put: {
12335
12452
  input: {
12336
12453
  param: {
12337
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12454
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12338
12455
  };
12339
12456
  } & {
12340
12457
  header: {
@@ -12342,7 +12459,7 @@ export declare function init(config: AuthHeroConfig): {
12342
12459
  };
12343
12460
  } & {
12344
12461
  json: {
12345
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12462
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12346
12463
  body: string;
12347
12464
  subject: string;
12348
12465
  syntax?: "liquid" | undefined;
@@ -12354,7 +12471,7 @@ export declare function init(config: AuthHeroConfig): {
12354
12471
  };
12355
12472
  };
12356
12473
  output: {
12357
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12474
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12358
12475
  body: string;
12359
12476
  from: string;
12360
12477
  subject: string;
@@ -12373,7 +12490,7 @@ export declare function init(config: AuthHeroConfig): {
12373
12490
  $patch: {
12374
12491
  input: {
12375
12492
  param: {
12376
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12493
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12377
12494
  };
12378
12495
  } & {
12379
12496
  header: {
@@ -12381,7 +12498,7 @@ export declare function init(config: AuthHeroConfig): {
12381
12498
  };
12382
12499
  } & {
12383
12500
  json: {
12384
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12501
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12385
12502
  body?: string | undefined;
12386
12503
  from?: string | undefined;
12387
12504
  subject?: string | undefined;
@@ -12398,7 +12515,7 @@ export declare function init(config: AuthHeroConfig): {
12398
12515
  } | {
12399
12516
  input: {
12400
12517
  param: {
12401
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12518
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12402
12519
  };
12403
12520
  } & {
12404
12521
  header: {
@@ -12406,7 +12523,7 @@ export declare function init(config: AuthHeroConfig): {
12406
12523
  };
12407
12524
  } & {
12408
12525
  json: {
12409
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12526
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12410
12527
  body?: string | undefined;
12411
12528
  from?: string | undefined;
12412
12529
  subject?: string | undefined;
@@ -12418,7 +12535,7 @@ export declare function init(config: AuthHeroConfig): {
12418
12535
  };
12419
12536
  };
12420
12537
  output: {
12421
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12538
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12422
12539
  body: string;
12423
12540
  from: string;
12424
12541
  subject: string;
@@ -12437,7 +12554,7 @@ export declare function init(config: AuthHeroConfig): {
12437
12554
  $delete: {
12438
12555
  input: {
12439
12556
  param: {
12440
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12557
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12441
12558
  };
12442
12559
  } & {
12443
12560
  header: {
@@ -12450,7 +12567,7 @@ export declare function init(config: AuthHeroConfig): {
12450
12567
  } | {
12451
12568
  input: {
12452
12569
  param: {
12453
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12570
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12454
12571
  };
12455
12572
  } & {
12456
12573
  header: {
@@ -12467,7 +12584,7 @@ export declare function init(config: AuthHeroConfig): {
12467
12584
  $post: {
12468
12585
  input: {
12469
12586
  param: {
12470
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12587
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12471
12588
  };
12472
12589
  } & {
12473
12590
  header: {
@@ -12750,7 +12867,7 @@ export declare function init(config: AuthHeroConfig): {
12750
12867
  type: "auth0_managed_certs" | "self_managed_certs";
12751
12868
  custom_domain_id: string;
12752
12869
  primary: boolean;
12753
- status: "disabled" | "pending" | "ready" | "pending_verification";
12870
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12754
12871
  verification_method?: "txt" | undefined;
12755
12872
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12756
12873
  domain_metadata?: {
@@ -12791,7 +12908,7 @@ export declare function init(config: AuthHeroConfig): {
12791
12908
  type: "auth0_managed_certs" | "self_managed_certs";
12792
12909
  custom_domain_id: string;
12793
12910
  primary: boolean;
12794
- status: "disabled" | "pending" | "ready" | "pending_verification";
12911
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12795
12912
  verification_method?: "txt" | undefined;
12796
12913
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12797
12914
  domain_metadata?: {
@@ -12855,7 +12972,7 @@ export declare function init(config: AuthHeroConfig): {
12855
12972
  type: "auth0_managed_certs" | "self_managed_certs";
12856
12973
  custom_domain_id: string;
12857
12974
  primary: boolean;
12858
- status: "disabled" | "pending" | "ready" | "pending_verification";
12975
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12859
12976
  verification_method?: "txt" | undefined;
12860
12977
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12861
12978
  domain_metadata?: {
@@ -12902,7 +13019,7 @@ export declare function init(config: AuthHeroConfig): {
12902
13019
  type: "auth0_managed_certs" | "self_managed_certs";
12903
13020
  custom_domain_id: string;
12904
13021
  primary: boolean;
12905
- status: "disabled" | "pending" | "ready" | "pending_verification";
13022
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12906
13023
  verification_method?: "txt" | undefined;
12907
13024
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12908
13025
  domain_metadata?: {
@@ -12948,7 +13065,7 @@ export declare function init(config: AuthHeroConfig): {
12948
13065
  type: "auth0_managed_certs" | "self_managed_certs";
12949
13066
  custom_domain_id: string;
12950
13067
  primary: boolean;
12951
- status: "disabled" | "pending" | "ready" | "pending_verification";
13068
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12952
13069
  verification_method?: "txt" | undefined;
12953
13070
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12954
13071
  domain_metadata?: {
@@ -12989,7 +13106,7 @@ export declare function init(config: AuthHeroConfig): {
12989
13106
  type: "auth0_managed_certs" | "self_managed_certs";
12990
13107
  custom_domain_id: string;
12991
13108
  primary: boolean;
12992
- status: "disabled" | "pending" | "ready" | "pending_verification";
13109
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12993
13110
  verification_method?: "txt" | undefined;
12994
13111
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12995
13112
  domain_metadata?: {
@@ -13037,7 +13154,7 @@ export declare function init(config: AuthHeroConfig): {
13037
13154
  base_focus_color: string;
13038
13155
  base_hover_color: string;
13039
13156
  body_text: string;
13040
- captcha_widget_theme: "dark" | "light" | "auto";
13157
+ captcha_widget_theme: "auto" | "light" | "dark";
13041
13158
  error: string;
13042
13159
  header: string;
13043
13160
  icons: string;
@@ -13088,7 +13205,7 @@ export declare function init(config: AuthHeroConfig): {
13088
13205
  background_color: string;
13089
13206
  background_image_url: string;
13090
13207
  page_layout: "center" | "left" | "right";
13091
- logo_placement?: "none" | "widget" | "chip" | undefined;
13208
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13092
13209
  };
13093
13210
  widget: {
13094
13211
  header_text_alignment: "center" | "left" | "right";
@@ -13127,7 +13244,7 @@ export declare function init(config: AuthHeroConfig): {
13127
13244
  base_focus_color: string;
13128
13245
  base_hover_color: string;
13129
13246
  body_text: string;
13130
- captcha_widget_theme: "dark" | "light" | "auto";
13247
+ captcha_widget_theme: "auto" | "light" | "dark";
13131
13248
  error: string;
13132
13249
  header: string;
13133
13250
  icons: string;
@@ -13178,7 +13295,7 @@ export declare function init(config: AuthHeroConfig): {
13178
13295
  background_color: string;
13179
13296
  background_image_url: string;
13180
13297
  page_layout: "center" | "left" | "right";
13181
- logo_placement?: "none" | "widget" | "chip" | undefined;
13298
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13182
13299
  };
13183
13300
  widget: {
13184
13301
  header_text_alignment: "center" | "left" | "right";
@@ -13206,7 +13323,7 @@ export declare function init(config: AuthHeroConfig): {
13206
13323
  base_focus_color: string;
13207
13324
  base_hover_color: string;
13208
13325
  body_text: string;
13209
- captcha_widget_theme: "dark" | "light" | "auto";
13326
+ captcha_widget_theme: "auto" | "light" | "dark";
13210
13327
  error: string;
13211
13328
  header: string;
13212
13329
  icons: string;
@@ -13257,7 +13374,7 @@ export declare function init(config: AuthHeroConfig): {
13257
13374
  background_color: string;
13258
13375
  background_image_url: string;
13259
13376
  page_layout: "center" | "left" | "right";
13260
- logo_placement?: "none" | "widget" | "chip" | undefined;
13377
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13261
13378
  };
13262
13379
  widget: {
13263
13380
  header_text_alignment: "center" | "left" | "right";
@@ -13296,7 +13413,7 @@ export declare function init(config: AuthHeroConfig): {
13296
13413
  font?: {
13297
13414
  url: string;
13298
13415
  } | undefined;
13299
- dark_mode?: "dark" | "light" | "auto" | undefined;
13416
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13300
13417
  };
13301
13418
  outputFormat: "json";
13302
13419
  status: 200;
@@ -13326,7 +13443,7 @@ export declare function init(config: AuthHeroConfig): {
13326
13443
  font?: {
13327
13444
  url: string;
13328
13445
  } | undefined;
13329
- dark_mode?: "dark" | "light" | "auto" | undefined;
13446
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13330
13447
  };
13331
13448
  };
13332
13449
  output: {
@@ -13345,7 +13462,7 @@ export declare function init(config: AuthHeroConfig): {
13345
13462
  font?: {
13346
13463
  url: string;
13347
13464
  } | undefined;
13348
- dark_mode?: "dark" | "light" | "auto" | undefined;
13465
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13349
13466
  };
13350
13467
  outputFormat: "json";
13351
13468
  status: 200;
@@ -13419,7 +13536,7 @@ export declare function init(config: AuthHeroConfig): {
13419
13536
  } & {
13420
13537
  json: {
13421
13538
  body?: string | undefined;
13422
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
13539
+ screen?: "password" | "login" | "signup" | "identifier" | undefined;
13423
13540
  branding?: {
13424
13541
  colors?: {
13425
13542
  primary: string;
@@ -13436,7 +13553,7 @@ export declare function init(config: AuthHeroConfig): {
13436
13553
  font?: {
13437
13554
  url: string;
13438
13555
  } | undefined;
13439
- dark_mode?: "dark" | "light" | "auto" | undefined;
13556
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13440
13557
  } | undefined;
13441
13558
  theme?: {
13442
13559
  borders?: {
@@ -13454,7 +13571,7 @@ export declare function init(config: AuthHeroConfig): {
13454
13571
  base_focus_color: string;
13455
13572
  base_hover_color: string;
13456
13573
  body_text: string;
13457
- captcha_widget_theme: "dark" | "light" | "auto";
13574
+ captcha_widget_theme: "auto" | "light" | "dark";
13458
13575
  error: string;
13459
13576
  header: string;
13460
13577
  icons: string;
@@ -13505,7 +13622,7 @@ export declare function init(config: AuthHeroConfig): {
13505
13622
  background_color: string;
13506
13623
  background_image_url: string;
13507
13624
  page_layout: "center" | "left" | "right";
13508
- logo_placement?: "none" | "widget" | "chip" | undefined;
13625
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13509
13626
  } | undefined;
13510
13627
  widget?: {
13511
13628
  header_text_alignment: "center" | "left" | "right";
@@ -13710,7 +13827,7 @@ export declare function init(config: AuthHeroConfig): {
13710
13827
  logs: {
13711
13828
  action_name: string;
13712
13829
  lines: {
13713
- level: "error" | "info" | "log" | "warn" | "debug";
13830
+ level: "error" | "log" | "info" | "warn" | "debug";
13714
13831
  message: string;
13715
13832
  }[];
13716
13833
  }[];
@@ -14379,7 +14496,7 @@ export declare function init(config: AuthHeroConfig): {
14379
14496
  args: import("hono/utils/types").JSONValue[];
14380
14497
  }[];
14381
14498
  logs: {
14382
- level: "error" | "info" | "log" | "warn" | "debug";
14499
+ level: "error" | "log" | "info" | "warn" | "debug";
14383
14500
  message: string;
14384
14501
  }[];
14385
14502
  error?: string | undefined;
@@ -14690,7 +14807,7 @@ export declare function init(config: AuthHeroConfig): {
14690
14807
  scope?: string | undefined;
14691
14808
  grant_types?: string[] | undefined;
14692
14809
  response_types?: string[] | undefined;
14693
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14810
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14694
14811
  jwks_uri?: string | undefined;
14695
14812
  jwks?: Record<string, unknown> | undefined;
14696
14813
  software_id?: string | undefined;
@@ -14779,7 +14896,7 @@ export declare function init(config: AuthHeroConfig): {
14779
14896
  scope?: string | undefined;
14780
14897
  grant_types?: string[] | undefined;
14781
14898
  response_types?: string[] | undefined;
14782
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14899
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14783
14900
  jwks_uri?: string | undefined;
14784
14901
  jwks?: Record<string, unknown> | undefined;
14785
14902
  software_id?: string | undefined;
@@ -15125,19 +15242,19 @@ export declare function init(config: AuthHeroConfig): {
15125
15242
  email: string;
15126
15243
  send: "code" | "link";
15127
15244
  authParams: {
15245
+ state?: string | undefined;
15246
+ username?: string | undefined;
15247
+ code_challenge?: string | undefined;
15248
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15249
+ redirect_uri?: string | undefined;
15250
+ nonce?: string | undefined;
15251
+ act_as?: string | undefined;
15128
15252
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15129
15253
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15130
- scope?: string | undefined;
15131
- username?: string | undefined;
15132
- state?: string | undefined;
15133
15254
  audience?: string | undefined;
15134
- act_as?: string | undefined;
15135
- redirect_uri?: string | undefined;
15136
15255
  organization?: string | undefined;
15137
- nonce?: string | undefined;
15256
+ scope?: string | undefined;
15138
15257
  prompt?: string | undefined;
15139
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15140
- code_challenge?: string | undefined;
15141
15258
  ui_locales?: string | undefined;
15142
15259
  max_age?: number | undefined;
15143
15260
  acr_values?: string | undefined;
@@ -15161,19 +15278,19 @@ export declare function init(config: AuthHeroConfig): {
15161
15278
  phone_number: string;
15162
15279
  send: "code" | "link";
15163
15280
  authParams: {
15281
+ state?: string | undefined;
15282
+ username?: string | undefined;
15283
+ code_challenge?: string | undefined;
15284
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15285
+ redirect_uri?: string | undefined;
15286
+ nonce?: string | undefined;
15287
+ act_as?: string | undefined;
15164
15288
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15165
15289
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15166
- scope?: string | undefined;
15167
- username?: string | undefined;
15168
- state?: string | undefined;
15169
15290
  audience?: string | undefined;
15170
- act_as?: string | undefined;
15171
- redirect_uri?: string | undefined;
15172
15291
  organization?: string | undefined;
15173
- nonce?: string | undefined;
15292
+ scope?: string | undefined;
15174
15293
  prompt?: string | undefined;
15175
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15176
- code_challenge?: string | undefined;
15177
15294
  ui_locales?: string | undefined;
15178
15295
  max_age?: number | undefined;
15179
15296
  acr_values?: string | undefined;
@@ -15305,14 +15422,14 @@ export declare function init(config: AuthHeroConfig): {
15305
15422
  input: {
15306
15423
  form: {
15307
15424
  token: string;
15308
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15425
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15309
15426
  client_id?: string | undefined;
15310
15427
  client_secret?: string | undefined;
15311
15428
  };
15312
15429
  } & {
15313
15430
  json: {
15314
15431
  token: string;
15315
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15432
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15316
15433
  client_id?: string | undefined;
15317
15434
  client_secret?: string | undefined;
15318
15435
  };
@@ -15324,14 +15441,14 @@ export declare function init(config: AuthHeroConfig): {
15324
15441
  input: {
15325
15442
  form: {
15326
15443
  token: string;
15327
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15444
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15328
15445
  client_id?: string | undefined;
15329
15446
  client_secret?: string | undefined;
15330
15447
  };
15331
15448
  } & {
15332
15449
  json: {
15333
15450
  token: string;
15334
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15451
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15335
15452
  client_id?: string | undefined;
15336
15453
  client_secret?: string | undefined;
15337
15454
  };
@@ -15346,14 +15463,14 @@ export declare function init(config: AuthHeroConfig): {
15346
15463
  input: {
15347
15464
  form: {
15348
15465
  token: string;
15349
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15466
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15350
15467
  client_id?: string | undefined;
15351
15468
  client_secret?: string | undefined;
15352
15469
  };
15353
15470
  } & {
15354
15471
  json: {
15355
15472
  token: string;
15356
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15473
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15357
15474
  client_id?: string | undefined;
15358
15475
  client_secret?: string | undefined;
15359
15476
  };
@@ -16082,7 +16199,7 @@ export declare function init(config: AuthHeroConfig): {
16082
16199
  };
16083
16200
  output: {};
16084
16201
  outputFormat: string;
16085
- status: 302;
16202
+ status: 200;
16086
16203
  } | {
16087
16204
  input: {
16088
16205
  query: {
@@ -16096,7 +16213,7 @@ export declare function init(config: AuthHeroConfig): {
16096
16213
  };
16097
16214
  output: {};
16098
16215
  outputFormat: string;
16099
- status: 200;
16216
+ status: 302;
16100
16217
  } | {
16101
16218
  input: {
16102
16219
  query: {
@@ -16705,7 +16822,7 @@ export declare function init(config: AuthHeroConfig): {
16705
16822
  } & {
16706
16823
  form: {
16707
16824
  username: string;
16708
- login_selection?: "code" | "password" | undefined;
16825
+ login_selection?: "password" | "code" | undefined;
16709
16826
  };
16710
16827
  };
16711
16828
  output: {};
@@ -16719,7 +16836,7 @@ export declare function init(config: AuthHeroConfig): {
16719
16836
  } & {
16720
16837
  form: {
16721
16838
  username: string;
16722
- login_selection?: "code" | "password" | undefined;
16839
+ login_selection?: "password" | "code" | undefined;
16723
16840
  };
16724
16841
  };
16725
16842
  output: {};
@@ -17084,7 +17201,7 @@ export declare function init(config: AuthHeroConfig): {
17084
17201
  $get: {
17085
17202
  input: {
17086
17203
  param: {
17087
- screen: "signup" | "login" | "consent" | "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";
17204
+ screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
17088
17205
  };
17089
17206
  } & {
17090
17207
  query: {
@@ -17100,7 +17217,7 @@ export declare function init(config: AuthHeroConfig): {
17100
17217
  } | {
17101
17218
  input: {
17102
17219
  param: {
17103
- screen: "signup" | "login" | "consent" | "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";
17220
+ screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
17104
17221
  };
17105
17222
  } & {
17106
17223
  query: {
@@ -17116,7 +17233,7 @@ export declare function init(config: AuthHeroConfig): {
17116
17233
  } | {
17117
17234
  input: {
17118
17235
  param: {
17119
- screen: "signup" | "login" | "consent" | "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";
17236
+ screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
17120
17237
  };
17121
17238
  } & {
17122
17239
  query: {
@@ -17136,7 +17253,7 @@ export declare function init(config: AuthHeroConfig): {
17136
17253
  $post: {
17137
17254
  input: {
17138
17255
  param: {
17139
- screen: "signup" | "login" | "consent" | "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";
17256
+ screen: "impersonate" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "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";
17140
17257
  };
17141
17258
  } & {
17142
17259
  query: {
@@ -17154,7 +17271,7 @@ export declare function init(config: AuthHeroConfig): {
17154
17271
  } | {
17155
17272
  input: {
17156
17273
  param: {
17157
- screen: "signup" | "login" | "consent" | "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";
17274
+ screen: "impersonate" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "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";
17158
17275
  };
17159
17276
  } & {
17160
17277
  query: {