authhero 8.26.1 → 9.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/LICENSE +661 -21
  2. package/dist/assets/u/js/client.js +2 -2
  3. package/dist/assets/u/widget/index.esm.js +1 -1
  4. package/dist/authhero.cjs +265 -251
  5. package/dist/authhero.d.ts +257 -110
  6. package/dist/authhero.mjs +24690 -17997
  7. package/dist/client.js +2 -2
  8. package/dist/tsconfig.types.tsbuildinfo +1 -1
  9. package/dist/types/authentication-flows/passwordless.d.ts +2 -2
  10. package/dist/types/client/client-bundle.d.ts +1 -1
  11. package/dist/types/components/stories/IdentifierPage.stories.d.ts +2 -0
  12. package/dist/types/helpers/codes-cleanup.d.ts +4 -4
  13. package/dist/types/helpers/link-candidates.d.ts +28 -0
  14. package/dist/types/helpers/logging.d.ts +8 -0
  15. package/dist/types/helpers/run-retention.d.ts +86 -0
  16. package/dist/types/helpers/scopes-permissions.d.ts +18 -0
  17. package/dist/types/helpers/signing-keys.d.ts +36 -0
  18. package/dist/types/helpers/users.d.ts +43 -0
  19. package/dist/types/hooks/codehooks.d.ts +9 -1
  20. package/dist/types/hooks/helpers/post-login-account-linking.d.ts +52 -0
  21. package/dist/types/hooks/pre-defined/account-linking.d.ts +20 -0
  22. package/dist/types/index.d.ts +107 -104
  23. package/dist/types/routes/auth-api/index.d.ts +10 -10
  24. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  25. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  26. package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
  27. package/dist/types/routes/management-api/actions.d.ts +1 -1
  28. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  29. package/dist/types/routes/management-api/branding.d.ts +1 -1
  30. package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
  31. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  32. package/dist/types/routes/management-api/failed-events.d.ts +2 -1
  33. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  34. package/dist/types/routes/management-api/index.d.ts +86 -85
  35. package/dist/types/routes/management-api/logs.d.ts +4 -4
  36. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  37. package/dist/types/routes/management-api/organizations.d.ts +7 -7
  38. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  39. package/dist/types/routes/management-api/roles.d.ts +1 -1
  40. package/dist/types/routes/management-api/tenant-operations.d.ts +4 -4
  41. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  42. package/dist/types/routes/management-api/users.d.ts +5 -5
  43. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  44. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  45. package/dist/types/types/Hooks.d.ts +8 -1
  46. package/dist/types/types/IdToken.d.ts +1 -1
  47. package/package.json +7 -6
@@ -24,6 +24,8 @@ export { provisionDefaultClients, isInteractiveClient, } from "./helpers/provisi
24
24
  export type { ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ManagementApiScope, } from "./helpers/provision-tenant-clients";
25
25
  export { runOutboxRelay } from "./helpers/run-outbox-relay";
26
26
  export type { RunOutboxRelayConfig } from "./helpers/run-outbox-relay";
27
+ export { runRetention, RetentionSweepError } from "./helpers/run-retention";
28
+ export type { RunRetentionConfig, RunRetentionResult, RetentionSweep, RetentionSweepStatus, RetentionSweepSwept, RetentionSweepSkipped, RetentionSweepFailed, } from "./helpers/run-retention";
27
29
  export { LogsDestination } from "./helpers/outbox-destinations/logs";
28
30
  export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToken, } from "./helpers/outbox-destinations/webhooks";
29
31
  export { CodeHookDestination } from "./helpers/outbox-destinations/code-hooks";
@@ -57,8 +59,8 @@ export { HttpSamlSigner } from "@authhero/saml/core";
57
59
  export { fetchAll } from "./utils/fetchAll";
58
60
  export type { FetchAllOptions } from "./utils/fetchAll";
59
61
  export { deepMergePatch } from "./utils/deep-merge";
60
- export { listControlPlaneKeys, resolveSigningKeys, resolveSigningKeyMode, } from "./helpers/signing-keys";
61
- export type { ResolveSigningKeysOptions } from "./helpers/signing-keys";
62
+ export { listControlPlaneKeys, resolveSigningKeys, resolveSigningKeyMode, ensureSigningKey, } from "./helpers/signing-keys";
63
+ export type { ResolveSigningKeysOptions, EnsureSigningKeyOptions, EnsureSigningKeyResult, } from "./helpers/signing-keys";
62
64
  export { USERNAME_PASSWORD_PROVIDER } from "./constants";
63
65
  export * as preDefinedHooks from "./hooks/pre-defined";
64
66
  export type { EnsureUsernameOptions } from "./hooks/pre-defined";
@@ -76,8 +78,8 @@ export declare function init(config: AuthHeroConfig): {
76
78
  $get: {
77
79
  input: {
78
80
  query: {
79
- include_password_hashes?: "false" | "true" | undefined;
80
- gzip?: "false" | "true" | undefined;
81
+ include_password_hashes?: "true" | "false" | undefined;
82
+ gzip?: "true" | "false" | undefined;
81
83
  };
82
84
  } & {
83
85
  header: {
@@ -90,8 +92,8 @@ export declare function init(config: AuthHeroConfig): {
90
92
  } | {
91
93
  input: {
92
94
  query: {
93
- include_password_hashes?: "false" | "true" | undefined;
94
- gzip?: "false" | "true" | undefined;
95
+ include_password_hashes?: "true" | "false" | undefined;
96
+ gzip?: "true" | "false" | undefined;
95
97
  };
96
98
  } & {
97
99
  header: {
@@ -110,7 +112,7 @@ export declare function init(config: AuthHeroConfig): {
110
112
  $post: {
111
113
  input: {
112
114
  query: {
113
- include_password_hashes?: "false" | "true" | undefined;
115
+ include_password_hashes?: "true" | "false" | undefined;
114
116
  };
115
117
  } & {
116
118
  header: {
@@ -164,7 +166,7 @@ export declare function init(config: AuthHeroConfig): {
164
166
  };
165
167
  } & {
166
168
  json: {
167
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
169
+ type: "email" | "phone" | "push" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
168
170
  phone_number?: string | undefined;
169
171
  totp_secret?: string | undefined;
170
172
  credential_id?: string | undefined;
@@ -304,7 +306,7 @@ export declare function init(config: AuthHeroConfig): {
304
306
  };
305
307
  };
306
308
  output: {
307
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
309
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
308
310
  enabled: boolean;
309
311
  trial_expired?: boolean | undefined;
310
312
  }[];
@@ -459,7 +461,7 @@ export declare function init(config: AuthHeroConfig): {
459
461
  $get: {
460
462
  input: {
461
463
  param: {
462
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
464
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
463
465
  };
464
466
  } & {
465
467
  header: {
@@ -467,7 +469,7 @@ export declare function init(config: AuthHeroConfig): {
467
469
  };
468
470
  };
469
471
  output: {
470
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
472
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
471
473
  enabled: boolean;
472
474
  trial_expired?: boolean | undefined;
473
475
  };
@@ -480,7 +482,7 @@ export declare function init(config: AuthHeroConfig): {
480
482
  $put: {
481
483
  input: {
482
484
  param: {
483
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
485
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
484
486
  };
485
487
  } & {
486
488
  header: {
@@ -492,7 +494,7 @@ export declare function init(config: AuthHeroConfig): {
492
494
  };
493
495
  };
494
496
  output: {
495
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
497
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
496
498
  enabled: boolean;
497
499
  trial_expired?: boolean | undefined;
498
500
  };
@@ -1264,19 +1266,19 @@ export declare function init(config: AuthHeroConfig): {
1264
1266
  } & {
1265
1267
  json: {
1266
1268
  client_id: string;
1267
- inviter: {
1268
- name?: string | undefined;
1269
- };
1270
1269
  invitee: {
1271
1270
  email?: string | undefined;
1272
1271
  };
1272
+ inviter: {
1273
+ name?: string | undefined;
1274
+ };
1273
1275
  id?: string | undefined;
1274
1276
  app_metadata?: Record<string, any> | undefined;
1275
1277
  user_metadata?: Record<string, any> | undefined;
1276
1278
  connection_id?: string | undefined;
1277
1279
  roles?: string[] | undefined;
1278
- ttl_sec?: number | undefined;
1279
1280
  send_invitation_email?: boolean | undefined;
1281
+ ttl_sec?: number | undefined;
1280
1282
  };
1281
1283
  };
1282
1284
  output: {
@@ -2031,9 +2033,9 @@ export declare function init(config: AuthHeroConfig): {
2031
2033
  };
2032
2034
  } & {
2033
2035
  query: {
2036
+ from?: string | undefined;
2034
2037
  page?: string | undefined;
2035
2038
  include_totals?: string | undefined;
2036
- from?: string | undefined;
2037
2039
  per_page?: string | undefined;
2038
2040
  take?: string | undefined;
2039
2041
  };
@@ -6985,7 +6987,7 @@ export declare function init(config: AuthHeroConfig): {
6985
6987
  };
6986
6988
  };
6987
6989
  output: {
6988
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
6990
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
6989
6991
  language: string;
6990
6992
  }[];
6991
6993
  outputFormat: "json";
@@ -7023,7 +7025,7 @@ export declare function init(config: AuthHeroConfig): {
7023
7025
  $get: {
7024
7026
  input: {
7025
7027
  param: {
7026
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
7028
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
7027
7029
  language: string;
7028
7030
  };
7029
7031
  } & {
@@ -7045,7 +7047,7 @@ export declare function init(config: AuthHeroConfig): {
7045
7047
  $put: {
7046
7048
  input: {
7047
7049
  param: {
7048
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
7050
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
7049
7051
  language: string;
7050
7052
  };
7051
7053
  } & {
@@ -7069,7 +7071,7 @@ export declare function init(config: AuthHeroConfig): {
7069
7071
  $delete: {
7070
7072
  input: {
7071
7073
  param: {
7072
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
7074
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
7073
7075
  language: string;
7074
7076
  };
7075
7077
  } & {
@@ -7161,7 +7163,7 @@ export declare function init(config: AuthHeroConfig): {
7161
7163
  active?: boolean | undefined;
7162
7164
  } | undefined;
7163
7165
  signup?: {
7164
- status?: "required" | "optional" | "disabled" | undefined;
7166
+ status?: "optional" | "required" | "disabled" | undefined;
7165
7167
  verification?: {
7166
7168
  active?: boolean | undefined;
7167
7169
  } | undefined;
@@ -7178,7 +7180,7 @@ export declare function init(config: AuthHeroConfig): {
7178
7180
  active?: boolean | undefined;
7179
7181
  } | undefined;
7180
7182
  signup?: {
7181
- status?: "required" | "optional" | "disabled" | undefined;
7183
+ status?: "optional" | "required" | "disabled" | undefined;
7182
7184
  } | undefined;
7183
7185
  validation?: {
7184
7186
  max_length?: number | undefined;
@@ -7195,7 +7197,7 @@ export declare function init(config: AuthHeroConfig): {
7195
7197
  active?: boolean | undefined;
7196
7198
  } | undefined;
7197
7199
  signup?: {
7198
- status?: "required" | "optional" | "disabled" | undefined;
7200
+ status?: "optional" | "required" | "disabled" | undefined;
7199
7201
  } | undefined;
7200
7202
  } | undefined;
7201
7203
  } | undefined;
@@ -7295,7 +7297,7 @@ export declare function init(config: AuthHeroConfig): {
7295
7297
  active?: boolean | undefined;
7296
7298
  } | undefined;
7297
7299
  signup?: {
7298
- status?: "required" | "optional" | "disabled" | undefined;
7300
+ status?: "optional" | "required" | "disabled" | undefined;
7299
7301
  verification?: {
7300
7302
  active?: boolean | undefined;
7301
7303
  } | undefined;
@@ -7312,7 +7314,7 @@ export declare function init(config: AuthHeroConfig): {
7312
7314
  active?: boolean | undefined;
7313
7315
  } | undefined;
7314
7316
  signup?: {
7315
- status?: "required" | "optional" | "disabled" | undefined;
7317
+ status?: "optional" | "required" | "disabled" | undefined;
7316
7318
  } | undefined;
7317
7319
  validation?: {
7318
7320
  max_length?: number | undefined;
@@ -7329,7 +7331,7 @@ export declare function init(config: AuthHeroConfig): {
7329
7331
  active?: boolean | undefined;
7330
7332
  } | undefined;
7331
7333
  signup?: {
7332
- status?: "required" | "optional" | "disabled" | undefined;
7334
+ status?: "optional" | "required" | "disabled" | undefined;
7333
7335
  } | undefined;
7334
7336
  } | undefined;
7335
7337
  } | undefined;
@@ -7445,7 +7447,7 @@ export declare function init(config: AuthHeroConfig): {
7445
7447
  active?: boolean | undefined;
7446
7448
  } | undefined;
7447
7449
  signup?: {
7448
- status?: "required" | "optional" | "disabled" | undefined;
7450
+ status?: "optional" | "required" | "disabled" | undefined;
7449
7451
  verification?: {
7450
7452
  active?: boolean | undefined;
7451
7453
  } | undefined;
@@ -7462,7 +7464,7 @@ export declare function init(config: AuthHeroConfig): {
7462
7464
  active?: boolean | undefined;
7463
7465
  } | undefined;
7464
7466
  signup?: {
7465
- status?: "required" | "optional" | "disabled" | undefined;
7467
+ status?: "optional" | "required" | "disabled" | undefined;
7466
7468
  } | undefined;
7467
7469
  validation?: {
7468
7470
  max_length?: number | undefined;
@@ -7479,7 +7481,7 @@ export declare function init(config: AuthHeroConfig): {
7479
7481
  active?: boolean | undefined;
7480
7482
  } | undefined;
7481
7483
  signup?: {
7482
- status?: "required" | "optional" | "disabled" | undefined;
7484
+ status?: "optional" | "required" | "disabled" | undefined;
7483
7485
  } | undefined;
7484
7486
  } | undefined;
7485
7487
  } | undefined;
@@ -7624,7 +7626,7 @@ export declare function init(config: AuthHeroConfig): {
7624
7626
  active?: boolean | undefined;
7625
7627
  } | undefined;
7626
7628
  signup?: {
7627
- status?: "required" | "optional" | "disabled" | undefined;
7629
+ status?: "optional" | "required" | "disabled" | undefined;
7628
7630
  verification?: {
7629
7631
  active?: boolean | undefined;
7630
7632
  } | undefined;
@@ -7641,7 +7643,7 @@ export declare function init(config: AuthHeroConfig): {
7641
7643
  active?: boolean | undefined;
7642
7644
  } | undefined;
7643
7645
  signup?: {
7644
- status?: "required" | "optional" | "disabled" | undefined;
7646
+ status?: "optional" | "required" | "disabled" | undefined;
7645
7647
  } | undefined;
7646
7648
  validation?: {
7647
7649
  max_length?: number | undefined;
@@ -7658,7 +7660,7 @@ export declare function init(config: AuthHeroConfig): {
7658
7660
  active?: boolean | undefined;
7659
7661
  } | undefined;
7660
7662
  signup?: {
7661
- status?: "required" | "optional" | "disabled" | undefined;
7663
+ status?: "optional" | "required" | "disabled" | undefined;
7662
7664
  } | undefined;
7663
7665
  } | undefined;
7664
7666
  } | undefined;
@@ -7782,7 +7784,7 @@ export declare function init(config: AuthHeroConfig): {
7782
7784
  active?: boolean | undefined;
7783
7785
  } | undefined;
7784
7786
  signup?: {
7785
- status?: "required" | "optional" | "disabled" | undefined;
7787
+ status?: "optional" | "required" | "disabled" | undefined;
7786
7788
  verification?: {
7787
7789
  active?: boolean | undefined;
7788
7790
  } | undefined;
@@ -7799,7 +7801,7 @@ export declare function init(config: AuthHeroConfig): {
7799
7801
  active?: boolean | undefined;
7800
7802
  } | undefined;
7801
7803
  signup?: {
7802
- status?: "required" | "optional" | "disabled" | undefined;
7804
+ status?: "optional" | "required" | "disabled" | undefined;
7803
7805
  } | undefined;
7804
7806
  validation?: {
7805
7807
  max_length?: number | undefined;
@@ -7816,7 +7818,7 @@ export declare function init(config: AuthHeroConfig): {
7816
7818
  active?: boolean | undefined;
7817
7819
  } | undefined;
7818
7820
  signup?: {
7819
- status?: "required" | "optional" | "disabled" | undefined;
7821
+ status?: "optional" | "required" | "disabled" | undefined;
7820
7822
  } | undefined;
7821
7823
  } | undefined;
7822
7824
  } | undefined;
@@ -7968,7 +7970,7 @@ export declare function init(config: AuthHeroConfig): {
7968
7970
  tenant_id: string;
7969
7971
  created_at: string;
7970
7972
  updated_at: string;
7971
- deploymentStatus: "deployed" | "failed" | "not_required";
7973
+ deploymentStatus: "failed" | "deployed" | "not_required";
7972
7974
  secrets?: {
7973
7975
  [x: string]: string;
7974
7976
  } | undefined;
@@ -8058,7 +8060,7 @@ export declare function init(config: AuthHeroConfig): {
8058
8060
  tenant_id: string;
8059
8061
  created_at: string;
8060
8062
  updated_at: string;
8061
- deploymentStatus: "deployed" | "failed" | "not_required";
8063
+ deploymentStatus: "failed" | "deployed" | "not_required";
8062
8064
  secrets?: {
8063
8065
  [x: string]: string;
8064
8066
  } | undefined;
@@ -8572,7 +8574,7 @@ export declare function init(config: AuthHeroConfig): {
8572
8574
  log_type: string;
8573
8575
  category: "user_action" | "admin_action" | "system" | "api";
8574
8576
  actor: {
8575
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8577
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8576
8578
  id?: string | undefined;
8577
8579
  email?: string | undefined;
8578
8580
  org_id?: string | undefined;
@@ -8606,6 +8608,7 @@ export declare function init(config: AuthHeroConfig): {
8606
8608
  body?: import("hono/utils/types").JSONValue | undefined;
8607
8609
  user_agent?: string | undefined;
8608
8610
  correlation_id?: string | undefined;
8611
+ redirect_uri?: string | undefined;
8609
8612
  };
8610
8613
  hostname: string;
8611
8614
  timestamp: string;
@@ -8882,7 +8885,7 @@ export declare function init(config: AuthHeroConfig): {
8882
8885
  created_at: string;
8883
8886
  updated_at: string;
8884
8887
  name: string;
8885
- provider: "auth0" | "cognito" | "okta" | "oidc";
8888
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8886
8889
  connection: string;
8887
8890
  enabled: boolean;
8888
8891
  credentials: {
@@ -8914,7 +8917,7 @@ export declare function init(config: AuthHeroConfig): {
8914
8917
  created_at: string;
8915
8918
  updated_at: string;
8916
8919
  name: string;
8917
- provider: "auth0" | "cognito" | "okta" | "oidc";
8920
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8918
8921
  connection: string;
8919
8922
  enabled: boolean;
8920
8923
  credentials: {
@@ -8940,7 +8943,7 @@ export declare function init(config: AuthHeroConfig): {
8940
8943
  } & {
8941
8944
  json: {
8942
8945
  name: string;
8943
- provider: "auth0" | "cognito" | "okta" | "oidc";
8946
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8944
8947
  connection: string;
8945
8948
  credentials: {
8946
8949
  domain: string;
@@ -8957,7 +8960,7 @@ export declare function init(config: AuthHeroConfig): {
8957
8960
  created_at: string;
8958
8961
  updated_at: string;
8959
8962
  name: string;
8960
- provider: "auth0" | "cognito" | "okta" | "oidc";
8963
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8961
8964
  connection: string;
8962
8965
  enabled: boolean;
8963
8966
  credentials: {
@@ -8988,7 +8991,7 @@ export declare function init(config: AuthHeroConfig): {
8988
8991
  json: {
8989
8992
  id?: string | undefined;
8990
8993
  name?: string | undefined;
8991
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8994
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8992
8995
  connection?: string | undefined;
8993
8996
  enabled?: boolean | undefined;
8994
8997
  credentials?: {
@@ -9004,7 +9007,7 @@ export declare function init(config: AuthHeroConfig): {
9004
9007
  created_at: string;
9005
9008
  updated_at: string;
9006
9009
  name: string;
9007
- provider: "auth0" | "cognito" | "okta" | "oidc";
9010
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9008
9011
  connection: string;
9009
9012
  enabled: boolean;
9010
9013
  credentials: {
@@ -9222,7 +9225,7 @@ export declare function init(config: AuthHeroConfig): {
9222
9225
  };
9223
9226
  };
9224
9227
  output: {
9225
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9228
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9226
9229
  date: string;
9227
9230
  isMobile: boolean;
9228
9231
  log_id: string;
@@ -9261,7 +9264,7 @@ export declare function init(config: AuthHeroConfig): {
9261
9264
  limit: number;
9262
9265
  length: number;
9263
9266
  logs: {
9264
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9267
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9265
9268
  date: string;
9266
9269
  isMobile: boolean;
9267
9270
  log_id: string;
@@ -9300,7 +9303,7 @@ export declare function init(config: AuthHeroConfig): {
9300
9303
  next?: string | undefined;
9301
9304
  } | {
9302
9305
  logs: {
9303
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9306
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9304
9307
  date: string;
9305
9308
  isMobile: boolean;
9306
9309
  log_id: string;
@@ -9354,7 +9357,7 @@ export declare function init(config: AuthHeroConfig): {
9354
9357
  };
9355
9358
  };
9356
9359
  output: {
9357
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9360
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9358
9361
  date: string;
9359
9362
  isMobile: boolean;
9360
9363
  log_id: string;
@@ -10595,7 +10598,7 @@ export declare function init(config: AuthHeroConfig): {
10595
10598
  active?: boolean | undefined;
10596
10599
  } | undefined;
10597
10600
  signup?: {
10598
- status?: "required" | "optional" | "disabled" | undefined;
10601
+ status?: "optional" | "required" | "disabled" | undefined;
10599
10602
  verification?: {
10600
10603
  active?: boolean | undefined;
10601
10604
  } | undefined;
@@ -10612,7 +10615,7 @@ export declare function init(config: AuthHeroConfig): {
10612
10615
  active?: boolean | undefined;
10613
10616
  } | undefined;
10614
10617
  signup?: {
10615
- status?: "required" | "optional" | "disabled" | undefined;
10618
+ status?: "optional" | "required" | "disabled" | undefined;
10616
10619
  } | undefined;
10617
10620
  validation?: {
10618
10621
  max_length?: number | undefined;
@@ -10629,7 +10632,7 @@ export declare function init(config: AuthHeroConfig): {
10629
10632
  active?: boolean | undefined;
10630
10633
  } | undefined;
10631
10634
  signup?: {
10632
- status?: "required" | "optional" | "disabled" | undefined;
10635
+ status?: "optional" | "required" | "disabled" | undefined;
10633
10636
  } | undefined;
10634
10637
  } | undefined;
10635
10638
  } | undefined;
@@ -10749,7 +10752,7 @@ export declare function init(config: AuthHeroConfig): {
10749
10752
  active?: boolean | undefined;
10750
10753
  } | undefined;
10751
10754
  signup?: {
10752
- status?: "required" | "optional" | "disabled" | undefined;
10755
+ status?: "optional" | "required" | "disabled" | undefined;
10753
10756
  verification?: {
10754
10757
  active?: boolean | undefined;
10755
10758
  } | undefined;
@@ -10766,7 +10769,7 @@ export declare function init(config: AuthHeroConfig): {
10766
10769
  active?: boolean | undefined;
10767
10770
  } | undefined;
10768
10771
  signup?: {
10769
- status?: "required" | "optional" | "disabled" | undefined;
10772
+ status?: "optional" | "required" | "disabled" | undefined;
10770
10773
  } | undefined;
10771
10774
  validation?: {
10772
10775
  max_length?: number | undefined;
@@ -10783,7 +10786,7 @@ export declare function init(config: AuthHeroConfig): {
10783
10786
  active?: boolean | undefined;
10784
10787
  } | undefined;
10785
10788
  signup?: {
10786
- status?: "required" | "optional" | "disabled" | undefined;
10789
+ status?: "optional" | "required" | "disabled" | undefined;
10787
10790
  } | undefined;
10788
10791
  } | undefined;
10789
10792
  } | undefined;
@@ -11482,8 +11485,6 @@ export declare function init(config: AuthHeroConfig): {
11482
11485
  locale?: string | undefined;
11483
11486
  linked_to?: string | undefined;
11484
11487
  profileData?: string | undefined;
11485
- app_metadata?: any;
11486
- user_metadata?: any;
11487
11488
  middle_name?: string | undefined;
11488
11489
  preferred_username?: string | undefined;
11489
11490
  profile?: string | undefined;
@@ -11499,7 +11500,6 @@ export declare function init(config: AuthHeroConfig): {
11499
11500
  postal_code?: string | undefined;
11500
11501
  country?: string | undefined;
11501
11502
  } | undefined;
11502
- email_verified?: boolean | undefined;
11503
11503
  last_ip?: string | undefined;
11504
11504
  last_login?: string | undefined;
11505
11505
  user_id?: string | undefined;
@@ -11509,6 +11509,9 @@ export declare function init(config: AuthHeroConfig): {
11509
11509
  registration_completed_at?: string | undefined;
11510
11510
  verify_email?: boolean | undefined;
11511
11511
  password?: string | undefined;
11512
+ email_verified?: boolean | undefined;
11513
+ app_metadata?: any;
11514
+ user_metadata?: any;
11512
11515
  };
11513
11516
  };
11514
11517
  output: {};
@@ -11809,7 +11812,7 @@ export declare function init(config: AuthHeroConfig): {
11809
11812
  };
11810
11813
  };
11811
11814
  output: {
11812
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11815
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11813
11816
  date: string;
11814
11817
  isMobile: boolean;
11815
11818
  log_id: string;
@@ -11848,7 +11851,7 @@ export declare function init(config: AuthHeroConfig): {
11848
11851
  limit: number;
11849
11852
  length: number;
11850
11853
  logs: {
11851
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11854
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11852
11855
  date: string;
11853
11856
  isMobile: boolean;
11854
11857
  log_id: string;
@@ -12167,7 +12170,7 @@ export declare function init(config: AuthHeroConfig): {
12167
12170
  };
12168
12171
  } & {
12169
12172
  json: {
12170
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12173
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12171
12174
  body: string;
12172
12175
  from: string;
12173
12176
  subject: string;
@@ -12188,7 +12191,7 @@ export declare function init(config: AuthHeroConfig): {
12188
12191
  };
12189
12192
  } & {
12190
12193
  json: {
12191
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12194
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12192
12195
  body: string;
12193
12196
  from: string;
12194
12197
  subject: string;
@@ -12200,7 +12203,7 @@ export declare function init(config: AuthHeroConfig): {
12200
12203
  };
12201
12204
  };
12202
12205
  output: {
12203
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12206
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12204
12207
  body: string;
12205
12208
  from: string;
12206
12209
  subject: string;
@@ -12223,7 +12226,7 @@ export declare function init(config: AuthHeroConfig): {
12223
12226
  };
12224
12227
  };
12225
12228
  output: {
12226
- name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12229
+ name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12227
12230
  body: string;
12228
12231
  subject: string;
12229
12232
  }[];
@@ -12236,7 +12239,7 @@ export declare function init(config: AuthHeroConfig): {
12236
12239
  $get: {
12237
12240
  input: {
12238
12241
  param: {
12239
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12242
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12240
12243
  };
12241
12244
  } & {
12242
12245
  header: {
@@ -12249,7 +12252,7 @@ export declare function init(config: AuthHeroConfig): {
12249
12252
  } | {
12250
12253
  input: {
12251
12254
  param: {
12252
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12255
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12253
12256
  };
12254
12257
  } & {
12255
12258
  header: {
@@ -12257,7 +12260,7 @@ export declare function init(config: AuthHeroConfig): {
12257
12260
  };
12258
12261
  };
12259
12262
  output: {
12260
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12263
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12261
12264
  body: string;
12262
12265
  from: string;
12263
12266
  subject: string;
@@ -12276,7 +12279,7 @@ export declare function init(config: AuthHeroConfig): {
12276
12279
  $put: {
12277
12280
  input: {
12278
12281
  param: {
12279
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12282
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12280
12283
  };
12281
12284
  } & {
12282
12285
  header: {
@@ -12284,7 +12287,7 @@ export declare function init(config: AuthHeroConfig): {
12284
12287
  };
12285
12288
  } & {
12286
12289
  json: {
12287
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12290
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12288
12291
  body: string;
12289
12292
  subject: string;
12290
12293
  syntax?: "liquid" | undefined;
@@ -12296,7 +12299,7 @@ export declare function init(config: AuthHeroConfig): {
12296
12299
  };
12297
12300
  };
12298
12301
  output: {
12299
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12302
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12300
12303
  body: string;
12301
12304
  from: string;
12302
12305
  subject: string;
@@ -12315,7 +12318,7 @@ export declare function init(config: AuthHeroConfig): {
12315
12318
  $patch: {
12316
12319
  input: {
12317
12320
  param: {
12318
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12321
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12319
12322
  };
12320
12323
  } & {
12321
12324
  header: {
@@ -12323,7 +12326,7 @@ export declare function init(config: AuthHeroConfig): {
12323
12326
  };
12324
12327
  } & {
12325
12328
  json: {
12326
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12329
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12327
12330
  body?: string | undefined;
12328
12331
  from?: string | undefined;
12329
12332
  subject?: string | undefined;
@@ -12340,7 +12343,7 @@ export declare function init(config: AuthHeroConfig): {
12340
12343
  } | {
12341
12344
  input: {
12342
12345
  param: {
12343
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12346
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12344
12347
  };
12345
12348
  } & {
12346
12349
  header: {
@@ -12348,7 +12351,7 @@ export declare function init(config: AuthHeroConfig): {
12348
12351
  };
12349
12352
  } & {
12350
12353
  json: {
12351
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12354
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12352
12355
  body?: string | undefined;
12353
12356
  from?: string | undefined;
12354
12357
  subject?: string | undefined;
@@ -12360,7 +12363,7 @@ export declare function init(config: AuthHeroConfig): {
12360
12363
  };
12361
12364
  };
12362
12365
  output: {
12363
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12366
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12364
12367
  body: string;
12365
12368
  from: string;
12366
12369
  subject: string;
@@ -12379,7 +12382,7 @@ export declare function init(config: AuthHeroConfig): {
12379
12382
  $delete: {
12380
12383
  input: {
12381
12384
  param: {
12382
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12385
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12383
12386
  };
12384
12387
  } & {
12385
12388
  header: {
@@ -12392,7 +12395,7 @@ export declare function init(config: AuthHeroConfig): {
12392
12395
  } | {
12393
12396
  input: {
12394
12397
  param: {
12395
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12398
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12396
12399
  };
12397
12400
  } & {
12398
12401
  header: {
@@ -12409,7 +12412,7 @@ export declare function init(config: AuthHeroConfig): {
12409
12412
  $post: {
12410
12413
  input: {
12411
12414
  param: {
12412
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12415
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12413
12416
  };
12414
12417
  } & {
12415
12418
  header: {
@@ -12692,7 +12695,7 @@ export declare function init(config: AuthHeroConfig): {
12692
12695
  type: "auth0_managed_certs" | "self_managed_certs";
12693
12696
  custom_domain_id: string;
12694
12697
  primary: boolean;
12695
- status: "disabled" | "pending" | "ready" | "pending_verification";
12698
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12696
12699
  verification_method?: "txt" | undefined;
12697
12700
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12698
12701
  domain_metadata?: {
@@ -12733,7 +12736,7 @@ export declare function init(config: AuthHeroConfig): {
12733
12736
  type: "auth0_managed_certs" | "self_managed_certs";
12734
12737
  custom_domain_id: string;
12735
12738
  primary: boolean;
12736
- status: "disabled" | "pending" | "ready" | "pending_verification";
12739
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12737
12740
  verification_method?: "txt" | undefined;
12738
12741
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12739
12742
  domain_metadata?: {
@@ -12797,7 +12800,7 @@ export declare function init(config: AuthHeroConfig): {
12797
12800
  type: "auth0_managed_certs" | "self_managed_certs";
12798
12801
  custom_domain_id: string;
12799
12802
  primary: boolean;
12800
- status: "disabled" | "pending" | "ready" | "pending_verification";
12803
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12801
12804
  verification_method?: "txt" | undefined;
12802
12805
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12803
12806
  domain_metadata?: {
@@ -12844,7 +12847,7 @@ export declare function init(config: AuthHeroConfig): {
12844
12847
  type: "auth0_managed_certs" | "self_managed_certs";
12845
12848
  custom_domain_id: string;
12846
12849
  primary: boolean;
12847
- status: "disabled" | "pending" | "ready" | "pending_verification";
12850
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12848
12851
  verification_method?: "txt" | undefined;
12849
12852
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12850
12853
  domain_metadata?: {
@@ -12890,7 +12893,7 @@ export declare function init(config: AuthHeroConfig): {
12890
12893
  type: "auth0_managed_certs" | "self_managed_certs";
12891
12894
  custom_domain_id: string;
12892
12895
  primary: boolean;
12893
- status: "disabled" | "pending" | "ready" | "pending_verification";
12896
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12894
12897
  verification_method?: "txt" | undefined;
12895
12898
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12896
12899
  domain_metadata?: {
@@ -12931,7 +12934,7 @@ export declare function init(config: AuthHeroConfig): {
12931
12934
  type: "auth0_managed_certs" | "self_managed_certs";
12932
12935
  custom_domain_id: string;
12933
12936
  primary: boolean;
12934
- status: "disabled" | "pending" | "ready" | "pending_verification";
12937
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12935
12938
  verification_method?: "txt" | undefined;
12936
12939
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12937
12940
  domain_metadata?: {
@@ -13361,7 +13364,7 @@ export declare function init(config: AuthHeroConfig): {
13361
13364
  } & {
13362
13365
  json: {
13363
13366
  body?: string | undefined;
13364
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
13367
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
13365
13368
  branding?: {
13366
13369
  colors?: {
13367
13370
  primary: string;
@@ -13605,7 +13608,7 @@ export declare function init(config: AuthHeroConfig): {
13605
13608
  output: {
13606
13609
  id: string;
13607
13610
  trigger_id: string;
13608
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
13611
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13609
13612
  results: {
13610
13613
  action_name: string;
13611
13614
  error: {
@@ -15067,17 +15070,17 @@ export declare function init(config: AuthHeroConfig): {
15067
15070
  email: string;
15068
15071
  send: "code" | "link";
15069
15072
  authParams: {
15070
- username?: string | undefined;
15071
15073
  audience?: string | undefined;
15072
15074
  scope?: string | undefined;
15075
+ redirect_uri?: string | undefined;
15076
+ organization?: string | undefined;
15077
+ username?: string | undefined;
15073
15078
  state?: string | undefined;
15079
+ act_as?: string | undefined;
15074
15080
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15075
15081
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15076
- prompt?: string | undefined;
15077
- act_as?: string | undefined;
15078
- redirect_uri?: string | undefined;
15079
- organization?: string | undefined;
15080
15082
  nonce?: string | undefined;
15083
+ prompt?: string | undefined;
15081
15084
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15082
15085
  code_challenge?: string | undefined;
15083
15086
  ui_locales?: string | undefined;
@@ -15103,17 +15106,17 @@ export declare function init(config: AuthHeroConfig): {
15103
15106
  phone_number: string;
15104
15107
  send: "code" | "link";
15105
15108
  authParams: {
15106
- username?: string | undefined;
15107
15109
  audience?: string | undefined;
15108
15110
  scope?: string | undefined;
15111
+ redirect_uri?: string | undefined;
15112
+ organization?: string | undefined;
15113
+ username?: string | undefined;
15109
15114
  state?: string | undefined;
15115
+ act_as?: string | undefined;
15110
15116
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15111
15117
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15112
- prompt?: string | undefined;
15113
- act_as?: string | undefined;
15114
- redirect_uri?: string | undefined;
15115
- organization?: string | undefined;
15116
15118
  nonce?: string | undefined;
15119
+ prompt?: string | undefined;
15117
15120
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15118
15121
  code_challenge?: string | undefined;
15119
15122
  ui_locales?: string | undefined;
@@ -16647,7 +16650,7 @@ export declare function init(config: AuthHeroConfig): {
16647
16650
  } & {
16648
16651
  form: {
16649
16652
  username: string;
16650
- login_selection?: "password" | "code" | undefined;
16653
+ login_selection?: "code" | "password" | undefined;
16651
16654
  };
16652
16655
  };
16653
16656
  output: {};
@@ -16661,7 +16664,7 @@ export declare function init(config: AuthHeroConfig): {
16661
16664
  } & {
16662
16665
  form: {
16663
16666
  username: string;
16664
- login_selection?: "password" | "code" | undefined;
16667
+ login_selection?: "code" | "password" | undefined;
16665
16668
  };
16666
16669
  };
16667
16670
  output: {};
@@ -17026,7 +17029,7 @@ export declare function init(config: AuthHeroConfig): {
17026
17029
  $get: {
17027
17030
  input: {
17028
17031
  param: {
17029
- screen: "signup" | "login" | "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";
17032
+ 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";
17030
17033
  };
17031
17034
  } & {
17032
17035
  query: {
@@ -17042,7 +17045,7 @@ export declare function init(config: AuthHeroConfig): {
17042
17045
  } | {
17043
17046
  input: {
17044
17047
  param: {
17045
- screen: "signup" | "login" | "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";
17048
+ 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";
17046
17049
  };
17047
17050
  } & {
17048
17051
  query: {
@@ -17058,7 +17061,7 @@ export declare function init(config: AuthHeroConfig): {
17058
17061
  } | {
17059
17062
  input: {
17060
17063
  param: {
17061
- screen: "signup" | "login" | "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";
17064
+ 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";
17062
17065
  };
17063
17066
  } & {
17064
17067
  query: {
@@ -17078,7 +17081,7 @@ export declare function init(config: AuthHeroConfig): {
17078
17081
  $post: {
17079
17082
  input: {
17080
17083
  param: {
17081
- screen: "signup" | "login" | "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";
17084
+ 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";
17082
17085
  };
17083
17086
  } & {
17084
17087
  query: {
@@ -17096,7 +17099,7 @@ export declare function init(config: AuthHeroConfig): {
17096
17099
  } | {
17097
17100
  input: {
17098
17101
  param: {
17099
- screen: "signup" | "login" | "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";
17102
+ 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";
17100
17103
  };
17101
17104
  } & {
17102
17105
  query: {