authhero 8.25.1 → 8.26.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 (41) hide show
  1. package/dist/authhero.cjs +249 -249
  2. package/dist/authhero.d.ts +149 -121
  3. package/dist/authhero.mjs +11147 -13195
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  6. package/dist/types/helpers/codes-cleanup.d.ts +28 -0
  7. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  8. package/dist/types/index.d.ts +120 -118
  9. package/dist/types/routes/auth-api/index.d.ts +29 -29
  10. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  11. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  12. package/dist/types/routes/auth-api/token.d.ts +10 -10
  13. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +9 -9
  17. package/dist/types/routes/management-api/clients.d.ts +14 -14
  18. package/dist/types/routes/management-api/connections.d.ts +15 -15
  19. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  20. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  21. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  22. package/dist/types/routes/management-api/index.d.ts +82 -82
  23. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  24. package/dist/types/routes/management-api/logs.d.ts +4 -4
  25. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  26. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  27. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  28. package/dist/types/routes/management-api/roles.d.ts +1 -1
  29. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  30. package/dist/types/routes/management-api/tenants.d.ts +3 -3
  31. package/dist/types/routes/management-api/themes.d.ts +6 -6
  32. package/dist/types/routes/management-api/users.d.ts +2 -2
  33. package/dist/types/routes/universal-login/common.d.ts +12 -12
  34. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  35. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  36. package/dist/types/routes/universal-login/index.d.ts +2 -2
  37. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  39. package/dist/types/types/IdToken.d.ts +4 -4
  40. package/dist/types/utils/jwks.d.ts +2 -2
  41. package/package.json +6 -6
@@ -15,7 +15,9 @@ export type { UserSessionCleanupParams } from "./helpers/user-session-cleanup";
15
15
  export { drainOutbox } from "./helpers/outbox-relay";
16
16
  export type { EventDestination } from "./helpers/outbox-relay";
17
17
  export { cleanupOutbox } from "./helpers/outbox-cleanup";
18
+ export { cleanupCodes } from "./helpers/codes-cleanup";
18
19
  export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
20
+ export type { CodesCleanupParams } from "./helpers/codes-cleanup";
19
21
  export { createDefaultDestinations } from "./helpers/default-destinations";
20
22
  export type { CreateDefaultDestinationsConfig } from "./helpers/default-destinations";
21
23
  export { provisionDefaultClients, isInteractiveClient, } from "./helpers/provision-tenant-clients";
@@ -74,8 +76,8 @@ export declare function init(config: AuthHeroConfig): {
74
76
  $get: {
75
77
  input: {
76
78
  query: {
77
- include_password_hashes?: "true" | "false" | undefined;
78
- gzip?: "true" | "false" | undefined;
79
+ include_password_hashes?: "false" | "true" | undefined;
80
+ gzip?: "false" | "true" | undefined;
79
81
  };
80
82
  } & {
81
83
  header: {
@@ -88,8 +90,8 @@ export declare function init(config: AuthHeroConfig): {
88
90
  } | {
89
91
  input: {
90
92
  query: {
91
- include_password_hashes?: "true" | "false" | undefined;
92
- gzip?: "true" | "false" | undefined;
93
+ include_password_hashes?: "false" | "true" | undefined;
94
+ gzip?: "false" | "true" | undefined;
93
95
  };
94
96
  } & {
95
97
  header: {
@@ -108,7 +110,7 @@ export declare function init(config: AuthHeroConfig): {
108
110
  $post: {
109
111
  input: {
110
112
  query: {
111
- include_password_hashes?: "true" | "false" | undefined;
113
+ include_password_hashes?: "false" | "true" | undefined;
112
114
  };
113
115
  } & {
114
116
  header: {
@@ -162,7 +164,7 @@ export declare function init(config: AuthHeroConfig): {
162
164
  };
163
165
  } & {
164
166
  json: {
165
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
167
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
166
168
  phone_number?: string | undefined;
167
169
  totp_secret?: string | undefined;
168
170
  credential_id?: string | undefined;
@@ -302,7 +304,7 @@ export declare function init(config: AuthHeroConfig): {
302
304
  };
303
305
  };
304
306
  output: {
305
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
307
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
306
308
  enabled: boolean;
307
309
  trial_expired?: boolean | undefined;
308
310
  }[];
@@ -457,7 +459,7 @@ export declare function init(config: AuthHeroConfig): {
457
459
  $get: {
458
460
  input: {
459
461
  param: {
460
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
462
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
461
463
  };
462
464
  } & {
463
465
  header: {
@@ -465,7 +467,7 @@ export declare function init(config: AuthHeroConfig): {
465
467
  };
466
468
  };
467
469
  output: {
468
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
470
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
469
471
  enabled: boolean;
470
472
  trial_expired?: boolean | undefined;
471
473
  };
@@ -478,7 +480,7 @@ export declare function init(config: AuthHeroConfig): {
478
480
  $put: {
479
481
  input: {
480
482
  param: {
481
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
483
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
482
484
  };
483
485
  } & {
484
486
  header: {
@@ -490,7 +492,7 @@ export declare function init(config: AuthHeroConfig): {
490
492
  };
491
493
  };
492
494
  output: {
493
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
495
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
494
496
  enabled: boolean;
495
497
  trial_expired?: boolean | undefined;
496
498
  };
@@ -1457,8 +1459,8 @@ export declare function init(config: AuthHeroConfig): {
1457
1459
  };
1458
1460
  } & {
1459
1461
  json: {
1460
- show_as_button?: boolean | undefined;
1461
1462
  assign_membership_on_login?: boolean | undefined;
1463
+ show_as_button?: boolean | undefined;
1462
1464
  is_signup_enabled?: boolean | undefined;
1463
1465
  };
1464
1466
  };
@@ -2029,9 +2031,9 @@ export declare function init(config: AuthHeroConfig): {
2029
2031
  };
2030
2032
  } & {
2031
2033
  query: {
2032
- from?: string | undefined;
2033
2034
  page?: string | undefined;
2034
2035
  include_totals?: string | undefined;
2036
+ from?: string | undefined;
2035
2037
  per_page?: string | undefined;
2036
2038
  take?: string | undefined;
2037
2039
  };
@@ -6983,7 +6985,7 @@ export declare function init(config: AuthHeroConfig): {
6983
6985
  };
6984
6986
  };
6985
6987
  output: {
6986
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6988
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
6987
6989
  language: string;
6988
6990
  }[];
6989
6991
  outputFormat: "json";
@@ -7021,7 +7023,7 @@ export declare function init(config: AuthHeroConfig): {
7021
7023
  $get: {
7022
7024
  input: {
7023
7025
  param: {
7024
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7026
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
7025
7027
  language: string;
7026
7028
  };
7027
7029
  } & {
@@ -7043,7 +7045,7 @@ export declare function init(config: AuthHeroConfig): {
7043
7045
  $put: {
7044
7046
  input: {
7045
7047
  param: {
7046
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7048
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
7047
7049
  language: string;
7048
7050
  };
7049
7051
  } & {
@@ -7067,7 +7069,7 @@ export declare function init(config: AuthHeroConfig): {
7067
7069
  $delete: {
7068
7070
  input: {
7069
7071
  param: {
7070
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7072
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
7071
7073
  language: string;
7072
7074
  };
7073
7075
  } & {
@@ -7159,7 +7161,7 @@ export declare function init(config: AuthHeroConfig): {
7159
7161
  active?: boolean | undefined;
7160
7162
  } | undefined;
7161
7163
  signup?: {
7162
- status?: "optional" | "required" | "disabled" | undefined;
7164
+ status?: "required" | "optional" | "disabled" | undefined;
7163
7165
  verification?: {
7164
7166
  active?: boolean | undefined;
7165
7167
  } | undefined;
@@ -7176,7 +7178,7 @@ export declare function init(config: AuthHeroConfig): {
7176
7178
  active?: boolean | undefined;
7177
7179
  } | undefined;
7178
7180
  signup?: {
7179
- status?: "optional" | "required" | "disabled" | undefined;
7181
+ status?: "required" | "optional" | "disabled" | undefined;
7180
7182
  } | undefined;
7181
7183
  validation?: {
7182
7184
  max_length?: number | undefined;
@@ -7193,7 +7195,7 @@ export declare function init(config: AuthHeroConfig): {
7193
7195
  active?: boolean | undefined;
7194
7196
  } | undefined;
7195
7197
  signup?: {
7196
- status?: "optional" | "required" | "disabled" | undefined;
7198
+ status?: "required" | "optional" | "disabled" | undefined;
7197
7199
  } | undefined;
7198
7200
  } | undefined;
7199
7201
  } | undefined;
@@ -7293,7 +7295,7 @@ export declare function init(config: AuthHeroConfig): {
7293
7295
  active?: boolean | undefined;
7294
7296
  } | undefined;
7295
7297
  signup?: {
7296
- status?: "optional" | "required" | "disabled" | undefined;
7298
+ status?: "required" | "optional" | "disabled" | undefined;
7297
7299
  verification?: {
7298
7300
  active?: boolean | undefined;
7299
7301
  } | undefined;
@@ -7310,7 +7312,7 @@ export declare function init(config: AuthHeroConfig): {
7310
7312
  active?: boolean | undefined;
7311
7313
  } | undefined;
7312
7314
  signup?: {
7313
- status?: "optional" | "required" | "disabled" | undefined;
7315
+ status?: "required" | "optional" | "disabled" | undefined;
7314
7316
  } | undefined;
7315
7317
  validation?: {
7316
7318
  max_length?: number | undefined;
@@ -7327,7 +7329,7 @@ export declare function init(config: AuthHeroConfig): {
7327
7329
  active?: boolean | undefined;
7328
7330
  } | undefined;
7329
7331
  signup?: {
7330
- status?: "optional" | "required" | "disabled" | undefined;
7332
+ status?: "required" | "optional" | "disabled" | undefined;
7331
7333
  } | undefined;
7332
7334
  } | undefined;
7333
7335
  } | undefined;
@@ -7443,7 +7445,7 @@ export declare function init(config: AuthHeroConfig): {
7443
7445
  active?: boolean | undefined;
7444
7446
  } | undefined;
7445
7447
  signup?: {
7446
- status?: "optional" | "required" | "disabled" | undefined;
7448
+ status?: "required" | "optional" | "disabled" | undefined;
7447
7449
  verification?: {
7448
7450
  active?: boolean | undefined;
7449
7451
  } | undefined;
@@ -7460,7 +7462,7 @@ export declare function init(config: AuthHeroConfig): {
7460
7462
  active?: boolean | undefined;
7461
7463
  } | undefined;
7462
7464
  signup?: {
7463
- status?: "optional" | "required" | "disabled" | undefined;
7465
+ status?: "required" | "optional" | "disabled" | undefined;
7464
7466
  } | undefined;
7465
7467
  validation?: {
7466
7468
  max_length?: number | undefined;
@@ -7477,7 +7479,7 @@ export declare function init(config: AuthHeroConfig): {
7477
7479
  active?: boolean | undefined;
7478
7480
  } | undefined;
7479
7481
  signup?: {
7480
- status?: "optional" | "required" | "disabled" | undefined;
7482
+ status?: "required" | "optional" | "disabled" | undefined;
7481
7483
  } | undefined;
7482
7484
  } | undefined;
7483
7485
  } | undefined;
@@ -7622,7 +7624,7 @@ export declare function init(config: AuthHeroConfig): {
7622
7624
  active?: boolean | undefined;
7623
7625
  } | undefined;
7624
7626
  signup?: {
7625
- status?: "optional" | "required" | "disabled" | undefined;
7627
+ status?: "required" | "optional" | "disabled" | undefined;
7626
7628
  verification?: {
7627
7629
  active?: boolean | undefined;
7628
7630
  } | undefined;
@@ -7639,7 +7641,7 @@ export declare function init(config: AuthHeroConfig): {
7639
7641
  active?: boolean | undefined;
7640
7642
  } | undefined;
7641
7643
  signup?: {
7642
- status?: "optional" | "required" | "disabled" | undefined;
7644
+ status?: "required" | "optional" | "disabled" | undefined;
7643
7645
  } | undefined;
7644
7646
  validation?: {
7645
7647
  max_length?: number | undefined;
@@ -7656,7 +7658,7 @@ export declare function init(config: AuthHeroConfig): {
7656
7658
  active?: boolean | undefined;
7657
7659
  } | undefined;
7658
7660
  signup?: {
7659
- status?: "optional" | "required" | "disabled" | undefined;
7661
+ status?: "required" | "optional" | "disabled" | undefined;
7660
7662
  } | undefined;
7661
7663
  } | undefined;
7662
7664
  } | undefined;
@@ -7780,7 +7782,7 @@ export declare function init(config: AuthHeroConfig): {
7780
7782
  active?: boolean | undefined;
7781
7783
  } | undefined;
7782
7784
  signup?: {
7783
- status?: "optional" | "required" | "disabled" | undefined;
7785
+ status?: "required" | "optional" | "disabled" | undefined;
7784
7786
  verification?: {
7785
7787
  active?: boolean | undefined;
7786
7788
  } | undefined;
@@ -7797,7 +7799,7 @@ export declare function init(config: AuthHeroConfig): {
7797
7799
  active?: boolean | undefined;
7798
7800
  } | undefined;
7799
7801
  signup?: {
7800
- status?: "optional" | "required" | "disabled" | undefined;
7802
+ status?: "required" | "optional" | "disabled" | undefined;
7801
7803
  } | undefined;
7802
7804
  validation?: {
7803
7805
  max_length?: number | undefined;
@@ -7814,7 +7816,7 @@ export declare function init(config: AuthHeroConfig): {
7814
7816
  active?: boolean | undefined;
7815
7817
  } | undefined;
7816
7818
  signup?: {
7817
- status?: "optional" | "required" | "disabled" | undefined;
7819
+ status?: "required" | "optional" | "disabled" | undefined;
7818
7820
  } | undefined;
7819
7821
  } | undefined;
7820
7822
  } | undefined;
@@ -7966,7 +7968,7 @@ export declare function init(config: AuthHeroConfig): {
7966
7968
  tenant_id: string;
7967
7969
  created_at: string;
7968
7970
  updated_at: string;
7969
- deploymentStatus: "failed" | "deployed" | "not_required";
7971
+ deploymentStatus: "deployed" | "failed" | "not_required";
7970
7972
  secrets?: {
7971
7973
  [x: string]: string;
7972
7974
  } | undefined;
@@ -8056,7 +8058,7 @@ export declare function init(config: AuthHeroConfig): {
8056
8058
  tenant_id: string;
8057
8059
  created_at: string;
8058
8060
  updated_at: string;
8059
- deploymentStatus: "failed" | "deployed" | "not_required";
8061
+ deploymentStatus: "deployed" | "failed" | "not_required";
8060
8062
  secrets?: {
8061
8063
  [x: string]: string;
8062
8064
  } | undefined;
@@ -8880,7 +8882,7 @@ export declare function init(config: AuthHeroConfig): {
8880
8882
  created_at: string;
8881
8883
  updated_at: string;
8882
8884
  name: string;
8883
- provider: "auth0" | "oidc" | "okta" | "cognito";
8885
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8884
8886
  connection: string;
8885
8887
  enabled: boolean;
8886
8888
  credentials: {
@@ -8912,7 +8914,7 @@ export declare function init(config: AuthHeroConfig): {
8912
8914
  created_at: string;
8913
8915
  updated_at: string;
8914
8916
  name: string;
8915
- provider: "auth0" | "oidc" | "okta" | "cognito";
8917
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8916
8918
  connection: string;
8917
8919
  enabled: boolean;
8918
8920
  credentials: {
@@ -8938,7 +8940,7 @@ export declare function init(config: AuthHeroConfig): {
8938
8940
  } & {
8939
8941
  json: {
8940
8942
  name: string;
8941
- provider: "auth0" | "oidc" | "okta" | "cognito";
8943
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8942
8944
  connection: string;
8943
8945
  credentials: {
8944
8946
  domain: string;
@@ -8955,7 +8957,7 @@ export declare function init(config: AuthHeroConfig): {
8955
8957
  created_at: string;
8956
8958
  updated_at: string;
8957
8959
  name: string;
8958
- provider: "auth0" | "oidc" | "okta" | "cognito";
8960
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8959
8961
  connection: string;
8960
8962
  enabled: boolean;
8961
8963
  credentials: {
@@ -8986,7 +8988,7 @@ export declare function init(config: AuthHeroConfig): {
8986
8988
  json: {
8987
8989
  id?: string | undefined;
8988
8990
  name?: string | undefined;
8989
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8991
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8990
8992
  connection?: string | undefined;
8991
8993
  enabled?: boolean | undefined;
8992
8994
  credentials?: {
@@ -9002,7 +9004,7 @@ export declare function init(config: AuthHeroConfig): {
9002
9004
  created_at: string;
9003
9005
  updated_at: string;
9004
9006
  name: string;
9005
- provider: "auth0" | "oidc" | "okta" | "cognito";
9007
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9006
9008
  connection: string;
9007
9009
  enabled: boolean;
9008
9010
  credentials: {
@@ -9050,7 +9052,7 @@ export declare function init(config: AuthHeroConfig): {
9050
9052
  [x: string]: import("hono/utils/types").JSONValue;
9051
9053
  };
9052
9054
  id: string;
9053
- status: "active" | "suspended" | "paused";
9055
+ status: "suspended" | "active" | "paused";
9054
9056
  filters?: {
9055
9057
  type: string;
9056
9058
  name: string;
@@ -9082,7 +9084,7 @@ export declare function init(config: AuthHeroConfig): {
9082
9084
  [x: string]: import("hono/utils/types").JSONValue;
9083
9085
  };
9084
9086
  id: string;
9085
- status: "active" | "suspended" | "paused";
9087
+ status: "suspended" | "active" | "paused";
9086
9088
  filters?: {
9087
9089
  type: string;
9088
9090
  name: string;
@@ -9107,7 +9109,7 @@ export declare function init(config: AuthHeroConfig): {
9107
9109
  name: string;
9108
9110
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
9109
9111
  sink: Record<string, unknown>;
9110
- status?: "active" | "suspended" | "paused" | undefined;
9112
+ status?: "suspended" | "active" | "paused" | undefined;
9111
9113
  filters?: {
9112
9114
  type: string;
9113
9115
  name: string;
@@ -9122,7 +9124,7 @@ export declare function init(config: AuthHeroConfig): {
9122
9124
  [x: string]: import("hono/utils/types").JSONValue;
9123
9125
  };
9124
9126
  id: string;
9125
- status: "active" | "suspended" | "paused";
9127
+ status: "suspended" | "active" | "paused";
9126
9128
  filters?: {
9127
9129
  type: string;
9128
9130
  name: string;
@@ -9157,7 +9159,7 @@ export declare function init(config: AuthHeroConfig): {
9157
9159
  }[] | undefined;
9158
9160
  isPriority?: boolean | undefined;
9159
9161
  id?: string | undefined;
9160
- status?: "active" | "suspended" | "paused" | undefined;
9162
+ status?: "suspended" | "active" | "paused" | undefined;
9161
9163
  created_at?: string | undefined;
9162
9164
  updated_at?: string | undefined;
9163
9165
  };
@@ -9169,7 +9171,7 @@ export declare function init(config: AuthHeroConfig): {
9169
9171
  [x: string]: import("hono/utils/types").JSONValue;
9170
9172
  };
9171
9173
  id: string;
9172
- status: "active" | "suspended" | "paused";
9174
+ status: "suspended" | "active" | "paused";
9173
9175
  filters?: {
9174
9176
  type: string;
9175
9177
  name: string;
@@ -9220,7 +9222,7 @@ export declare function init(config: AuthHeroConfig): {
9220
9222
  };
9221
9223
  };
9222
9224
  output: {
9223
- type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9225
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9224
9226
  date: string;
9225
9227
  isMobile: boolean;
9226
9228
  log_id: string;
@@ -9259,7 +9261,7 @@ export declare function init(config: AuthHeroConfig): {
9259
9261
  limit: number;
9260
9262
  length: number;
9261
9263
  logs: {
9262
- type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9264
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9263
9265
  date: string;
9264
9266
  isMobile: boolean;
9265
9267
  log_id: string;
@@ -9298,7 +9300,7 @@ export declare function init(config: AuthHeroConfig): {
9298
9300
  next?: string | undefined;
9299
9301
  } | {
9300
9302
  logs: {
9301
- type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9303
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9302
9304
  date: string;
9303
9305
  isMobile: boolean;
9304
9306
  log_id: string;
@@ -9352,7 +9354,7 @@ export declare function init(config: AuthHeroConfig): {
9352
9354
  };
9353
9355
  };
9354
9356
  output: {
9355
- type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9357
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9356
9358
  date: string;
9357
9359
  isMobile: boolean;
9358
9360
  log_id: string;
@@ -9763,7 +9765,7 @@ export declare function init(config: AuthHeroConfig): {
9763
9765
  addons?: {
9764
9766
  [x: string]: any;
9765
9767
  } | undefined;
9766
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9768
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9767
9769
  client_metadata?: {
9768
9770
  [x: string]: string;
9769
9771
  } | undefined;
@@ -9865,7 +9867,7 @@ export declare function init(config: AuthHeroConfig): {
9865
9867
  addons?: {
9866
9868
  [x: string]: any;
9867
9869
  } | undefined;
9868
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9870
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9869
9871
  client_metadata?: {
9870
9872
  [x: string]: string;
9871
9873
  } | undefined;
@@ -9967,7 +9969,7 @@ export declare function init(config: AuthHeroConfig): {
9967
9969
  addons?: {
9968
9970
  [x: string]: any;
9969
9971
  } | undefined;
9970
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9972
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9971
9973
  client_metadata?: {
9972
9974
  [x: string]: string;
9973
9975
  } | undefined;
@@ -10084,7 +10086,7 @@ export declare function init(config: AuthHeroConfig): {
10084
10086
  addons?: {
10085
10087
  [x: string]: any;
10086
10088
  } | undefined;
10087
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10089
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10088
10090
  client_metadata?: {
10089
10091
  [x: string]: string;
10090
10092
  } | undefined;
@@ -10202,7 +10204,7 @@ export declare function init(config: AuthHeroConfig): {
10202
10204
  custom_login_page_preview?: string | undefined;
10203
10205
  form_template?: string | undefined;
10204
10206
  addons?: Record<string, any> | undefined;
10205
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10207
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10206
10208
  client_metadata?: Record<string, string> | undefined;
10207
10209
  hide_sign_up_disabled_error?: boolean | undefined;
10208
10210
  mobile?: Record<string, any> | undefined;
@@ -10288,7 +10290,7 @@ export declare function init(config: AuthHeroConfig): {
10288
10290
  addons?: {
10289
10291
  [x: string]: any;
10290
10292
  } | undefined;
10291
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10293
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10292
10294
  client_metadata?: {
10293
10295
  [x: string]: string;
10294
10296
  } | undefined;
@@ -10385,7 +10387,7 @@ export declare function init(config: AuthHeroConfig): {
10385
10387
  custom_login_page_preview?: string | undefined;
10386
10388
  form_template?: string | undefined;
10387
10389
  addons?: Record<string, any> | undefined;
10388
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10390
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10389
10391
  client_metadata?: Record<string, string> | undefined;
10390
10392
  hide_sign_up_disabled_error?: boolean | undefined;
10391
10393
  mobile?: Record<string, any> | undefined;
@@ -10471,7 +10473,7 @@ export declare function init(config: AuthHeroConfig): {
10471
10473
  addons?: {
10472
10474
  [x: string]: any;
10473
10475
  } | undefined;
10474
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10476
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10475
10477
  client_metadata?: {
10476
10478
  [x: string]: string;
10477
10479
  } | undefined;
@@ -10593,7 +10595,7 @@ export declare function init(config: AuthHeroConfig): {
10593
10595
  active?: boolean | undefined;
10594
10596
  } | undefined;
10595
10597
  signup?: {
10596
- status?: "optional" | "required" | "disabled" | undefined;
10598
+ status?: "required" | "optional" | "disabled" | undefined;
10597
10599
  verification?: {
10598
10600
  active?: boolean | undefined;
10599
10601
  } | undefined;
@@ -10610,7 +10612,7 @@ export declare function init(config: AuthHeroConfig): {
10610
10612
  active?: boolean | undefined;
10611
10613
  } | undefined;
10612
10614
  signup?: {
10613
- status?: "optional" | "required" | "disabled" | undefined;
10615
+ status?: "required" | "optional" | "disabled" | undefined;
10614
10616
  } | undefined;
10615
10617
  validation?: {
10616
10618
  max_length?: number | undefined;
@@ -10627,7 +10629,7 @@ export declare function init(config: AuthHeroConfig): {
10627
10629
  active?: boolean | undefined;
10628
10630
  } | undefined;
10629
10631
  signup?: {
10630
- status?: "optional" | "required" | "disabled" | undefined;
10632
+ status?: "required" | "optional" | "disabled" | undefined;
10631
10633
  } | undefined;
10632
10634
  } | undefined;
10633
10635
  } | undefined;
@@ -10747,7 +10749,7 @@ export declare function init(config: AuthHeroConfig): {
10747
10749
  active?: boolean | undefined;
10748
10750
  } | undefined;
10749
10751
  signup?: {
10750
- status?: "optional" | "required" | "disabled" | undefined;
10752
+ status?: "required" | "optional" | "disabled" | undefined;
10751
10753
  verification?: {
10752
10754
  active?: boolean | undefined;
10753
10755
  } | undefined;
@@ -10764,7 +10766,7 @@ export declare function init(config: AuthHeroConfig): {
10764
10766
  active?: boolean | undefined;
10765
10767
  } | undefined;
10766
10768
  signup?: {
10767
- status?: "optional" | "required" | "disabled" | undefined;
10769
+ status?: "required" | "optional" | "disabled" | undefined;
10768
10770
  } | undefined;
10769
10771
  validation?: {
10770
10772
  max_length?: number | undefined;
@@ -10781,7 +10783,7 @@ export declare function init(config: AuthHeroConfig): {
10781
10783
  active?: boolean | undefined;
10782
10784
  } | undefined;
10783
10785
  signup?: {
10784
- status?: "optional" | "required" | "disabled" | undefined;
10786
+ status?: "required" | "optional" | "disabled" | undefined;
10785
10787
  } | undefined;
10786
10788
  } | undefined;
10787
10789
  } | undefined;
@@ -11807,7 +11809,7 @@ export declare function init(config: AuthHeroConfig): {
11807
11809
  };
11808
11810
  };
11809
11811
  output: {
11810
- type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11812
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11811
11813
  date: string;
11812
11814
  isMobile: boolean;
11813
11815
  log_id: string;
@@ -11846,7 +11848,7 @@ export declare function init(config: AuthHeroConfig): {
11846
11848
  limit: number;
11847
11849
  length: number;
11848
11850
  logs: {
11849
- type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11851
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11850
11852
  date: string;
11851
11853
  isMobile: boolean;
11852
11854
  log_id: string;
@@ -12690,7 +12692,7 @@ export declare function init(config: AuthHeroConfig): {
12690
12692
  type: "auth0_managed_certs" | "self_managed_certs";
12691
12693
  custom_domain_id: string;
12692
12694
  primary: boolean;
12693
- status: "disabled" | "pending" | "ready" | "pending_verification";
12695
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12694
12696
  verification_method?: "txt" | undefined;
12695
12697
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12696
12698
  domain_metadata?: {
@@ -12731,7 +12733,7 @@ export declare function init(config: AuthHeroConfig): {
12731
12733
  type: "auth0_managed_certs" | "self_managed_certs";
12732
12734
  custom_domain_id: string;
12733
12735
  primary: boolean;
12734
- status: "disabled" | "pending" | "ready" | "pending_verification";
12736
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12735
12737
  verification_method?: "txt" | undefined;
12736
12738
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12737
12739
  domain_metadata?: {
@@ -12795,7 +12797,7 @@ export declare function init(config: AuthHeroConfig): {
12795
12797
  type: "auth0_managed_certs" | "self_managed_certs";
12796
12798
  custom_domain_id: string;
12797
12799
  primary: boolean;
12798
- status: "disabled" | "pending" | "ready" | "pending_verification";
12800
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12799
12801
  verification_method?: "txt" | undefined;
12800
12802
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12801
12803
  domain_metadata?: {
@@ -12842,7 +12844,7 @@ export declare function init(config: AuthHeroConfig): {
12842
12844
  type: "auth0_managed_certs" | "self_managed_certs";
12843
12845
  custom_domain_id: string;
12844
12846
  primary: boolean;
12845
- status: "disabled" | "pending" | "ready" | "pending_verification";
12847
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12846
12848
  verification_method?: "txt" | undefined;
12847
12849
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12848
12850
  domain_metadata?: {
@@ -12888,7 +12890,7 @@ export declare function init(config: AuthHeroConfig): {
12888
12890
  type: "auth0_managed_certs" | "self_managed_certs";
12889
12891
  custom_domain_id: string;
12890
12892
  primary: boolean;
12891
- status: "disabled" | "pending" | "ready" | "pending_verification";
12893
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12892
12894
  verification_method?: "txt" | undefined;
12893
12895
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12894
12896
  domain_metadata?: {
@@ -12929,7 +12931,7 @@ export declare function init(config: AuthHeroConfig): {
12929
12931
  type: "auth0_managed_certs" | "self_managed_certs";
12930
12932
  custom_domain_id: string;
12931
12933
  primary: boolean;
12932
- status: "disabled" | "pending" | "ready" | "pending_verification";
12934
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12933
12935
  verification_method?: "txt" | undefined;
12934
12936
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12935
12937
  domain_metadata?: {
@@ -13028,12 +13030,12 @@ export declare function init(config: AuthHeroConfig): {
13028
13030
  background_color: string;
13029
13031
  background_image_url: string;
13030
13032
  page_layout: "center" | "left" | "right";
13031
- logo_placement?: "none" | "widget" | "chip" | undefined;
13033
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13032
13034
  };
13033
13035
  widget: {
13034
13036
  header_text_alignment: "center" | "left" | "right";
13035
13037
  logo_height: number;
13036
- logo_position: "none" | "center" | "left" | "right";
13038
+ logo_position: "center" | "left" | "right" | "none";
13037
13039
  logo_url: string;
13038
13040
  social_buttons_layout: "bottom" | "top";
13039
13041
  };
@@ -13118,12 +13120,12 @@ export declare function init(config: AuthHeroConfig): {
13118
13120
  background_color: string;
13119
13121
  background_image_url: string;
13120
13122
  page_layout: "center" | "left" | "right";
13121
- logo_placement?: "none" | "widget" | "chip" | undefined;
13123
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13122
13124
  };
13123
13125
  widget: {
13124
13126
  header_text_alignment: "center" | "left" | "right";
13125
13127
  logo_height: number;
13126
- logo_position: "none" | "center" | "left" | "right";
13128
+ logo_position: "center" | "left" | "right" | "none";
13127
13129
  logo_url: string;
13128
13130
  social_buttons_layout: "bottom" | "top";
13129
13131
  };
@@ -13197,12 +13199,12 @@ export declare function init(config: AuthHeroConfig): {
13197
13199
  background_color: string;
13198
13200
  background_image_url: string;
13199
13201
  page_layout: "center" | "left" | "right";
13200
- logo_placement?: "none" | "widget" | "chip" | undefined;
13202
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13201
13203
  };
13202
13204
  widget: {
13203
13205
  header_text_alignment: "center" | "left" | "right";
13204
13206
  logo_height: number;
13205
- logo_position: "none" | "center" | "left" | "right";
13207
+ logo_position: "center" | "left" | "right" | "none";
13206
13208
  logo_url: string;
13207
13209
  social_buttons_layout: "bottom" | "top";
13208
13210
  };
@@ -13359,7 +13361,7 @@ export declare function init(config: AuthHeroConfig): {
13359
13361
  } & {
13360
13362
  json: {
13361
13363
  body?: string | undefined;
13362
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
13364
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
13363
13365
  branding?: {
13364
13366
  colors?: {
13365
13367
  primary: string;
@@ -13445,12 +13447,12 @@ export declare function init(config: AuthHeroConfig): {
13445
13447
  background_color: string;
13446
13448
  background_image_url: string;
13447
13449
  page_layout: "center" | "left" | "right";
13448
- logo_placement?: "none" | "widget" | "chip" | undefined;
13450
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13449
13451
  } | undefined;
13450
13452
  widget?: {
13451
13453
  header_text_alignment: "center" | "left" | "right";
13452
13454
  logo_height: number;
13453
- logo_position: "none" | "center" | "left" | "right";
13455
+ logo_position: "center" | "left" | "right" | "none";
13454
13456
  logo_url: string;
13455
13457
  social_buttons_layout: "bottom" | "top";
13456
13458
  } | undefined;
@@ -13603,7 +13605,7 @@ export declare function init(config: AuthHeroConfig): {
13603
13605
  output: {
13604
13606
  id: string;
13605
13607
  trigger_id: string;
13606
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13608
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
13607
13609
  results: {
13608
13610
  action_name: string;
13609
13611
  error: {
@@ -14630,7 +14632,7 @@ export declare function init(config: AuthHeroConfig): {
14630
14632
  scope?: string | undefined;
14631
14633
  grant_types?: string[] | undefined;
14632
14634
  response_types?: string[] | undefined;
14633
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14635
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14634
14636
  jwks_uri?: string | undefined;
14635
14637
  jwks?: Record<string, unknown> | undefined;
14636
14638
  software_id?: string | undefined;
@@ -14719,7 +14721,7 @@ export declare function init(config: AuthHeroConfig): {
14719
14721
  scope?: string | undefined;
14720
14722
  grant_types?: string[] | undefined;
14721
14723
  response_types?: string[] | undefined;
14722
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14724
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14723
14725
  jwks_uri?: string | undefined;
14724
14726
  jwks?: Record<string, unknown> | undefined;
14725
14727
  software_id?: string | undefined;
@@ -15065,20 +15067,20 @@ export declare function init(config: AuthHeroConfig): {
15065
15067
  email: string;
15066
15068
  send: "code" | "link";
15067
15069
  authParams: {
15070
+ audience?: string | undefined;
15071
+ username?: string | undefined;
15072
+ scope?: string | undefined;
15068
15073
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15069
15074
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15070
- scope?: string | undefined;
15071
- username?: string | undefined;
15072
- audience?: string | undefined;
15073
- organization?: string | undefined;
15074
15075
  state?: string | undefined;
15075
- nonce?: string | undefined;
15076
- act_as?: string | undefined;
15077
- redirect_uri?: string | undefined;
15078
15076
  prompt?: string | undefined;
15077
+ ui_locales?: string | undefined;
15078
+ organization?: string | undefined;
15079
+ redirect_uri?: string | undefined;
15080
+ act_as?: string | undefined;
15081
+ nonce?: string | undefined;
15079
15082
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15080
15083
  code_challenge?: string | undefined;
15081
- ui_locales?: string | undefined;
15082
15084
  max_age?: number | undefined;
15083
15085
  acr_values?: string | undefined;
15084
15086
  claims?: {
@@ -15101,20 +15103,20 @@ export declare function init(config: AuthHeroConfig): {
15101
15103
  phone_number: string;
15102
15104
  send: "code" | "link";
15103
15105
  authParams: {
15106
+ audience?: string | undefined;
15107
+ username?: string | undefined;
15108
+ scope?: string | undefined;
15104
15109
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15105
15110
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15106
- scope?: string | undefined;
15107
- username?: string | undefined;
15108
- audience?: string | undefined;
15109
- organization?: string | undefined;
15110
15111
  state?: string | undefined;
15111
- nonce?: string | undefined;
15112
- act_as?: string | undefined;
15113
- redirect_uri?: string | undefined;
15114
15112
  prompt?: string | undefined;
15113
+ ui_locales?: string | undefined;
15114
+ organization?: string | undefined;
15115
+ redirect_uri?: string | undefined;
15116
+ act_as?: string | undefined;
15117
+ nonce?: string | undefined;
15115
15118
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15116
15119
  code_challenge?: string | undefined;
15117
- ui_locales?: string | undefined;
15118
15120
  max_age?: number | undefined;
15119
15121
  acr_values?: string | undefined;
15120
15122
  claims?: {
@@ -15343,7 +15345,7 @@ export declare function init(config: AuthHeroConfig): {
15343
15345
  client_id: string;
15344
15346
  username: string;
15345
15347
  otp: string;
15346
- realm: "email" | "sms";
15348
+ realm: "sms" | "email";
15347
15349
  } | {
15348
15350
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15349
15351
  subject_token: string;
@@ -15390,7 +15392,7 @@ export declare function init(config: AuthHeroConfig): {
15390
15392
  client_id: string;
15391
15393
  username: string;
15392
15394
  otp: string;
15393
- realm: "email" | "sms";
15395
+ realm: "sms" | "email";
15394
15396
  } | {
15395
15397
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15396
15398
  subject_token: string;
@@ -15442,7 +15444,7 @@ export declare function init(config: AuthHeroConfig): {
15442
15444
  client_id: string;
15443
15445
  username: string;
15444
15446
  otp: string;
15445
- realm: "email" | "sms";
15447
+ realm: "sms" | "email";
15446
15448
  } | {
15447
15449
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15448
15450
  subject_token: string;
@@ -15489,7 +15491,7 @@ export declare function init(config: AuthHeroConfig): {
15489
15491
  client_id: string;
15490
15492
  username: string;
15491
15493
  otp: string;
15492
- realm: "email" | "sms";
15494
+ realm: "sms" | "email";
15493
15495
  } | {
15494
15496
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15495
15497
  subject_token: string;
@@ -15549,7 +15551,7 @@ export declare function init(config: AuthHeroConfig): {
15549
15551
  client_id: string;
15550
15552
  username: string;
15551
15553
  otp: string;
15552
- realm: "email" | "sms";
15554
+ realm: "sms" | "email";
15553
15555
  } | {
15554
15556
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15555
15557
  subject_token: string;
@@ -15596,7 +15598,7 @@ export declare function init(config: AuthHeroConfig): {
15596
15598
  client_id: string;
15597
15599
  username: string;
15598
15600
  otp: string;
15599
- realm: "email" | "sms";
15601
+ realm: "sms" | "email";
15600
15602
  } | {
15601
15603
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15602
15604
  subject_token: string;
@@ -15651,7 +15653,7 @@ export declare function init(config: AuthHeroConfig): {
15651
15653
  client_id: string;
15652
15654
  username: string;
15653
15655
  otp: string;
15654
- realm: "email" | "sms";
15656
+ realm: "sms" | "email";
15655
15657
  } | {
15656
15658
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15657
15659
  subject_token: string;
@@ -15698,7 +15700,7 @@ export declare function init(config: AuthHeroConfig): {
15698
15700
  client_id: string;
15699
15701
  username: string;
15700
15702
  otp: string;
15701
- realm: "email" | "sms";
15703
+ realm: "sms" | "email";
15702
15704
  } | {
15703
15705
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15704
15706
  subject_token: string;
@@ -15753,7 +15755,7 @@ export declare function init(config: AuthHeroConfig): {
15753
15755
  client_id: string;
15754
15756
  username: string;
15755
15757
  otp: string;
15756
- realm: "email" | "sms";
15758
+ realm: "sms" | "email";
15757
15759
  } | {
15758
15760
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15759
15761
  subject_token: string;
@@ -15800,7 +15802,7 @@ export declare function init(config: AuthHeroConfig): {
15800
15802
  client_id: string;
15801
15803
  username: string;
15802
15804
  otp: string;
15803
- realm: "email" | "sms";
15805
+ realm: "sms" | "email";
15804
15806
  } | {
15805
15807
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15806
15808
  subject_token: string;
@@ -15829,7 +15831,7 @@ export declare function init(config: AuthHeroConfig): {
15829
15831
  output: {
15830
15832
  keys: {
15831
15833
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
15832
- kty: "RSA" | "EC" | "oct";
15834
+ kty: "EC" | "RSA" | "oct";
15833
15835
  kid?: string | undefined;
15834
15836
  use?: "sig" | "enc" | undefined;
15835
15837
  n?: string | undefined;
@@ -16645,7 +16647,7 @@ export declare function init(config: AuthHeroConfig): {
16645
16647
  } & {
16646
16648
  form: {
16647
16649
  username: string;
16648
- login_selection?: "code" | "password" | undefined;
16650
+ login_selection?: "password" | "code" | undefined;
16649
16651
  };
16650
16652
  };
16651
16653
  output: {};
@@ -16659,7 +16661,7 @@ export declare function init(config: AuthHeroConfig): {
16659
16661
  } & {
16660
16662
  form: {
16661
16663
  username: string;
16662
- login_selection?: "code" | "password" | undefined;
16664
+ login_selection?: "password" | "code" | undefined;
16663
16665
  };
16664
16666
  };
16665
16667
  output: {};
@@ -17024,7 +17026,7 @@ export declare function init(config: AuthHeroConfig): {
17024
17026
  $get: {
17025
17027
  input: {
17026
17028
  param: {
17027
- screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
17029
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17028
17030
  };
17029
17031
  } & {
17030
17032
  query: {
@@ -17040,7 +17042,7 @@ export declare function init(config: AuthHeroConfig): {
17040
17042
  } | {
17041
17043
  input: {
17042
17044
  param: {
17043
- screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
17045
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17044
17046
  };
17045
17047
  } & {
17046
17048
  query: {
@@ -17056,7 +17058,7 @@ export declare function init(config: AuthHeroConfig): {
17056
17058
  } | {
17057
17059
  input: {
17058
17060
  param: {
17059
- screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
17061
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17060
17062
  };
17061
17063
  } & {
17062
17064
  query: {
@@ -17076,7 +17078,7 @@ export declare function init(config: AuthHeroConfig): {
17076
17078
  $post: {
17077
17079
  input: {
17078
17080
  param: {
17079
- 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";
17081
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17080
17082
  };
17081
17083
  } & {
17082
17084
  query: {
@@ -17094,7 +17096,7 @@ export declare function init(config: AuthHeroConfig): {
17094
17096
  } | {
17095
17097
  input: {
17096
17098
  param: {
17097
- 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";
17099
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17098
17100
  };
17099
17101
  } & {
17100
17102
  query: {