authhero 8.23.0 → 8.24.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 (43) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +139 -142
  3. package/dist/authhero.d.ts +349 -145
  4. package/dist/authhero.mjs +19659 -15484
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/adapters/control-plane-custom-domains.d.ts +35 -0
  7. package/dist/types/authentication-flows/passwordless.d.ts +5 -5
  8. package/dist/types/helpers/control-plane-client.d.ts +46 -0
  9. package/dist/types/helpers/control-plane-sync-events.d.ts +12 -28
  10. package/dist/types/index.d.ts +174 -100
  11. package/dist/types/routes/auth-api/index.d.ts +24 -24
  12. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  13. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  14. package/dist/types/routes/auth-api/token.d.ts +10 -10
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +1 -1
  17. package/dist/types/routes/management-api/clients.d.ts +6 -6
  18. package/dist/types/routes/management-api/connections.d.ts +15 -15
  19. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  20. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  21. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  22. package/dist/types/routes/management-api/helpers.d.ts +47 -0
  23. package/dist/types/routes/management-api/index.d.ts +140 -71
  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 +2 -2
  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 +1 -1
  31. package/dist/types/routes/management-api/users.d.ts +71 -2
  32. package/dist/types/routes/proxy-control-plane/custom-domains.d.ts +45 -0
  33. package/dist/types/routes/proxy-control-plane/index.d.ts +24 -6
  34. package/dist/types/routes/proxy-control-plane/scopes.d.ts +13 -0
  35. package/dist/types/routes/proxy-control-plane/verify.d.ts +15 -4
  36. package/dist/types/routes/universal-login/common.d.ts +6 -6
  37. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  38. package/dist/types/routes/universal-login/index.d.ts +2 -2
  39. package/dist/types/routes/universal-login/u2-index.d.ts +3 -3
  40. package/dist/types/routes/universal-login/u2-routes.d.ts +3 -3
  41. package/dist/types/types/AuthHeroConfig.d.ts +22 -7
  42. package/dist/types/types/IdToken.d.ts +4 -4
  43. package/package.json +8 -8
@@ -29,6 +29,11 @@ export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/
29
29
  export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
30
30
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
31
31
  export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
32
+ export { CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, } from "./routes/proxy-control-plane/scopes";
33
+ export { createControlPlaneCustomDomainsAdapter, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, type ControlPlaneCustomDomainsOptions, } from "./adapters/control-plane-custom-domains";
34
+ export { createServiceTokenCore, type CreateServiceTokenCoreParams, type ServiceTokenResponse, } from "./helpers/service-token";
35
+ export { createServiceBindingFetch, type ServiceBindingFetcher, } from "@authhero/proxy";
36
+ export { createControlPlaneClient, type ControlPlaneClient, type ControlPlaneClientOptions, type ControlPlaneRequest, type ControlPlaneResponse, type GetControlPlaneToken, } from "./helpers/control-plane-client";
32
37
  export { wrapProxyAdaptersWithKvPublish, backfillProxyHostsToKv, type KvPublishOptions, type WrappedProxyAdapters, type BackfillProxyHostsOptions, type BackfillResult, } from "./routes/proxy-control-plane/kv-publish";
33
38
  export { createWfpTenantHostResolver, wrapTenantsAdapterWithWfpKvPublish, composeHostResolvers, wfpTenantHost, isWfpSubdomainSafeTenantId, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, type WfpTenantHostResolverOptions, type WfpTenantsKvPublishOptions, } from "./routes/proxy-control-plane/wfp-tenant-hosts";
34
39
  export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
@@ -63,8 +68,8 @@ export declare function init(config: AuthHeroConfig): {
63
68
  $get: {
64
69
  input: {
65
70
  query: {
66
- include_password_hashes?: "false" | "true" | undefined;
67
- gzip?: "false" | "true" | undefined;
71
+ include_password_hashes?: "true" | "false" | undefined;
72
+ gzip?: "true" | "false" | undefined;
68
73
  };
69
74
  } & {
70
75
  header: {
@@ -77,8 +82,8 @@ export declare function init(config: AuthHeroConfig): {
77
82
  } | {
78
83
  input: {
79
84
  query: {
80
- include_password_hashes?: "false" | "true" | undefined;
81
- gzip?: "false" | "true" | undefined;
85
+ include_password_hashes?: "true" | "false" | undefined;
86
+ gzip?: "true" | "false" | undefined;
82
87
  };
83
88
  } & {
84
89
  header: {
@@ -97,7 +102,7 @@ export declare function init(config: AuthHeroConfig): {
97
102
  $post: {
98
103
  input: {
99
104
  query: {
100
- include_password_hashes?: "false" | "true" | undefined;
105
+ include_password_hashes?: "true" | "false" | undefined;
101
106
  };
102
107
  } & {
103
108
  header: {
@@ -151,7 +156,7 @@ export declare function init(config: AuthHeroConfig): {
151
156
  };
152
157
  } & {
153
158
  json: {
154
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
159
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
155
160
  phone_number?: string | undefined;
156
161
  totp_secret?: string | undefined;
157
162
  credential_id?: string | undefined;
@@ -291,7 +296,7 @@ export declare function init(config: AuthHeroConfig): {
291
296
  };
292
297
  };
293
298
  output: {
294
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
299
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
295
300
  enabled: boolean;
296
301
  trial_expired?: boolean | undefined;
297
302
  }[];
@@ -446,7 +451,7 @@ export declare function init(config: AuthHeroConfig): {
446
451
  $get: {
447
452
  input: {
448
453
  param: {
449
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
454
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
450
455
  };
451
456
  } & {
452
457
  header: {
@@ -454,7 +459,7 @@ export declare function init(config: AuthHeroConfig): {
454
459
  };
455
460
  };
456
461
  output: {
457
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
462
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
458
463
  enabled: boolean;
459
464
  trial_expired?: boolean | undefined;
460
465
  };
@@ -467,7 +472,7 @@ export declare function init(config: AuthHeroConfig): {
467
472
  $put: {
468
473
  input: {
469
474
  param: {
470
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
475
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
471
476
  };
472
477
  } & {
473
478
  header: {
@@ -479,7 +484,7 @@ export declare function init(config: AuthHeroConfig): {
479
484
  };
480
485
  };
481
486
  output: {
482
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
487
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
483
488
  enabled: boolean;
484
489
  trial_expired?: boolean | undefined;
485
490
  };
@@ -1257,11 +1262,11 @@ export declare function init(config: AuthHeroConfig): {
1257
1262
  invitee: {
1258
1263
  email?: string | undefined;
1259
1264
  };
1260
- roles?: string[] | undefined;
1261
1265
  id?: string | undefined;
1266
+ connection_id?: string | undefined;
1262
1267
  app_metadata?: Record<string, any> | undefined;
1263
1268
  user_metadata?: Record<string, any> | undefined;
1264
- connection_id?: string | undefined;
1269
+ roles?: string[] | undefined;
1265
1270
  ttl_sec?: number | undefined;
1266
1271
  send_invitation_email?: boolean | undefined;
1267
1272
  };
@@ -2018,9 +2023,9 @@ export declare function init(config: AuthHeroConfig): {
2018
2023
  };
2019
2024
  } & {
2020
2025
  query: {
2026
+ from?: string | undefined;
2021
2027
  page?: string | undefined;
2022
2028
  include_totals?: string | undefined;
2023
- from?: string | undefined;
2024
2029
  per_page?: string | undefined;
2025
2030
  take?: string | undefined;
2026
2031
  };
@@ -6972,7 +6977,7 @@ export declare function init(config: AuthHeroConfig): {
6972
6977
  };
6973
6978
  };
6974
6979
  output: {
6975
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6980
+ 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";
6976
6981
  language: string;
6977
6982
  }[];
6978
6983
  outputFormat: "json";
@@ -7010,7 +7015,7 @@ export declare function init(config: AuthHeroConfig): {
7010
7015
  $get: {
7011
7016
  input: {
7012
7017
  param: {
7013
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7018
+ 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";
7014
7019
  language: string;
7015
7020
  };
7016
7021
  } & {
@@ -7032,7 +7037,7 @@ export declare function init(config: AuthHeroConfig): {
7032
7037
  $put: {
7033
7038
  input: {
7034
7039
  param: {
7035
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7040
+ 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";
7036
7041
  language: string;
7037
7042
  };
7038
7043
  } & {
@@ -7056,7 +7061,7 @@ export declare function init(config: AuthHeroConfig): {
7056
7061
  $delete: {
7057
7062
  input: {
7058
7063
  param: {
7059
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7064
+ 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";
7060
7065
  language: string;
7061
7066
  };
7062
7067
  } & {
@@ -7148,7 +7153,7 @@ export declare function init(config: AuthHeroConfig): {
7148
7153
  active?: boolean | undefined;
7149
7154
  } | undefined;
7150
7155
  signup?: {
7151
- status?: "required" | "optional" | "disabled" | undefined;
7156
+ status?: "optional" | "required" | "disabled" | undefined;
7152
7157
  verification?: {
7153
7158
  active?: boolean | undefined;
7154
7159
  } | undefined;
@@ -7165,7 +7170,7 @@ export declare function init(config: AuthHeroConfig): {
7165
7170
  active?: boolean | undefined;
7166
7171
  } | undefined;
7167
7172
  signup?: {
7168
- status?: "required" | "optional" | "disabled" | undefined;
7173
+ status?: "optional" | "required" | "disabled" | undefined;
7169
7174
  } | undefined;
7170
7175
  validation?: {
7171
7176
  max_length?: number | undefined;
@@ -7182,7 +7187,7 @@ export declare function init(config: AuthHeroConfig): {
7182
7187
  active?: boolean | undefined;
7183
7188
  } | undefined;
7184
7189
  signup?: {
7185
- status?: "required" | "optional" | "disabled" | undefined;
7190
+ status?: "optional" | "required" | "disabled" | undefined;
7186
7191
  } | undefined;
7187
7192
  } | undefined;
7188
7193
  } | undefined;
@@ -7282,7 +7287,7 @@ export declare function init(config: AuthHeroConfig): {
7282
7287
  active?: boolean | undefined;
7283
7288
  } | undefined;
7284
7289
  signup?: {
7285
- status?: "required" | "optional" | "disabled" | undefined;
7290
+ status?: "optional" | "required" | "disabled" | undefined;
7286
7291
  verification?: {
7287
7292
  active?: boolean | undefined;
7288
7293
  } | undefined;
@@ -7299,7 +7304,7 @@ export declare function init(config: AuthHeroConfig): {
7299
7304
  active?: boolean | undefined;
7300
7305
  } | undefined;
7301
7306
  signup?: {
7302
- status?: "required" | "optional" | "disabled" | undefined;
7307
+ status?: "optional" | "required" | "disabled" | undefined;
7303
7308
  } | undefined;
7304
7309
  validation?: {
7305
7310
  max_length?: number | undefined;
@@ -7316,7 +7321,7 @@ export declare function init(config: AuthHeroConfig): {
7316
7321
  active?: boolean | undefined;
7317
7322
  } | undefined;
7318
7323
  signup?: {
7319
- status?: "required" | "optional" | "disabled" | undefined;
7324
+ status?: "optional" | "required" | "disabled" | undefined;
7320
7325
  } | undefined;
7321
7326
  } | undefined;
7322
7327
  } | undefined;
@@ -7432,7 +7437,7 @@ export declare function init(config: AuthHeroConfig): {
7432
7437
  active?: boolean | undefined;
7433
7438
  } | undefined;
7434
7439
  signup?: {
7435
- status?: "required" | "optional" | "disabled" | undefined;
7440
+ status?: "optional" | "required" | "disabled" | undefined;
7436
7441
  verification?: {
7437
7442
  active?: boolean | undefined;
7438
7443
  } | undefined;
@@ -7449,7 +7454,7 @@ export declare function init(config: AuthHeroConfig): {
7449
7454
  active?: boolean | undefined;
7450
7455
  } | undefined;
7451
7456
  signup?: {
7452
- status?: "required" | "optional" | "disabled" | undefined;
7457
+ status?: "optional" | "required" | "disabled" | undefined;
7453
7458
  } | undefined;
7454
7459
  validation?: {
7455
7460
  max_length?: number | undefined;
@@ -7466,7 +7471,7 @@ export declare function init(config: AuthHeroConfig): {
7466
7471
  active?: boolean | undefined;
7467
7472
  } | undefined;
7468
7473
  signup?: {
7469
- status?: "required" | "optional" | "disabled" | undefined;
7474
+ status?: "optional" | "required" | "disabled" | undefined;
7470
7475
  } | undefined;
7471
7476
  } | undefined;
7472
7477
  } | undefined;
@@ -7611,7 +7616,7 @@ export declare function init(config: AuthHeroConfig): {
7611
7616
  active?: boolean | undefined;
7612
7617
  } | undefined;
7613
7618
  signup?: {
7614
- status?: "required" | "optional" | "disabled" | undefined;
7619
+ status?: "optional" | "required" | "disabled" | undefined;
7615
7620
  verification?: {
7616
7621
  active?: boolean | undefined;
7617
7622
  } | undefined;
@@ -7628,7 +7633,7 @@ export declare function init(config: AuthHeroConfig): {
7628
7633
  active?: boolean | undefined;
7629
7634
  } | undefined;
7630
7635
  signup?: {
7631
- status?: "required" | "optional" | "disabled" | undefined;
7636
+ status?: "optional" | "required" | "disabled" | undefined;
7632
7637
  } | undefined;
7633
7638
  validation?: {
7634
7639
  max_length?: number | undefined;
@@ -7645,7 +7650,7 @@ export declare function init(config: AuthHeroConfig): {
7645
7650
  active?: boolean | undefined;
7646
7651
  } | undefined;
7647
7652
  signup?: {
7648
- status?: "required" | "optional" | "disabled" | undefined;
7653
+ status?: "optional" | "required" | "disabled" | undefined;
7649
7654
  } | undefined;
7650
7655
  } | undefined;
7651
7656
  } | undefined;
@@ -7769,7 +7774,7 @@ export declare function init(config: AuthHeroConfig): {
7769
7774
  active?: boolean | undefined;
7770
7775
  } | undefined;
7771
7776
  signup?: {
7772
- status?: "required" | "optional" | "disabled" | undefined;
7777
+ status?: "optional" | "required" | "disabled" | undefined;
7773
7778
  verification?: {
7774
7779
  active?: boolean | undefined;
7775
7780
  } | undefined;
@@ -7786,7 +7791,7 @@ export declare function init(config: AuthHeroConfig): {
7786
7791
  active?: boolean | undefined;
7787
7792
  } | undefined;
7788
7793
  signup?: {
7789
- status?: "required" | "optional" | "disabled" | undefined;
7794
+ status?: "optional" | "required" | "disabled" | undefined;
7790
7795
  } | undefined;
7791
7796
  validation?: {
7792
7797
  max_length?: number | undefined;
@@ -7803,7 +7808,7 @@ export declare function init(config: AuthHeroConfig): {
7803
7808
  active?: boolean | undefined;
7804
7809
  } | undefined;
7805
7810
  signup?: {
7806
- status?: "required" | "optional" | "disabled" | undefined;
7811
+ status?: "optional" | "required" | "disabled" | undefined;
7807
7812
  } | undefined;
7808
7813
  } | undefined;
7809
7814
  } | undefined;
@@ -8559,7 +8564,7 @@ export declare function init(config: AuthHeroConfig): {
8559
8564
  log_type: string;
8560
8565
  category: "user_action" | "admin_action" | "system" | "api";
8561
8566
  actor: {
8562
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8567
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8563
8568
  id?: string | undefined;
8564
8569
  email?: string | undefined;
8565
8570
  org_id?: string | undefined;
@@ -8869,7 +8874,7 @@ export declare function init(config: AuthHeroConfig): {
8869
8874
  created_at: string;
8870
8875
  updated_at: string;
8871
8876
  name: string;
8872
- provider: "auth0" | "oidc" | "okta" | "cognito";
8877
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8873
8878
  connection: string;
8874
8879
  enabled: boolean;
8875
8880
  credentials: {
@@ -8901,7 +8906,7 @@ export declare function init(config: AuthHeroConfig): {
8901
8906
  created_at: string;
8902
8907
  updated_at: string;
8903
8908
  name: string;
8904
- provider: "auth0" | "oidc" | "okta" | "cognito";
8909
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8905
8910
  connection: string;
8906
8911
  enabled: boolean;
8907
8912
  credentials: {
@@ -8927,7 +8932,7 @@ export declare function init(config: AuthHeroConfig): {
8927
8932
  } & {
8928
8933
  json: {
8929
8934
  name: string;
8930
- provider: "auth0" | "oidc" | "okta" | "cognito";
8935
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8931
8936
  connection: string;
8932
8937
  credentials: {
8933
8938
  domain: string;
@@ -8944,7 +8949,7 @@ export declare function init(config: AuthHeroConfig): {
8944
8949
  created_at: string;
8945
8950
  updated_at: string;
8946
8951
  name: string;
8947
- provider: "auth0" | "oidc" | "okta" | "cognito";
8952
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8948
8953
  connection: string;
8949
8954
  enabled: boolean;
8950
8955
  credentials: {
@@ -8975,7 +8980,7 @@ export declare function init(config: AuthHeroConfig): {
8975
8980
  json: {
8976
8981
  id?: string | undefined;
8977
8982
  name?: string | undefined;
8978
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8983
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8979
8984
  connection?: string | undefined;
8980
8985
  enabled?: boolean | undefined;
8981
8986
  credentials?: {
@@ -8991,7 +8996,7 @@ export declare function init(config: AuthHeroConfig): {
8991
8996
  created_at: string;
8992
8997
  updated_at: string;
8993
8998
  name: string;
8994
- provider: "auth0" | "oidc" | "okta" | "cognito";
8999
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8995
9000
  connection: string;
8996
9001
  enabled: boolean;
8997
9002
  credentials: {
@@ -9209,7 +9214,7 @@ export declare function init(config: AuthHeroConfig): {
9209
9214
  };
9210
9215
  };
9211
9216
  output: {
9212
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9217
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
9213
9218
  date: string;
9214
9219
  isMobile: boolean;
9215
9220
  log_id: string;
@@ -9248,7 +9253,7 @@ export declare function init(config: AuthHeroConfig): {
9248
9253
  limit: number;
9249
9254
  length: number;
9250
9255
  logs: {
9251
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9256
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
9252
9257
  date: string;
9253
9258
  isMobile: boolean;
9254
9259
  log_id: string;
@@ -9287,7 +9292,7 @@ export declare function init(config: AuthHeroConfig): {
9287
9292
  next?: string | undefined;
9288
9293
  } | {
9289
9294
  logs: {
9290
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9295
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
9291
9296
  date: string;
9292
9297
  isMobile: boolean;
9293
9298
  log_id: string;
@@ -9341,7 +9346,7 @@ export declare function init(config: AuthHeroConfig): {
9341
9346
  };
9342
9347
  };
9343
9348
  output: {
9344
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9349
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
9345
9350
  date: string;
9346
9351
  isMobile: boolean;
9347
9352
  log_id: string;
@@ -10582,7 +10587,7 @@ export declare function init(config: AuthHeroConfig): {
10582
10587
  active?: boolean | undefined;
10583
10588
  } | undefined;
10584
10589
  signup?: {
10585
- status?: "required" | "optional" | "disabled" | undefined;
10590
+ status?: "optional" | "required" | "disabled" | undefined;
10586
10591
  verification?: {
10587
10592
  active?: boolean | undefined;
10588
10593
  } | undefined;
@@ -10599,7 +10604,7 @@ export declare function init(config: AuthHeroConfig): {
10599
10604
  active?: boolean | undefined;
10600
10605
  } | undefined;
10601
10606
  signup?: {
10602
- status?: "required" | "optional" | "disabled" | undefined;
10607
+ status?: "optional" | "required" | "disabled" | undefined;
10603
10608
  } | undefined;
10604
10609
  validation?: {
10605
10610
  max_length?: number | undefined;
@@ -10616,7 +10621,7 @@ export declare function init(config: AuthHeroConfig): {
10616
10621
  active?: boolean | undefined;
10617
10622
  } | undefined;
10618
10623
  signup?: {
10619
- status?: "required" | "optional" | "disabled" | undefined;
10624
+ status?: "optional" | "required" | "disabled" | undefined;
10620
10625
  } | undefined;
10621
10626
  } | undefined;
10622
10627
  } | undefined;
@@ -10736,7 +10741,7 @@ export declare function init(config: AuthHeroConfig): {
10736
10741
  active?: boolean | undefined;
10737
10742
  } | undefined;
10738
10743
  signup?: {
10739
- status?: "required" | "optional" | "disabled" | undefined;
10744
+ status?: "optional" | "required" | "disabled" | undefined;
10740
10745
  verification?: {
10741
10746
  active?: boolean | undefined;
10742
10747
  } | undefined;
@@ -10753,7 +10758,7 @@ export declare function init(config: AuthHeroConfig): {
10753
10758
  active?: boolean | undefined;
10754
10759
  } | undefined;
10755
10760
  signup?: {
10756
- status?: "required" | "optional" | "disabled" | undefined;
10761
+ status?: "optional" | "required" | "disabled" | undefined;
10757
10762
  } | undefined;
10758
10763
  validation?: {
10759
10764
  max_length?: number | undefined;
@@ -10770,7 +10775,7 @@ export declare function init(config: AuthHeroConfig): {
10770
10775
  active?: boolean | undefined;
10771
10776
  } | undefined;
10772
10777
  signup?: {
10773
- status?: "required" | "optional" | "disabled" | undefined;
10778
+ status?: "optional" | "required" | "disabled" | undefined;
10774
10779
  } | undefined;
10775
10780
  } | undefined;
10776
10781
  } | undefined;
@@ -11149,6 +11154,75 @@ export declare function init(config: AuthHeroConfig): {
11149
11154
  }[];
11150
11155
  total?: number | undefined;
11151
11156
  next?: string | undefined;
11157
+ } | {
11158
+ users: {
11159
+ created_at: string;
11160
+ updated_at: string;
11161
+ connection: string;
11162
+ user_id: string;
11163
+ email_verified: boolean;
11164
+ provider: string;
11165
+ is_social: boolean;
11166
+ login_count: number;
11167
+ name?: string | undefined;
11168
+ email?: string | undefined;
11169
+ username?: string | undefined;
11170
+ given_name?: string | undefined;
11171
+ phone_number?: string | undefined;
11172
+ phone_verified?: boolean | undefined;
11173
+ family_name?: string | undefined;
11174
+ profileData?: string | undefined;
11175
+ address?: {
11176
+ formatted?: string | undefined;
11177
+ street_address?: string | undefined;
11178
+ locality?: string | undefined;
11179
+ region?: string | undefined;
11180
+ postal_code?: string | undefined;
11181
+ country?: string | undefined;
11182
+ } | undefined;
11183
+ nickname?: string | undefined;
11184
+ picture?: string | undefined;
11185
+ locale?: string | undefined;
11186
+ linked_to?: string | undefined;
11187
+ app_metadata?: any;
11188
+ user_metadata?: any;
11189
+ middle_name?: string | undefined;
11190
+ preferred_username?: string | undefined;
11191
+ profile?: string | undefined;
11192
+ website?: string | undefined;
11193
+ gender?: string | undefined;
11194
+ birthdate?: string | undefined;
11195
+ zoneinfo?: string | undefined;
11196
+ verify_email?: boolean | undefined;
11197
+ last_ip?: string | undefined;
11198
+ last_login?: string | undefined;
11199
+ identities?: {
11200
+ connection: string;
11201
+ user_id: string;
11202
+ provider: string;
11203
+ isSocial: boolean;
11204
+ email?: string | undefined;
11205
+ email_verified?: boolean | undefined;
11206
+ phone_number?: string | undefined;
11207
+ phone_verified?: boolean | undefined;
11208
+ username?: string | undefined;
11209
+ access_token?: string | undefined;
11210
+ access_token_secret?: string | undefined;
11211
+ refresh_token?: string | undefined;
11212
+ profileData?: {
11213
+ [x: string]: any;
11214
+ email?: string | undefined;
11215
+ email_verified?: boolean | undefined;
11216
+ name?: string | undefined;
11217
+ username?: string | undefined;
11218
+ given_name?: string | undefined;
11219
+ phone_number?: string | undefined;
11220
+ phone_verified?: boolean | undefined;
11221
+ family_name?: string | undefined;
11222
+ } | undefined;
11223
+ }[] | undefined;
11224
+ }[];
11225
+ next?: string | undefined;
11152
11226
  };
11153
11227
  outputFormat: "json";
11154
11228
  status: 200;
@@ -11727,7 +11801,7 @@ export declare function init(config: AuthHeroConfig): {
11727
11801
  };
11728
11802
  };
11729
11803
  output: {
11730
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11804
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
11731
11805
  date: string;
11732
11806
  isMobile: boolean;
11733
11807
  log_id: string;
@@ -11766,7 +11840,7 @@ export declare function init(config: AuthHeroConfig): {
11766
11840
  limit: number;
11767
11841
  length: number;
11768
11842
  logs: {
11769
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11843
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
11770
11844
  date: string;
11771
11845
  isMobile: boolean;
11772
11846
  log_id: string;
@@ -12085,7 +12159,7 @@ export declare function init(config: AuthHeroConfig): {
12085
12159
  };
12086
12160
  } & {
12087
12161
  json: {
12088
- 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";
12162
+ 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";
12089
12163
  body: string;
12090
12164
  from: string;
12091
12165
  subject: string;
@@ -12106,7 +12180,7 @@ export declare function init(config: AuthHeroConfig): {
12106
12180
  };
12107
12181
  } & {
12108
12182
  json: {
12109
- 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";
12183
+ 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";
12110
12184
  body: string;
12111
12185
  from: string;
12112
12186
  subject: string;
@@ -12118,7 +12192,7 @@ export declare function init(config: AuthHeroConfig): {
12118
12192
  };
12119
12193
  };
12120
12194
  output: {
12121
- 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";
12195
+ 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";
12122
12196
  body: string;
12123
12197
  from: string;
12124
12198
  subject: string;
@@ -12141,7 +12215,7 @@ export declare function init(config: AuthHeroConfig): {
12141
12215
  };
12142
12216
  };
12143
12217
  output: {
12144
- 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";
12218
+ 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";
12145
12219
  body: string;
12146
12220
  subject: string;
12147
12221
  }[];
@@ -12154,7 +12228,7 @@ export declare function init(config: AuthHeroConfig): {
12154
12228
  $get: {
12155
12229
  input: {
12156
12230
  param: {
12157
- 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";
12231
+ 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";
12158
12232
  };
12159
12233
  } & {
12160
12234
  header: {
@@ -12167,7 +12241,7 @@ export declare function init(config: AuthHeroConfig): {
12167
12241
  } | {
12168
12242
  input: {
12169
12243
  param: {
12170
- 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";
12244
+ 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";
12171
12245
  };
12172
12246
  } & {
12173
12247
  header: {
@@ -12175,7 +12249,7 @@ export declare function init(config: AuthHeroConfig): {
12175
12249
  };
12176
12250
  };
12177
12251
  output: {
12178
- 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";
12252
+ 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";
12179
12253
  body: string;
12180
12254
  from: string;
12181
12255
  subject: string;
@@ -12194,7 +12268,7 @@ export declare function init(config: AuthHeroConfig): {
12194
12268
  $put: {
12195
12269
  input: {
12196
12270
  param: {
12197
- 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";
12271
+ 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";
12198
12272
  };
12199
12273
  } & {
12200
12274
  header: {
@@ -12202,7 +12276,7 @@ export declare function init(config: AuthHeroConfig): {
12202
12276
  };
12203
12277
  } & {
12204
12278
  json: {
12205
- 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";
12279
+ 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";
12206
12280
  body: string;
12207
12281
  subject: string;
12208
12282
  syntax?: "liquid" | undefined;
@@ -12214,7 +12288,7 @@ export declare function init(config: AuthHeroConfig): {
12214
12288
  };
12215
12289
  };
12216
12290
  output: {
12217
- 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";
12291
+ 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";
12218
12292
  body: string;
12219
12293
  from: string;
12220
12294
  subject: string;
@@ -12233,7 +12307,7 @@ export declare function init(config: AuthHeroConfig): {
12233
12307
  $patch: {
12234
12308
  input: {
12235
12309
  param: {
12236
- 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";
12310
+ 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";
12237
12311
  };
12238
12312
  } & {
12239
12313
  header: {
@@ -12241,7 +12315,7 @@ export declare function init(config: AuthHeroConfig): {
12241
12315
  };
12242
12316
  } & {
12243
12317
  json: {
12244
- 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;
12318
+ 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;
12245
12319
  body?: string | undefined;
12246
12320
  from?: string | undefined;
12247
12321
  subject?: string | undefined;
@@ -12258,7 +12332,7 @@ export declare function init(config: AuthHeroConfig): {
12258
12332
  } | {
12259
12333
  input: {
12260
12334
  param: {
12261
- 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";
12335
+ 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";
12262
12336
  };
12263
12337
  } & {
12264
12338
  header: {
@@ -12266,7 +12340,7 @@ export declare function init(config: AuthHeroConfig): {
12266
12340
  };
12267
12341
  } & {
12268
12342
  json: {
12269
- 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;
12343
+ 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;
12270
12344
  body?: string | undefined;
12271
12345
  from?: string | undefined;
12272
12346
  subject?: string | undefined;
@@ -12278,7 +12352,7 @@ export declare function init(config: AuthHeroConfig): {
12278
12352
  };
12279
12353
  };
12280
12354
  output: {
12281
- 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";
12355
+ 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";
12282
12356
  body: string;
12283
12357
  from: string;
12284
12358
  subject: string;
@@ -12297,7 +12371,7 @@ export declare function init(config: AuthHeroConfig): {
12297
12371
  $delete: {
12298
12372
  input: {
12299
12373
  param: {
12300
- 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";
12374
+ 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";
12301
12375
  };
12302
12376
  } & {
12303
12377
  header: {
@@ -12310,7 +12384,7 @@ export declare function init(config: AuthHeroConfig): {
12310
12384
  } | {
12311
12385
  input: {
12312
12386
  param: {
12313
- 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";
12387
+ 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";
12314
12388
  };
12315
12389
  } & {
12316
12390
  header: {
@@ -12327,7 +12401,7 @@ export declare function init(config: AuthHeroConfig): {
12327
12401
  $post: {
12328
12402
  input: {
12329
12403
  param: {
12330
- 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";
12404
+ 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";
12331
12405
  };
12332
12406
  } & {
12333
12407
  header: {
@@ -13279,7 +13353,7 @@ export declare function init(config: AuthHeroConfig): {
13279
13353
  } & {
13280
13354
  json: {
13281
13355
  body?: string | undefined;
13282
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
13356
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
13283
13357
  branding?: {
13284
13358
  colors?: {
13285
13359
  primary: string;
@@ -14985,17 +15059,17 @@ export declare function init(config: AuthHeroConfig): {
14985
15059
  email: string;
14986
15060
  send: "code" | "link";
14987
15061
  authParams: {
14988
- username?: string | undefined;
14989
- state?: string | undefined;
14990
15062
  audience?: string | undefined;
14991
15063
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14992
15064
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14993
15065
  scope?: string | undefined;
14994
- organization?: string | undefined;
15066
+ username?: string | undefined;
15067
+ state?: string | undefined;
14995
15068
  nonce?: string | undefined;
15069
+ prompt?: string | undefined;
14996
15070
  act_as?: string | undefined;
14997
15071
  redirect_uri?: string | undefined;
14998
- prompt?: string | undefined;
15072
+ organization?: string | undefined;
14999
15073
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15000
15074
  code_challenge?: string | undefined;
15001
15075
  ui_locales?: string | undefined;
@@ -15021,17 +15095,17 @@ export declare function init(config: AuthHeroConfig): {
15021
15095
  phone_number: string;
15022
15096
  send: "code" | "link";
15023
15097
  authParams: {
15024
- username?: string | undefined;
15025
- state?: string | undefined;
15026
15098
  audience?: string | undefined;
15027
15099
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15028
15100
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15029
15101
  scope?: string | undefined;
15030
- organization?: string | undefined;
15102
+ username?: string | undefined;
15103
+ state?: string | undefined;
15031
15104
  nonce?: string | undefined;
15105
+ prompt?: string | undefined;
15032
15106
  act_as?: string | undefined;
15033
15107
  redirect_uri?: string | undefined;
15034
- prompt?: string | undefined;
15108
+ organization?: string | undefined;
15035
15109
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15036
15110
  code_challenge?: string | undefined;
15037
15111
  ui_locales?: string | undefined;
@@ -15165,14 +15239,14 @@ export declare function init(config: AuthHeroConfig): {
15165
15239
  input: {
15166
15240
  form: {
15167
15241
  token: string;
15168
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15242
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15169
15243
  client_id?: string | undefined;
15170
15244
  client_secret?: string | undefined;
15171
15245
  };
15172
15246
  } & {
15173
15247
  json: {
15174
15248
  token: string;
15175
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15249
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15176
15250
  client_id?: string | undefined;
15177
15251
  client_secret?: string | undefined;
15178
15252
  };
@@ -15184,14 +15258,14 @@ export declare function init(config: AuthHeroConfig): {
15184
15258
  input: {
15185
15259
  form: {
15186
15260
  token: string;
15187
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15261
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15188
15262
  client_id?: string | undefined;
15189
15263
  client_secret?: string | undefined;
15190
15264
  };
15191
15265
  } & {
15192
15266
  json: {
15193
15267
  token: string;
15194
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15268
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15195
15269
  client_id?: string | undefined;
15196
15270
  client_secret?: string | undefined;
15197
15271
  };
@@ -15206,14 +15280,14 @@ export declare function init(config: AuthHeroConfig): {
15206
15280
  input: {
15207
15281
  form: {
15208
15282
  token: string;
15209
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15283
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15210
15284
  client_id?: string | undefined;
15211
15285
  client_secret?: string | undefined;
15212
15286
  };
15213
15287
  } & {
15214
15288
  json: {
15215
15289
  token: string;
15216
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15290
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15217
15291
  client_id?: string | undefined;
15218
15292
  client_secret?: string | undefined;
15219
15293
  };
@@ -15263,7 +15337,7 @@ export declare function init(config: AuthHeroConfig): {
15263
15337
  client_id: string;
15264
15338
  username: string;
15265
15339
  otp: string;
15266
- realm: "email" | "sms";
15340
+ realm: "sms" | "email";
15267
15341
  } | {
15268
15342
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15269
15343
  subject_token: string;
@@ -15310,7 +15384,7 @@ export declare function init(config: AuthHeroConfig): {
15310
15384
  client_id: string;
15311
15385
  username: string;
15312
15386
  otp: string;
15313
- realm: "email" | "sms";
15387
+ realm: "sms" | "email";
15314
15388
  } | {
15315
15389
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15316
15390
  subject_token: string;
@@ -15362,7 +15436,7 @@ export declare function init(config: AuthHeroConfig): {
15362
15436
  client_id: string;
15363
15437
  username: string;
15364
15438
  otp: string;
15365
- realm: "email" | "sms";
15439
+ realm: "sms" | "email";
15366
15440
  } | {
15367
15441
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15368
15442
  subject_token: string;
@@ -15409,7 +15483,7 @@ export declare function init(config: AuthHeroConfig): {
15409
15483
  client_id: string;
15410
15484
  username: string;
15411
15485
  otp: string;
15412
- realm: "email" | "sms";
15486
+ realm: "sms" | "email";
15413
15487
  } | {
15414
15488
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15415
15489
  subject_token: string;
@@ -15469,7 +15543,7 @@ export declare function init(config: AuthHeroConfig): {
15469
15543
  client_id: string;
15470
15544
  username: string;
15471
15545
  otp: string;
15472
- realm: "email" | "sms";
15546
+ realm: "sms" | "email";
15473
15547
  } | {
15474
15548
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15475
15549
  subject_token: string;
@@ -15516,7 +15590,7 @@ export declare function init(config: AuthHeroConfig): {
15516
15590
  client_id: string;
15517
15591
  username: string;
15518
15592
  otp: string;
15519
- realm: "email" | "sms";
15593
+ realm: "sms" | "email";
15520
15594
  } | {
15521
15595
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15522
15596
  subject_token: string;
@@ -15571,7 +15645,7 @@ export declare function init(config: AuthHeroConfig): {
15571
15645
  client_id: string;
15572
15646
  username: string;
15573
15647
  otp: string;
15574
- realm: "email" | "sms";
15648
+ realm: "sms" | "email";
15575
15649
  } | {
15576
15650
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15577
15651
  subject_token: string;
@@ -15618,7 +15692,7 @@ export declare function init(config: AuthHeroConfig): {
15618
15692
  client_id: string;
15619
15693
  username: string;
15620
15694
  otp: string;
15621
- realm: "email" | "sms";
15695
+ realm: "sms" | "email";
15622
15696
  } | {
15623
15697
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15624
15698
  subject_token: string;
@@ -15673,7 +15747,7 @@ export declare function init(config: AuthHeroConfig): {
15673
15747
  client_id: string;
15674
15748
  username: string;
15675
15749
  otp: string;
15676
- realm: "email" | "sms";
15750
+ realm: "sms" | "email";
15677
15751
  } | {
15678
15752
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15679
15753
  subject_token: string;
@@ -15720,7 +15794,7 @@ export declare function init(config: AuthHeroConfig): {
15720
15794
  client_id: string;
15721
15795
  username: string;
15722
15796
  otp: string;
15723
- realm: "email" | "sms";
15797
+ realm: "sms" | "email";
15724
15798
  } | {
15725
15799
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15726
15800
  subject_token: string;
@@ -16565,7 +16639,7 @@ export declare function init(config: AuthHeroConfig): {
16565
16639
  } & {
16566
16640
  form: {
16567
16641
  username: string;
16568
- login_selection?: "password" | "code" | undefined;
16642
+ login_selection?: "code" | "password" | undefined;
16569
16643
  };
16570
16644
  };
16571
16645
  output: {};
@@ -16579,7 +16653,7 @@ export declare function init(config: AuthHeroConfig): {
16579
16653
  } & {
16580
16654
  form: {
16581
16655
  username: string;
16582
- login_selection?: "password" | "code" | undefined;
16656
+ login_selection?: "code" | "password" | undefined;
16583
16657
  };
16584
16658
  };
16585
16659
  output: {};
@@ -16944,7 +17018,7 @@ export declare function init(config: AuthHeroConfig): {
16944
17018
  $get: {
16945
17019
  input: {
16946
17020
  param: {
16947
- 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";
17021
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
16948
17022
  };
16949
17023
  } & {
16950
17024
  query: {
@@ -16960,7 +17034,7 @@ export declare function init(config: AuthHeroConfig): {
16960
17034
  } | {
16961
17035
  input: {
16962
17036
  param: {
16963
- 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";
17037
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
16964
17038
  };
16965
17039
  } & {
16966
17040
  query: {
@@ -16976,7 +17050,7 @@ export declare function init(config: AuthHeroConfig): {
16976
17050
  } | {
16977
17051
  input: {
16978
17052
  param: {
16979
- 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";
17053
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
16980
17054
  };
16981
17055
  } & {
16982
17056
  query: {