authhero 9.8.0 → 9.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +543 -344
  3. package/dist/authhero.d.ts +158 -138
  4. package/dist/authhero.mjs +12631 -12103
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/grant-tokens.d.ts +16 -0
  7. package/dist/types/authentication-flows/passwordless.d.ts +26 -3
  8. package/dist/types/helpers/refresh-token-lifetime.d.ts +103 -0
  9. package/dist/types/helpers/revoke-session-refresh-tokens.d.ts +33 -0
  10. package/dist/types/hooks/addDataHooks.d.ts +4 -3
  11. package/dist/types/index.d.ts +158 -138
  12. package/dist/types/routes/auth-api/index.d.ts +59 -39
  13. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  14. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  15. package/dist/types/routes/auth-api/token.d.ts +44 -24
  16. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  17. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  18. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  19. package/dist/types/routes/management-api/forms.d.ts +126 -126
  20. package/dist/types/routes/management-api/index.d.ts +69 -69
  21. package/dist/types/routes/management-api/keys.d.ts +16 -16
  22. package/dist/types/routes/management-api/logs.d.ts +4 -4
  23. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  24. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  25. package/dist/types/routes/management-api/roles.d.ts +1 -1
  26. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  27. package/dist/types/routes/management-api/tenants.d.ts +2 -2
  28. package/dist/types/routes/management-api/users.d.ts +17 -17
  29. package/dist/types/routes/universal-login/info-code-exchange.d.ts +27 -0
  30. package/dist/types/routes/universal-login/token-info-page.d.ts +26 -0
  31. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  32. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  33. package/dist/types/state-machines/login-session.d.ts +1 -1
  34. package/dist/types/utils/email.d.ts +21 -9
  35. package/dist/types/utils/jwks.d.ts +2 -2
  36. package/package.json +8 -8
@@ -80,8 +80,8 @@ export declare function init(config: AuthHeroConfig): {
80
80
  $get: {
81
81
  input: {
82
82
  query: {
83
- include_password_hashes?: "true" | "false" | undefined;
84
- gzip?: "true" | "false" | undefined;
83
+ include_password_hashes?: "false" | "true" | undefined;
84
+ gzip?: "false" | "true" | undefined;
85
85
  };
86
86
  } & {
87
87
  header: {
@@ -94,8 +94,8 @@ export declare function init(config: AuthHeroConfig): {
94
94
  } | {
95
95
  input: {
96
96
  query: {
97
- include_password_hashes?: "true" | "false" | undefined;
98
- gzip?: "true" | "false" | undefined;
97
+ include_password_hashes?: "false" | "true" | undefined;
98
+ gzip?: "false" | "true" | undefined;
99
99
  };
100
100
  } & {
101
101
  header: {
@@ -114,7 +114,7 @@ export declare function init(config: AuthHeroConfig): {
114
114
  $post: {
115
115
  input: {
116
116
  query: {
117
- include_password_hashes?: "true" | "false" | undefined;
117
+ include_password_hashes?: "false" | "true" | undefined;
118
118
  };
119
119
  } & {
120
120
  header: {
@@ -168,7 +168,7 @@ export declare function init(config: AuthHeroConfig): {
168
168
  };
169
169
  } & {
170
170
  json: {
171
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
171
+ type: "email" | "push" | "phone" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "totp";
172
172
  phone_number?: string | undefined;
173
173
  totp_secret?: string | undefined;
174
174
  credential_id?: string | undefined;
@@ -308,7 +308,7 @@ export declare function init(config: AuthHeroConfig): {
308
308
  };
309
309
  };
310
310
  output: {
311
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
311
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
312
312
  enabled: boolean;
313
313
  trial_expired?: boolean | undefined;
314
314
  }[];
@@ -463,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
463
463
  $get: {
464
464
  input: {
465
465
  param: {
466
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
466
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
467
467
  };
468
468
  } & {
469
469
  header: {
@@ -471,7 +471,7 @@ export declare function init(config: AuthHeroConfig): {
471
471
  };
472
472
  };
473
473
  output: {
474
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
474
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
475
475
  enabled: boolean;
476
476
  trial_expired?: boolean | undefined;
477
477
  };
@@ -484,7 +484,7 @@ export declare function init(config: AuthHeroConfig): {
484
484
  $put: {
485
485
  input: {
486
486
  param: {
487
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
487
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
488
488
  };
489
489
  } & {
490
490
  header: {
@@ -496,7 +496,7 @@ export declare function init(config: AuthHeroConfig): {
496
496
  };
497
497
  };
498
498
  output: {
499
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
499
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
500
500
  enabled: boolean;
501
501
  trial_expired?: boolean | undefined;
502
502
  };
@@ -1275,10 +1275,10 @@ export declare function init(config: AuthHeroConfig): {
1275
1275
  email?: string | undefined;
1276
1276
  };
1277
1277
  id?: string | undefined;
1278
- roles?: string[] | undefined;
1279
1278
  app_metadata?: Record<string, any> | undefined;
1280
1279
  user_metadata?: Record<string, any> | undefined;
1281
1280
  connection_id?: string | undefined;
1281
+ roles?: string[] | undefined;
1282
1282
  ttl_sec?: number | undefined;
1283
1283
  send_invitation_email?: boolean | undefined;
1284
1284
  };
@@ -2035,8 +2035,8 @@ export declare function init(config: AuthHeroConfig): {
2035
2035
  };
2036
2036
  } & {
2037
2037
  query: {
2038
- page?: string | undefined;
2039
2038
  from?: string | undefined;
2039
+ page?: string | undefined;
2040
2040
  include_totals?: string | undefined;
2041
2041
  per_page?: string | undefined;
2042
2042
  take?: string | undefined;
@@ -2183,7 +2183,7 @@ export declare function init(config: AuthHeroConfig): {
2183
2183
  type: "REDIRECT";
2184
2184
  action: "REDIRECT_USER";
2185
2185
  params: {
2186
- target: "custom" | "change-email" | "account";
2186
+ target: "custom" | "account" | "change-email";
2187
2187
  custom_url?: string | undefined;
2188
2188
  };
2189
2189
  alias?: string | undefined;
@@ -2236,7 +2236,7 @@ export declare function init(config: AuthHeroConfig): {
2236
2236
  type: "REDIRECT";
2237
2237
  action: "REDIRECT_USER";
2238
2238
  params: {
2239
- target: "custom" | "change-email" | "account";
2239
+ target: "custom" | "account" | "change-email";
2240
2240
  custom_url?: string | undefined;
2241
2241
  };
2242
2242
  alias?: string | undefined;
@@ -2305,7 +2305,7 @@ export declare function init(config: AuthHeroConfig): {
2305
2305
  type: "REDIRECT";
2306
2306
  action: "REDIRECT_USER";
2307
2307
  params: {
2308
- target: "custom" | "change-email" | "account";
2308
+ target: "custom" | "account" | "change-email";
2309
2309
  custom_url?: string | undefined;
2310
2310
  };
2311
2311
  alias?: string | undefined;
@@ -2386,7 +2386,7 @@ export declare function init(config: AuthHeroConfig): {
2386
2386
  type: "REDIRECT";
2387
2387
  action: "REDIRECT_USER";
2388
2388
  params: {
2389
- target: "custom" | "change-email" | "account";
2389
+ target: "custom" | "account" | "change-email";
2390
2390
  custom_url?: string | undefined;
2391
2391
  };
2392
2392
  alias?: string | undefined;
@@ -2434,7 +2434,7 @@ export declare function init(config: AuthHeroConfig): {
2434
2434
  type: "REDIRECT";
2435
2435
  action: "REDIRECT_USER";
2436
2436
  params: {
2437
- target: "custom" | "change-email" | "account";
2437
+ target: "custom" | "account" | "change-email";
2438
2438
  custom_url?: string | undefined;
2439
2439
  };
2440
2440
  alias?: string | undefined;
@@ -2494,7 +2494,7 @@ export declare function init(config: AuthHeroConfig): {
2494
2494
  type: "REDIRECT";
2495
2495
  action: "REDIRECT_USER";
2496
2496
  params: {
2497
- target: "custom" | "change-email" | "account";
2497
+ target: "custom" | "account" | "change-email";
2498
2498
  custom_url?: string | undefined;
2499
2499
  };
2500
2500
  alias?: string | undefined;
@@ -2542,7 +2542,7 @@ export declare function init(config: AuthHeroConfig): {
2542
2542
  type: "REDIRECT";
2543
2543
  action: "REDIRECT_USER";
2544
2544
  params: {
2545
- target: "custom" | "change-email" | "account";
2545
+ target: "custom" | "account" | "change-email";
2546
2546
  custom_url?: string | undefined;
2547
2547
  };
2548
2548
  alias?: string | undefined;
@@ -7107,7 +7107,7 @@ export declare function init(config: AuthHeroConfig): {
7107
7107
  };
7108
7108
  };
7109
7109
  output: {
7110
- prompt: "status" | "organizations" | "mfa" | "signup" | "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";
7110
+ prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
7111
7111
  language: string;
7112
7112
  }[];
7113
7113
  outputFormat: "json";
@@ -7145,7 +7145,7 @@ export declare function init(config: AuthHeroConfig): {
7145
7145
  $get: {
7146
7146
  input: {
7147
7147
  param: {
7148
- prompt: "status" | "organizations" | "mfa" | "signup" | "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";
7148
+ prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
7149
7149
  language: string;
7150
7150
  };
7151
7151
  } & {
@@ -7167,7 +7167,7 @@ export declare function init(config: AuthHeroConfig): {
7167
7167
  $put: {
7168
7168
  input: {
7169
7169
  param: {
7170
- prompt: "status" | "organizations" | "mfa" | "signup" | "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";
7170
+ prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
7171
7171
  language: string;
7172
7172
  };
7173
7173
  } & {
@@ -7191,7 +7191,7 @@ export declare function init(config: AuthHeroConfig): {
7191
7191
  $delete: {
7192
7192
  input: {
7193
7193
  param: {
7194
- prompt: "status" | "organizations" | "mfa" | "signup" | "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";
7194
+ prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
7195
7195
  language: string;
7196
7196
  };
7197
7197
  } & {
@@ -7334,7 +7334,7 @@ export declare function init(config: AuthHeroConfig): {
7334
7334
  } | undefined;
7335
7335
  } | undefined;
7336
7336
  passkey_options?: {
7337
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7337
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7338
7338
  local_enrollment_enabled?: boolean | undefined;
7339
7339
  progressive_enrollment_enabled?: boolean | undefined;
7340
7340
  } | undefined;
@@ -7472,7 +7472,7 @@ export declare function init(config: AuthHeroConfig): {
7472
7472
  } | undefined;
7473
7473
  } | undefined;
7474
7474
  passkey_options?: {
7475
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7475
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7476
7476
  local_enrollment_enabled?: boolean | undefined;
7477
7477
  progressive_enrollment_enabled?: boolean | undefined;
7478
7478
  } | undefined;
@@ -7626,7 +7626,7 @@ export declare function init(config: AuthHeroConfig): {
7626
7626
  } | undefined;
7627
7627
  } | undefined;
7628
7628
  passkey_options?: {
7629
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7629
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7630
7630
  local_enrollment_enabled?: boolean | undefined;
7631
7631
  progressive_enrollment_enabled?: boolean | undefined;
7632
7632
  } | undefined;
@@ -7809,7 +7809,7 @@ export declare function init(config: AuthHeroConfig): {
7809
7809
  } | undefined;
7810
7810
  } | undefined;
7811
7811
  passkey_options?: {
7812
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7812
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7813
7813
  local_enrollment_enabled?: boolean | undefined;
7814
7814
  progressive_enrollment_enabled?: boolean | undefined;
7815
7815
  } | undefined;
@@ -7971,7 +7971,7 @@ export declare function init(config: AuthHeroConfig): {
7971
7971
  } | undefined;
7972
7972
  } | undefined;
7973
7973
  passkey_options?: {
7974
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7974
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7975
7975
  local_enrollment_enabled?: boolean | undefined;
7976
7976
  progressive_enrollment_enabled?: boolean | undefined;
7977
7977
  } | undefined;
@@ -8803,7 +8803,7 @@ export declare function init(config: AuthHeroConfig): {
8803
8803
  log_type: string;
8804
8804
  category: "user_action" | "admin_action" | "system" | "api";
8805
8805
  actor: {
8806
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8806
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8807
8807
  id?: string | undefined;
8808
8808
  email?: string | undefined;
8809
8809
  org_id?: string | undefined;
@@ -9454,7 +9454,7 @@ export declare function init(config: AuthHeroConfig): {
9454
9454
  };
9455
9455
  };
9456
9456
  output: {
9457
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9457
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9458
9458
  date: string;
9459
9459
  isMobile: boolean;
9460
9460
  log_id: string;
@@ -9493,7 +9493,7 @@ export declare function init(config: AuthHeroConfig): {
9493
9493
  limit: number;
9494
9494
  length: number;
9495
9495
  logs: {
9496
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9496
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9497
9497
  date: string;
9498
9498
  isMobile: boolean;
9499
9499
  log_id: string;
@@ -9532,7 +9532,7 @@ export declare function init(config: AuthHeroConfig): {
9532
9532
  next?: string | undefined;
9533
9533
  } | {
9534
9534
  logs: {
9535
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9535
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9536
9536
  date: string;
9537
9537
  isMobile: boolean;
9538
9538
  log_id: string;
@@ -9586,7 +9586,7 @@ export declare function init(config: AuthHeroConfig): {
9586
9586
  };
9587
9587
  };
9588
9588
  output: {
9589
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9589
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9590
9590
  date: string;
9591
9591
  isMobile: boolean;
9592
9592
  log_id: string;
@@ -10878,7 +10878,7 @@ export declare function init(config: AuthHeroConfig): {
10878
10878
  } | undefined;
10879
10879
  } | undefined;
10880
10880
  passkey_options?: {
10881
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10881
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10882
10882
  local_enrollment_enabled?: boolean | undefined;
10883
10883
  progressive_enrollment_enabled?: boolean | undefined;
10884
10884
  } | undefined;
@@ -11036,7 +11036,7 @@ export declare function init(config: AuthHeroConfig): {
11036
11036
  } | undefined;
11037
11037
  } | undefined;
11038
11038
  passkey_options?: {
11039
- challenge_ui?: "both" | "autofill" | "button" | undefined;
11039
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
11040
11040
  local_enrollment_enabled?: boolean | undefined;
11041
11041
  progressive_enrollment_enabled?: boolean | undefined;
11042
11042
  } | undefined;
@@ -11165,11 +11165,12 @@ export declare function init(config: AuthHeroConfig): {
11165
11165
  };
11166
11166
  };
11167
11167
  output: {
11168
+ type: "jwt_signing" | "saml_encryption";
11168
11169
  kid: string;
11169
11170
  cert: string;
11170
11171
  fingerprint: string;
11171
11172
  thumbprint: string;
11172
- type: "jwt_signing" | "saml_encryption";
11173
+ connection?: string | undefined;
11173
11174
  tenant_id?: string | undefined;
11174
11175
  current?: boolean | undefined;
11175
11176
  next?: boolean | undefined;
@@ -11178,7 +11179,6 @@ export declare function init(config: AuthHeroConfig): {
11178
11179
  current_until?: string | undefined;
11179
11180
  revoked?: boolean | undefined;
11180
11181
  revoked_at?: string | undefined;
11181
- connection?: string | undefined;
11182
11182
  expires_at?: string | undefined;
11183
11183
  expired?: boolean | undefined;
11184
11184
  inherited?: boolean | undefined;
@@ -11204,11 +11204,12 @@ export declare function init(config: AuthHeroConfig): {
11204
11204
  };
11205
11205
  };
11206
11206
  output: {
11207
+ type: "jwt_signing" | "saml_encryption";
11207
11208
  kid: string;
11208
11209
  cert: string;
11209
11210
  fingerprint: string;
11210
11211
  thumbprint: string;
11211
- type: "jwt_signing" | "saml_encryption";
11212
+ connection?: string | undefined;
11212
11213
  tenant_id?: string | undefined;
11213
11214
  current?: boolean | undefined;
11214
11215
  next?: boolean | undefined;
@@ -11217,7 +11218,6 @@ export declare function init(config: AuthHeroConfig): {
11217
11218
  current_until?: string | undefined;
11218
11219
  revoked?: boolean | undefined;
11219
11220
  revoked_at?: string | undefined;
11220
- connection?: string | undefined;
11221
11221
  expires_at?: string | undefined;
11222
11222
  expired?: boolean | undefined;
11223
11223
  inherited?: boolean | undefined;
@@ -11242,11 +11242,12 @@ export declare function init(config: AuthHeroConfig): {
11242
11242
  };
11243
11243
  };
11244
11244
  output: {
11245
+ type: "jwt_signing" | "saml_encryption";
11245
11246
  kid: string;
11246
11247
  cert: string;
11247
11248
  fingerprint: string;
11248
11249
  thumbprint: string;
11249
- type: "jwt_signing" | "saml_encryption";
11250
+ connection?: string | undefined;
11250
11251
  tenant_id?: string | undefined;
11251
11252
  current?: boolean | undefined;
11252
11253
  next?: boolean | undefined;
@@ -11255,7 +11256,6 @@ export declare function init(config: AuthHeroConfig): {
11255
11256
  current_until?: string | undefined;
11256
11257
  revoked?: boolean | undefined;
11257
11258
  revoked_at?: string | undefined;
11258
- connection?: string | undefined;
11259
11259
  expires_at?: string | undefined;
11260
11260
  expired?: boolean | undefined;
11261
11261
  inherited?: boolean | undefined;
@@ -11282,11 +11282,12 @@ export declare function init(config: AuthHeroConfig): {
11282
11282
  };
11283
11283
  };
11284
11284
  output: {
11285
+ type: "jwt_signing" | "saml_encryption";
11285
11286
  kid: string;
11286
11287
  cert: string;
11287
11288
  fingerprint: string;
11288
11289
  thumbprint: string;
11289
- type: "jwt_signing" | "saml_encryption";
11290
+ connection?: string | undefined;
11290
11291
  tenant_id?: string | undefined;
11291
11292
  current?: boolean | undefined;
11292
11293
  next?: boolean | undefined;
@@ -11295,7 +11296,6 @@ export declare function init(config: AuthHeroConfig): {
11295
11296
  current_until?: string | undefined;
11296
11297
  revoked?: boolean | undefined;
11297
11298
  revoked_at?: string | undefined;
11298
- connection?: string | undefined;
11299
11299
  expires_at?: string | undefined;
11300
11300
  expired?: boolean | undefined;
11301
11301
  inherited?: boolean | undefined;
@@ -12140,11 +12140,12 @@ export declare function init(config: AuthHeroConfig): {
12140
12140
  };
12141
12141
  };
12142
12142
  output: {
12143
+ client_id: string;
12143
12144
  created_at: string;
12145
+ rotating: boolean;
12144
12146
  id: string;
12145
- client_id: string;
12146
12147
  user_id: string;
12147
- rotating: boolean;
12148
+ login_id: string;
12148
12149
  device: {
12149
12150
  initial_user_agent: string;
12150
12151
  initial_ip: string;
@@ -12153,32 +12154,29 @@ export declare function init(config: AuthHeroConfig): {
12153
12154
  last_ip: string;
12154
12155
  last_asn: string;
12155
12156
  };
12156
- login_id: string;
12157
12157
  resource_servers: {
12158
12158
  audience: string;
12159
12159
  scopes: string;
12160
12160
  }[];
12161
- revoked_at?: string | undefined;
12162
- expires_at?: string | undefined;
12163
12161
  organization?: string | undefined;
12162
+ expires_at?: string | undefined;
12164
12163
  session_id?: string | undefined;
12165
12164
  auth_connection?: string | undefined;
12166
12165
  auth_strategy?: {
12167
12166
  strategy: string;
12168
12167
  strategy_type: string;
12169
12168
  } | undefined;
12169
+ revoked_at?: string | undefined;
12170
12170
  idle_expires_at?: string | undefined;
12171
12171
  last_exchanged_at?: string | undefined;
12172
12172
  }[] | {
12173
- start: number;
12174
- limit: number;
12175
- length: number;
12176
12173
  tokens: {
12174
+ client_id: string;
12177
12175
  created_at: string;
12176
+ rotating: boolean;
12178
12177
  id: string;
12179
- client_id: string;
12180
12178
  user_id: string;
12181
- rotating: boolean;
12179
+ login_id: string;
12182
12180
  device: {
12183
12181
  initial_user_agent: string;
12184
12182
  initial_ip: string;
@@ -12187,32 +12185,34 @@ export declare function init(config: AuthHeroConfig): {
12187
12185
  last_ip: string;
12188
12186
  last_asn: string;
12189
12187
  };
12190
- login_id: string;
12191
12188
  resource_servers: {
12192
12189
  audience: string;
12193
12190
  scopes: string;
12194
12191
  }[];
12195
- revoked_at?: string | undefined;
12196
- expires_at?: string | undefined;
12197
12192
  organization?: string | undefined;
12193
+ expires_at?: string | undefined;
12198
12194
  session_id?: string | undefined;
12199
12195
  auth_connection?: string | undefined;
12200
12196
  auth_strategy?: {
12201
12197
  strategy: string;
12202
12198
  strategy_type: string;
12203
12199
  } | undefined;
12200
+ revoked_at?: string | undefined;
12204
12201
  idle_expires_at?: string | undefined;
12205
12202
  last_exchanged_at?: string | undefined;
12206
12203
  }[];
12207
- total?: number | undefined;
12208
12204
  next?: string | undefined;
12209
12205
  } | {
12206
+ start: number;
12207
+ limit: number;
12208
+ length: number;
12210
12209
  tokens: {
12210
+ client_id: string;
12211
12211
  created_at: string;
12212
+ rotating: boolean;
12212
12213
  id: string;
12213
- client_id: string;
12214
12214
  user_id: string;
12215
- rotating: boolean;
12215
+ login_id: string;
12216
12216
  device: {
12217
12217
  initial_user_agent: string;
12218
12218
  initial_ip: string;
@@ -12221,23 +12221,23 @@ export declare function init(config: AuthHeroConfig): {
12221
12221
  last_ip: string;
12222
12222
  last_asn: string;
12223
12223
  };
12224
- login_id: string;
12225
12224
  resource_servers: {
12226
12225
  audience: string;
12227
12226
  scopes: string;
12228
12227
  }[];
12229
- revoked_at?: string | undefined;
12230
- expires_at?: string | undefined;
12231
12228
  organization?: string | undefined;
12229
+ expires_at?: string | undefined;
12232
12230
  session_id?: string | undefined;
12233
12231
  auth_connection?: string | undefined;
12234
12232
  auth_strategy?: {
12235
12233
  strategy: string;
12236
12234
  strategy_type: string;
12237
12235
  } | undefined;
12236
+ revoked_at?: string | undefined;
12238
12237
  idle_expires_at?: string | undefined;
12239
12238
  last_exchanged_at?: string | undefined;
12240
12239
  }[];
12240
+ total?: number | undefined;
12241
12241
  next?: string | undefined;
12242
12242
  };
12243
12243
  outputFormat: "json";
@@ -12286,7 +12286,7 @@ export declare function init(config: AuthHeroConfig): {
12286
12286
  };
12287
12287
  };
12288
12288
  output: {
12289
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12289
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12290
12290
  date: string;
12291
12291
  isMobile: boolean;
12292
12292
  log_id: string;
@@ -12325,7 +12325,7 @@ export declare function init(config: AuthHeroConfig): {
12325
12325
  limit: number;
12326
12326
  length: number;
12327
12327
  logs: {
12328
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12328
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12329
12329
  date: string;
12330
12330
  isMobile: boolean;
12331
12331
  log_id: string;
@@ -12644,7 +12644,7 @@ export declare function init(config: AuthHeroConfig): {
12644
12644
  };
12645
12645
  } & {
12646
12646
  json: {
12647
- template: "verify_email" | "change_password" | "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";
12647
+ 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";
12648
12648
  body: string;
12649
12649
  from: string;
12650
12650
  subject: string;
@@ -12665,7 +12665,7 @@ export declare function init(config: AuthHeroConfig): {
12665
12665
  };
12666
12666
  } & {
12667
12667
  json: {
12668
- template: "verify_email" | "change_password" | "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";
12668
+ 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";
12669
12669
  body: string;
12670
12670
  from: string;
12671
12671
  subject: string;
@@ -12677,7 +12677,7 @@ export declare function init(config: AuthHeroConfig): {
12677
12677
  };
12678
12678
  };
12679
12679
  output: {
12680
- template: "verify_email" | "change_password" | "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";
12680
+ 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";
12681
12681
  body: string;
12682
12682
  from: string;
12683
12683
  subject: string;
@@ -12700,7 +12700,7 @@ export declare function init(config: AuthHeroConfig): {
12700
12700
  };
12701
12701
  };
12702
12702
  output: {
12703
- name: "verify_email" | "change_password" | "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";
12703
+ 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";
12704
12704
  body: string;
12705
12705
  subject: string;
12706
12706
  }[];
@@ -12713,7 +12713,7 @@ export declare function init(config: AuthHeroConfig): {
12713
12713
  $get: {
12714
12714
  input: {
12715
12715
  param: {
12716
- templateName: "verify_email" | "change_password" | "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";
12716
+ 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";
12717
12717
  };
12718
12718
  } & {
12719
12719
  header: {
@@ -12726,7 +12726,7 @@ export declare function init(config: AuthHeroConfig): {
12726
12726
  } | {
12727
12727
  input: {
12728
12728
  param: {
12729
- templateName: "verify_email" | "change_password" | "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";
12729
+ 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";
12730
12730
  };
12731
12731
  } & {
12732
12732
  header: {
@@ -12734,7 +12734,7 @@ export declare function init(config: AuthHeroConfig): {
12734
12734
  };
12735
12735
  };
12736
12736
  output: {
12737
- template: "verify_email" | "change_password" | "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";
12737
+ 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";
12738
12738
  body: string;
12739
12739
  from: string;
12740
12740
  subject: string;
@@ -12753,7 +12753,7 @@ export declare function init(config: AuthHeroConfig): {
12753
12753
  $put: {
12754
12754
  input: {
12755
12755
  param: {
12756
- templateName: "verify_email" | "change_password" | "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";
12756
+ 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";
12757
12757
  };
12758
12758
  } & {
12759
12759
  header: {
@@ -12761,7 +12761,7 @@ export declare function init(config: AuthHeroConfig): {
12761
12761
  };
12762
12762
  } & {
12763
12763
  json: {
12764
- template: "verify_email" | "change_password" | "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";
12764
+ 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";
12765
12765
  body: string;
12766
12766
  subject: string;
12767
12767
  syntax?: "liquid" | undefined;
@@ -12773,7 +12773,7 @@ export declare function init(config: AuthHeroConfig): {
12773
12773
  };
12774
12774
  };
12775
12775
  output: {
12776
- template: "verify_email" | "change_password" | "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";
12776
+ 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";
12777
12777
  body: string;
12778
12778
  from: string;
12779
12779
  subject: string;
@@ -12792,7 +12792,7 @@ export declare function init(config: AuthHeroConfig): {
12792
12792
  $patch: {
12793
12793
  input: {
12794
12794
  param: {
12795
- templateName: "verify_email" | "change_password" | "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";
12795
+ 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";
12796
12796
  };
12797
12797
  } & {
12798
12798
  header: {
@@ -12800,7 +12800,7 @@ export declare function init(config: AuthHeroConfig): {
12800
12800
  };
12801
12801
  } & {
12802
12802
  json: {
12803
- template?: "verify_email" | "change_password" | "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;
12803
+ 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;
12804
12804
  body?: string | undefined;
12805
12805
  from?: string | undefined;
12806
12806
  subject?: string | undefined;
@@ -12817,7 +12817,7 @@ export declare function init(config: AuthHeroConfig): {
12817
12817
  } | {
12818
12818
  input: {
12819
12819
  param: {
12820
- templateName: "verify_email" | "change_password" | "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";
12820
+ 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";
12821
12821
  };
12822
12822
  } & {
12823
12823
  header: {
@@ -12825,7 +12825,7 @@ export declare function init(config: AuthHeroConfig): {
12825
12825
  };
12826
12826
  } & {
12827
12827
  json: {
12828
- template?: "verify_email" | "change_password" | "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;
12828
+ 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;
12829
12829
  body?: string | undefined;
12830
12830
  from?: string | undefined;
12831
12831
  subject?: string | undefined;
@@ -12837,7 +12837,7 @@ export declare function init(config: AuthHeroConfig): {
12837
12837
  };
12838
12838
  };
12839
12839
  output: {
12840
- template: "verify_email" | "change_password" | "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";
12840
+ 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";
12841
12841
  body: string;
12842
12842
  from: string;
12843
12843
  subject: string;
@@ -12856,7 +12856,7 @@ export declare function init(config: AuthHeroConfig): {
12856
12856
  $delete: {
12857
12857
  input: {
12858
12858
  param: {
12859
- templateName: "verify_email" | "change_password" | "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";
12859
+ 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";
12860
12860
  };
12861
12861
  } & {
12862
12862
  header: {
@@ -12869,7 +12869,7 @@ export declare function init(config: AuthHeroConfig): {
12869
12869
  } | {
12870
12870
  input: {
12871
12871
  param: {
12872
- templateName: "verify_email" | "change_password" | "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";
12872
+ 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";
12873
12873
  };
12874
12874
  } & {
12875
12875
  header: {
@@ -12886,7 +12886,7 @@ export declare function init(config: AuthHeroConfig): {
12886
12886
  $post: {
12887
12887
  input: {
12888
12888
  param: {
12889
- templateName: "verify_email" | "change_password" | "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";
12889
+ 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";
12890
12890
  };
12891
12891
  } & {
12892
12892
  header: {
@@ -13456,7 +13456,7 @@ export declare function init(config: AuthHeroConfig): {
13456
13456
  base_focus_color: string;
13457
13457
  base_hover_color: string;
13458
13458
  body_text: string;
13459
- captcha_widget_theme: "dark" | "light" | "auto";
13459
+ captcha_widget_theme: "auto" | "light" | "dark";
13460
13460
  error: string;
13461
13461
  header: string;
13462
13462
  icons: string;
@@ -13546,7 +13546,7 @@ export declare function init(config: AuthHeroConfig): {
13546
13546
  base_focus_color: string;
13547
13547
  base_hover_color: string;
13548
13548
  body_text: string;
13549
- captcha_widget_theme: "dark" | "light" | "auto";
13549
+ captcha_widget_theme: "auto" | "light" | "dark";
13550
13550
  error: string;
13551
13551
  header: string;
13552
13552
  icons: string;
@@ -13625,7 +13625,7 @@ export declare function init(config: AuthHeroConfig): {
13625
13625
  base_focus_color: string;
13626
13626
  base_hover_color: string;
13627
13627
  body_text: string;
13628
- captcha_widget_theme: "dark" | "light" | "auto";
13628
+ captcha_widget_theme: "auto" | "light" | "dark";
13629
13629
  error: string;
13630
13630
  header: string;
13631
13631
  icons: string;
@@ -13715,7 +13715,7 @@ export declare function init(config: AuthHeroConfig): {
13715
13715
  font?: {
13716
13716
  url: string;
13717
13717
  } | undefined;
13718
- dark_mode?: "dark" | "light" | "auto" | undefined;
13718
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13719
13719
  };
13720
13720
  outputFormat: "json";
13721
13721
  status: 200;
@@ -13745,7 +13745,7 @@ export declare function init(config: AuthHeroConfig): {
13745
13745
  font?: {
13746
13746
  url: string;
13747
13747
  } | undefined;
13748
- dark_mode?: "dark" | "light" | "auto" | undefined;
13748
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13749
13749
  };
13750
13750
  };
13751
13751
  output: {
@@ -13764,7 +13764,7 @@ export declare function init(config: AuthHeroConfig): {
13764
13764
  font?: {
13765
13765
  url: string;
13766
13766
  } | undefined;
13767
- dark_mode?: "dark" | "light" | "auto" | undefined;
13767
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13768
13768
  };
13769
13769
  outputFormat: "json";
13770
13770
  status: 200;
@@ -13838,7 +13838,7 @@ export declare function init(config: AuthHeroConfig): {
13838
13838
  } & {
13839
13839
  json: {
13840
13840
  body?: string | undefined;
13841
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
13841
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
13842
13842
  branding?: {
13843
13843
  colors?: {
13844
13844
  primary: string;
@@ -13855,7 +13855,7 @@ export declare function init(config: AuthHeroConfig): {
13855
13855
  font?: {
13856
13856
  url: string;
13857
13857
  } | undefined;
13858
- dark_mode?: "dark" | "light" | "auto" | undefined;
13858
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13859
13859
  } | undefined;
13860
13860
  theme?: {
13861
13861
  borders?: {
@@ -13873,7 +13873,7 @@ export declare function init(config: AuthHeroConfig): {
13873
13873
  base_focus_color: string;
13874
13874
  base_hover_color: string;
13875
13875
  body_text: string;
13876
- captcha_widget_theme: "dark" | "light" | "auto";
13876
+ captcha_widget_theme: "auto" | "light" | "dark";
13877
13877
  error: string;
13878
13878
  header: string;
13879
13879
  icons: string;
@@ -15255,7 +15255,7 @@ export declare function init(config: AuthHeroConfig): {
15255
15255
  client_id: string;
15256
15256
  redirect_url?: string | undefined;
15257
15257
  login_hint?: string | undefined;
15258
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
15258
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
15259
15259
  };
15260
15260
  };
15261
15261
  output: {};
@@ -15267,7 +15267,7 @@ export declare function init(config: AuthHeroConfig): {
15267
15267
  client_id: string;
15268
15268
  redirect_url?: string | undefined;
15269
15269
  login_hint?: string | undefined;
15270
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
15270
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
15271
15271
  };
15272
15272
  };
15273
15273
  output: {
@@ -15545,18 +15545,18 @@ export declare function init(config: AuthHeroConfig): {
15545
15545
  send: "code" | "link";
15546
15546
  authParams: {
15547
15547
  scope?: string | undefined;
15548
- username?: string | undefined;
15548
+ state?: string | undefined;
15549
15549
  act_as?: string | undefined;
15550
15550
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15551
15551
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15552
15552
  redirect_uri?: string | undefined;
15553
15553
  audience?: string | undefined;
15554
15554
  organization?: string | undefined;
15555
- state?: string | undefined;
15556
15555
  nonce?: string | undefined;
15557
15556
  prompt?: string | undefined;
15558
15557
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15559
15558
  code_challenge?: string | undefined;
15559
+ username?: string | undefined;
15560
15560
  ui_locales?: string | undefined;
15561
15561
  max_age?: number | undefined;
15562
15562
  acr_values?: string | undefined;
@@ -15581,18 +15581,18 @@ export declare function init(config: AuthHeroConfig): {
15581
15581
  send: "code" | "link";
15582
15582
  authParams: {
15583
15583
  scope?: string | undefined;
15584
- username?: string | undefined;
15584
+ state?: string | undefined;
15585
15585
  act_as?: string | undefined;
15586
15586
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15587
15587
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15588
15588
  redirect_uri?: string | undefined;
15589
15589
  audience?: string | undefined;
15590
15590
  organization?: string | undefined;
15591
- state?: string | undefined;
15592
15591
  nonce?: string | undefined;
15593
15592
  prompt?: string | undefined;
15594
15593
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15595
15594
  code_challenge?: string | undefined;
15595
+ username?: string | undefined;
15596
15596
  ui_locales?: string | undefined;
15597
15597
  max_age?: number | undefined;
15598
15598
  acr_values?: string | undefined;
@@ -15724,14 +15724,14 @@ export declare function init(config: AuthHeroConfig): {
15724
15724
  input: {
15725
15725
  form: {
15726
15726
  token: string;
15727
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15727
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15728
15728
  client_id?: string | undefined;
15729
15729
  client_secret?: string | undefined;
15730
15730
  };
15731
15731
  } & {
15732
15732
  json: {
15733
15733
  token: string;
15734
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15734
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15735
15735
  client_id?: string | undefined;
15736
15736
  client_secret?: string | undefined;
15737
15737
  };
@@ -15743,14 +15743,14 @@ export declare function init(config: AuthHeroConfig): {
15743
15743
  input: {
15744
15744
  form: {
15745
15745
  token: string;
15746
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15746
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15747
15747
  client_id?: string | undefined;
15748
15748
  client_secret?: string | undefined;
15749
15749
  };
15750
15750
  } & {
15751
15751
  json: {
15752
15752
  token: string;
15753
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15753
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15754
15754
  client_id?: string | undefined;
15755
15755
  client_secret?: string | undefined;
15756
15756
  };
@@ -15765,14 +15765,14 @@ export declare function init(config: AuthHeroConfig): {
15765
15765
  input: {
15766
15766
  form: {
15767
15767
  token: string;
15768
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15768
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15769
15769
  client_id?: string | undefined;
15770
15770
  client_secret?: string | undefined;
15771
15771
  };
15772
15772
  } & {
15773
15773
  json: {
15774
15774
  token: string;
15775
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15775
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15776
15776
  client_id?: string | undefined;
15777
15777
  client_secret?: string | undefined;
15778
15778
  };
@@ -15822,7 +15822,9 @@ export declare function init(config: AuthHeroConfig): {
15822
15822
  client_id: string;
15823
15823
  username: string;
15824
15824
  otp: string;
15825
- realm: "email" | "sms";
15825
+ realm: "sms" | "email";
15826
+ scope?: string | undefined;
15827
+ audience?: string | undefined;
15826
15828
  } | {
15827
15829
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15828
15830
  subject_token: string;
@@ -15869,7 +15871,9 @@ export declare function init(config: AuthHeroConfig): {
15869
15871
  client_id: string;
15870
15872
  username: string;
15871
15873
  otp: string;
15872
- realm: "email" | "sms";
15874
+ realm: "sms" | "email";
15875
+ scope?: string | undefined;
15876
+ audience?: string | undefined;
15873
15877
  } | {
15874
15878
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15875
15879
  subject_token: string;
@@ -15883,9 +15887,17 @@ export declare function init(config: AuthHeroConfig): {
15883
15887
  client_assertion_type?: string | undefined;
15884
15888
  };
15885
15889
  };
15886
- output: {};
15887
- outputFormat: string;
15888
- status: 302;
15890
+ output: {
15891
+ access_token: string;
15892
+ token_type: string;
15893
+ expires_in: number;
15894
+ id_token?: string | undefined;
15895
+ scope?: string | undefined;
15896
+ state?: string | undefined;
15897
+ refresh_token?: string | undefined;
15898
+ };
15899
+ outputFormat: "json";
15900
+ status: 200;
15889
15901
  } | {
15890
15902
  input: {
15891
15903
  form: {
@@ -15921,7 +15933,9 @@ export declare function init(config: AuthHeroConfig): {
15921
15933
  client_id: string;
15922
15934
  username: string;
15923
15935
  otp: string;
15924
- realm: "email" | "sms";
15936
+ realm: "sms" | "email";
15937
+ scope?: string | undefined;
15938
+ audience?: string | undefined;
15925
15939
  } | {
15926
15940
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15927
15941
  subject_token: string;
@@ -15968,7 +15982,9 @@ export declare function init(config: AuthHeroConfig): {
15968
15982
  client_id: string;
15969
15983
  username: string;
15970
15984
  otp: string;
15971
- realm: "email" | "sms";
15985
+ realm: "sms" | "email";
15986
+ scope?: string | undefined;
15987
+ audience?: string | undefined;
15972
15988
  } | {
15973
15989
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15974
15990
  subject_token: string;
@@ -15982,17 +15998,9 @@ export declare function init(config: AuthHeroConfig): {
15982
15998
  client_assertion_type?: string | undefined;
15983
15999
  };
15984
16000
  };
15985
- output: {
15986
- access_token: string;
15987
- token_type: string;
15988
- expires_in: number;
15989
- id_token?: string | undefined;
15990
- scope?: string | undefined;
15991
- state?: string | undefined;
15992
- refresh_token?: string | undefined;
15993
- };
15994
- outputFormat: "json";
15995
- status: 200;
16001
+ output: {};
16002
+ outputFormat: string;
16003
+ status: 302;
15996
16004
  } | {
15997
16005
  input: {
15998
16006
  form: {
@@ -16028,7 +16036,9 @@ export declare function init(config: AuthHeroConfig): {
16028
16036
  client_id: string;
16029
16037
  username: string;
16030
16038
  otp: string;
16031
- realm: "email" | "sms";
16039
+ realm: "sms" | "email";
16040
+ scope?: string | undefined;
16041
+ audience?: string | undefined;
16032
16042
  } | {
16033
16043
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16034
16044
  subject_token: string;
@@ -16075,7 +16085,9 @@ export declare function init(config: AuthHeroConfig): {
16075
16085
  client_id: string;
16076
16086
  username: string;
16077
16087
  otp: string;
16078
- realm: "email" | "sms";
16088
+ realm: "sms" | "email";
16089
+ scope?: string | undefined;
16090
+ audience?: string | undefined;
16079
16091
  } | {
16080
16092
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16081
16093
  subject_token: string;
@@ -16130,7 +16142,9 @@ export declare function init(config: AuthHeroConfig): {
16130
16142
  client_id: string;
16131
16143
  username: string;
16132
16144
  otp: string;
16133
- realm: "email" | "sms";
16145
+ realm: "sms" | "email";
16146
+ scope?: string | undefined;
16147
+ audience?: string | undefined;
16134
16148
  } | {
16135
16149
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16136
16150
  subject_token: string;
@@ -16177,7 +16191,9 @@ export declare function init(config: AuthHeroConfig): {
16177
16191
  client_id: string;
16178
16192
  username: string;
16179
16193
  otp: string;
16180
- realm: "email" | "sms";
16194
+ realm: "sms" | "email";
16195
+ scope?: string | undefined;
16196
+ audience?: string | undefined;
16181
16197
  } | {
16182
16198
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16183
16199
  subject_token: string;
@@ -16232,7 +16248,9 @@ export declare function init(config: AuthHeroConfig): {
16232
16248
  client_id: string;
16233
16249
  username: string;
16234
16250
  otp: string;
16235
- realm: "email" | "sms";
16251
+ realm: "sms" | "email";
16252
+ scope?: string | undefined;
16253
+ audience?: string | undefined;
16236
16254
  } | {
16237
16255
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16238
16256
  subject_token: string;
@@ -16279,7 +16297,9 @@ export declare function init(config: AuthHeroConfig): {
16279
16297
  client_id: string;
16280
16298
  username: string;
16281
16299
  otp: string;
16282
- realm: "email" | "sms";
16300
+ realm: "sms" | "email";
16301
+ scope?: string | undefined;
16302
+ audience?: string | undefined;
16283
16303
  } | {
16284
16304
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16285
16305
  subject_token: string;
@@ -16308,7 +16328,7 @@ export declare function init(config: AuthHeroConfig): {
16308
16328
  output: {
16309
16329
  keys: {
16310
16330
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
16311
- kty: "RSA" | "EC" | "oct";
16331
+ kty: "EC" | "RSA" | "oct";
16312
16332
  kid?: string | undefined;
16313
16333
  use?: "sig" | "enc" | undefined;
16314
16334
  n?: string | undefined;
@@ -16501,7 +16521,7 @@ export declare function init(config: AuthHeroConfig): {
16501
16521
  };
16502
16522
  output: {};
16503
16523
  outputFormat: string;
16504
- status: 200;
16524
+ status: 302;
16505
16525
  } | {
16506
16526
  input: {
16507
16527
  query: {
@@ -16515,7 +16535,7 @@ export declare function init(config: AuthHeroConfig): {
16515
16535
  };
16516
16536
  output: {};
16517
16537
  outputFormat: string;
16518
- status: 302;
16538
+ status: 200;
16519
16539
  } | {
16520
16540
  input: {
16521
16541
  query: {
@@ -17124,7 +17144,7 @@ export declare function init(config: AuthHeroConfig): {
17124
17144
  } & {
17125
17145
  form: {
17126
17146
  username: string;
17127
- login_selection?: "password" | "code" | undefined;
17147
+ login_selection?: "code" | "password" | undefined;
17128
17148
  };
17129
17149
  };
17130
17150
  output: {};
@@ -17138,7 +17158,7 @@ export declare function init(config: AuthHeroConfig): {
17138
17158
  } & {
17139
17159
  form: {
17140
17160
  username: string;
17141
- login_selection?: "password" | "code" | undefined;
17161
+ login_selection?: "code" | "password" | undefined;
17142
17162
  };
17143
17163
  };
17144
17164
  output: {};
@@ -17503,7 +17523,7 @@ export declare function init(config: AuthHeroConfig): {
17503
17523
  $get: {
17504
17524
  input: {
17505
17525
  param: {
17506
- screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "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";
17526
+ screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "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";
17507
17527
  };
17508
17528
  } & {
17509
17529
  query: {
@@ -17519,7 +17539,7 @@ export declare function init(config: AuthHeroConfig): {
17519
17539
  } | {
17520
17540
  input: {
17521
17541
  param: {
17522
- screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "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";
17542
+ screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "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";
17523
17543
  };
17524
17544
  } & {
17525
17545
  query: {
@@ -17535,7 +17555,7 @@ export declare function init(config: AuthHeroConfig): {
17535
17555
  } | {
17536
17556
  input: {
17537
17557
  param: {
17538
- screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "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";
17558
+ screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "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";
17539
17559
  };
17540
17560
  } & {
17541
17561
  query: {
@@ -17555,7 +17575,7 @@ export declare function init(config: AuthHeroConfig): {
17555
17575
  $post: {
17556
17576
  input: {
17557
17577
  param: {
17558
- screen: "signup" | "impersonate" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17578
+ screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
17559
17579
  };
17560
17580
  } & {
17561
17581
  query: {
@@ -17573,7 +17593,7 @@ export declare function init(config: AuthHeroConfig): {
17573
17593
  } | {
17574
17594
  input: {
17575
17595
  param: {
17576
- screen: "signup" | "impersonate" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17596
+ screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
17577
17597
  };
17578
17598
  } & {
17579
17599
  query: {