authhero 5.10.0 → 5.12.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 (47) hide show
  1. package/dist/assets/u/js/client.js +33 -1
  2. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  3. package/dist/assets/u/widget/index.esm.js +1 -1
  4. package/dist/assets/u/widget/p-FUW5zvoZ.js +2 -0
  5. package/dist/assets/u/widget/{p-e91b632f.entry.js → p-aa120307.entry.js} +1 -1
  6. package/dist/assets/u/widget/{p-f63fd386.entry.js → p-f0f9eca3.entry.js} +1 -1
  7. package/dist/authhero.cjs +229 -212
  8. package/dist/authhero.css +2 -1
  9. package/dist/authhero.d.ts +142 -90
  10. package/dist/authhero.mjs +80357 -82256
  11. package/dist/client.js +33 -1
  12. package/dist/passkey-enrollment-DKWsGt-K.js +1 -0
  13. package/dist/passkey-enrollment-Dw1ObR65.mjs +26 -0
  14. package/dist/stats.html +1 -1
  15. package/dist/tsconfig.types.tsbuildinfo +1 -1
  16. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  17. package/dist/types/client/client-bundle.d.ts +1 -1
  18. package/dist/types/email-services/mailgun.d.ts +1 -0
  19. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  20. package/dist/types/helpers/service-token.d.ts +21 -0
  21. package/dist/types/helpers/users.d.ts +28 -0
  22. package/dist/types/hooks/helpers/token-api.d.ts +7 -0
  23. package/dist/types/index.d.ts +126 -90
  24. package/dist/types/routes/auth-api/authorize.d.ts +14 -14
  25. package/dist/types/routes/auth-api/index.d.ts +34 -34
  26. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  27. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  28. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  29. package/dist/types/routes/auth-api/token.d.ts +10 -10
  30. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  31. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  32. package/dist/types/routes/management-api/clients.d.ts +7 -7
  33. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  34. package/dist/types/routes/management-api/index.d.ts +70 -34
  35. package/dist/types/routes/management-api/logs.d.ts +3 -3
  36. package/dist/types/routes/management-api/organizations.d.ts +40 -4
  37. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  38. package/dist/types/routes/management-api/proxy-routes.d.ts +221 -0
  39. package/dist/types/routes/management-api/users.d.ts +2 -2
  40. package/dist/types/routes/proxy-control-plane/index.d.ts +22 -0
  41. package/dist/types/routes/universal-login/common.d.ts +2 -2
  42. package/dist/types/types/AuthHeroConfig.d.ts +14 -0
  43. package/dist/types/types/IdToken.d.ts +1 -1
  44. package/package.json +25 -24
  45. package/dist/assets/u/widget/p-BFP_5sHV.js +0 -2
  46. package/dist/passkey-enrollment-D0dl7raT.mjs +0 -42
  47. package/dist/passkey-enrollment-dbZd6Zqw.js +0 -1
@@ -79,7 +79,7 @@ export declare function init(config: AuthHeroConfig): {
79
79
  };
80
80
  } & {
81
81
  json: {
82
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
82
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
83
83
  phone_number?: string | undefined;
84
84
  totp_secret?: string | undefined;
85
85
  credential_id?: string | undefined;
@@ -219,7 +219,7 @@ export declare function init(config: AuthHeroConfig): {
219
219
  };
220
220
  };
221
221
  output: {
222
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
222
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
223
223
  enabled: boolean;
224
224
  trial_expired?: boolean | undefined;
225
225
  }[];
@@ -374,7 +374,7 @@ export declare function init(config: AuthHeroConfig): {
374
374
  $get: {
375
375
  input: {
376
376
  param: {
377
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
377
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
378
378
  };
379
379
  } & {
380
380
  header: {
@@ -382,7 +382,7 @@ export declare function init(config: AuthHeroConfig): {
382
382
  };
383
383
  };
384
384
  output: {
385
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
385
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
386
386
  enabled: boolean;
387
387
  trial_expired?: boolean | undefined;
388
388
  };
@@ -395,7 +395,7 @@ export declare function init(config: AuthHeroConfig): {
395
395
  $put: {
396
396
  input: {
397
397
  param: {
398
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
398
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
399
399
  };
400
400
  } & {
401
401
  header: {
@@ -407,7 +407,7 @@ export declare function init(config: AuthHeroConfig): {
407
407
  };
408
408
  };
409
409
  output: {
410
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
410
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
411
411
  enabled: boolean;
412
412
  trial_expired?: boolean | undefined;
413
413
  };
@@ -773,22 +773,58 @@ export declare function init(config: AuthHeroConfig): {
773
773
  };
774
774
  output: {
775
775
  user_id: string;
776
- roles: {}[];
776
+ roles: {
777
+ name: string;
778
+ id: string;
779
+ description?: string | undefined;
780
+ is_system?: boolean | undefined;
781
+ metadata?: {
782
+ [x: string]: any;
783
+ } | undefined;
784
+ created_at?: string | undefined;
785
+ updated_at?: string | undefined;
786
+ }[];
777
787
  email?: string | undefined;
788
+ name?: string | undefined;
789
+ picture?: string | undefined;
778
790
  }[] | {
779
791
  start: number;
780
792
  limit: number;
781
793
  total: number;
782
794
  members: {
783
795
  user_id: string;
784
- roles: {}[];
796
+ roles: {
797
+ name: string;
798
+ id: string;
799
+ description?: string | undefined;
800
+ is_system?: boolean | undefined;
801
+ metadata?: {
802
+ [x: string]: any;
803
+ } | undefined;
804
+ created_at?: string | undefined;
805
+ updated_at?: string | undefined;
806
+ }[];
785
807
  email?: string | undefined;
808
+ name?: string | undefined;
809
+ picture?: string | undefined;
786
810
  }[];
787
811
  } | {
788
812
  members: {
789
813
  user_id: string;
790
- roles: {}[];
814
+ roles: {
815
+ name: string;
816
+ id: string;
817
+ description?: string | undefined;
818
+ is_system?: boolean | undefined;
819
+ metadata?: {
820
+ [x: string]: any;
821
+ } | undefined;
822
+ created_at?: string | undefined;
823
+ updated_at?: string | undefined;
824
+ }[];
791
825
  email?: string | undefined;
826
+ name?: string | undefined;
827
+ picture?: string | undefined;
792
828
  }[];
793
829
  next?: string | undefined;
794
830
  };
@@ -1116,11 +1152,11 @@ export declare function init(config: AuthHeroConfig): {
1116
1152
  invitee: {
1117
1153
  email?: string | undefined;
1118
1154
  };
1119
- connection_id?: string | undefined;
1120
1155
  id?: string | undefined;
1121
1156
  app_metadata?: Record<string, any> | undefined;
1122
1157
  user_metadata?: Record<string, any> | undefined;
1123
1158
  roles?: string[] | undefined;
1159
+ connection_id?: string | undefined;
1124
1160
  ttl_sec?: number | undefined;
1125
1161
  send_invitation_email?: boolean | undefined;
1126
1162
  };
@@ -1971,7 +2007,7 @@ export declare function init(config: AuthHeroConfig): {
1971
2007
  type: "REDIRECT";
1972
2008
  action: "REDIRECT_USER";
1973
2009
  params: {
1974
- target: "custom" | "account" | "change-email";
2010
+ target: "custom" | "change-email" | "account";
1975
2011
  custom_url?: string | undefined;
1976
2012
  };
1977
2013
  alias?: string | undefined;
@@ -2024,7 +2060,7 @@ export declare function init(config: AuthHeroConfig): {
2024
2060
  type: "REDIRECT";
2025
2061
  action: "REDIRECT_USER";
2026
2062
  params: {
2027
- target: "custom" | "account" | "change-email";
2063
+ target: "custom" | "change-email" | "account";
2028
2064
  custom_url?: string | undefined;
2029
2065
  };
2030
2066
  alias?: string | undefined;
@@ -2092,7 +2128,7 @@ export declare function init(config: AuthHeroConfig): {
2092
2128
  type: "REDIRECT";
2093
2129
  action: "REDIRECT_USER";
2094
2130
  params: {
2095
- target: "custom" | "account" | "change-email";
2131
+ target: "custom" | "change-email" | "account";
2096
2132
  custom_url?: string | undefined;
2097
2133
  };
2098
2134
  alias?: string | undefined;
@@ -2173,7 +2209,7 @@ export declare function init(config: AuthHeroConfig): {
2173
2209
  type: "REDIRECT";
2174
2210
  action: "REDIRECT_USER";
2175
2211
  params: {
2176
- target: "custom" | "account" | "change-email";
2212
+ target: "custom" | "change-email" | "account";
2177
2213
  custom_url?: string | undefined;
2178
2214
  };
2179
2215
  alias?: string | undefined;
@@ -2221,7 +2257,7 @@ export declare function init(config: AuthHeroConfig): {
2221
2257
  type: "REDIRECT";
2222
2258
  action: "REDIRECT_USER";
2223
2259
  params: {
2224
- target: "custom" | "account" | "change-email";
2260
+ target: "custom" | "change-email" | "account";
2225
2261
  custom_url?: string | undefined;
2226
2262
  };
2227
2263
  alias?: string | undefined;
@@ -2281,7 +2317,7 @@ export declare function init(config: AuthHeroConfig): {
2281
2317
  type: "REDIRECT";
2282
2318
  action: "REDIRECT_USER";
2283
2319
  params: {
2284
- target: "custom" | "account" | "change-email";
2320
+ target: "custom" | "change-email" | "account";
2285
2321
  custom_url?: string | undefined;
2286
2322
  };
2287
2323
  alias?: string | undefined;
@@ -2329,7 +2365,7 @@ export declare function init(config: AuthHeroConfig): {
2329
2365
  type: "REDIRECT";
2330
2366
  action: "REDIRECT_USER";
2331
2367
  params: {
2332
- target: "custom" | "account" | "change-email";
2368
+ target: "custom" | "change-email" | "account";
2333
2369
  custom_url?: string | undefined;
2334
2370
  };
2335
2371
  alias?: string | undefined;
@@ -6607,7 +6643,7 @@ export declare function init(config: AuthHeroConfig): {
6607
6643
  };
6608
6644
  };
6609
6645
  output: {
6610
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6646
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6611
6647
  language: string;
6612
6648
  }[];
6613
6649
  outputFormat: "json";
@@ -6645,7 +6681,7 @@ export declare function init(config: AuthHeroConfig): {
6645
6681
  $get: {
6646
6682
  input: {
6647
6683
  param: {
6648
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6684
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6649
6685
  language: string;
6650
6686
  };
6651
6687
  } & {
@@ -6667,7 +6703,7 @@ export declare function init(config: AuthHeroConfig): {
6667
6703
  $put: {
6668
6704
  input: {
6669
6705
  param: {
6670
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6706
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6671
6707
  language: string;
6672
6708
  };
6673
6709
  } & {
@@ -6691,7 +6727,7 @@ export declare function init(config: AuthHeroConfig): {
6691
6727
  $delete: {
6692
6728
  input: {
6693
6729
  param: {
6694
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6730
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6695
6731
  language: string;
6696
6732
  };
6697
6733
  } & {
@@ -8132,7 +8168,7 @@ export declare function init(config: AuthHeroConfig): {
8132
8168
  log_type: string;
8133
8169
  category: "user_action" | "admin_action" | "system" | "api";
8134
8170
  actor: {
8135
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8171
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8136
8172
  id?: string | undefined;
8137
8173
  email?: string | undefined;
8138
8174
  org_id?: string | undefined;
@@ -8780,7 +8816,7 @@ export declare function init(config: AuthHeroConfig): {
8780
8816
  };
8781
8817
  };
8782
8818
  output: {
8783
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
8819
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8784
8820
  date: string;
8785
8821
  isMobile: boolean;
8786
8822
  log_id: string;
@@ -8819,7 +8855,7 @@ export declare function init(config: AuthHeroConfig): {
8819
8855
  limit: number;
8820
8856
  length: number;
8821
8857
  logs: {
8822
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
8858
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8823
8859
  date: string;
8824
8860
  isMobile: boolean;
8825
8861
  log_id: string;
@@ -8873,7 +8909,7 @@ export declare function init(config: AuthHeroConfig): {
8873
8909
  };
8874
8910
  };
8875
8911
  output: {
8876
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
8912
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8877
8913
  date: string;
8878
8914
  isMobile: boolean;
8879
8915
  log_id: string;
@@ -8954,7 +8990,7 @@ export declare function init(config: AuthHeroConfig): {
8954
8990
  audience?: string | undefined;
8955
8991
  client_id?: string | undefined;
8956
8992
  allow_any_organization?: string | undefined;
8957
- subject_type?: "user" | "client" | undefined;
8993
+ subject_type?: "client" | "user" | undefined;
8958
8994
  };
8959
8995
  } & {
8960
8996
  header: {
@@ -8969,7 +9005,7 @@ export declare function init(config: AuthHeroConfig): {
8969
9005
  organization_usage?: "deny" | "allow" | "require" | undefined;
8970
9006
  allow_any_organization?: boolean | undefined;
8971
9007
  is_system?: boolean | undefined;
8972
- subject_type?: "user" | "client" | undefined;
9008
+ subject_type?: "client" | "user" | undefined;
8973
9009
  authorization_details_types?: string[] | undefined;
8974
9010
  created_at?: string | undefined;
8975
9011
  updated_at?: string | undefined;
@@ -8985,7 +9021,7 @@ export declare function init(config: AuthHeroConfig): {
8985
9021
  organization_usage?: "deny" | "allow" | "require" | undefined;
8986
9022
  allow_any_organization?: boolean | undefined;
8987
9023
  is_system?: boolean | undefined;
8988
- subject_type?: "user" | "client" | undefined;
9024
+ subject_type?: "client" | "user" | undefined;
8989
9025
  authorization_details_types?: string[] | undefined;
8990
9026
  created_at?: string | undefined;
8991
9027
  updated_at?: string | undefined;
@@ -9016,7 +9052,7 @@ export declare function init(config: AuthHeroConfig): {
9016
9052
  organization_usage?: "deny" | "allow" | "require" | undefined;
9017
9053
  allow_any_organization?: boolean | undefined;
9018
9054
  is_system?: boolean | undefined;
9019
- subject_type?: "user" | "client" | undefined;
9055
+ subject_type?: "client" | "user" | undefined;
9020
9056
  authorization_details_types?: string[] | undefined;
9021
9057
  created_at?: string | undefined;
9022
9058
  updated_at?: string | undefined;
@@ -9061,7 +9097,7 @@ export declare function init(config: AuthHeroConfig): {
9061
9097
  organization_usage?: "deny" | "allow" | "require" | undefined;
9062
9098
  allow_any_organization?: boolean | undefined;
9063
9099
  is_system?: boolean | undefined;
9064
- subject_type?: "user" | "client" | undefined;
9100
+ subject_type?: "client" | "user" | undefined;
9065
9101
  authorization_details_types?: string[] | undefined;
9066
9102
  };
9067
9103
  };
@@ -9073,7 +9109,7 @@ export declare function init(config: AuthHeroConfig): {
9073
9109
  organization_usage?: "deny" | "allow" | "require" | undefined;
9074
9110
  allow_any_organization?: boolean | undefined;
9075
9111
  is_system?: boolean | undefined;
9076
- subject_type?: "user" | "client" | undefined;
9112
+ subject_type?: "client" | "user" | undefined;
9077
9113
  authorization_details_types?: string[] | undefined;
9078
9114
  created_at?: string | undefined;
9079
9115
  updated_at?: string | undefined;
@@ -9097,7 +9133,7 @@ export declare function init(config: AuthHeroConfig): {
9097
9133
  organization_usage?: "deny" | "allow" | "require" | undefined;
9098
9134
  allow_any_organization?: boolean | undefined;
9099
9135
  is_system?: boolean | undefined;
9100
- subject_type?: "user" | "client" | undefined;
9136
+ subject_type?: "client" | "user" | undefined;
9101
9137
  authorization_details_types?: string[] | undefined;
9102
9138
  };
9103
9139
  };
@@ -9109,7 +9145,7 @@ export declare function init(config: AuthHeroConfig): {
9109
9145
  organization_usage?: "deny" | "allow" | "require" | undefined;
9110
9146
  allow_any_organization?: boolean | undefined;
9111
9147
  is_system?: boolean | undefined;
9112
- subject_type?: "user" | "client" | undefined;
9148
+ subject_type?: "client" | "user" | undefined;
9113
9149
  authorization_details_types?: string[] | undefined;
9114
9150
  created_at?: string | undefined;
9115
9151
  updated_at?: string | undefined;
@@ -11017,7 +11053,7 @@ export declare function init(config: AuthHeroConfig): {
11017
11053
  };
11018
11054
  };
11019
11055
  output: {
11020
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
11056
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11021
11057
  date: string;
11022
11058
  isMobile: boolean;
11023
11059
  log_id: string;
@@ -11056,7 +11092,7 @@ export declare function init(config: AuthHeroConfig): {
11056
11092
  limit: number;
11057
11093
  length: number;
11058
11094
  logs: {
11059
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
11095
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11060
11096
  date: string;
11061
11097
  isMobile: boolean;
11062
11098
  log_id: string;
@@ -11371,7 +11407,7 @@ export declare function init(config: AuthHeroConfig): {
11371
11407
  };
11372
11408
  } & {
11373
11409
  json: {
11374
- 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";
11410
+ 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";
11375
11411
  body: string;
11376
11412
  from: string;
11377
11413
  subject: string;
@@ -11392,7 +11428,7 @@ export declare function init(config: AuthHeroConfig): {
11392
11428
  };
11393
11429
  } & {
11394
11430
  json: {
11395
- 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";
11431
+ 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";
11396
11432
  body: string;
11397
11433
  from: string;
11398
11434
  subject: string;
@@ -11404,7 +11440,7 @@ export declare function init(config: AuthHeroConfig): {
11404
11440
  };
11405
11441
  };
11406
11442
  output: {
11407
- 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";
11443
+ 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";
11408
11444
  body: string;
11409
11445
  from: string;
11410
11446
  subject: string;
@@ -11423,7 +11459,7 @@ export declare function init(config: AuthHeroConfig): {
11423
11459
  $get: {
11424
11460
  input: {
11425
11461
  param: {
11426
- 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";
11462
+ 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";
11427
11463
  };
11428
11464
  } & {
11429
11465
  header: {
@@ -11436,7 +11472,7 @@ export declare function init(config: AuthHeroConfig): {
11436
11472
  } | {
11437
11473
  input: {
11438
11474
  param: {
11439
- 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";
11475
+ 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";
11440
11476
  };
11441
11477
  } & {
11442
11478
  header: {
@@ -11444,7 +11480,7 @@ export declare function init(config: AuthHeroConfig): {
11444
11480
  };
11445
11481
  };
11446
11482
  output: {
11447
- 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";
11483
+ 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";
11448
11484
  body: string;
11449
11485
  from: string;
11450
11486
  subject: string;
@@ -11463,7 +11499,7 @@ export declare function init(config: AuthHeroConfig): {
11463
11499
  $put: {
11464
11500
  input: {
11465
11501
  param: {
11466
- 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";
11502
+ 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";
11467
11503
  };
11468
11504
  } & {
11469
11505
  header: {
@@ -11471,7 +11507,7 @@ export declare function init(config: AuthHeroConfig): {
11471
11507
  };
11472
11508
  } & {
11473
11509
  json: {
11474
- 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";
11510
+ 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";
11475
11511
  body: string;
11476
11512
  from: string;
11477
11513
  subject: string;
@@ -11483,7 +11519,7 @@ export declare function init(config: AuthHeroConfig): {
11483
11519
  };
11484
11520
  };
11485
11521
  output: {
11486
- 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";
11522
+ 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";
11487
11523
  body: string;
11488
11524
  from: string;
11489
11525
  subject: string;
@@ -11502,7 +11538,7 @@ export declare function init(config: AuthHeroConfig): {
11502
11538
  $patch: {
11503
11539
  input: {
11504
11540
  param: {
11505
- 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";
11541
+ 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";
11506
11542
  };
11507
11543
  } & {
11508
11544
  header: {
@@ -11510,7 +11546,7 @@ export declare function init(config: AuthHeroConfig): {
11510
11546
  };
11511
11547
  } & {
11512
11548
  json: {
11513
- 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;
11549
+ 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;
11514
11550
  body?: string | undefined;
11515
11551
  from?: string | undefined;
11516
11552
  subject?: string | undefined;
@@ -11527,7 +11563,7 @@ export declare function init(config: AuthHeroConfig): {
11527
11563
  } | {
11528
11564
  input: {
11529
11565
  param: {
11530
- 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";
11566
+ 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";
11531
11567
  };
11532
11568
  } & {
11533
11569
  header: {
@@ -11535,7 +11571,7 @@ export declare function init(config: AuthHeroConfig): {
11535
11571
  };
11536
11572
  } & {
11537
11573
  json: {
11538
- 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;
11574
+ 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;
11539
11575
  body?: string | undefined;
11540
11576
  from?: string | undefined;
11541
11577
  subject?: string | undefined;
@@ -11547,7 +11583,7 @@ export declare function init(config: AuthHeroConfig): {
11547
11583
  };
11548
11584
  };
11549
11585
  output: {
11550
- 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";
11586
+ 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";
11551
11587
  body: string;
11552
11588
  from: string;
11553
11589
  subject: string;
@@ -12593,7 +12629,7 @@ export declare function init(config: AuthHeroConfig): {
12593
12629
  output: {
12594
12630
  id: string;
12595
12631
  trigger_id: string;
12596
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
12632
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
12597
12633
  results: {
12598
12634
  action_name: string;
12599
12635
  error: {
@@ -13751,7 +13787,7 @@ export declare function init(config: AuthHeroConfig): {
13751
13787
  client_id: string;
13752
13788
  redirect_url?: string | undefined;
13753
13789
  login_hint?: string | undefined;
13754
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
13790
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
13755
13791
  };
13756
13792
  };
13757
13793
  output: {};
@@ -13763,7 +13799,7 @@ export declare function init(config: AuthHeroConfig): {
13763
13799
  client_id: string;
13764
13800
  redirect_url?: string | undefined;
13765
13801
  login_hint?: string | undefined;
13766
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
13802
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
13767
13803
  };
13768
13804
  };
13769
13805
  output: {
@@ -13840,17 +13876,9 @@ export declare function init(config: AuthHeroConfig): {
13840
13876
  request_uri?: string | undefined;
13841
13877
  };
13842
13878
  };
13843
- output: string | {
13844
- access_token: string;
13845
- token_type: string;
13846
- expires_in: number;
13847
- id_token?: string | undefined;
13848
- scope?: string | undefined;
13849
- state?: string | undefined;
13850
- refresh_token?: string | undefined;
13851
- };
13852
- outputFormat: "json";
13853
- status: 200;
13879
+ output: {};
13880
+ outputFormat: string;
13881
+ status: 302;
13854
13882
  } | {
13855
13883
  input: {
13856
13884
  query: {
@@ -13882,9 +13910,17 @@ export declare function init(config: AuthHeroConfig): {
13882
13910
  request_uri?: string | undefined;
13883
13911
  };
13884
13912
  };
13885
- output: {};
13886
- outputFormat: string;
13887
- status: 302;
13913
+ output: string | {
13914
+ access_token: string;
13915
+ token_type: string;
13916
+ expires_in: number;
13917
+ id_token?: string | undefined;
13918
+ scope?: string | undefined;
13919
+ state?: string | undefined;
13920
+ refresh_token?: string | undefined;
13921
+ };
13922
+ outputFormat: "json";
13923
+ status: 200;
13888
13924
  } | {
13889
13925
  input: {
13890
13926
  query: {
@@ -14040,19 +14076,19 @@ export declare function init(config: AuthHeroConfig): {
14040
14076
  email: string;
14041
14077
  send: "code" | "link";
14042
14078
  authParams: {
14043
- code_challenge?: string | undefined;
14044
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14045
- redirect_uri?: string | undefined;
14046
- nonce?: string | undefined;
14047
- state?: string | undefined;
14048
- act_as?: string | undefined;
14049
14079
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14050
14080
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14081
+ scope?: string | undefined;
14082
+ username?: string | undefined;
14051
14083
  audience?: string | undefined;
14084
+ state?: string | undefined;
14052
14085
  organization?: string | undefined;
14053
- scope?: string | undefined;
14086
+ nonce?: string | undefined;
14087
+ redirect_uri?: string | undefined;
14088
+ act_as?: string | undefined;
14054
14089
  prompt?: string | undefined;
14055
- username?: string | undefined;
14090
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14091
+ code_challenge?: string | undefined;
14056
14092
  ui_locales?: string | undefined;
14057
14093
  max_age?: number | undefined;
14058
14094
  acr_values?: string | undefined;
@@ -14076,19 +14112,19 @@ export declare function init(config: AuthHeroConfig): {
14076
14112
  phone_number: string;
14077
14113
  send: "code" | "link";
14078
14114
  authParams: {
14079
- code_challenge?: string | undefined;
14080
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14081
- redirect_uri?: string | undefined;
14082
- nonce?: string | undefined;
14083
- state?: string | undefined;
14084
- act_as?: string | undefined;
14085
14115
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14086
14116
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14117
+ scope?: string | undefined;
14118
+ username?: string | undefined;
14087
14119
  audience?: string | undefined;
14120
+ state?: string | undefined;
14088
14121
  organization?: string | undefined;
14089
- scope?: string | undefined;
14122
+ nonce?: string | undefined;
14123
+ redirect_uri?: string | undefined;
14124
+ act_as?: string | undefined;
14090
14125
  prompt?: string | undefined;
14091
- username?: string | undefined;
14126
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14127
+ code_challenge?: string | undefined;
14092
14128
  ui_locales?: string | undefined;
14093
14129
  max_age?: number | undefined;
14094
14130
  acr_values?: string | undefined;
@@ -14849,7 +14885,7 @@ export declare function init(config: AuthHeroConfig): {
14849
14885
  };
14850
14886
  output: {};
14851
14887
  outputFormat: string;
14852
- status: 302;
14888
+ status: 200;
14853
14889
  } | {
14854
14890
  input: {
14855
14891
  query: {
@@ -14863,7 +14899,7 @@ export declare function init(config: AuthHeroConfig): {
14863
14899
  };
14864
14900
  output: {};
14865
14901
  outputFormat: string;
14866
- status: 200;
14902
+ status: 302;
14867
14903
  } | {
14868
14904
  input: {
14869
14905
  query: {
@@ -15835,7 +15871,7 @@ export declare function init(config: AuthHeroConfig): {
15835
15871
  $get: {
15836
15872
  input: {
15837
15873
  param: {
15838
- screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15874
+ screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15839
15875
  };
15840
15876
  } & {
15841
15877
  query: {
@@ -15851,7 +15887,7 @@ export declare function init(config: AuthHeroConfig): {
15851
15887
  } | {
15852
15888
  input: {
15853
15889
  param: {
15854
- screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15890
+ screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15855
15891
  };
15856
15892
  } & {
15857
15893
  query: {
@@ -15867,7 +15903,7 @@ export declare function init(config: AuthHeroConfig): {
15867
15903
  } | {
15868
15904
  input: {
15869
15905
  param: {
15870
- screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15906
+ screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15871
15907
  };
15872
15908
  } & {
15873
15909
  query: {
@@ -15887,7 +15923,7 @@ export declare function init(config: AuthHeroConfig): {
15887
15923
  $post: {
15888
15924
  input: {
15889
15925
  param: {
15890
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15926
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15891
15927
  };
15892
15928
  } & {
15893
15929
  query: {
@@ -15905,7 +15941,7 @@ export declare function init(config: AuthHeroConfig): {
15905
15941
  } | {
15906
15942
  input: {
15907
15943
  param: {
15908
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15944
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15909
15945
  };
15910
15946
  } & {
15911
15947
  query: {
@@ -15923,7 +15959,7 @@ export declare function init(config: AuthHeroConfig): {
15923
15959
  } | {
15924
15960
  input: {
15925
15961
  param: {
15926
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15962
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15927
15963
  };
15928
15964
  } & {
15929
15965
  query: {