authhero 8.15.0 → 8.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +109 -109
  3. package/dist/authhero.d.ts +76 -73
  4. package/dist/authhero.mjs +7985 -7913
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +5 -5
  7. package/dist/types/constants.d.ts +1 -1
  8. package/dist/types/helpers/logging.d.ts +11 -0
  9. package/dist/types/index.d.ts +66 -64
  10. package/dist/types/routes/auth-api/index.d.ts +4 -4
  11. package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
  12. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  13. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  14. package/dist/types/routes/management-api/branding.d.ts +5 -5
  15. package/dist/types/routes/management-api/clients.d.ts +6 -6
  16. package/dist/types/routes/management-api/connections.d.ts +15 -15
  17. package/dist/types/routes/management-api/failed-events.d.ts +3 -1
  18. package/dist/types/routes/management-api/index.d.ts +55 -53
  19. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  20. package/dist/types/routes/management-api/logs.d.ts +3 -3
  21. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  22. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  25. package/dist/types/routes/management-api/themes.d.ts +3 -3
  26. package/dist/types/routes/management-api/users.d.ts +2 -2
  27. package/dist/types/routes/universal-login/common.d.ts +8 -8
  28. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  29. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  30. package/dist/types/routes/universal-login/index.d.ts +2 -2
  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/types/AuthHeroConfig.d.ts +9 -8
  34. package/dist/types/utils/username-password-provider.d.ts +11 -6
  35. package/package.json +5 -5
@@ -1070,11 +1070,11 @@ type UserLinkingModeOption = UserLinkingMode | UserLinkingModeResolver;
1070
1070
  /**
1071
1071
  * Resolver for the per-tenant username/password provider value.
1072
1072
  *
1073
- * The native database provider has historically been written as `"auth2"`.
1074
- * Returning `"auth0"` for selected tenants lets you migrate them onto the
1075
- * `"auth0"` provider value (matching what the legacy Auth0 import format
1076
- * used) one tenant at a time. Reads always accept both values, so existing
1077
- * `auth2|*` rows keep resolving during and after the cutover.
1073
+ * The native database provider has historically been written as `"auth2"`;
1074
+ * new rows now default to `"auth0"`. Returning `"auth2"` for selected
1075
+ * tenants pins them on the legacy value during a staged cutover. Reads
1076
+ * always accept both values, so existing `auth2|*` rows keep resolving
1077
+ * during and after the cutover.
1078
1078
  *
1079
1079
  * TRANSITIONAL: this resolver and the dual-read fallback can be removed
1080
1080
  * once every tenant has been migrated to a single value.
@@ -1423,11 +1423,12 @@ interface AuthHeroConfig {
1423
1423
  userLinkingMode?: UserLinkingModeOption;
1424
1424
  /**
1425
1425
  * Per-tenant override for the username/password provider value used on
1426
- * NEW user rows. Returning `"auth0"` for a tenant migrates new signups,
1427
- * password resets, etc. onto the `auth0|*` user_id format. Existing
1426
+ * NEW user rows. Omit to write `"auth0"` for every tenant new signups,
1427
+ * password resets, etc. use the `auth0|*` user_id format. Existing
1428
1428
  * `auth2|*` rows keep working — reads accept either value.
1429
1429
  *
1430
- * Omit to keep the legacy `"auth2"` value for every tenant.
1430
+ * Returning `"auth2"` pins a tenant on the legacy value during a staged
1431
+ * cutover.
1431
1432
  *
1432
1433
  * TRANSITIONAL: this hook and the dual-read fallback in the password
1433
1434
  * flows can be removed once all tenants have been backfilled.
@@ -2826,7 +2827,7 @@ interface ResolveSigningKeysOptions {
2826
2827
  }
2827
2828
  declare function resolveSigningKeys(keys: KeysAdapter, tenantId: string, modeOption: SigningKeyModeOption | undefined, opts: ResolveSigningKeysOptions): Promise<SigningKey[]>;
2828
2829
 
2829
- declare const USERNAME_PASSWORD_PROVIDER = "auth2";
2830
+ declare const USERNAME_PASSWORD_PROVIDER = "auth0";
2830
2831
 
2831
2832
  interface EnsureUsernameOptions {
2832
2833
  /**
@@ -3129,7 +3130,7 @@ declare function init(config: AuthHeroConfig): {
3129
3130
  };
3130
3131
  } & {
3131
3132
  json: {
3132
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3133
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3133
3134
  phone_number?: string | undefined;
3134
3135
  totp_secret?: string | undefined;
3135
3136
  credential_id?: string | undefined;
@@ -4203,10 +4204,10 @@ declare function init(config: AuthHeroConfig): {
4203
4204
  email?: string | undefined;
4204
4205
  };
4205
4206
  id?: string | undefined;
4207
+ roles?: string[] | undefined;
4208
+ connection_id?: string | undefined;
4206
4209
  app_metadata?: Record<string, any> | undefined;
4207
4210
  user_metadata?: Record<string, any> | undefined;
4208
- connection_id?: string | undefined;
4209
- roles?: string[] | undefined;
4210
4211
  ttl_sec?: number | undefined;
4211
4212
  send_invitation_email?: boolean | undefined;
4212
4213
  };
@@ -4390,8 +4391,8 @@ declare function init(config: AuthHeroConfig): {
4390
4391
  };
4391
4392
  } & {
4392
4393
  json: {
4393
- show_as_button?: boolean | undefined;
4394
4394
  assign_membership_on_login?: boolean | undefined;
4395
+ show_as_button?: boolean | undefined;
4395
4396
  is_signup_enabled?: boolean | undefined;
4396
4397
  };
4397
4398
  };
@@ -9861,7 +9862,7 @@ declare function init(config: AuthHeroConfig): {
9861
9862
  };
9862
9863
  };
9863
9864
  output: {
9864
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9865
+ prompt: "mfa" | "organizations" | "status" | "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";
9865
9866
  language: string;
9866
9867
  }[];
9867
9868
  outputFormat: "json";
@@ -9899,7 +9900,7 @@ declare function init(config: AuthHeroConfig): {
9899
9900
  $get: {
9900
9901
  input: {
9901
9902
  param: {
9902
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9903
+ prompt: "mfa" | "organizations" | "status" | "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";
9903
9904
  language: string;
9904
9905
  };
9905
9906
  } & {
@@ -9921,7 +9922,7 @@ declare function init(config: AuthHeroConfig): {
9921
9922
  $put: {
9922
9923
  input: {
9923
9924
  param: {
9924
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9925
+ prompt: "mfa" | "organizations" | "status" | "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";
9925
9926
  language: string;
9926
9927
  };
9927
9928
  } & {
@@ -9945,7 +9946,7 @@ declare function init(config: AuthHeroConfig): {
9945
9946
  $delete: {
9946
9947
  input: {
9947
9948
  param: {
9948
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9949
+ prompt: "mfa" | "organizations" | "status" | "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";
9949
9950
  language: string;
9950
9951
  };
9951
9952
  } & {
@@ -10037,7 +10038,7 @@ declare function init(config: AuthHeroConfig): {
10037
10038
  active?: boolean | undefined;
10038
10039
  } | undefined;
10039
10040
  signup?: {
10040
- status?: "optional" | "required" | "disabled" | undefined;
10041
+ status?: "optional" | "disabled" | "required" | undefined;
10041
10042
  verification?: {
10042
10043
  active?: boolean | undefined;
10043
10044
  } | undefined;
@@ -10054,7 +10055,7 @@ declare function init(config: AuthHeroConfig): {
10054
10055
  active?: boolean | undefined;
10055
10056
  } | undefined;
10056
10057
  signup?: {
10057
- status?: "optional" | "required" | "disabled" | undefined;
10058
+ status?: "optional" | "disabled" | "required" | undefined;
10058
10059
  } | undefined;
10059
10060
  validation?: {
10060
10061
  max_length?: number | undefined;
@@ -10071,7 +10072,7 @@ declare function init(config: AuthHeroConfig): {
10071
10072
  active?: boolean | undefined;
10072
10073
  } | undefined;
10073
10074
  signup?: {
10074
- status?: "optional" | "required" | "disabled" | undefined;
10075
+ status?: "optional" | "disabled" | "required" | undefined;
10075
10076
  } | undefined;
10076
10077
  } | undefined;
10077
10078
  } | undefined;
@@ -10171,7 +10172,7 @@ declare function init(config: AuthHeroConfig): {
10171
10172
  active?: boolean | undefined;
10172
10173
  } | undefined;
10173
10174
  signup?: {
10174
- status?: "optional" | "required" | "disabled" | undefined;
10175
+ status?: "optional" | "disabled" | "required" | undefined;
10175
10176
  verification?: {
10176
10177
  active?: boolean | undefined;
10177
10178
  } | undefined;
@@ -10188,7 +10189,7 @@ declare function init(config: AuthHeroConfig): {
10188
10189
  active?: boolean | undefined;
10189
10190
  } | undefined;
10190
10191
  signup?: {
10191
- status?: "optional" | "required" | "disabled" | undefined;
10192
+ status?: "optional" | "disabled" | "required" | undefined;
10192
10193
  } | undefined;
10193
10194
  validation?: {
10194
10195
  max_length?: number | undefined;
@@ -10205,7 +10206,7 @@ declare function init(config: AuthHeroConfig): {
10205
10206
  active?: boolean | undefined;
10206
10207
  } | undefined;
10207
10208
  signup?: {
10208
- status?: "optional" | "required" | "disabled" | undefined;
10209
+ status?: "optional" | "disabled" | "required" | undefined;
10209
10210
  } | undefined;
10210
10211
  } | undefined;
10211
10212
  } | undefined;
@@ -10320,7 +10321,7 @@ declare function init(config: AuthHeroConfig): {
10320
10321
  active?: boolean | undefined;
10321
10322
  } | undefined;
10322
10323
  signup?: {
10323
- status?: "optional" | "required" | "disabled" | undefined;
10324
+ status?: "optional" | "disabled" | "required" | undefined;
10324
10325
  verification?: {
10325
10326
  active?: boolean | undefined;
10326
10327
  } | undefined;
@@ -10337,7 +10338,7 @@ declare function init(config: AuthHeroConfig): {
10337
10338
  active?: boolean | undefined;
10338
10339
  } | undefined;
10339
10340
  signup?: {
10340
- status?: "optional" | "required" | "disabled" | undefined;
10341
+ status?: "optional" | "disabled" | "required" | undefined;
10341
10342
  } | undefined;
10342
10343
  validation?: {
10343
10344
  max_length?: number | undefined;
@@ -10354,7 +10355,7 @@ declare function init(config: AuthHeroConfig): {
10354
10355
  active?: boolean | undefined;
10355
10356
  } | undefined;
10356
10357
  signup?: {
10357
- status?: "optional" | "required" | "disabled" | undefined;
10358
+ status?: "optional" | "disabled" | "required" | undefined;
10358
10359
  } | undefined;
10359
10360
  } | undefined;
10360
10361
  } | undefined;
@@ -10499,7 +10500,7 @@ declare function init(config: AuthHeroConfig): {
10499
10500
  active?: boolean | undefined;
10500
10501
  } | undefined;
10501
10502
  signup?: {
10502
- status?: "optional" | "required" | "disabled" | undefined;
10503
+ status?: "optional" | "disabled" | "required" | undefined;
10503
10504
  verification?: {
10504
10505
  active?: boolean | undefined;
10505
10506
  } | undefined;
@@ -10516,7 +10517,7 @@ declare function init(config: AuthHeroConfig): {
10516
10517
  active?: boolean | undefined;
10517
10518
  } | undefined;
10518
10519
  signup?: {
10519
- status?: "optional" | "required" | "disabled" | undefined;
10520
+ status?: "optional" | "disabled" | "required" | undefined;
10520
10521
  } | undefined;
10521
10522
  validation?: {
10522
10523
  max_length?: number | undefined;
@@ -10533,7 +10534,7 @@ declare function init(config: AuthHeroConfig): {
10533
10534
  active?: boolean | undefined;
10534
10535
  } | undefined;
10535
10536
  signup?: {
10536
- status?: "optional" | "required" | "disabled" | undefined;
10537
+ status?: "optional" | "disabled" | "required" | undefined;
10537
10538
  } | undefined;
10538
10539
  } | undefined;
10539
10540
  } | undefined;
@@ -10657,7 +10658,7 @@ declare function init(config: AuthHeroConfig): {
10657
10658
  active?: boolean | undefined;
10658
10659
  } | undefined;
10659
10660
  signup?: {
10660
- status?: "optional" | "required" | "disabled" | undefined;
10661
+ status?: "optional" | "disabled" | "required" | undefined;
10661
10662
  verification?: {
10662
10663
  active?: boolean | undefined;
10663
10664
  } | undefined;
@@ -10674,7 +10675,7 @@ declare function init(config: AuthHeroConfig): {
10674
10675
  active?: boolean | undefined;
10675
10676
  } | undefined;
10676
10677
  signup?: {
10677
- status?: "optional" | "required" | "disabled" | undefined;
10678
+ status?: "optional" | "disabled" | "required" | undefined;
10678
10679
  } | undefined;
10679
10680
  validation?: {
10680
10681
  max_length?: number | undefined;
@@ -10691,7 +10692,7 @@ declare function init(config: AuthHeroConfig): {
10691
10692
  active?: boolean | undefined;
10692
10693
  } | undefined;
10693
10694
  signup?: {
10694
- status?: "optional" | "required" | "disabled" | undefined;
10695
+ status?: "optional" | "disabled" | "required" | undefined;
10695
10696
  } | undefined;
10696
10697
  } | undefined;
10697
10698
  } | undefined;
@@ -11446,7 +11447,7 @@ declare function init(config: AuthHeroConfig): {
11446
11447
  log_type: string;
11447
11448
  category: "user_action" | "admin_action" | "system" | "api";
11448
11449
  actor: {
11449
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11450
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
11450
11451
  id?: string | undefined;
11451
11452
  email?: string | undefined;
11452
11453
  org_id?: string | undefined;
@@ -11495,6 +11496,8 @@ declare function init(config: AuthHeroConfig): {
11495
11496
  body?: hono_utils_types.JSONValue | undefined;
11496
11497
  } | undefined;
11497
11498
  connection?: string | undefined;
11499
+ connection_id?: string | undefined;
11500
+ client_name?: string | undefined;
11498
11501
  strategy?: string | undefined;
11499
11502
  strategy_type?: string | undefined;
11500
11503
  audience?: string | undefined;
@@ -11754,7 +11757,7 @@ declare function init(config: AuthHeroConfig): {
11754
11757
  created_at: string;
11755
11758
  updated_at: string;
11756
11759
  name: string;
11757
- provider: "auth0" | "oidc" | "okta" | "cognito";
11760
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11758
11761
  connection: string;
11759
11762
  enabled: boolean;
11760
11763
  credentials: {
@@ -11786,7 +11789,7 @@ declare function init(config: AuthHeroConfig): {
11786
11789
  created_at: string;
11787
11790
  updated_at: string;
11788
11791
  name: string;
11789
- provider: "auth0" | "oidc" | "okta" | "cognito";
11792
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11790
11793
  connection: string;
11791
11794
  enabled: boolean;
11792
11795
  credentials: {
@@ -11812,7 +11815,7 @@ declare function init(config: AuthHeroConfig): {
11812
11815
  } & {
11813
11816
  json: {
11814
11817
  name: string;
11815
- provider: "auth0" | "oidc" | "okta" | "cognito";
11818
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11816
11819
  connection: string;
11817
11820
  credentials: {
11818
11821
  domain: string;
@@ -11829,7 +11832,7 @@ declare function init(config: AuthHeroConfig): {
11829
11832
  created_at: string;
11830
11833
  updated_at: string;
11831
11834
  name: string;
11832
- provider: "auth0" | "oidc" | "okta" | "cognito";
11835
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11833
11836
  connection: string;
11834
11837
  enabled: boolean;
11835
11838
  credentials: {
@@ -11860,7 +11863,7 @@ declare function init(config: AuthHeroConfig): {
11860
11863
  json: {
11861
11864
  id?: string | undefined;
11862
11865
  name?: string | undefined;
11863
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
11866
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11864
11867
  connection?: string | undefined;
11865
11868
  enabled?: boolean | undefined;
11866
11869
  credentials?: {
@@ -11876,7 +11879,7 @@ declare function init(config: AuthHeroConfig): {
11876
11879
  created_at: string;
11877
11880
  updated_at: string;
11878
11881
  name: string;
11879
- provider: "auth0" | "oidc" | "okta" | "cognito";
11882
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11880
11883
  connection: string;
11881
11884
  enabled: boolean;
11882
11885
  credentials: {
@@ -11924,7 +11927,7 @@ declare function init(config: AuthHeroConfig): {
11924
11927
  [x: string]: hono_utils_types.JSONValue;
11925
11928
  };
11926
11929
  id: string;
11927
- status: "active" | "suspended" | "paused";
11930
+ status: "suspended" | "active" | "paused";
11928
11931
  filters?: {
11929
11932
  type: string;
11930
11933
  name: string;
@@ -11956,7 +11959,7 @@ declare function init(config: AuthHeroConfig): {
11956
11959
  [x: string]: hono_utils_types.JSONValue;
11957
11960
  };
11958
11961
  id: string;
11959
- status: "active" | "suspended" | "paused";
11962
+ status: "suspended" | "active" | "paused";
11960
11963
  filters?: {
11961
11964
  type: string;
11962
11965
  name: string;
@@ -11981,7 +11984,7 @@ declare function init(config: AuthHeroConfig): {
11981
11984
  name: string;
11982
11985
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
11983
11986
  sink: Record<string, unknown>;
11984
- status?: "active" | "suspended" | "paused" | undefined;
11987
+ status?: "suspended" | "active" | "paused" | undefined;
11985
11988
  filters?: {
11986
11989
  type: string;
11987
11990
  name: string;
@@ -11996,7 +11999,7 @@ declare function init(config: AuthHeroConfig): {
11996
11999
  [x: string]: hono_utils_types.JSONValue;
11997
12000
  };
11998
12001
  id: string;
11999
- status: "active" | "suspended" | "paused";
12002
+ status: "suspended" | "active" | "paused";
12000
12003
  filters?: {
12001
12004
  type: string;
12002
12005
  name: string;
@@ -12031,7 +12034,7 @@ declare function init(config: AuthHeroConfig): {
12031
12034
  }[] | undefined;
12032
12035
  isPriority?: boolean | undefined;
12033
12036
  id?: string | undefined;
12034
- status?: "active" | "suspended" | "paused" | undefined;
12037
+ status?: "suspended" | "active" | "paused" | undefined;
12035
12038
  created_at?: string | undefined;
12036
12039
  updated_at?: string | undefined;
12037
12040
  };
@@ -12043,7 +12046,7 @@ declare function init(config: AuthHeroConfig): {
12043
12046
  [x: string]: hono_utils_types.JSONValue;
12044
12047
  };
12045
12048
  id: string;
12046
- status: "active" | "suspended" | "paused";
12049
+ status: "suspended" | "active" | "paused";
12047
12050
  filters?: {
12048
12051
  type: string;
12049
12052
  name: string;
@@ -12094,7 +12097,7 @@ declare function init(config: AuthHeroConfig): {
12094
12097
  };
12095
12098
  };
12096
12099
  output: {
12097
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
12100
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12098
12101
  date: string;
12099
12102
  isMobile: boolean;
12100
12103
  log_id: string;
@@ -12133,7 +12136,7 @@ declare function init(config: AuthHeroConfig): {
12133
12136
  limit: number;
12134
12137
  length: number;
12135
12138
  logs: {
12136
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
12139
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12137
12140
  date: string;
12138
12141
  isMobile: boolean;
12139
12142
  log_id: string;
@@ -12187,7 +12190,7 @@ declare function init(config: AuthHeroConfig): {
12187
12190
  };
12188
12191
  };
12189
12192
  output: {
12190
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
12193
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12191
12194
  date: string;
12192
12195
  isMobile: boolean;
12193
12196
  log_id: string;
@@ -13263,7 +13266,7 @@ declare function init(config: AuthHeroConfig): {
13263
13266
  active?: boolean | undefined;
13264
13267
  } | undefined;
13265
13268
  signup?: {
13266
- status?: "optional" | "required" | "disabled" | undefined;
13269
+ status?: "optional" | "disabled" | "required" | undefined;
13267
13270
  verification?: {
13268
13271
  active?: boolean | undefined;
13269
13272
  } | undefined;
@@ -13280,7 +13283,7 @@ declare function init(config: AuthHeroConfig): {
13280
13283
  active?: boolean | undefined;
13281
13284
  } | undefined;
13282
13285
  signup?: {
13283
- status?: "optional" | "required" | "disabled" | undefined;
13286
+ status?: "optional" | "disabled" | "required" | undefined;
13284
13287
  } | undefined;
13285
13288
  validation?: {
13286
13289
  max_length?: number | undefined;
@@ -13297,7 +13300,7 @@ declare function init(config: AuthHeroConfig): {
13297
13300
  active?: boolean | undefined;
13298
13301
  } | undefined;
13299
13302
  signup?: {
13300
- status?: "optional" | "required" | "disabled" | undefined;
13303
+ status?: "optional" | "disabled" | "required" | undefined;
13301
13304
  } | undefined;
13302
13305
  } | undefined;
13303
13306
  } | undefined;
@@ -13417,7 +13420,7 @@ declare function init(config: AuthHeroConfig): {
13417
13420
  active?: boolean | undefined;
13418
13421
  } | undefined;
13419
13422
  signup?: {
13420
- status?: "optional" | "required" | "disabled" | undefined;
13423
+ status?: "optional" | "disabled" | "required" | undefined;
13421
13424
  verification?: {
13422
13425
  active?: boolean | undefined;
13423
13426
  } | undefined;
@@ -13434,7 +13437,7 @@ declare function init(config: AuthHeroConfig): {
13434
13437
  active?: boolean | undefined;
13435
13438
  } | undefined;
13436
13439
  signup?: {
13437
- status?: "optional" | "required" | "disabled" | undefined;
13440
+ status?: "optional" | "disabled" | "required" | undefined;
13438
13441
  } | undefined;
13439
13442
  validation?: {
13440
13443
  max_length?: number | undefined;
@@ -13451,7 +13454,7 @@ declare function init(config: AuthHeroConfig): {
13451
13454
  active?: boolean | undefined;
13452
13455
  } | undefined;
13453
13456
  signup?: {
13454
- status?: "optional" | "required" | "disabled" | undefined;
13457
+ status?: "optional" | "disabled" | "required" | undefined;
13455
13458
  } | undefined;
13456
13459
  } | undefined;
13457
13460
  } | undefined;
@@ -14405,7 +14408,7 @@ declare function init(config: AuthHeroConfig): {
14405
14408
  };
14406
14409
  };
14407
14410
  output: {
14408
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
14411
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14409
14412
  date: string;
14410
14413
  isMobile: boolean;
14411
14414
  log_id: string;
@@ -14444,7 +14447,7 @@ declare function init(config: AuthHeroConfig): {
14444
14447
  limit: number;
14445
14448
  length: number;
14446
14449
  logs: {
14447
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
14450
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14448
14451
  date: string;
14449
14452
  isMobile: boolean;
14450
14453
  log_id: string;
@@ -15622,7 +15625,7 @@ declare function init(config: AuthHeroConfig): {
15622
15625
  background_color: string;
15623
15626
  background_image_url: string;
15624
15627
  page_layout: "center" | "left" | "right";
15625
- logo_placement?: "none" | "widget" | "chip" | undefined;
15628
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15626
15629
  };
15627
15630
  widget: {
15628
15631
  header_text_alignment: "center" | "left" | "right";
@@ -15712,7 +15715,7 @@ declare function init(config: AuthHeroConfig): {
15712
15715
  background_color: string;
15713
15716
  background_image_url: string;
15714
15717
  page_layout: "center" | "left" | "right";
15715
- logo_placement?: "none" | "widget" | "chip" | undefined;
15718
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15716
15719
  };
15717
15720
  widget: {
15718
15721
  header_text_alignment: "center" | "left" | "right";
@@ -15791,7 +15794,7 @@ declare function init(config: AuthHeroConfig): {
15791
15794
  background_color: string;
15792
15795
  background_image_url: string;
15793
15796
  page_layout: "center" | "left" | "right";
15794
- logo_placement?: "none" | "widget" | "chip" | undefined;
15797
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15795
15798
  };
15796
15799
  widget: {
15797
15800
  header_text_alignment: "center" | "left" | "right";
@@ -15953,7 +15956,7 @@ declare function init(config: AuthHeroConfig): {
15953
15956
  } & {
15954
15957
  json: {
15955
15958
  body?: string | undefined;
15956
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
15959
+ screen?: "password" | "signup" | "login" | "identifier" | undefined;
15957
15960
  branding?: {
15958
15961
  colors?: {
15959
15962
  primary: string;
@@ -16039,7 +16042,7 @@ declare function init(config: AuthHeroConfig): {
16039
16042
  background_color: string;
16040
16043
  background_image_url: string;
16041
16044
  page_layout: "center" | "left" | "right";
16042
- logo_placement?: "none" | "widget" | "chip" | undefined;
16045
+ logo_placement?: "widget" | "none" | "chip" | undefined;
16043
16046
  } | undefined;
16044
16047
  widget?: {
16045
16048
  header_text_alignment: "center" | "left" | "right";
@@ -16197,7 +16200,7 @@ declare function init(config: AuthHeroConfig): {
16197
16200
  output: {
16198
16201
  id: string;
16199
16202
  trigger_id: string;
16200
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
16203
+ status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
16201
16204
  results: {
16202
16205
  action_name: string;
16203
16206
  error: {
@@ -17657,16 +17660,16 @@ declare function init(config: AuthHeroConfig): {
17657
17660
  email: string;
17658
17661
  send: "code" | "link";
17659
17662
  authParams: {
17663
+ audience?: string | undefined;
17660
17664
  username?: string | undefined;
17661
17665
  state?: string | undefined;
17662
- audience?: string | undefined;
17663
17666
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17664
17667
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17665
17668
  scope?: string | undefined;
17666
17669
  organization?: string | undefined;
17667
17670
  nonce?: string | undefined;
17668
- redirect_uri?: string | undefined;
17669
17671
  act_as?: string | undefined;
17672
+ redirect_uri?: string | undefined;
17670
17673
  prompt?: string | undefined;
17671
17674
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17672
17675
  code_challenge?: string | undefined;
@@ -17693,16 +17696,16 @@ declare function init(config: AuthHeroConfig): {
17693
17696
  phone_number: string;
17694
17697
  send: "code" | "link";
17695
17698
  authParams: {
17699
+ audience?: string | undefined;
17696
17700
  username?: string | undefined;
17697
17701
  state?: string | undefined;
17698
- audience?: string | undefined;
17699
17702
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17700
17703
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17701
17704
  scope?: string | undefined;
17702
17705
  organization?: string | undefined;
17703
17706
  nonce?: string | undefined;
17704
- redirect_uri?: string | undefined;
17705
17707
  act_as?: string | undefined;
17708
+ redirect_uri?: string | undefined;
17706
17709
  prompt?: string | undefined;
17707
17710
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17708
17711
  code_challenge?: string | undefined;
@@ -19233,7 +19236,7 @@ declare function init(config: AuthHeroConfig): {
19233
19236
  } & {
19234
19237
  form: {
19235
19238
  username: string;
19236
- login_selection?: "code" | "password" | undefined;
19239
+ login_selection?: "password" | "code" | undefined;
19237
19240
  };
19238
19241
  };
19239
19242
  output: {};
@@ -19247,7 +19250,7 @@ declare function init(config: AuthHeroConfig): {
19247
19250
  } & {
19248
19251
  form: {
19249
19252
  username: string;
19250
- login_selection?: "code" | "password" | undefined;
19253
+ login_selection?: "password" | "code" | undefined;
19251
19254
  };
19252
19255
  };
19253
19256
  output: {};
@@ -19612,7 +19615,7 @@ declare function init(config: AuthHeroConfig): {
19612
19615
  $get: {
19613
19616
  input: {
19614
19617
  param: {
19615
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19618
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19616
19619
  };
19617
19620
  } & {
19618
19621
  query: {
@@ -19628,7 +19631,7 @@ declare function init(config: AuthHeroConfig): {
19628
19631
  } | {
19629
19632
  input: {
19630
19633
  param: {
19631
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19634
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19632
19635
  };
19633
19636
  } & {
19634
19637
  query: {
@@ -19644,7 +19647,7 @@ declare function init(config: AuthHeroConfig): {
19644
19647
  } | {
19645
19648
  input: {
19646
19649
  param: {
19647
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19650
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19648
19651
  };
19649
19652
  } & {
19650
19653
  query: {
@@ -19664,7 +19667,7 @@ declare function init(config: AuthHeroConfig): {
19664
19667
  $post: {
19665
19668
  input: {
19666
19669
  param: {
19667
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19670
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19668
19671
  };
19669
19672
  } & {
19670
19673
  query: {
@@ -19682,7 +19685,7 @@ declare function init(config: AuthHeroConfig): {
19682
19685
  } | {
19683
19686
  input: {
19684
19687
  param: {
19685
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19688
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19686
19689
  };
19687
19690
  } & {
19688
19691
  query: {