authhero 9.1.0 → 9.2.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 (42) 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-e95c436f.entry.js +1 -0
  4. package/dist/authhero.cjs +211 -211
  5. package/dist/authhero.d.ts +168 -97
  6. package/dist/authhero.mjs +25619 -25625
  7. package/dist/tsconfig.types.tsbuildinfo +1 -1
  8. package/dist/types/authentication-flows/common.d.ts +6 -0
  9. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  10. package/dist/types/helpers/action-executions-cleanup.d.ts +34 -0
  11. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  12. package/dist/types/helpers/run-retention.d.ts +4 -1
  13. package/dist/types/helpers/service-token.d.ts +16 -5
  14. package/dist/types/hooks/post-user-login.d.ts +6 -0
  15. package/dist/types/index.d.ts +123 -93
  16. package/dist/types/routes/auth-api/index.d.ts +26 -26
  17. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  18. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  19. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  20. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  21. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  22. package/dist/types/routes/management-api/actions.d.ts +1 -1
  23. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  24. package/dist/types/routes/management-api/branding.d.ts +1 -1
  25. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  26. package/dist/types/routes/management-api/clients.d.ts +8 -8
  27. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  28. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  29. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  30. package/dist/types/routes/management-api/forms.d.ts +28 -0
  31. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  32. package/dist/types/routes/management-api/index.d.ts +90 -62
  33. package/dist/types/routes/management-api/logs.d.ts +4 -4
  34. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  35. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  36. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  37. package/dist/types/routes/management-api/users.d.ts +2 -2
  38. package/dist/types/routes/universal-login/common.d.ts +2 -2
  39. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  40. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  41. package/package.json +6 -6
  42. package/dist/assets/u/widget/p-eca60302.entry.js +0 -1
@@ -16,8 +16,10 @@ export { drainOutbox } from "./helpers/outbox-relay";
16
16
  export type { EventDestination } from "./helpers/outbox-relay";
17
17
  export { cleanupOutbox } from "./helpers/outbox-cleanup";
18
18
  export { cleanupCodes } from "./helpers/codes-cleanup";
19
+ export { cleanupActionExecutions } from "./helpers/action-executions-cleanup";
19
20
  export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
20
21
  export type { CodesCleanupParams } from "./helpers/codes-cleanup";
22
+ export type { ActionExecutionsCleanupParams } from "./helpers/action-executions-cleanup";
21
23
  export { createDefaultDestinations } from "./helpers/default-destinations";
22
24
  export type { CreateDefaultDestinationsConfig } from "./helpers/default-destinations";
23
25
  export { provisionDefaultClients, isInteractiveClient, } from "./helpers/provision-tenant-clients";
@@ -166,7 +168,7 @@ export declare function init(config: AuthHeroConfig): {
166
168
  };
167
169
  } & {
168
170
  json: {
169
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
171
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
170
172
  phone_number?: string | undefined;
171
173
  totp_secret?: string | undefined;
172
174
  credential_id?: string | undefined;
@@ -306,7 +308,7 @@ export declare function init(config: AuthHeroConfig): {
306
308
  };
307
309
  };
308
310
  output: {
309
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
311
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
310
312
  enabled: boolean;
311
313
  trial_expired?: boolean | undefined;
312
314
  }[];
@@ -461,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
461
463
  $get: {
462
464
  input: {
463
465
  param: {
464
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
466
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
465
467
  };
466
468
  } & {
467
469
  header: {
@@ -469,7 +471,7 @@ export declare function init(config: AuthHeroConfig): {
469
471
  };
470
472
  };
471
473
  output: {
472
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
474
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
473
475
  enabled: boolean;
474
476
  trial_expired?: boolean | undefined;
475
477
  };
@@ -482,7 +484,7 @@ export declare function init(config: AuthHeroConfig): {
482
484
  $put: {
483
485
  input: {
484
486
  param: {
485
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
487
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
486
488
  };
487
489
  } & {
488
490
  header: {
@@ -494,7 +496,7 @@ export declare function init(config: AuthHeroConfig): {
494
496
  };
495
497
  };
496
498
  output: {
497
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
499
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
498
500
  enabled: boolean;
499
501
  trial_expired?: boolean | undefined;
500
502
  };
@@ -1272,10 +1274,10 @@ export declare function init(config: AuthHeroConfig): {
1272
1274
  inviter: {
1273
1275
  name?: string | undefined;
1274
1276
  };
1275
- connection_id?: string | undefined;
1276
1277
  id?: string | undefined;
1277
1278
  app_metadata?: Record<string, any> | undefined;
1278
1279
  user_metadata?: Record<string, any> | undefined;
1280
+ connection_id?: string | undefined;
1279
1281
  roles?: string[] | undefined;
1280
1282
  send_invitation_email?: boolean | undefined;
1281
1283
  ttl_sec?: number | undefined;
@@ -2946,6 +2948,8 @@ export declare function init(config: AuthHeroConfig): {
2946
2948
  config?: {
2947
2949
  placeholder?: string | undefined;
2948
2950
  default_value?: string | undefined;
2951
+ last_used?: boolean | undefined;
2952
+ last_used_label?: string | undefined;
2949
2953
  } | undefined;
2950
2954
  } | {
2951
2955
  id: string;
@@ -3117,6 +3121,8 @@ export declare function init(config: AuthHeroConfig): {
3117
3121
  multiline?: boolean | undefined;
3118
3122
  max_length?: number | undefined;
3119
3123
  default_value?: string | undefined;
3124
+ last_used?: boolean | undefined;
3125
+ last_used_label?: string | undefined;
3120
3126
  } | undefined;
3121
3127
  } | {
3122
3128
  id: string;
@@ -3549,6 +3555,8 @@ export declare function init(config: AuthHeroConfig): {
3549
3555
  config?: {
3550
3556
  placeholder?: string | undefined;
3551
3557
  default_value?: string | undefined;
3558
+ last_used?: boolean | undefined;
3559
+ last_used_label?: string | undefined;
3552
3560
  } | undefined;
3553
3561
  } | {
3554
3562
  id: string;
@@ -3720,6 +3728,8 @@ export declare function init(config: AuthHeroConfig): {
3720
3728
  multiline?: boolean | undefined;
3721
3729
  max_length?: number | undefined;
3722
3730
  default_value?: string | undefined;
3731
+ last_used?: boolean | undefined;
3732
+ last_used_label?: string | undefined;
3723
3733
  } | undefined;
3724
3734
  } | {
3725
3735
  id: string;
@@ -4168,6 +4178,8 @@ export declare function init(config: AuthHeroConfig): {
4168
4178
  config?: {
4169
4179
  placeholder?: string | undefined;
4170
4180
  default_value?: string | undefined;
4181
+ last_used?: boolean | undefined;
4182
+ last_used_label?: string | undefined;
4171
4183
  } | undefined;
4172
4184
  } | {
4173
4185
  id: string;
@@ -4339,6 +4351,8 @@ export declare function init(config: AuthHeroConfig): {
4339
4351
  multiline?: boolean | undefined;
4340
4352
  max_length?: number | undefined;
4341
4353
  default_value?: string | undefined;
4354
+ last_used?: boolean | undefined;
4355
+ last_used_label?: string | undefined;
4342
4356
  } | undefined;
4343
4357
  } | {
4344
4358
  id: string;
@@ -4788,6 +4802,8 @@ export declare function init(config: AuthHeroConfig): {
4788
4802
  config?: {
4789
4803
  placeholder?: string | undefined;
4790
4804
  default_value?: string | undefined;
4805
+ last_used?: boolean | undefined;
4806
+ last_used_label?: string | undefined;
4791
4807
  } | undefined;
4792
4808
  } | {
4793
4809
  id: string;
@@ -4959,6 +4975,8 @@ export declare function init(config: AuthHeroConfig): {
4959
4975
  multiline?: boolean | undefined;
4960
4976
  max_length?: number | undefined;
4961
4977
  default_value?: string | undefined;
4978
+ last_used?: boolean | undefined;
4979
+ last_used_label?: string | undefined;
4962
4980
  } | undefined;
4963
4981
  } | {
4964
4982
  id: string;
@@ -5389,6 +5407,8 @@ export declare function init(config: AuthHeroConfig): {
5389
5407
  config?: {
5390
5408
  placeholder?: string | undefined;
5391
5409
  default_value?: string | undefined;
5410
+ last_used?: boolean | undefined;
5411
+ last_used_label?: string | undefined;
5392
5412
  } | undefined;
5393
5413
  } | {
5394
5414
  id: string;
@@ -5560,6 +5580,8 @@ export declare function init(config: AuthHeroConfig): {
5560
5580
  multiline?: boolean | undefined;
5561
5581
  max_length?: number | undefined;
5562
5582
  default_value?: string | undefined;
5583
+ last_used?: boolean | undefined;
5584
+ last_used_label?: string | undefined;
5563
5585
  } | undefined;
5564
5586
  } | {
5565
5587
  id: string;
@@ -5988,6 +6010,8 @@ export declare function init(config: AuthHeroConfig): {
5988
6010
  config?: {
5989
6011
  placeholder?: string | undefined;
5990
6012
  default_value?: string | undefined;
6013
+ last_used?: boolean | undefined;
6014
+ last_used_label?: string | undefined;
5991
6015
  } | undefined;
5992
6016
  } | {
5993
6017
  id: string;
@@ -6159,6 +6183,8 @@ export declare function init(config: AuthHeroConfig): {
6159
6183
  multiline?: boolean | undefined;
6160
6184
  max_length?: number | undefined;
6161
6185
  default_value?: string | undefined;
6186
+ last_used?: boolean | undefined;
6187
+ last_used_label?: string | undefined;
6162
6188
  } | undefined;
6163
6189
  } | {
6164
6190
  id: string;
@@ -6589,6 +6615,8 @@ export declare function init(config: AuthHeroConfig): {
6589
6615
  config?: {
6590
6616
  placeholder?: string | undefined;
6591
6617
  default_value?: string | undefined;
6618
+ last_used?: boolean | undefined;
6619
+ last_used_label?: string | undefined;
6592
6620
  } | undefined;
6593
6621
  } | {
6594
6622
  id: string;
@@ -6760,6 +6788,8 @@ export declare function init(config: AuthHeroConfig): {
6760
6788
  multiline?: boolean | undefined;
6761
6789
  max_length?: number | undefined;
6762
6790
  default_value?: string | undefined;
6791
+ last_used?: boolean | undefined;
6792
+ last_used_label?: string | undefined;
6763
6793
  } | undefined;
6764
6794
  } | {
6765
6795
  id: string;
@@ -7003,7 +7033,7 @@ export declare function init(config: AuthHeroConfig): {
7003
7033
  };
7004
7034
  };
7005
7035
  output: {
7006
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "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: "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";
7007
7037
  language: string;
7008
7038
  }[];
7009
7039
  outputFormat: "json";
@@ -7041,7 +7071,7 @@ export declare function init(config: AuthHeroConfig): {
7041
7071
  $get: {
7042
7072
  input: {
7043
7073
  param: {
7044
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "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: "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";
7045
7075
  language: string;
7046
7076
  };
7047
7077
  } & {
@@ -7063,7 +7093,7 @@ export declare function init(config: AuthHeroConfig): {
7063
7093
  $put: {
7064
7094
  input: {
7065
7095
  param: {
7066
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "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: "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";
7067
7097
  language: string;
7068
7098
  };
7069
7099
  } & {
@@ -7087,7 +7117,7 @@ export declare function init(config: AuthHeroConfig): {
7087
7117
  $delete: {
7088
7118
  input: {
7089
7119
  param: {
7090
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "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: "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";
7091
7121
  language: string;
7092
7122
  };
7093
7123
  } & {
@@ -8590,7 +8620,7 @@ export declare function init(config: AuthHeroConfig): {
8590
8620
  log_type: string;
8591
8621
  category: "user_action" | "admin_action" | "system" | "api";
8592
8622
  actor: {
8593
- type: "user" | "client_credentials" | "api_key" | "system" | "admin";
8623
+ type: "api_key" | "user" | "client_credentials" | "system" | "admin";
8594
8624
  id?: string | undefined;
8595
8625
  email?: string | undefined;
8596
8626
  org_id?: string | undefined;
@@ -9241,7 +9271,7 @@ export declare function init(config: AuthHeroConfig): {
9241
9271
  };
9242
9272
  };
9243
9273
  output: {
9244
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
9245
9275
  date: string;
9246
9276
  isMobile: boolean;
9247
9277
  log_id: string;
@@ -9280,7 +9310,7 @@ export declare function init(config: AuthHeroConfig): {
9280
9310
  limit: number;
9281
9311
  length: number;
9282
9312
  logs: {
9283
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
9284
9314
  date: string;
9285
9315
  isMobile: boolean;
9286
9316
  log_id: string;
@@ -9319,7 +9349,7 @@ export declare function init(config: AuthHeroConfig): {
9319
9349
  next?: string | undefined;
9320
9350
  } | {
9321
9351
  logs: {
9322
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
9323
9353
  date: string;
9324
9354
  isMobile: boolean;
9325
9355
  log_id: string;
@@ -9373,7 +9403,7 @@ export declare function init(config: AuthHeroConfig): {
9373
9403
  };
9374
9404
  };
9375
9405
  output: {
9376
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
9377
9407
  date: string;
9378
9408
  isMobile: boolean;
9379
9409
  log_id: string;
@@ -9529,7 +9559,7 @@ export declare function init(config: AuthHeroConfig): {
9529
9559
  audience?: string | undefined;
9530
9560
  client_id?: string | undefined;
9531
9561
  allow_any_organization?: string | undefined;
9532
- subject_type?: "user" | "client" | undefined;
9562
+ subject_type?: "client" | "user" | undefined;
9533
9563
  };
9534
9564
  } & {
9535
9565
  header: {
@@ -9544,7 +9574,7 @@ export declare function init(config: AuthHeroConfig): {
9544
9574
  organization_usage?: "deny" | "allow" | "require" | undefined;
9545
9575
  allow_any_organization?: boolean | undefined;
9546
9576
  is_system?: boolean | undefined;
9547
- subject_type?: "user" | "client" | undefined;
9577
+ subject_type?: "client" | "user" | undefined;
9548
9578
  authorization_details_types?: string[] | undefined;
9549
9579
  created_at?: string | undefined;
9550
9580
  updated_at?: string | undefined;
@@ -9560,7 +9590,7 @@ export declare function init(config: AuthHeroConfig): {
9560
9590
  organization_usage?: "deny" | "allow" | "require" | undefined;
9561
9591
  allow_any_organization?: boolean | undefined;
9562
9592
  is_system?: boolean | undefined;
9563
- subject_type?: "user" | "client" | undefined;
9593
+ subject_type?: "client" | "user" | undefined;
9564
9594
  authorization_details_types?: string[] | undefined;
9565
9595
  created_at?: string | undefined;
9566
9596
  updated_at?: string | undefined;
@@ -9576,7 +9606,7 @@ export declare function init(config: AuthHeroConfig): {
9576
9606
  organization_usage?: "deny" | "allow" | "require" | undefined;
9577
9607
  allow_any_organization?: boolean | undefined;
9578
9608
  is_system?: boolean | undefined;
9579
- subject_type?: "user" | "client" | undefined;
9609
+ subject_type?: "client" | "user" | undefined;
9580
9610
  authorization_details_types?: string[] | undefined;
9581
9611
  created_at?: string | undefined;
9582
9612
  updated_at?: string | undefined;
@@ -9607,7 +9637,7 @@ export declare function init(config: AuthHeroConfig): {
9607
9637
  organization_usage?: "deny" | "allow" | "require" | undefined;
9608
9638
  allow_any_organization?: boolean | undefined;
9609
9639
  is_system?: boolean | undefined;
9610
- subject_type?: "user" | "client" | undefined;
9640
+ subject_type?: "client" | "user" | undefined;
9611
9641
  authorization_details_types?: string[] | undefined;
9612
9642
  created_at?: string | undefined;
9613
9643
  updated_at?: string | undefined;
@@ -9652,7 +9682,7 @@ export declare function init(config: AuthHeroConfig): {
9652
9682
  organization_usage?: "deny" | "allow" | "require" | undefined;
9653
9683
  allow_any_organization?: boolean | undefined;
9654
9684
  is_system?: boolean | undefined;
9655
- subject_type?: "user" | "client" | undefined;
9685
+ subject_type?: "client" | "user" | undefined;
9656
9686
  authorization_details_types?: string[] | undefined;
9657
9687
  };
9658
9688
  };
@@ -9664,7 +9694,7 @@ export declare function init(config: AuthHeroConfig): {
9664
9694
  organization_usage?: "deny" | "allow" | "require" | undefined;
9665
9695
  allow_any_organization?: boolean | undefined;
9666
9696
  is_system?: boolean | undefined;
9667
- subject_type?: "user" | "client" | undefined;
9697
+ subject_type?: "client" | "user" | undefined;
9668
9698
  authorization_details_types?: string[] | undefined;
9669
9699
  created_at?: string | undefined;
9670
9700
  updated_at?: string | undefined;
@@ -9688,7 +9718,7 @@ export declare function init(config: AuthHeroConfig): {
9688
9718
  organization_usage?: "deny" | "allow" | "require" | undefined;
9689
9719
  allow_any_organization?: boolean | undefined;
9690
9720
  is_system?: boolean | undefined;
9691
- subject_type?: "user" | "client" | undefined;
9721
+ subject_type?: "client" | "user" | undefined;
9692
9722
  authorization_details_types?: string[] | undefined;
9693
9723
  };
9694
9724
  };
@@ -9700,7 +9730,7 @@ export declare function init(config: AuthHeroConfig): {
9700
9730
  organization_usage?: "deny" | "allow" | "require" | undefined;
9701
9731
  allow_any_organization?: boolean | undefined;
9702
9732
  is_system?: boolean | undefined;
9703
- subject_type?: "user" | "client" | undefined;
9733
+ subject_type?: "client" | "user" | undefined;
9704
9734
  authorization_details_types?: string[] | undefined;
9705
9735
  created_at?: string | undefined;
9706
9736
  updated_at?: string | undefined;
@@ -9784,7 +9814,7 @@ export declare function init(config: AuthHeroConfig): {
9784
9814
  addons?: {
9785
9815
  [x: string]: any;
9786
9816
  } | undefined;
9787
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9817
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9788
9818
  client_metadata?: {
9789
9819
  [x: string]: string;
9790
9820
  } | undefined;
@@ -9886,7 +9916,7 @@ export declare function init(config: AuthHeroConfig): {
9886
9916
  addons?: {
9887
9917
  [x: string]: any;
9888
9918
  } | undefined;
9889
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9919
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9890
9920
  client_metadata?: {
9891
9921
  [x: string]: string;
9892
9922
  } | undefined;
@@ -9988,7 +10018,7 @@ export declare function init(config: AuthHeroConfig): {
9988
10018
  addons?: {
9989
10019
  [x: string]: any;
9990
10020
  } | undefined;
9991
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10021
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9992
10022
  client_metadata?: {
9993
10023
  [x: string]: string;
9994
10024
  } | undefined;
@@ -10105,7 +10135,7 @@ export declare function init(config: AuthHeroConfig): {
10105
10135
  addons?: {
10106
10136
  [x: string]: any;
10107
10137
  } | undefined;
10108
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10138
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10109
10139
  client_metadata?: {
10110
10140
  [x: string]: string;
10111
10141
  } | undefined;
@@ -10223,7 +10253,7 @@ export declare function init(config: AuthHeroConfig): {
10223
10253
  custom_login_page_preview?: string | undefined;
10224
10254
  form_template?: string | undefined;
10225
10255
  addons?: Record<string, any> | undefined;
10226
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10256
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10227
10257
  client_metadata?: Record<string, string> | undefined;
10228
10258
  hide_sign_up_disabled_error?: boolean | undefined;
10229
10259
  mobile?: Record<string, any> | undefined;
@@ -10309,7 +10339,7 @@ export declare function init(config: AuthHeroConfig): {
10309
10339
  addons?: {
10310
10340
  [x: string]: any;
10311
10341
  } | undefined;
10312
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10342
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10313
10343
  client_metadata?: {
10314
10344
  [x: string]: string;
10315
10345
  } | undefined;
@@ -10406,7 +10436,7 @@ export declare function init(config: AuthHeroConfig): {
10406
10436
  custom_login_page_preview?: string | undefined;
10407
10437
  form_template?: string | undefined;
10408
10438
  addons?: Record<string, any> | undefined;
10409
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10439
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10410
10440
  client_metadata?: Record<string, string> | undefined;
10411
10441
  hide_sign_up_disabled_error?: boolean | undefined;
10412
10442
  mobile?: Record<string, any> | undefined;
@@ -10492,7 +10522,7 @@ export declare function init(config: AuthHeroConfig): {
10492
10522
  addons?: {
10493
10523
  [x: string]: any;
10494
10524
  } | undefined;
10495
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10525
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10496
10526
  client_metadata?: {
10497
10527
  [x: string]: string;
10498
10528
  } | undefined;
@@ -11837,7 +11867,7 @@ export declare function init(config: AuthHeroConfig): {
11837
11867
  };
11838
11868
  };
11839
11869
  output: {
11840
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
11841
11871
  date: string;
11842
11872
  isMobile: boolean;
11843
11873
  log_id: string;
@@ -11876,7 +11906,7 @@ export declare function init(config: AuthHeroConfig): {
11876
11906
  limit: number;
11877
11907
  length: number;
11878
11908
  logs: {
11879
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
11880
11910
  date: string;
11881
11911
  isMobile: boolean;
11882
11912
  log_id: string;
@@ -12195,7 +12225,7 @@ export declare function init(config: AuthHeroConfig): {
12195
12225
  };
12196
12226
  } & {
12197
12227
  json: {
12198
- template: "password_reset" | "verify_email" | "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";
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";
12199
12229
  body: string;
12200
12230
  from: string;
12201
12231
  subject: string;
@@ -12216,7 +12246,7 @@ export declare function init(config: AuthHeroConfig): {
12216
12246
  };
12217
12247
  } & {
12218
12248
  json: {
12219
- template: "password_reset" | "verify_email" | "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";
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";
12220
12250
  body: string;
12221
12251
  from: string;
12222
12252
  subject: string;
@@ -12228,7 +12258,7 @@ export declare function init(config: AuthHeroConfig): {
12228
12258
  };
12229
12259
  };
12230
12260
  output: {
12231
- template: "password_reset" | "verify_email" | "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";
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";
12232
12262
  body: string;
12233
12263
  from: string;
12234
12264
  subject: string;
@@ -12251,7 +12281,7 @@ export declare function init(config: AuthHeroConfig): {
12251
12281
  };
12252
12282
  };
12253
12283
  output: {
12254
- name: "password_reset" | "verify_email" | "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";
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";
12255
12285
  body: string;
12256
12286
  subject: string;
12257
12287
  }[];
@@ -12264,7 +12294,7 @@ export declare function init(config: AuthHeroConfig): {
12264
12294
  $get: {
12265
12295
  input: {
12266
12296
  param: {
12267
- templateName: "password_reset" | "verify_email" | "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";
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";
12268
12298
  };
12269
12299
  } & {
12270
12300
  header: {
@@ -12277,7 +12307,7 @@ export declare function init(config: AuthHeroConfig): {
12277
12307
  } | {
12278
12308
  input: {
12279
12309
  param: {
12280
- templateName: "password_reset" | "verify_email" | "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";
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";
12281
12311
  };
12282
12312
  } & {
12283
12313
  header: {
@@ -12285,7 +12315,7 @@ export declare function init(config: AuthHeroConfig): {
12285
12315
  };
12286
12316
  };
12287
12317
  output: {
12288
- template: "password_reset" | "verify_email" | "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";
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";
12289
12319
  body: string;
12290
12320
  from: string;
12291
12321
  subject: string;
@@ -12304,7 +12334,7 @@ export declare function init(config: AuthHeroConfig): {
12304
12334
  $put: {
12305
12335
  input: {
12306
12336
  param: {
12307
- templateName: "password_reset" | "verify_email" | "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";
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";
12308
12338
  };
12309
12339
  } & {
12310
12340
  header: {
@@ -12312,7 +12342,7 @@ export declare function init(config: AuthHeroConfig): {
12312
12342
  };
12313
12343
  } & {
12314
12344
  json: {
12315
- template: "password_reset" | "verify_email" | "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";
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";
12316
12346
  body: string;
12317
12347
  subject: string;
12318
12348
  syntax?: "liquid" | undefined;
@@ -12324,7 +12354,7 @@ export declare function init(config: AuthHeroConfig): {
12324
12354
  };
12325
12355
  };
12326
12356
  output: {
12327
- template: "password_reset" | "verify_email" | "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";
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";
12328
12358
  body: string;
12329
12359
  from: string;
12330
12360
  subject: string;
@@ -12343,7 +12373,7 @@ export declare function init(config: AuthHeroConfig): {
12343
12373
  $patch: {
12344
12374
  input: {
12345
12375
  param: {
12346
- templateName: "password_reset" | "verify_email" | "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";
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";
12347
12377
  };
12348
12378
  } & {
12349
12379
  header: {
@@ -12351,7 +12381,7 @@ export declare function init(config: AuthHeroConfig): {
12351
12381
  };
12352
12382
  } & {
12353
12383
  json: {
12354
- template?: "password_reset" | "verify_email" | "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;
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;
12355
12385
  body?: string | undefined;
12356
12386
  from?: string | undefined;
12357
12387
  subject?: string | undefined;
@@ -12368,7 +12398,7 @@ export declare function init(config: AuthHeroConfig): {
12368
12398
  } | {
12369
12399
  input: {
12370
12400
  param: {
12371
- templateName: "password_reset" | "verify_email" | "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";
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";
12372
12402
  };
12373
12403
  } & {
12374
12404
  header: {
@@ -12376,7 +12406,7 @@ export declare function init(config: AuthHeroConfig): {
12376
12406
  };
12377
12407
  } & {
12378
12408
  json: {
12379
- template?: "password_reset" | "verify_email" | "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;
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;
12380
12410
  body?: string | undefined;
12381
12411
  from?: string | undefined;
12382
12412
  subject?: string | undefined;
@@ -12388,7 +12418,7 @@ export declare function init(config: AuthHeroConfig): {
12388
12418
  };
12389
12419
  };
12390
12420
  output: {
12391
- template: "password_reset" | "verify_email" | "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";
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";
12392
12422
  body: string;
12393
12423
  from: string;
12394
12424
  subject: string;
@@ -12407,7 +12437,7 @@ export declare function init(config: AuthHeroConfig): {
12407
12437
  $delete: {
12408
12438
  input: {
12409
12439
  param: {
12410
- templateName: "password_reset" | "verify_email" | "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";
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";
12411
12441
  };
12412
12442
  } & {
12413
12443
  header: {
@@ -12420,7 +12450,7 @@ export declare function init(config: AuthHeroConfig): {
12420
12450
  } | {
12421
12451
  input: {
12422
12452
  param: {
12423
- templateName: "password_reset" | "verify_email" | "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";
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";
12424
12454
  };
12425
12455
  } & {
12426
12456
  header: {
@@ -12437,7 +12467,7 @@ export declare function init(config: AuthHeroConfig): {
12437
12467
  $post: {
12438
12468
  input: {
12439
12469
  param: {
12440
- templateName: "password_reset" | "verify_email" | "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";
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";
12441
12471
  };
12442
12472
  } & {
12443
12473
  header: {
@@ -12720,7 +12750,7 @@ export declare function init(config: AuthHeroConfig): {
12720
12750
  type: "auth0_managed_certs" | "self_managed_certs";
12721
12751
  custom_domain_id: string;
12722
12752
  primary: boolean;
12723
- status: "pending" | "ready" | "disabled" | "pending_verification";
12753
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12724
12754
  verification_method?: "txt" | undefined;
12725
12755
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12726
12756
  domain_metadata?: {
@@ -12761,7 +12791,7 @@ export declare function init(config: AuthHeroConfig): {
12761
12791
  type: "auth0_managed_certs" | "self_managed_certs";
12762
12792
  custom_domain_id: string;
12763
12793
  primary: boolean;
12764
- status: "pending" | "ready" | "disabled" | "pending_verification";
12794
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12765
12795
  verification_method?: "txt" | undefined;
12766
12796
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12767
12797
  domain_metadata?: {
@@ -12825,7 +12855,7 @@ export declare function init(config: AuthHeroConfig): {
12825
12855
  type: "auth0_managed_certs" | "self_managed_certs";
12826
12856
  custom_domain_id: string;
12827
12857
  primary: boolean;
12828
- status: "pending" | "ready" | "disabled" | "pending_verification";
12858
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12829
12859
  verification_method?: "txt" | undefined;
12830
12860
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12831
12861
  domain_metadata?: {
@@ -12872,7 +12902,7 @@ export declare function init(config: AuthHeroConfig): {
12872
12902
  type: "auth0_managed_certs" | "self_managed_certs";
12873
12903
  custom_domain_id: string;
12874
12904
  primary: boolean;
12875
- status: "pending" | "ready" | "disabled" | "pending_verification";
12905
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12876
12906
  verification_method?: "txt" | undefined;
12877
12907
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12878
12908
  domain_metadata?: {
@@ -12918,7 +12948,7 @@ export declare function init(config: AuthHeroConfig): {
12918
12948
  type: "auth0_managed_certs" | "self_managed_certs";
12919
12949
  custom_domain_id: string;
12920
12950
  primary: boolean;
12921
- status: "pending" | "ready" | "disabled" | "pending_verification";
12951
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12922
12952
  verification_method?: "txt" | undefined;
12923
12953
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12924
12954
  domain_metadata?: {
@@ -12959,7 +12989,7 @@ export declare function init(config: AuthHeroConfig): {
12959
12989
  type: "auth0_managed_certs" | "self_managed_certs";
12960
12990
  custom_domain_id: string;
12961
12991
  primary: boolean;
12962
- status: "pending" | "ready" | "disabled" | "pending_verification";
12992
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12963
12993
  verification_method?: "txt" | undefined;
12964
12994
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12965
12995
  domain_metadata?: {
@@ -13389,7 +13419,7 @@ export declare function init(config: AuthHeroConfig): {
13389
13419
  } & {
13390
13420
  json: {
13391
13421
  body?: string | undefined;
13392
- screen?: "login" | "identifier" | "signup" | "password" | undefined;
13422
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
13393
13423
  branding?: {
13394
13424
  colors?: {
13395
13425
  primary: string;
@@ -13680,7 +13710,7 @@ export declare function init(config: AuthHeroConfig): {
13680
13710
  logs: {
13681
13711
  action_name: string;
13682
13712
  lines: {
13683
- level: "error" | "log" | "info" | "warn" | "debug";
13713
+ level: "error" | "info" | "log" | "warn" | "debug";
13684
13714
  message: string;
13685
13715
  }[];
13686
13716
  }[];
@@ -14349,7 +14379,7 @@ export declare function init(config: AuthHeroConfig): {
14349
14379
  args: import("hono/utils/types").JSONValue[];
14350
14380
  }[];
14351
14381
  logs: {
14352
- level: "error" | "log" | "info" | "warn" | "debug";
14382
+ level: "error" | "info" | "log" | "warn" | "debug";
14353
14383
  message: string;
14354
14384
  }[];
14355
14385
  error?: string | undefined;
@@ -14660,7 +14690,7 @@ export declare function init(config: AuthHeroConfig): {
14660
14690
  scope?: string | undefined;
14661
14691
  grant_types?: string[] | undefined;
14662
14692
  response_types?: string[] | undefined;
14663
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14693
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14664
14694
  jwks_uri?: string | undefined;
14665
14695
  jwks?: Record<string, unknown> | undefined;
14666
14696
  software_id?: string | undefined;
@@ -14749,7 +14779,7 @@ export declare function init(config: AuthHeroConfig): {
14749
14779
  scope?: string | undefined;
14750
14780
  grant_types?: string[] | undefined;
14751
14781
  response_types?: string[] | undefined;
14752
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14782
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14753
14783
  jwks_uri?: string | undefined;
14754
14784
  jwks?: Record<string, unknown> | undefined;
14755
14785
  software_id?: string | undefined;
@@ -15095,19 +15125,19 @@ export declare function init(config: AuthHeroConfig): {
15095
15125
  email: string;
15096
15126
  send: "code" | "link";
15097
15127
  authParams: {
15098
- code_challenge?: string | undefined;
15099
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15100
- redirect_uri?: string | undefined;
15101
- nonce?: string | undefined;
15102
- state?: string | undefined;
15103
- act_as?: string | undefined;
15104
15128
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15105
15129
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15130
+ scope?: string | undefined;
15131
+ username?: string | undefined;
15132
+ state?: string | undefined;
15106
15133
  audience?: string | undefined;
15134
+ act_as?: string | undefined;
15135
+ redirect_uri?: string | undefined;
15107
15136
  organization?: string | undefined;
15108
- scope?: string | undefined;
15137
+ nonce?: string | undefined;
15109
15138
  prompt?: string | undefined;
15110
- username?: string | undefined;
15139
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15140
+ code_challenge?: string | undefined;
15111
15141
  ui_locales?: string | undefined;
15112
15142
  max_age?: number | undefined;
15113
15143
  acr_values?: string | undefined;
@@ -15131,19 +15161,19 @@ export declare function init(config: AuthHeroConfig): {
15131
15161
  phone_number: string;
15132
15162
  send: "code" | "link";
15133
15163
  authParams: {
15134
- code_challenge?: string | undefined;
15135
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15136
- redirect_uri?: string | undefined;
15137
- nonce?: string | undefined;
15138
- state?: string | undefined;
15139
- act_as?: string | undefined;
15140
15164
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15141
15165
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15166
+ scope?: string | undefined;
15167
+ username?: string | undefined;
15168
+ state?: string | undefined;
15142
15169
  audience?: string | undefined;
15170
+ act_as?: string | undefined;
15171
+ redirect_uri?: string | undefined;
15143
15172
  organization?: string | undefined;
15144
- scope?: string | undefined;
15173
+ nonce?: string | undefined;
15145
15174
  prompt?: string | undefined;
15146
- username?: string | undefined;
15175
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15176
+ code_challenge?: string | undefined;
15147
15177
  ui_locales?: string | undefined;
15148
15178
  max_age?: number | undefined;
15149
15179
  acr_values?: string | undefined;
@@ -15275,14 +15305,14 @@ export declare function init(config: AuthHeroConfig): {
15275
15305
  input: {
15276
15306
  form: {
15277
15307
  token: string;
15278
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15308
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15279
15309
  client_id?: string | undefined;
15280
15310
  client_secret?: string | undefined;
15281
15311
  };
15282
15312
  } & {
15283
15313
  json: {
15284
15314
  token: string;
15285
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15315
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15286
15316
  client_id?: string | undefined;
15287
15317
  client_secret?: string | undefined;
15288
15318
  };
@@ -15294,14 +15324,14 @@ export declare function init(config: AuthHeroConfig): {
15294
15324
  input: {
15295
15325
  form: {
15296
15326
  token: string;
15297
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15327
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15298
15328
  client_id?: string | undefined;
15299
15329
  client_secret?: string | undefined;
15300
15330
  };
15301
15331
  } & {
15302
15332
  json: {
15303
15333
  token: string;
15304
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15334
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15305
15335
  client_id?: string | undefined;
15306
15336
  client_secret?: string | undefined;
15307
15337
  };
@@ -15316,14 +15346,14 @@ export declare function init(config: AuthHeroConfig): {
15316
15346
  input: {
15317
15347
  form: {
15318
15348
  token: string;
15319
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15349
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15320
15350
  client_id?: string | undefined;
15321
15351
  client_secret?: string | undefined;
15322
15352
  };
15323
15353
  } & {
15324
15354
  json: {
15325
15355
  token: string;
15326
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15356
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15327
15357
  client_id?: string | undefined;
15328
15358
  client_secret?: string | undefined;
15329
15359
  };
@@ -16052,7 +16082,7 @@ export declare function init(config: AuthHeroConfig): {
16052
16082
  };
16053
16083
  output: {};
16054
16084
  outputFormat: string;
16055
- status: 200;
16085
+ status: 302;
16056
16086
  } | {
16057
16087
  input: {
16058
16088
  query: {
@@ -16066,7 +16096,7 @@ export declare function init(config: AuthHeroConfig): {
16066
16096
  };
16067
16097
  output: {};
16068
16098
  outputFormat: string;
16069
- status: 302;
16099
+ status: 200;
16070
16100
  } | {
16071
16101
  input: {
16072
16102
  query: {
@@ -17054,7 +17084,7 @@ export declare function init(config: AuthHeroConfig): {
17054
17084
  $get: {
17055
17085
  input: {
17056
17086
  param: {
17057
- screen: "login" | "signup" | "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";
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";
17058
17088
  };
17059
17089
  } & {
17060
17090
  query: {
@@ -17070,7 +17100,7 @@ export declare function init(config: AuthHeroConfig): {
17070
17100
  } | {
17071
17101
  input: {
17072
17102
  param: {
17073
- screen: "login" | "signup" | "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";
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";
17074
17104
  };
17075
17105
  } & {
17076
17106
  query: {
@@ -17086,7 +17116,7 @@ export declare function init(config: AuthHeroConfig): {
17086
17116
  } | {
17087
17117
  input: {
17088
17118
  param: {
17089
- screen: "login" | "signup" | "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";
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";
17090
17120
  };
17091
17121
  } & {
17092
17122
  query: {
@@ -17106,7 +17136,7 @@ export declare function init(config: AuthHeroConfig): {
17106
17136
  $post: {
17107
17137
  input: {
17108
17138
  param: {
17109
- screen: "login" | "signup" | "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";
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";
17110
17140
  };
17111
17141
  } & {
17112
17142
  query: {
@@ -17124,7 +17154,7 @@ export declare function init(config: AuthHeroConfig): {
17124
17154
  } | {
17125
17155
  input: {
17126
17156
  param: {
17127
- screen: "login" | "signup" | "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";
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";
17128
17158
  };
17129
17159
  } & {
17130
17160
  query: {