authhero 5.10.0 → 5.12.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/dist/assets/u/js/client.js +33 -1
  2. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  3. package/dist/assets/u/widget/index.esm.js +1 -1
  4. package/dist/assets/u/widget/p-FUW5zvoZ.js +2 -0
  5. package/dist/assets/u/widget/{p-e91b632f.entry.js → p-aa120307.entry.js} +1 -1
  6. package/dist/assets/u/widget/{p-f63fd386.entry.js → p-f0f9eca3.entry.js} +1 -1
  7. package/dist/authhero.cjs +229 -212
  8. package/dist/authhero.css +2 -1
  9. package/dist/authhero.d.ts +142 -90
  10. package/dist/authhero.mjs +80357 -82256
  11. package/dist/client.js +33 -1
  12. package/dist/passkey-enrollment-DKWsGt-K.js +1 -0
  13. package/dist/passkey-enrollment-Dw1ObR65.mjs +26 -0
  14. package/dist/stats.html +1 -1
  15. package/dist/tsconfig.types.tsbuildinfo +1 -1
  16. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  17. package/dist/types/client/client-bundle.d.ts +1 -1
  18. package/dist/types/email-services/mailgun.d.ts +1 -0
  19. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  20. package/dist/types/helpers/service-token.d.ts +21 -0
  21. package/dist/types/helpers/users.d.ts +28 -0
  22. package/dist/types/hooks/helpers/token-api.d.ts +7 -0
  23. package/dist/types/index.d.ts +126 -90
  24. package/dist/types/routes/auth-api/authorize.d.ts +14 -14
  25. package/dist/types/routes/auth-api/index.d.ts +34 -34
  26. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  27. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  28. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  29. package/dist/types/routes/auth-api/token.d.ts +10 -10
  30. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  31. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  32. package/dist/types/routes/management-api/clients.d.ts +7 -7
  33. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  34. package/dist/types/routes/management-api/index.d.ts +70 -34
  35. package/dist/types/routes/management-api/logs.d.ts +3 -3
  36. package/dist/types/routes/management-api/organizations.d.ts +40 -4
  37. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  38. package/dist/types/routes/management-api/proxy-routes.d.ts +221 -0
  39. package/dist/types/routes/management-api/users.d.ts +2 -2
  40. package/dist/types/routes/proxy-control-plane/index.d.ts +22 -0
  41. package/dist/types/routes/universal-login/common.d.ts +2 -2
  42. package/dist/types/types/AuthHeroConfig.d.ts +14 -0
  43. package/dist/types/types/IdToken.d.ts +1 -1
  44. package/package.json +25 -24
  45. package/dist/assets/u/widget/p-BFP_5sHV.js +0 -2
  46. package/dist/passkey-enrollment-D0dl7raT.mjs +0 -42
  47. package/dist/passkey-enrollment-dbZd6Zqw.js +0 -1
@@ -9,6 +9,7 @@ import { CountryCode } from 'libphonenumber-js';
9
9
  import { SamlSigner } from '@authhero/saml/core';
10
10
  export { HttpSamlSigner, SamlSigner } from '@authhero/saml/core';
11
11
  import { Context, Handler, Next, MiddlewareHandler } from 'hono';
12
+ import * as _authhero_proxy from '@authhero/proxy';
12
13
  import { FC, PropsWithChildren, JSXNode } from 'hono/jsx';
13
14
  import * as hono_jsx_jsx_dev_runtime from 'hono/jsx/jsx-dev-runtime';
14
15
 
@@ -1037,6 +1038,20 @@ interface AuthHeroConfig {
1037
1038
  * ```
1038
1039
  */
1039
1040
  managementApiExtensions?: ManagementApiExtension[];
1041
+ /**
1042
+ * Optional privileged control-plane endpoint for the `@authhero/proxy`
1043
+ * data plane. When set, mounts `GET /api/v2/proxy/control-plane/hosts/:host`
1044
+ * which returns the cross-tenant `ResolvedHost` for the given hostname.
1045
+ *
1046
+ * This endpoint is read by remote proxy deployments via
1047
+ * `createHttpProxyAdapter`. It is **cross-tenant** — gate it with a
1048
+ * dedicated credential (shared secret, mTLS, or a JWT scoped to
1049
+ * `proxy:resolve_host`), never with a tenant token.
1050
+ */
1051
+ proxyControlPlane?: {
1052
+ resolveHost: (host: string) => Promise<_authhero_proxy.ResolvedHost | null>;
1053
+ authenticate: (request: Request) => Promise<boolean> | boolean;
1054
+ };
1040
1055
  /**
1041
1056
  * Optional powered-by logo to display at the bottom left of the login widget.
1042
1057
  * This is only configurable in code, not stored in the database.
@@ -1610,6 +1625,7 @@ declare const mailgunCredentialsSchema: z.ZodObject<{
1610
1625
  domain: z.ZodString;
1611
1626
  region: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1612
1627
  eu: "eu";
1628
+ us: "us";
1613
1629
  }>>>;
1614
1630
  }, z.core.$strip>;
1615
1631
  type MailgunCredentials = z.infer<typeof mailgunCredentialsSchema>;
@@ -2407,7 +2423,7 @@ declare function init(config: AuthHeroConfig): {
2407
2423
  };
2408
2424
  } & {
2409
2425
  json: {
2410
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2426
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2411
2427
  phone_number?: string | undefined;
2412
2428
  totp_secret?: string | undefined;
2413
2429
  credential_id?: string | undefined;
@@ -2547,7 +2563,7 @@ declare function init(config: AuthHeroConfig): {
2547
2563
  };
2548
2564
  };
2549
2565
  output: {
2550
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2566
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2551
2567
  enabled: boolean;
2552
2568
  trial_expired?: boolean | undefined;
2553
2569
  }[];
@@ -2702,7 +2718,7 @@ declare function init(config: AuthHeroConfig): {
2702
2718
  $get: {
2703
2719
  input: {
2704
2720
  param: {
2705
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2721
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2706
2722
  };
2707
2723
  } & {
2708
2724
  header: {
@@ -2710,7 +2726,7 @@ declare function init(config: AuthHeroConfig): {
2710
2726
  };
2711
2727
  };
2712
2728
  output: {
2713
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2729
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2714
2730
  enabled: boolean;
2715
2731
  trial_expired?: boolean | undefined;
2716
2732
  };
@@ -2723,7 +2739,7 @@ declare function init(config: AuthHeroConfig): {
2723
2739
  $put: {
2724
2740
  input: {
2725
2741
  param: {
2726
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2742
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2727
2743
  };
2728
2744
  } & {
2729
2745
  header: {
@@ -2735,7 +2751,7 @@ declare function init(config: AuthHeroConfig): {
2735
2751
  };
2736
2752
  };
2737
2753
  output: {
2738
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2754
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2739
2755
  enabled: boolean;
2740
2756
  trial_expired?: boolean | undefined;
2741
2757
  };
@@ -3101,22 +3117,58 @@ declare function init(config: AuthHeroConfig): {
3101
3117
  };
3102
3118
  output: {
3103
3119
  user_id: string;
3104
- roles: {}[];
3120
+ roles: {
3121
+ name: string;
3122
+ id: string;
3123
+ description?: string | undefined;
3124
+ is_system?: boolean | undefined;
3125
+ metadata?: {
3126
+ [x: string]: any;
3127
+ } | undefined;
3128
+ created_at?: string | undefined;
3129
+ updated_at?: string | undefined;
3130
+ }[];
3105
3131
  email?: string | undefined;
3132
+ name?: string | undefined;
3133
+ picture?: string | undefined;
3106
3134
  }[] | {
3107
3135
  start: number;
3108
3136
  limit: number;
3109
3137
  total: number;
3110
3138
  members: {
3111
3139
  user_id: string;
3112
- roles: {}[];
3140
+ roles: {
3141
+ name: string;
3142
+ id: string;
3143
+ description?: string | undefined;
3144
+ is_system?: boolean | undefined;
3145
+ metadata?: {
3146
+ [x: string]: any;
3147
+ } | undefined;
3148
+ created_at?: string | undefined;
3149
+ updated_at?: string | undefined;
3150
+ }[];
3113
3151
  email?: string | undefined;
3152
+ name?: string | undefined;
3153
+ picture?: string | undefined;
3114
3154
  }[];
3115
3155
  } | {
3116
3156
  members: {
3117
3157
  user_id: string;
3118
- roles: {}[];
3158
+ roles: {
3159
+ name: string;
3160
+ id: string;
3161
+ description?: string | undefined;
3162
+ is_system?: boolean | undefined;
3163
+ metadata?: {
3164
+ [x: string]: any;
3165
+ } | undefined;
3166
+ created_at?: string | undefined;
3167
+ updated_at?: string | undefined;
3168
+ }[];
3119
3169
  email?: string | undefined;
3170
+ name?: string | undefined;
3171
+ picture?: string | undefined;
3120
3172
  }[];
3121
3173
  next?: string | undefined;
3122
3174
  };
@@ -3444,11 +3496,11 @@ declare function init(config: AuthHeroConfig): {
3444
3496
  invitee: {
3445
3497
  email?: string | undefined;
3446
3498
  };
3447
- connection_id?: string | undefined;
3448
3499
  id?: string | undefined;
3449
3500
  app_metadata?: Record<string, any> | undefined;
3450
3501
  user_metadata?: Record<string, any> | undefined;
3451
3502
  roles?: string[] | undefined;
3503
+ connection_id?: string | undefined;
3452
3504
  ttl_sec?: number | undefined;
3453
3505
  send_invitation_email?: boolean | undefined;
3454
3506
  };
@@ -4299,7 +4351,7 @@ declare function init(config: AuthHeroConfig): {
4299
4351
  type: "REDIRECT";
4300
4352
  action: "REDIRECT_USER";
4301
4353
  params: {
4302
- target: "custom" | "account" | "change-email";
4354
+ target: "custom" | "change-email" | "account";
4303
4355
  custom_url?: string | undefined;
4304
4356
  };
4305
4357
  alias?: string | undefined;
@@ -4352,7 +4404,7 @@ declare function init(config: AuthHeroConfig): {
4352
4404
  type: "REDIRECT";
4353
4405
  action: "REDIRECT_USER";
4354
4406
  params: {
4355
- target: "custom" | "account" | "change-email";
4407
+ target: "custom" | "change-email" | "account";
4356
4408
  custom_url?: string | undefined;
4357
4409
  };
4358
4410
  alias?: string | undefined;
@@ -4420,7 +4472,7 @@ declare function init(config: AuthHeroConfig): {
4420
4472
  type: "REDIRECT";
4421
4473
  action: "REDIRECT_USER";
4422
4474
  params: {
4423
- target: "custom" | "account" | "change-email";
4475
+ target: "custom" | "change-email" | "account";
4424
4476
  custom_url?: string | undefined;
4425
4477
  };
4426
4478
  alias?: string | undefined;
@@ -4501,7 +4553,7 @@ declare function init(config: AuthHeroConfig): {
4501
4553
  type: "REDIRECT";
4502
4554
  action: "REDIRECT_USER";
4503
4555
  params: {
4504
- target: "custom" | "account" | "change-email";
4556
+ target: "custom" | "change-email" | "account";
4505
4557
  custom_url?: string | undefined;
4506
4558
  };
4507
4559
  alias?: string | undefined;
@@ -4549,7 +4601,7 @@ declare function init(config: AuthHeroConfig): {
4549
4601
  type: "REDIRECT";
4550
4602
  action: "REDIRECT_USER";
4551
4603
  params: {
4552
- target: "custom" | "account" | "change-email";
4604
+ target: "custom" | "change-email" | "account";
4553
4605
  custom_url?: string | undefined;
4554
4606
  };
4555
4607
  alias?: string | undefined;
@@ -4609,7 +4661,7 @@ declare function init(config: AuthHeroConfig): {
4609
4661
  type: "REDIRECT";
4610
4662
  action: "REDIRECT_USER";
4611
4663
  params: {
4612
- target: "custom" | "account" | "change-email";
4664
+ target: "custom" | "change-email" | "account";
4613
4665
  custom_url?: string | undefined;
4614
4666
  };
4615
4667
  alias?: string | undefined;
@@ -4657,7 +4709,7 @@ declare function init(config: AuthHeroConfig): {
4657
4709
  type: "REDIRECT";
4658
4710
  action: "REDIRECT_USER";
4659
4711
  params: {
4660
- target: "custom" | "account" | "change-email";
4712
+ target: "custom" | "change-email" | "account";
4661
4713
  custom_url?: string | undefined;
4662
4714
  };
4663
4715
  alias?: string | undefined;
@@ -8935,7 +8987,7 @@ declare function init(config: AuthHeroConfig): {
8935
8987
  };
8936
8988
  };
8937
8989
  output: {
8938
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
8990
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
8939
8991
  language: string;
8940
8992
  }[];
8941
8993
  outputFormat: "json";
@@ -8973,7 +9025,7 @@ declare function init(config: AuthHeroConfig): {
8973
9025
  $get: {
8974
9026
  input: {
8975
9027
  param: {
8976
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9028
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
8977
9029
  language: string;
8978
9030
  };
8979
9031
  } & {
@@ -8995,7 +9047,7 @@ declare function init(config: AuthHeroConfig): {
8995
9047
  $put: {
8996
9048
  input: {
8997
9049
  param: {
8998
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9050
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
8999
9051
  language: string;
9000
9052
  };
9001
9053
  } & {
@@ -9019,7 +9071,7 @@ declare function init(config: AuthHeroConfig): {
9019
9071
  $delete: {
9020
9072
  input: {
9021
9073
  param: {
9022
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9074
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9023
9075
  language: string;
9024
9076
  };
9025
9077
  } & {
@@ -10460,7 +10512,7 @@ declare function init(config: AuthHeroConfig): {
10460
10512
  log_type: string;
10461
10513
  category: "user_action" | "admin_action" | "system" | "api";
10462
10514
  actor: {
10463
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10515
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
10464
10516
  id?: string | undefined;
10465
10517
  email?: string | undefined;
10466
10518
  org_id?: string | undefined;
@@ -11108,7 +11160,7 @@ declare function init(config: AuthHeroConfig): {
11108
11160
  };
11109
11161
  };
11110
11162
  output: {
11111
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11163
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11112
11164
  date: string;
11113
11165
  isMobile: boolean;
11114
11166
  log_id: string;
@@ -11147,7 +11199,7 @@ declare function init(config: AuthHeroConfig): {
11147
11199
  limit: number;
11148
11200
  length: number;
11149
11201
  logs: {
11150
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11202
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11151
11203
  date: string;
11152
11204
  isMobile: boolean;
11153
11205
  log_id: string;
@@ -11201,7 +11253,7 @@ declare function init(config: AuthHeroConfig): {
11201
11253
  };
11202
11254
  };
11203
11255
  output: {
11204
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11256
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11205
11257
  date: string;
11206
11258
  isMobile: boolean;
11207
11259
  log_id: string;
@@ -11282,7 +11334,7 @@ declare function init(config: AuthHeroConfig): {
11282
11334
  audience?: string | undefined;
11283
11335
  client_id?: string | undefined;
11284
11336
  allow_any_organization?: string | undefined;
11285
- subject_type?: "user" | "client" | undefined;
11337
+ subject_type?: "client" | "user" | undefined;
11286
11338
  };
11287
11339
  } & {
11288
11340
  header: {
@@ -11297,7 +11349,7 @@ declare function init(config: AuthHeroConfig): {
11297
11349
  organization_usage?: "deny" | "allow" | "require" | undefined;
11298
11350
  allow_any_organization?: boolean | undefined;
11299
11351
  is_system?: boolean | undefined;
11300
- subject_type?: "user" | "client" | undefined;
11352
+ subject_type?: "client" | "user" | undefined;
11301
11353
  authorization_details_types?: string[] | undefined;
11302
11354
  created_at?: string | undefined;
11303
11355
  updated_at?: string | undefined;
@@ -11313,7 +11365,7 @@ declare function init(config: AuthHeroConfig): {
11313
11365
  organization_usage?: "deny" | "allow" | "require" | undefined;
11314
11366
  allow_any_organization?: boolean | undefined;
11315
11367
  is_system?: boolean | undefined;
11316
- subject_type?: "user" | "client" | undefined;
11368
+ subject_type?: "client" | "user" | undefined;
11317
11369
  authorization_details_types?: string[] | undefined;
11318
11370
  created_at?: string | undefined;
11319
11371
  updated_at?: string | undefined;
@@ -11344,7 +11396,7 @@ declare function init(config: AuthHeroConfig): {
11344
11396
  organization_usage?: "deny" | "allow" | "require" | undefined;
11345
11397
  allow_any_organization?: boolean | undefined;
11346
11398
  is_system?: boolean | undefined;
11347
- subject_type?: "user" | "client" | undefined;
11399
+ subject_type?: "client" | "user" | undefined;
11348
11400
  authorization_details_types?: string[] | undefined;
11349
11401
  created_at?: string | undefined;
11350
11402
  updated_at?: string | undefined;
@@ -11389,7 +11441,7 @@ declare function init(config: AuthHeroConfig): {
11389
11441
  organization_usage?: "deny" | "allow" | "require" | undefined;
11390
11442
  allow_any_organization?: boolean | undefined;
11391
11443
  is_system?: boolean | undefined;
11392
- subject_type?: "user" | "client" | undefined;
11444
+ subject_type?: "client" | "user" | undefined;
11393
11445
  authorization_details_types?: string[] | undefined;
11394
11446
  };
11395
11447
  };
@@ -11401,7 +11453,7 @@ declare function init(config: AuthHeroConfig): {
11401
11453
  organization_usage?: "deny" | "allow" | "require" | undefined;
11402
11454
  allow_any_organization?: boolean | undefined;
11403
11455
  is_system?: boolean | undefined;
11404
- subject_type?: "user" | "client" | undefined;
11456
+ subject_type?: "client" | "user" | undefined;
11405
11457
  authorization_details_types?: string[] | undefined;
11406
11458
  created_at?: string | undefined;
11407
11459
  updated_at?: string | undefined;
@@ -11425,7 +11477,7 @@ declare function init(config: AuthHeroConfig): {
11425
11477
  organization_usage?: "deny" | "allow" | "require" | undefined;
11426
11478
  allow_any_organization?: boolean | undefined;
11427
11479
  is_system?: boolean | undefined;
11428
- subject_type?: "user" | "client" | undefined;
11480
+ subject_type?: "client" | "user" | undefined;
11429
11481
  authorization_details_types?: string[] | undefined;
11430
11482
  };
11431
11483
  };
@@ -11437,7 +11489,7 @@ declare function init(config: AuthHeroConfig): {
11437
11489
  organization_usage?: "deny" | "allow" | "require" | undefined;
11438
11490
  allow_any_organization?: boolean | undefined;
11439
11491
  is_system?: boolean | undefined;
11440
- subject_type?: "user" | "client" | undefined;
11492
+ subject_type?: "client" | "user" | undefined;
11441
11493
  authorization_details_types?: string[] | undefined;
11442
11494
  created_at?: string | undefined;
11443
11495
  updated_at?: string | undefined;
@@ -13345,7 +13397,7 @@ declare function init(config: AuthHeroConfig): {
13345
13397
  };
13346
13398
  };
13347
13399
  output: {
13348
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
13400
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13349
13401
  date: string;
13350
13402
  isMobile: boolean;
13351
13403
  log_id: string;
@@ -13384,7 +13436,7 @@ declare function init(config: AuthHeroConfig): {
13384
13436
  limit: number;
13385
13437
  length: number;
13386
13438
  logs: {
13387
- type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
13439
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13388
13440
  date: string;
13389
13441
  isMobile: boolean;
13390
13442
  log_id: string;
@@ -13699,7 +13751,7 @@ declare function init(config: AuthHeroConfig): {
13699
13751
  };
13700
13752
  } & {
13701
13753
  json: {
13702
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13754
+ 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";
13703
13755
  body: string;
13704
13756
  from: string;
13705
13757
  subject: string;
@@ -13720,7 +13772,7 @@ declare function init(config: AuthHeroConfig): {
13720
13772
  };
13721
13773
  } & {
13722
13774
  json: {
13723
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13775
+ 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";
13724
13776
  body: string;
13725
13777
  from: string;
13726
13778
  subject: string;
@@ -13732,7 +13784,7 @@ declare function init(config: AuthHeroConfig): {
13732
13784
  };
13733
13785
  };
13734
13786
  output: {
13735
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13787
+ 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";
13736
13788
  body: string;
13737
13789
  from: string;
13738
13790
  subject: string;
@@ -13751,7 +13803,7 @@ declare function init(config: AuthHeroConfig): {
13751
13803
  $get: {
13752
13804
  input: {
13753
13805
  param: {
13754
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13806
+ 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";
13755
13807
  };
13756
13808
  } & {
13757
13809
  header: {
@@ -13764,7 +13816,7 @@ declare function init(config: AuthHeroConfig): {
13764
13816
  } | {
13765
13817
  input: {
13766
13818
  param: {
13767
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13819
+ 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";
13768
13820
  };
13769
13821
  } & {
13770
13822
  header: {
@@ -13772,7 +13824,7 @@ declare function init(config: AuthHeroConfig): {
13772
13824
  };
13773
13825
  };
13774
13826
  output: {
13775
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13827
+ 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";
13776
13828
  body: string;
13777
13829
  from: string;
13778
13830
  subject: string;
@@ -13791,7 +13843,7 @@ declare function init(config: AuthHeroConfig): {
13791
13843
  $put: {
13792
13844
  input: {
13793
13845
  param: {
13794
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13846
+ 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";
13795
13847
  };
13796
13848
  } & {
13797
13849
  header: {
@@ -13799,7 +13851,7 @@ declare function init(config: AuthHeroConfig): {
13799
13851
  };
13800
13852
  } & {
13801
13853
  json: {
13802
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13854
+ 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";
13803
13855
  body: string;
13804
13856
  from: string;
13805
13857
  subject: string;
@@ -13811,7 +13863,7 @@ declare function init(config: AuthHeroConfig): {
13811
13863
  };
13812
13864
  };
13813
13865
  output: {
13814
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13866
+ 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";
13815
13867
  body: string;
13816
13868
  from: string;
13817
13869
  subject: string;
@@ -13830,7 +13882,7 @@ declare function init(config: AuthHeroConfig): {
13830
13882
  $patch: {
13831
13883
  input: {
13832
13884
  param: {
13833
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13885
+ 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";
13834
13886
  };
13835
13887
  } & {
13836
13888
  header: {
@@ -13838,7 +13890,7 @@ declare function init(config: AuthHeroConfig): {
13838
13890
  };
13839
13891
  } & {
13840
13892
  json: {
13841
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
13893
+ 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;
13842
13894
  body?: string | undefined;
13843
13895
  from?: string | undefined;
13844
13896
  subject?: string | undefined;
@@ -13855,7 +13907,7 @@ declare function init(config: AuthHeroConfig): {
13855
13907
  } | {
13856
13908
  input: {
13857
13909
  param: {
13858
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13910
+ 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";
13859
13911
  };
13860
13912
  } & {
13861
13913
  header: {
@@ -13863,7 +13915,7 @@ declare function init(config: AuthHeroConfig): {
13863
13915
  };
13864
13916
  } & {
13865
13917
  json: {
13866
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
13918
+ 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;
13867
13919
  body?: string | undefined;
13868
13920
  from?: string | undefined;
13869
13921
  subject?: string | undefined;
@@ -13875,7 +13927,7 @@ declare function init(config: AuthHeroConfig): {
13875
13927
  };
13876
13928
  };
13877
13929
  output: {
13878
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13930
+ 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";
13879
13931
  body: string;
13880
13932
  from: string;
13881
13933
  subject: string;
@@ -14921,7 +14973,7 @@ declare function init(config: AuthHeroConfig): {
14921
14973
  output: {
14922
14974
  id: string;
14923
14975
  trigger_id: string;
14924
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
14976
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
14925
14977
  results: {
14926
14978
  action_name: string;
14927
14979
  error: {
@@ -16079,7 +16131,7 @@ declare function init(config: AuthHeroConfig): {
16079
16131
  client_id: string;
16080
16132
  redirect_url?: string | undefined;
16081
16133
  login_hint?: string | undefined;
16082
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16134
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16083
16135
  };
16084
16136
  };
16085
16137
  output: {};
@@ -16091,7 +16143,7 @@ declare function init(config: AuthHeroConfig): {
16091
16143
  client_id: string;
16092
16144
  redirect_url?: string | undefined;
16093
16145
  login_hint?: string | undefined;
16094
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16146
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16095
16147
  };
16096
16148
  };
16097
16149
  output: {
@@ -16168,17 +16220,9 @@ declare function init(config: AuthHeroConfig): {
16168
16220
  request_uri?: string | undefined;
16169
16221
  };
16170
16222
  };
16171
- output: string | {
16172
- access_token: string;
16173
- token_type: string;
16174
- expires_in: number;
16175
- id_token?: string | undefined;
16176
- scope?: string | undefined;
16177
- state?: string | undefined;
16178
- refresh_token?: string | undefined;
16179
- };
16180
- outputFormat: "json";
16181
- status: 200;
16223
+ output: {};
16224
+ outputFormat: string;
16225
+ status: 302;
16182
16226
  } | {
16183
16227
  input: {
16184
16228
  query: {
@@ -16210,9 +16254,17 @@ declare function init(config: AuthHeroConfig): {
16210
16254
  request_uri?: string | undefined;
16211
16255
  };
16212
16256
  };
16213
- output: {};
16214
- outputFormat: string;
16215
- status: 302;
16257
+ output: string | {
16258
+ access_token: string;
16259
+ token_type: string;
16260
+ expires_in: number;
16261
+ id_token?: string | undefined;
16262
+ scope?: string | undefined;
16263
+ state?: string | undefined;
16264
+ refresh_token?: string | undefined;
16265
+ };
16266
+ outputFormat: "json";
16267
+ status: 200;
16216
16268
  } | {
16217
16269
  input: {
16218
16270
  query: {
@@ -16368,19 +16420,19 @@ declare function init(config: AuthHeroConfig): {
16368
16420
  email: string;
16369
16421
  send: "code" | "link";
16370
16422
  authParams: {
16371
- code_challenge?: string | undefined;
16372
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16373
- redirect_uri?: string | undefined;
16374
- nonce?: string | undefined;
16375
- state?: string | undefined;
16376
- act_as?: string | undefined;
16377
16423
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16378
16424
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16425
+ scope?: string | undefined;
16426
+ username?: string | undefined;
16379
16427
  audience?: string | undefined;
16428
+ state?: string | undefined;
16380
16429
  organization?: string | undefined;
16381
- scope?: string | undefined;
16430
+ nonce?: string | undefined;
16431
+ redirect_uri?: string | undefined;
16432
+ act_as?: string | undefined;
16382
16433
  prompt?: string | undefined;
16383
- username?: string | undefined;
16434
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16435
+ code_challenge?: string | undefined;
16384
16436
  ui_locales?: string | undefined;
16385
16437
  max_age?: number | undefined;
16386
16438
  acr_values?: string | undefined;
@@ -16404,19 +16456,19 @@ declare function init(config: AuthHeroConfig): {
16404
16456
  phone_number: string;
16405
16457
  send: "code" | "link";
16406
16458
  authParams: {
16407
- code_challenge?: string | undefined;
16408
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16409
- redirect_uri?: string | undefined;
16410
- nonce?: string | undefined;
16411
- state?: string | undefined;
16412
- act_as?: string | undefined;
16413
16459
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16414
16460
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16461
+ scope?: string | undefined;
16462
+ username?: string | undefined;
16415
16463
  audience?: string | undefined;
16464
+ state?: string | undefined;
16416
16465
  organization?: string | undefined;
16417
- scope?: string | undefined;
16466
+ nonce?: string | undefined;
16467
+ redirect_uri?: string | undefined;
16468
+ act_as?: string | undefined;
16418
16469
  prompt?: string | undefined;
16419
- username?: string | undefined;
16470
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16471
+ code_challenge?: string | undefined;
16420
16472
  ui_locales?: string | undefined;
16421
16473
  max_age?: number | undefined;
16422
16474
  acr_values?: string | undefined;
@@ -17177,7 +17229,7 @@ declare function init(config: AuthHeroConfig): {
17177
17229
  };
17178
17230
  output: {};
17179
17231
  outputFormat: string;
17180
- status: 302;
17232
+ status: 200;
17181
17233
  } | {
17182
17234
  input: {
17183
17235
  query: {
@@ -17191,7 +17243,7 @@ declare function init(config: AuthHeroConfig): {
17191
17243
  };
17192
17244
  output: {};
17193
17245
  outputFormat: string;
17194
- status: 200;
17246
+ status: 302;
17195
17247
  } | {
17196
17248
  input: {
17197
17249
  query: {
@@ -18163,7 +18215,7 @@ declare function init(config: AuthHeroConfig): {
18163
18215
  $get: {
18164
18216
  input: {
18165
18217
  param: {
18166
- screen: "signup" | "account" | "login" | "reset-password" | "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";
18218
+ screen: "signup" | "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";
18167
18219
  };
18168
18220
  } & {
18169
18221
  query: {
@@ -18179,7 +18231,7 @@ declare function init(config: AuthHeroConfig): {
18179
18231
  } | {
18180
18232
  input: {
18181
18233
  param: {
18182
- screen: "signup" | "account" | "login" | "reset-password" | "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";
18234
+ screen: "signup" | "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";
18183
18235
  };
18184
18236
  } & {
18185
18237
  query: {
@@ -18195,7 +18247,7 @@ declare function init(config: AuthHeroConfig): {
18195
18247
  } | {
18196
18248
  input: {
18197
18249
  param: {
18198
- screen: "signup" | "account" | "login" | "reset-password" | "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";
18250
+ screen: "signup" | "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";
18199
18251
  };
18200
18252
  } & {
18201
18253
  query: {
@@ -18215,7 +18267,7 @@ declare function init(config: AuthHeroConfig): {
18215
18267
  $post: {
18216
18268
  input: {
18217
18269
  param: {
18218
- screen: "signup" | "login" | "reset-password" | "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";
18270
+ screen: "signup" | "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";
18219
18271
  };
18220
18272
  } & {
18221
18273
  query: {
@@ -18233,7 +18285,7 @@ declare function init(config: AuthHeroConfig): {
18233
18285
  } | {
18234
18286
  input: {
18235
18287
  param: {
18236
- screen: "signup" | "login" | "reset-password" | "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";
18288
+ screen: "signup" | "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";
18237
18289
  };
18238
18290
  } & {
18239
18291
  query: {
@@ -18251,7 +18303,7 @@ declare function init(config: AuthHeroConfig): {
18251
18303
  } | {
18252
18304
  input: {
18253
18305
  param: {
18254
- screen: "signup" | "login" | "reset-password" | "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";
18306
+ screen: "signup" | "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";
18255
18307
  };
18256
18308
  } & {
18257
18309
  query: {