authhero 8.15.0 → 8.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +109 -109
  3. package/dist/authhero.d.ts +76 -73
  4. package/dist/authhero.mjs +7985 -7913
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +5 -5
  7. package/dist/types/constants.d.ts +1 -1
  8. package/dist/types/helpers/logging.d.ts +11 -0
  9. package/dist/types/index.d.ts +66 -64
  10. package/dist/types/routes/auth-api/index.d.ts +4 -4
  11. package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
  12. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  13. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  14. package/dist/types/routes/management-api/branding.d.ts +5 -5
  15. package/dist/types/routes/management-api/clients.d.ts +6 -6
  16. package/dist/types/routes/management-api/connections.d.ts +15 -15
  17. package/dist/types/routes/management-api/failed-events.d.ts +3 -1
  18. package/dist/types/routes/management-api/index.d.ts +55 -53
  19. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  20. package/dist/types/routes/management-api/logs.d.ts +3 -3
  21. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  22. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  25. package/dist/types/routes/management-api/themes.d.ts +3 -3
  26. package/dist/types/routes/management-api/users.d.ts +2 -2
  27. package/dist/types/routes/universal-login/common.d.ts +8 -8
  28. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  29. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  30. package/dist/types/routes/universal-login/index.d.ts +2 -2
  31. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  32. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  33. package/dist/types/types/AuthHeroConfig.d.ts +9 -8
  34. package/dist/types/utils/username-password-provider.d.ts +11 -6
  35. package/package.json +5 -5
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
96
96
  };
97
97
  } & {
98
98
  json: {
99
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
99
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
100
100
  phone_number?: string | undefined;
101
101
  totp_secret?: string | undefined;
102
102
  credential_id?: string | undefined;
@@ -1170,10 +1170,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1170
1170
  email?: string | undefined;
1171
1171
  };
1172
1172
  id?: string | undefined;
1173
+ roles?: string[] | undefined;
1174
+ connection_id?: string | undefined;
1173
1175
  app_metadata?: Record<string, any> | undefined;
1174
1176
  user_metadata?: Record<string, any> | undefined;
1175
- connection_id?: string | undefined;
1176
- roles?: string[] | undefined;
1177
1177
  ttl_sec?: number | undefined;
1178
1178
  send_invitation_email?: boolean | undefined;
1179
1179
  };
@@ -1357,8 +1357,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1357
1357
  };
1358
1358
  } & {
1359
1359
  json: {
1360
- show_as_button?: boolean | undefined;
1361
1360
  assign_membership_on_login?: boolean | undefined;
1361
+ show_as_button?: boolean | undefined;
1362
1362
  is_signup_enabled?: boolean | undefined;
1363
1363
  };
1364
1364
  };
@@ -6828,7 +6828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6828
6828
  };
6829
6829
  };
6830
6830
  output: {
6831
- 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";
6831
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6832
6832
  language: string;
6833
6833
  }[];
6834
6834
  outputFormat: "json";
@@ -6866,7 +6866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6866
6866
  $get: {
6867
6867
  input: {
6868
6868
  param: {
6869
- 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";
6869
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6870
6870
  language: string;
6871
6871
  };
6872
6872
  } & {
@@ -6888,7 +6888,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6888
6888
  $put: {
6889
6889
  input: {
6890
6890
  param: {
6891
- 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";
6891
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6892
6892
  language: string;
6893
6893
  };
6894
6894
  } & {
@@ -6912,7 +6912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6912
6912
  $delete: {
6913
6913
  input: {
6914
6914
  param: {
6915
- 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";
6915
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6916
6916
  language: string;
6917
6917
  };
6918
6918
  } & {
@@ -7004,7 +7004,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7004
7004
  active?: boolean | undefined;
7005
7005
  } | undefined;
7006
7006
  signup?: {
7007
- status?: "optional" | "required" | "disabled" | undefined;
7007
+ status?: "optional" | "disabled" | "required" | undefined;
7008
7008
  verification?: {
7009
7009
  active?: boolean | undefined;
7010
7010
  } | undefined;
@@ -7021,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7021
7021
  active?: boolean | undefined;
7022
7022
  } | undefined;
7023
7023
  signup?: {
7024
- status?: "optional" | "required" | "disabled" | undefined;
7024
+ status?: "optional" | "disabled" | "required" | undefined;
7025
7025
  } | undefined;
7026
7026
  validation?: {
7027
7027
  max_length?: number | undefined;
@@ -7038,7 +7038,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7038
7038
  active?: boolean | undefined;
7039
7039
  } | undefined;
7040
7040
  signup?: {
7041
- status?: "optional" | "required" | "disabled" | undefined;
7041
+ status?: "optional" | "disabled" | "required" | undefined;
7042
7042
  } | undefined;
7043
7043
  } | undefined;
7044
7044
  } | undefined;
@@ -7138,7 +7138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7138
7138
  active?: boolean | undefined;
7139
7139
  } | undefined;
7140
7140
  signup?: {
7141
- status?: "optional" | "required" | "disabled" | undefined;
7141
+ status?: "optional" | "disabled" | "required" | undefined;
7142
7142
  verification?: {
7143
7143
  active?: boolean | undefined;
7144
7144
  } | undefined;
@@ -7155,7 +7155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7155
7155
  active?: boolean | undefined;
7156
7156
  } | undefined;
7157
7157
  signup?: {
7158
- status?: "optional" | "required" | "disabled" | undefined;
7158
+ status?: "optional" | "disabled" | "required" | undefined;
7159
7159
  } | undefined;
7160
7160
  validation?: {
7161
7161
  max_length?: number | undefined;
@@ -7172,7 +7172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7172
7172
  active?: boolean | undefined;
7173
7173
  } | undefined;
7174
7174
  signup?: {
7175
- status?: "optional" | "required" | "disabled" | undefined;
7175
+ status?: "optional" | "disabled" | "required" | undefined;
7176
7176
  } | undefined;
7177
7177
  } | undefined;
7178
7178
  } | undefined;
@@ -7287,7 +7287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7287
7287
  active?: boolean | undefined;
7288
7288
  } | undefined;
7289
7289
  signup?: {
7290
- status?: "optional" | "required" | "disabled" | undefined;
7290
+ status?: "optional" | "disabled" | "required" | undefined;
7291
7291
  verification?: {
7292
7292
  active?: boolean | undefined;
7293
7293
  } | undefined;
@@ -7304,7 +7304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7304
7304
  active?: boolean | undefined;
7305
7305
  } | undefined;
7306
7306
  signup?: {
7307
- status?: "optional" | "required" | "disabled" | undefined;
7307
+ status?: "optional" | "disabled" | "required" | undefined;
7308
7308
  } | undefined;
7309
7309
  validation?: {
7310
7310
  max_length?: number | undefined;
@@ -7321,7 +7321,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7321
7321
  active?: boolean | undefined;
7322
7322
  } | undefined;
7323
7323
  signup?: {
7324
- status?: "optional" | "required" | "disabled" | undefined;
7324
+ status?: "optional" | "disabled" | "required" | undefined;
7325
7325
  } | undefined;
7326
7326
  } | undefined;
7327
7327
  } | undefined;
@@ -7466,7 +7466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7466
7466
  active?: boolean | undefined;
7467
7467
  } | undefined;
7468
7468
  signup?: {
7469
- status?: "optional" | "required" | "disabled" | undefined;
7469
+ status?: "optional" | "disabled" | "required" | undefined;
7470
7470
  verification?: {
7471
7471
  active?: boolean | undefined;
7472
7472
  } | undefined;
@@ -7483,7 +7483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7483
7483
  active?: boolean | undefined;
7484
7484
  } | undefined;
7485
7485
  signup?: {
7486
- status?: "optional" | "required" | "disabled" | undefined;
7486
+ status?: "optional" | "disabled" | "required" | undefined;
7487
7487
  } | undefined;
7488
7488
  validation?: {
7489
7489
  max_length?: number | undefined;
@@ -7500,7 +7500,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7500
7500
  active?: boolean | undefined;
7501
7501
  } | undefined;
7502
7502
  signup?: {
7503
- status?: "optional" | "required" | "disabled" | undefined;
7503
+ status?: "optional" | "disabled" | "required" | undefined;
7504
7504
  } | undefined;
7505
7505
  } | undefined;
7506
7506
  } | undefined;
@@ -7624,7 +7624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7624
7624
  active?: boolean | undefined;
7625
7625
  } | undefined;
7626
7626
  signup?: {
7627
- status?: "optional" | "required" | "disabled" | undefined;
7627
+ status?: "optional" | "disabled" | "required" | undefined;
7628
7628
  verification?: {
7629
7629
  active?: boolean | undefined;
7630
7630
  } | undefined;
@@ -7641,7 +7641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7641
7641
  active?: boolean | undefined;
7642
7642
  } | undefined;
7643
7643
  signup?: {
7644
- status?: "optional" | "required" | "disabled" | undefined;
7644
+ status?: "optional" | "disabled" | "required" | undefined;
7645
7645
  } | undefined;
7646
7646
  validation?: {
7647
7647
  max_length?: number | undefined;
@@ -7658,7 +7658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7658
7658
  active?: boolean | undefined;
7659
7659
  } | undefined;
7660
7660
  signup?: {
7661
- status?: "optional" | "required" | "disabled" | undefined;
7661
+ status?: "optional" | "disabled" | "required" | undefined;
7662
7662
  } | undefined;
7663
7663
  } | undefined;
7664
7664
  } | undefined;
@@ -8413,7 +8413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8413
8413
  log_type: string;
8414
8414
  category: "user_action" | "admin_action" | "system" | "api";
8415
8415
  actor: {
8416
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8416
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8417
8417
  id?: string | undefined;
8418
8418
  email?: string | undefined;
8419
8419
  org_id?: string | undefined;
@@ -8462,6 +8462,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8462
8462
  body?: import("hono/utils/types").JSONValue | undefined;
8463
8463
  } | undefined;
8464
8464
  connection?: string | undefined;
8465
+ connection_id?: string | undefined;
8466
+ client_name?: string | undefined;
8465
8467
  strategy?: string | undefined;
8466
8468
  strategy_type?: string | undefined;
8467
8469
  audience?: string | undefined;
@@ -8721,7 +8723,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8721
8723
  created_at: string;
8722
8724
  updated_at: string;
8723
8725
  name: string;
8724
- provider: "auth0" | "oidc" | "okta" | "cognito";
8726
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8725
8727
  connection: string;
8726
8728
  enabled: boolean;
8727
8729
  credentials: {
@@ -8753,7 +8755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8753
8755
  created_at: string;
8754
8756
  updated_at: string;
8755
8757
  name: string;
8756
- provider: "auth0" | "oidc" | "okta" | "cognito";
8758
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8757
8759
  connection: string;
8758
8760
  enabled: boolean;
8759
8761
  credentials: {
@@ -8779,7 +8781,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8779
8781
  } & {
8780
8782
  json: {
8781
8783
  name: string;
8782
- provider: "auth0" | "oidc" | "okta" | "cognito";
8784
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8783
8785
  connection: string;
8784
8786
  credentials: {
8785
8787
  domain: string;
@@ -8796,7 +8798,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8796
8798
  created_at: string;
8797
8799
  updated_at: string;
8798
8800
  name: string;
8799
- provider: "auth0" | "oidc" | "okta" | "cognito";
8801
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8800
8802
  connection: string;
8801
8803
  enabled: boolean;
8802
8804
  credentials: {
@@ -8827,7 +8829,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8827
8829
  json: {
8828
8830
  id?: string | undefined;
8829
8831
  name?: string | undefined;
8830
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8832
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8831
8833
  connection?: string | undefined;
8832
8834
  enabled?: boolean | undefined;
8833
8835
  credentials?: {
@@ -8843,7 +8845,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8843
8845
  created_at: string;
8844
8846
  updated_at: string;
8845
8847
  name: string;
8846
- provider: "auth0" | "oidc" | "okta" | "cognito";
8848
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8847
8849
  connection: string;
8848
8850
  enabled: boolean;
8849
8851
  credentials: {
@@ -8891,7 +8893,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8891
8893
  [x: string]: import("hono/utils/types").JSONValue;
8892
8894
  };
8893
8895
  id: string;
8894
- status: "active" | "suspended" | "paused";
8896
+ status: "suspended" | "active" | "paused";
8895
8897
  filters?: {
8896
8898
  type: string;
8897
8899
  name: string;
@@ -8923,7 +8925,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8923
8925
  [x: string]: import("hono/utils/types").JSONValue;
8924
8926
  };
8925
8927
  id: string;
8926
- status: "active" | "suspended" | "paused";
8928
+ status: "suspended" | "active" | "paused";
8927
8929
  filters?: {
8928
8930
  type: string;
8929
8931
  name: string;
@@ -8948,7 +8950,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8948
8950
  name: string;
8949
8951
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8950
8952
  sink: Record<string, unknown>;
8951
- status?: "active" | "suspended" | "paused" | undefined;
8953
+ status?: "suspended" | "active" | "paused" | undefined;
8952
8954
  filters?: {
8953
8955
  type: string;
8954
8956
  name: string;
@@ -8963,7 +8965,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8963
8965
  [x: string]: import("hono/utils/types").JSONValue;
8964
8966
  };
8965
8967
  id: string;
8966
- status: "active" | "suspended" | "paused";
8968
+ status: "suspended" | "active" | "paused";
8967
8969
  filters?: {
8968
8970
  type: string;
8969
8971
  name: string;
@@ -8998,7 +9000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8998
9000
  }[] | undefined;
8999
9001
  isPriority?: boolean | undefined;
9000
9002
  id?: string | undefined;
9001
- status?: "active" | "suspended" | "paused" | undefined;
9003
+ status?: "suspended" | "active" | "paused" | undefined;
9002
9004
  created_at?: string | undefined;
9003
9005
  updated_at?: string | undefined;
9004
9006
  };
@@ -9010,7 +9012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9010
9012
  [x: string]: import("hono/utils/types").JSONValue;
9011
9013
  };
9012
9014
  id: string;
9013
- status: "active" | "suspended" | "paused";
9015
+ status: "suspended" | "active" | "paused";
9014
9016
  filters?: {
9015
9017
  type: string;
9016
9018
  name: string;
@@ -9061,7 +9063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9061
9063
  };
9062
9064
  };
9063
9065
  output: {
9064
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9066
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9065
9067
  date: string;
9066
9068
  isMobile: boolean;
9067
9069
  log_id: string;
@@ -9100,7 +9102,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9100
9102
  limit: number;
9101
9103
  length: number;
9102
9104
  logs: {
9103
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9105
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9104
9106
  date: string;
9105
9107
  isMobile: boolean;
9106
9108
  log_id: string;
@@ -9154,7 +9156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9154
9156
  };
9155
9157
  };
9156
9158
  output: {
9157
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9159
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9158
9160
  date: string;
9159
9161
  isMobile: boolean;
9160
9162
  log_id: string;
@@ -10230,7 +10232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10230
10232
  active?: boolean | undefined;
10231
10233
  } | undefined;
10232
10234
  signup?: {
10233
- status?: "optional" | "required" | "disabled" | undefined;
10235
+ status?: "optional" | "disabled" | "required" | undefined;
10234
10236
  verification?: {
10235
10237
  active?: boolean | undefined;
10236
10238
  } | undefined;
@@ -10247,7 +10249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10247
10249
  active?: boolean | undefined;
10248
10250
  } | undefined;
10249
10251
  signup?: {
10250
- status?: "optional" | "required" | "disabled" | undefined;
10252
+ status?: "optional" | "disabled" | "required" | undefined;
10251
10253
  } | undefined;
10252
10254
  validation?: {
10253
10255
  max_length?: number | undefined;
@@ -10264,7 +10266,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10264
10266
  active?: boolean | undefined;
10265
10267
  } | undefined;
10266
10268
  signup?: {
10267
- status?: "optional" | "required" | "disabled" | undefined;
10269
+ status?: "optional" | "disabled" | "required" | undefined;
10268
10270
  } | undefined;
10269
10271
  } | undefined;
10270
10272
  } | undefined;
@@ -10384,7 +10386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10384
10386
  active?: boolean | undefined;
10385
10387
  } | undefined;
10386
10388
  signup?: {
10387
- status?: "optional" | "required" | "disabled" | undefined;
10389
+ status?: "optional" | "disabled" | "required" | undefined;
10388
10390
  verification?: {
10389
10391
  active?: boolean | undefined;
10390
10392
  } | undefined;
@@ -10401,7 +10403,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10401
10403
  active?: boolean | undefined;
10402
10404
  } | undefined;
10403
10405
  signup?: {
10404
- status?: "optional" | "required" | "disabled" | undefined;
10406
+ status?: "optional" | "disabled" | "required" | undefined;
10405
10407
  } | undefined;
10406
10408
  validation?: {
10407
10409
  max_length?: number | undefined;
@@ -10418,7 +10420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10418
10420
  active?: boolean | undefined;
10419
10421
  } | undefined;
10420
10422
  signup?: {
10421
- status?: "optional" | "required" | "disabled" | undefined;
10423
+ status?: "optional" | "disabled" | "required" | undefined;
10422
10424
  } | undefined;
10423
10425
  } | undefined;
10424
10426
  } | undefined;
@@ -11372,7 +11374,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11372
11374
  };
11373
11375
  };
11374
11376
  output: {
11375
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11377
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11376
11378
  date: string;
11377
11379
  isMobile: boolean;
11378
11380
  log_id: string;
@@ -11411,7 +11413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11411
11413
  limit: number;
11412
11414
  length: number;
11413
11415
  logs: {
11414
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11416
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11415
11417
  date: string;
11416
11418
  isMobile: boolean;
11417
11419
  log_id: string;
@@ -12589,7 +12591,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12589
12591
  background_color: string;
12590
12592
  background_image_url: string;
12591
12593
  page_layout: "center" | "left" | "right";
12592
- logo_placement?: "none" | "widget" | "chip" | undefined;
12594
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12593
12595
  };
12594
12596
  widget: {
12595
12597
  header_text_alignment: "center" | "left" | "right";
@@ -12679,7 +12681,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12679
12681
  background_color: string;
12680
12682
  background_image_url: string;
12681
12683
  page_layout: "center" | "left" | "right";
12682
- logo_placement?: "none" | "widget" | "chip" | undefined;
12684
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12683
12685
  };
12684
12686
  widget: {
12685
12687
  header_text_alignment: "center" | "left" | "right";
@@ -12758,7 +12760,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12758
12760
  background_color: string;
12759
12761
  background_image_url: string;
12760
12762
  page_layout: "center" | "left" | "right";
12761
- logo_placement?: "none" | "widget" | "chip" | undefined;
12763
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12762
12764
  };
12763
12765
  widget: {
12764
12766
  header_text_alignment: "center" | "left" | "right";
@@ -12920,7 +12922,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12920
12922
  } & {
12921
12923
  json: {
12922
12924
  body?: string | undefined;
12923
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
12925
+ screen?: "password" | "signup" | "login" | "identifier" | undefined;
12924
12926
  branding?: {
12925
12927
  colors?: {
12926
12928
  primary: string;
@@ -13006,7 +13008,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13006
13008
  background_color: string;
13007
13009
  background_image_url: string;
13008
13010
  page_layout: "center" | "left" | "right";
13009
- logo_placement?: "none" | "widget" | "chip" | undefined;
13011
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13010
13012
  } | undefined;
13011
13013
  widget?: {
13012
13014
  header_text_alignment: "center" | "left" | "right";
@@ -13164,7 +13166,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13164
13166
  output: {
13165
13167
  id: string;
13166
13168
  trigger_id: string;
13167
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13169
+ status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
13168
13170
  results: {
13169
13171
  action_name: string;
13170
13172
  error: {
@@ -18,7 +18,7 @@ export declare const logStreamsRoutes: OpenAPIHono<{
18
18
  [x: string]: import("hono/utils/types").JSONValue;
19
19
  };
20
20
  id: string;
21
- status: "active" | "suspended" | "paused";
21
+ status: "suspended" | "active" | "paused";
22
22
  filters?: {
23
23
  type: string;
24
24
  name: string;
@@ -50,7 +50,7 @@ export declare const logStreamsRoutes: OpenAPIHono<{
50
50
  [x: string]: import("hono/utils/types").JSONValue;
51
51
  };
52
52
  id: string;
53
- status: "active" | "suspended" | "paused";
53
+ status: "suspended" | "active" | "paused";
54
54
  filters?: {
55
55
  type: string;
56
56
  name: string;
@@ -75,7 +75,7 @@ export declare const logStreamsRoutes: OpenAPIHono<{
75
75
  name: string;
76
76
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
77
77
  sink: Record<string, unknown>;
78
- status?: "active" | "suspended" | "paused" | undefined;
78
+ status?: "suspended" | "active" | "paused" | undefined;
79
79
  filters?: {
80
80
  type: string;
81
81
  name: string;
@@ -90,7 +90,7 @@ export declare const logStreamsRoutes: OpenAPIHono<{
90
90
  [x: string]: import("hono/utils/types").JSONValue;
91
91
  };
92
92
  id: string;
93
- status: "active" | "suspended" | "paused";
93
+ status: "suspended" | "active" | "paused";
94
94
  filters?: {
95
95
  type: string;
96
96
  name: string;
@@ -125,7 +125,7 @@ export declare const logStreamsRoutes: OpenAPIHono<{
125
125
  }[] | undefined;
126
126
  isPriority?: boolean | undefined;
127
127
  id?: string | undefined;
128
- status?: "active" | "suspended" | "paused" | undefined;
128
+ status?: "suspended" | "active" | "paused" | undefined;
129
129
  created_at?: string | undefined;
130
130
  updated_at?: string | undefined;
131
131
  };
@@ -137,7 +137,7 @@ export declare const logStreamsRoutes: OpenAPIHono<{
137
137
  [x: string]: import("hono/utils/types").JSONValue;
138
138
  };
139
139
  id: string;
140
- status: "active" | "suspended" | "paused";
140
+ status: "suspended" | "active" | "paused";
141
141
  filters?: {
142
142
  type: string;
143
143
  name: string;