authhero 8.8.1 → 8.9.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 (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +109 -107
  3. package/dist/authhero.d.ts +121 -78
  4. package/dist/authhero.mjs +11213 -10636
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  9. package/dist/types/helpers/tenant-export-import/export.d.ts +21 -0
  10. package/dist/types/helpers/tenant-export-import/import.d.ts +12 -0
  11. package/dist/types/helpers/tenant-export-import/index.d.ts +4 -0
  12. package/dist/types/helpers/tenant-export-import/manifest.d.ts +12 -0
  13. package/dist/types/helpers/tenant-export-import/row-access.d.ts +20 -0
  14. package/dist/types/helpers/tenant-export-import/types.d.ts +53 -0
  15. package/dist/types/index.d.ts +120 -77
  16. package/dist/types/routes/auth-api/index.d.ts +8 -8
  17. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  18. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  19. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  20. package/dist/types/routes/management-api/actions.d.ts +1 -1
  21. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  22. package/dist/types/routes/management-api/branding.d.ts +5 -5
  23. package/dist/types/routes/management-api/clients.d.ts +13 -13
  24. package/dist/types/routes/management-api/connections.d.ts +15 -15
  25. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  26. package/dist/types/routes/management-api/index.d.ts +105 -62
  27. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  28. package/dist/types/routes/management-api/logs.d.ts +3 -3
  29. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  30. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  31. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  32. package/dist/types/routes/management-api/tenant-export-import.d.ts +49 -0
  33. package/dist/types/routes/management-api/tenants.d.ts +5 -5
  34. package/dist/types/routes/management-api/themes.d.ts +3 -3
  35. package/dist/types/routes/management-api/users.d.ts +2 -2
  36. package/dist/types/routes/universal-login/common.d.ts +10 -10
  37. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  38. package/dist/types/routes/universal-login/index.d.ts +2 -2
  39. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  40. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  41. package/dist/types/types/IdToken.d.ts +2 -2
  42. package/package.json +5 -5
@@ -4,6 +4,49 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4
4
  Bindings: Bindings;
5
5
  Variables: Variables;
6
6
  }, import("hono/types").MergeSchemaPath<{
7
+ "/export": {
8
+ $get: {
9
+ input: {
10
+ query: {
11
+ include_password_hashes?: "true" | "false" | undefined;
12
+ gzip?: "true" | "false" | undefined;
13
+ };
14
+ } & {
15
+ header: {
16
+ "tenant-id"?: string | undefined;
17
+ };
18
+ };
19
+ output: Response;
20
+ outputFormat: "json";
21
+ status: import("hono/utils/http-status").StatusCode;
22
+ };
23
+ };
24
+ } & {
25
+ "/import": {
26
+ $post: {
27
+ input: {
28
+ query: {
29
+ include_password_hashes?: "true" | "false" | undefined;
30
+ };
31
+ } & {
32
+ header: {
33
+ "tenant-id"?: string | undefined;
34
+ };
35
+ };
36
+ output: {
37
+ counts: {
38
+ [x: string]: number;
39
+ };
40
+ errors: {
41
+ entity: string;
42
+ error: string;
43
+ }[];
44
+ };
45
+ outputFormat: "json";
46
+ status: 200;
47
+ };
48
+ };
49
+ }, "/tenant-data"> & import("hono/types").MergeSchemaPath<{
7
50
  "/": {
8
51
  $get: {
9
52
  input: {
@@ -37,7 +80,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
37
80
  };
38
81
  } & {
39
82
  json: {
40
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
83
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
41
84
  phone_number?: string | undefined;
42
85
  totp_secret?: string | undefined;
43
86
  credential_id?: string | undefined;
@@ -1111,10 +1154,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1111
1154
  email?: string | undefined;
1112
1155
  };
1113
1156
  id?: string | undefined;
1157
+ roles?: string[] | undefined;
1158
+ connection_id?: string | undefined;
1114
1159
  app_metadata?: Record<string, any> | undefined;
1115
1160
  user_metadata?: Record<string, any> | undefined;
1116
- connection_id?: string | undefined;
1117
- roles?: string[] | undefined;
1118
1161
  ttl_sec?: number | undefined;
1119
1162
  send_invitation_email?: boolean | undefined;
1120
1163
  };
@@ -1298,8 +1341,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1298
1341
  };
1299
1342
  } & {
1300
1343
  json: {
1301
- show_as_button?: boolean | undefined;
1302
1344
  assign_membership_on_login?: boolean | undefined;
1345
+ show_as_button?: boolean | undefined;
1303
1346
  is_signup_enabled?: boolean | undefined;
1304
1347
  };
1305
1348
  };
@@ -6769,7 +6812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6769
6812
  };
6770
6813
  };
6771
6814
  output: {
6772
- 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";
6815
+ 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";
6773
6816
  language: string;
6774
6817
  }[];
6775
6818
  outputFormat: "json";
@@ -6807,7 +6850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6807
6850
  $get: {
6808
6851
  input: {
6809
6852
  param: {
6810
- 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";
6853
+ 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";
6811
6854
  language: string;
6812
6855
  };
6813
6856
  } & {
@@ -6829,7 +6872,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6829
6872
  $put: {
6830
6873
  input: {
6831
6874
  param: {
6832
- 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";
6875
+ 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";
6833
6876
  language: string;
6834
6877
  };
6835
6878
  } & {
@@ -6853,7 +6896,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6853
6896
  $delete: {
6854
6897
  input: {
6855
6898
  param: {
6856
- 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";
6899
+ 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";
6857
6900
  language: string;
6858
6901
  };
6859
6902
  } & {
@@ -6945,7 +6988,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6945
6988
  active?: boolean | undefined;
6946
6989
  } | undefined;
6947
6990
  signup?: {
6948
- status?: "optional" | "required" | "disabled" | undefined;
6991
+ status?: "optional" | "disabled" | "required" | undefined;
6949
6992
  verification?: {
6950
6993
  active?: boolean | undefined;
6951
6994
  } | undefined;
@@ -6962,7 +7005,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6962
7005
  active?: boolean | undefined;
6963
7006
  } | undefined;
6964
7007
  signup?: {
6965
- status?: "optional" | "required" | "disabled" | undefined;
7008
+ status?: "optional" | "disabled" | "required" | undefined;
6966
7009
  } | undefined;
6967
7010
  validation?: {
6968
7011
  max_length?: number | undefined;
@@ -6979,7 +7022,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6979
7022
  active?: boolean | undefined;
6980
7023
  } | undefined;
6981
7024
  signup?: {
6982
- status?: "optional" | "required" | "disabled" | undefined;
7025
+ status?: "optional" | "disabled" | "required" | undefined;
6983
7026
  } | undefined;
6984
7027
  } | undefined;
6985
7028
  } | undefined;
@@ -7079,7 +7122,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7079
7122
  active?: boolean | undefined;
7080
7123
  } | undefined;
7081
7124
  signup?: {
7082
- status?: "optional" | "required" | "disabled" | undefined;
7125
+ status?: "optional" | "disabled" | "required" | undefined;
7083
7126
  verification?: {
7084
7127
  active?: boolean | undefined;
7085
7128
  } | undefined;
@@ -7096,7 +7139,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7096
7139
  active?: boolean | undefined;
7097
7140
  } | undefined;
7098
7141
  signup?: {
7099
- status?: "optional" | "required" | "disabled" | undefined;
7142
+ status?: "optional" | "disabled" | "required" | undefined;
7100
7143
  } | undefined;
7101
7144
  validation?: {
7102
7145
  max_length?: number | undefined;
@@ -7113,7 +7156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7113
7156
  active?: boolean | undefined;
7114
7157
  } | undefined;
7115
7158
  signup?: {
7116
- status?: "optional" | "required" | "disabled" | undefined;
7159
+ status?: "optional" | "disabled" | "required" | undefined;
7117
7160
  } | undefined;
7118
7161
  } | undefined;
7119
7162
  } | undefined;
@@ -7228,7 +7271,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7228
7271
  active?: boolean | undefined;
7229
7272
  } | undefined;
7230
7273
  signup?: {
7231
- status?: "optional" | "required" | "disabled" | undefined;
7274
+ status?: "optional" | "disabled" | "required" | undefined;
7232
7275
  verification?: {
7233
7276
  active?: boolean | undefined;
7234
7277
  } | undefined;
@@ -7245,7 +7288,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7245
7288
  active?: boolean | undefined;
7246
7289
  } | undefined;
7247
7290
  signup?: {
7248
- status?: "optional" | "required" | "disabled" | undefined;
7291
+ status?: "optional" | "disabled" | "required" | undefined;
7249
7292
  } | undefined;
7250
7293
  validation?: {
7251
7294
  max_length?: number | undefined;
@@ -7262,7 +7305,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7262
7305
  active?: boolean | undefined;
7263
7306
  } | undefined;
7264
7307
  signup?: {
7265
- status?: "optional" | "required" | "disabled" | undefined;
7308
+ status?: "optional" | "disabled" | "required" | undefined;
7266
7309
  } | undefined;
7267
7310
  } | undefined;
7268
7311
  } | undefined;
@@ -7407,7 +7450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7407
7450
  active?: boolean | undefined;
7408
7451
  } | undefined;
7409
7452
  signup?: {
7410
- status?: "optional" | "required" | "disabled" | undefined;
7453
+ status?: "optional" | "disabled" | "required" | undefined;
7411
7454
  verification?: {
7412
7455
  active?: boolean | undefined;
7413
7456
  } | undefined;
@@ -7424,7 +7467,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7424
7467
  active?: boolean | undefined;
7425
7468
  } | undefined;
7426
7469
  signup?: {
7427
- status?: "optional" | "required" | "disabled" | undefined;
7470
+ status?: "optional" | "disabled" | "required" | undefined;
7428
7471
  } | undefined;
7429
7472
  validation?: {
7430
7473
  max_length?: number | undefined;
@@ -7441,7 +7484,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7441
7484
  active?: boolean | undefined;
7442
7485
  } | undefined;
7443
7486
  signup?: {
7444
- status?: "optional" | "required" | "disabled" | undefined;
7487
+ status?: "optional" | "disabled" | "required" | undefined;
7445
7488
  } | undefined;
7446
7489
  } | undefined;
7447
7490
  } | undefined;
@@ -7565,7 +7608,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7565
7608
  active?: boolean | undefined;
7566
7609
  } | undefined;
7567
7610
  signup?: {
7568
- status?: "optional" | "required" | "disabled" | undefined;
7611
+ status?: "optional" | "disabled" | "required" | undefined;
7569
7612
  verification?: {
7570
7613
  active?: boolean | undefined;
7571
7614
  } | undefined;
@@ -7582,7 +7625,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7582
7625
  active?: boolean | undefined;
7583
7626
  } | undefined;
7584
7627
  signup?: {
7585
- status?: "optional" | "required" | "disabled" | undefined;
7628
+ status?: "optional" | "disabled" | "required" | undefined;
7586
7629
  } | undefined;
7587
7630
  validation?: {
7588
7631
  max_length?: number | undefined;
@@ -7599,7 +7642,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7599
7642
  active?: boolean | undefined;
7600
7643
  } | undefined;
7601
7644
  signup?: {
7602
- status?: "optional" | "required" | "disabled" | undefined;
7645
+ status?: "optional" | "disabled" | "required" | undefined;
7603
7646
  } | undefined;
7604
7647
  } | undefined;
7605
7648
  } | undefined;
@@ -8354,7 +8397,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8354
8397
  log_type: string;
8355
8398
  category: "user_action" | "admin_action" | "system" | "api";
8356
8399
  actor: {
8357
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8400
+ type: "client_credentials" | "user" | "api_key" | "system" | "admin";
8358
8401
  id?: string | undefined;
8359
8402
  email?: string | undefined;
8360
8403
  org_id?: string | undefined;
@@ -8662,7 +8705,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8662
8705
  created_at: string;
8663
8706
  updated_at: string;
8664
8707
  name: string;
8665
- provider: "auth0" | "oidc" | "okta" | "cognito";
8708
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8666
8709
  connection: string;
8667
8710
  enabled: boolean;
8668
8711
  credentials: {
@@ -8694,7 +8737,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8694
8737
  created_at: string;
8695
8738
  updated_at: string;
8696
8739
  name: string;
8697
- provider: "auth0" | "oidc" | "okta" | "cognito";
8740
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8698
8741
  connection: string;
8699
8742
  enabled: boolean;
8700
8743
  credentials: {
@@ -8720,7 +8763,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8720
8763
  } & {
8721
8764
  json: {
8722
8765
  name: string;
8723
- provider: "auth0" | "oidc" | "okta" | "cognito";
8766
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8724
8767
  connection: string;
8725
8768
  credentials: {
8726
8769
  domain: string;
@@ -8737,7 +8780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8737
8780
  created_at: string;
8738
8781
  updated_at: string;
8739
8782
  name: string;
8740
- provider: "auth0" | "oidc" | "okta" | "cognito";
8783
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8741
8784
  connection: string;
8742
8785
  enabled: boolean;
8743
8786
  credentials: {
@@ -8768,7 +8811,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8768
8811
  json: {
8769
8812
  id?: string | undefined;
8770
8813
  name?: string | undefined;
8771
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8814
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8772
8815
  connection?: string | undefined;
8773
8816
  enabled?: boolean | undefined;
8774
8817
  credentials?: {
@@ -8784,7 +8827,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8784
8827
  created_at: string;
8785
8828
  updated_at: string;
8786
8829
  name: string;
8787
- provider: "auth0" | "oidc" | "okta" | "cognito";
8830
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8788
8831
  connection: string;
8789
8832
  enabled: boolean;
8790
8833
  credentials: {
@@ -8832,7 +8875,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8832
8875
  [x: string]: import("hono/utils/types").JSONValue;
8833
8876
  };
8834
8877
  id: string;
8835
- status: "active" | "suspended" | "paused";
8878
+ status: "suspended" | "active" | "paused";
8836
8879
  filters?: {
8837
8880
  type: string;
8838
8881
  name: string;
@@ -8864,7 +8907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8864
8907
  [x: string]: import("hono/utils/types").JSONValue;
8865
8908
  };
8866
8909
  id: string;
8867
- status: "active" | "suspended" | "paused";
8910
+ status: "suspended" | "active" | "paused";
8868
8911
  filters?: {
8869
8912
  type: string;
8870
8913
  name: string;
@@ -8889,7 +8932,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8889
8932
  name: string;
8890
8933
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8891
8934
  sink: Record<string, unknown>;
8892
- status?: "active" | "suspended" | "paused" | undefined;
8935
+ status?: "suspended" | "active" | "paused" | undefined;
8893
8936
  filters?: {
8894
8937
  type: string;
8895
8938
  name: string;
@@ -8904,7 +8947,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8904
8947
  [x: string]: import("hono/utils/types").JSONValue;
8905
8948
  };
8906
8949
  id: string;
8907
- status: "active" | "suspended" | "paused";
8950
+ status: "suspended" | "active" | "paused";
8908
8951
  filters?: {
8909
8952
  type: string;
8910
8953
  name: string;
@@ -8939,7 +8982,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8939
8982
  }[] | undefined;
8940
8983
  isPriority?: boolean | undefined;
8941
8984
  id?: string | undefined;
8942
- status?: "active" | "suspended" | "paused" | undefined;
8985
+ status?: "suspended" | "active" | "paused" | undefined;
8943
8986
  created_at?: string | undefined;
8944
8987
  updated_at?: string | undefined;
8945
8988
  };
@@ -8951,7 +8994,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8951
8994
  [x: string]: import("hono/utils/types").JSONValue;
8952
8995
  };
8953
8996
  id: string;
8954
- status: "active" | "suspended" | "paused";
8997
+ status: "suspended" | "active" | "paused";
8955
8998
  filters?: {
8956
8999
  type: string;
8957
9000
  name: string;
@@ -9002,7 +9045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9002
9045
  };
9003
9046
  };
9004
9047
  output: {
9005
- 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";
9048
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9006
9049
  date: string;
9007
9050
  isMobile: boolean;
9008
9051
  log_id: string;
@@ -9041,7 +9084,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9041
9084
  limit: number;
9042
9085
  length: number;
9043
9086
  logs: {
9044
- 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";
9087
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9045
9088
  date: string;
9046
9089
  isMobile: boolean;
9047
9090
  log_id: string;
@@ -9095,7 +9138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9095
9138
  };
9096
9139
  };
9097
9140
  output: {
9098
- 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";
9141
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9099
9142
  date: string;
9100
9143
  isMobile: boolean;
9101
9144
  log_id: string;
@@ -9483,7 +9526,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9483
9526
  addons?: {
9484
9527
  [x: string]: any;
9485
9528
  } | undefined;
9486
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9529
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9487
9530
  client_metadata?: {
9488
9531
  [x: string]: string;
9489
9532
  } | undefined;
@@ -9579,7 +9622,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9579
9622
  addons?: {
9580
9623
  [x: string]: any;
9581
9624
  } | undefined;
9582
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9625
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9583
9626
  client_metadata?: {
9584
9627
  [x: string]: string;
9585
9628
  } | undefined;
@@ -9690,7 +9733,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9690
9733
  addons?: {
9691
9734
  [x: string]: any;
9692
9735
  } | undefined;
9693
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9736
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9694
9737
  client_metadata?: {
9695
9738
  [x: string]: string;
9696
9739
  } | undefined;
@@ -9800,7 +9843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9800
9843
  custom_login_page_preview?: string | undefined;
9801
9844
  form_template?: string | undefined;
9802
9845
  addons?: Record<string, any> | undefined;
9803
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9846
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9804
9847
  client_metadata?: Record<string, string> | undefined;
9805
9848
  hide_sign_up_disabled_error?: boolean | undefined;
9806
9849
  mobile?: Record<string, any> | undefined;
@@ -9880,7 +9923,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9880
9923
  addons?: {
9881
9924
  [x: string]: any;
9882
9925
  } | undefined;
9883
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9926
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9884
9927
  client_metadata?: {
9885
9928
  [x: string]: string;
9886
9929
  } | undefined;
@@ -9969,7 +10012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9969
10012
  custom_login_page_preview?: string | undefined;
9970
10013
  form_template?: string | undefined;
9971
10014
  addons?: Record<string, any> | undefined;
9972
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10015
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9973
10016
  client_metadata?: Record<string, string> | undefined;
9974
10017
  hide_sign_up_disabled_error?: boolean | undefined;
9975
10018
  mobile?: Record<string, any> | undefined;
@@ -10049,7 +10092,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10049
10092
  addons?: {
10050
10093
  [x: string]: any;
10051
10094
  } | undefined;
10052
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10095
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10053
10096
  client_metadata?: {
10054
10097
  [x: string]: string;
10055
10098
  } | undefined;
@@ -10171,7 +10214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10171
10214
  active?: boolean | undefined;
10172
10215
  } | undefined;
10173
10216
  signup?: {
10174
- status?: "optional" | "required" | "disabled" | undefined;
10217
+ status?: "optional" | "disabled" | "required" | undefined;
10175
10218
  verification?: {
10176
10219
  active?: boolean | undefined;
10177
10220
  } | undefined;
@@ -10188,7 +10231,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10188
10231
  active?: boolean | undefined;
10189
10232
  } | undefined;
10190
10233
  signup?: {
10191
- status?: "optional" | "required" | "disabled" | undefined;
10234
+ status?: "optional" | "disabled" | "required" | undefined;
10192
10235
  } | undefined;
10193
10236
  validation?: {
10194
10237
  max_length?: number | undefined;
@@ -10205,7 +10248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10205
10248
  active?: boolean | undefined;
10206
10249
  } | undefined;
10207
10250
  signup?: {
10208
- status?: "optional" | "required" | "disabled" | undefined;
10251
+ status?: "optional" | "disabled" | "required" | undefined;
10209
10252
  } | undefined;
10210
10253
  } | undefined;
10211
10254
  } | undefined;
@@ -10325,7 +10368,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10325
10368
  active?: boolean | undefined;
10326
10369
  } | undefined;
10327
10370
  signup?: {
10328
- status?: "optional" | "required" | "disabled" | undefined;
10371
+ status?: "optional" | "disabled" | "required" | undefined;
10329
10372
  verification?: {
10330
10373
  active?: boolean | undefined;
10331
10374
  } | undefined;
@@ -10342,7 +10385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10342
10385
  active?: boolean | undefined;
10343
10386
  } | undefined;
10344
10387
  signup?: {
10345
- status?: "optional" | "required" | "disabled" | undefined;
10388
+ status?: "optional" | "disabled" | "required" | undefined;
10346
10389
  } | undefined;
10347
10390
  validation?: {
10348
10391
  max_length?: number | undefined;
@@ -10359,7 +10402,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10359
10402
  active?: boolean | undefined;
10360
10403
  } | undefined;
10361
10404
  signup?: {
10362
- status?: "optional" | "required" | "disabled" | undefined;
10405
+ status?: "optional" | "disabled" | "required" | undefined;
10363
10406
  } | undefined;
10364
10407
  } | undefined;
10365
10408
  } | undefined;
@@ -11313,7 +11356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11313
11356
  };
11314
11357
  };
11315
11358
  output: {
11316
- 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";
11359
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11317
11360
  date: string;
11318
11361
  isMobile: boolean;
11319
11362
  log_id: string;
@@ -11352,7 +11395,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11352
11395
  limit: number;
11353
11396
  length: number;
11354
11397
  logs: {
11355
- 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";
11398
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11356
11399
  date: string;
11357
11400
  isMobile: boolean;
11358
11401
  log_id: string;
@@ -12530,7 +12573,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12530
12573
  background_color: string;
12531
12574
  background_image_url: string;
12532
12575
  page_layout: "center" | "left" | "right";
12533
- logo_placement?: "none" | "widget" | "chip" | undefined;
12576
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12534
12577
  };
12535
12578
  widget: {
12536
12579
  header_text_alignment: "center" | "left" | "right";
@@ -12620,7 +12663,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12620
12663
  background_color: string;
12621
12664
  background_image_url: string;
12622
12665
  page_layout: "center" | "left" | "right";
12623
- logo_placement?: "none" | "widget" | "chip" | undefined;
12666
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12624
12667
  };
12625
12668
  widget: {
12626
12669
  header_text_alignment: "center" | "left" | "right";
@@ -12699,7 +12742,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12699
12742
  background_color: string;
12700
12743
  background_image_url: string;
12701
12744
  page_layout: "center" | "left" | "right";
12702
- logo_placement?: "none" | "widget" | "chip" | undefined;
12745
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12703
12746
  };
12704
12747
  widget: {
12705
12748
  header_text_alignment: "center" | "left" | "right";
@@ -12861,7 +12904,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12861
12904
  } & {
12862
12905
  json: {
12863
12906
  body?: string | undefined;
12864
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
12907
+ screen?: "password" | "signup" | "login" | "identifier" | undefined;
12865
12908
  branding?: {
12866
12909
  colors?: {
12867
12910
  primary: string;
@@ -12947,7 +12990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12947
12990
  background_color: string;
12948
12991
  background_image_url: string;
12949
12992
  page_layout: "center" | "left" | "right";
12950
- logo_placement?: "none" | "widget" | "chip" | undefined;
12993
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12951
12994
  } | undefined;
12952
12995
  widget?: {
12953
12996
  header_text_alignment: "center" | "left" | "right";
@@ -13105,7 +13148,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13105
13148
  output: {
13106
13149
  id: string;
13107
13150
  trigger_id: string;
13108
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13151
+ status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
13109
13152
  results: {
13110
13153
  action_name: string;
13111
13154
  error: {
@@ -13152,7 +13195,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13152
13195
  logs: {
13153
13196
  action_name: string;
13154
13197
  lines: {
13155
- level: "log" | "error" | "info" | "warn" | "debug";
13198
+ level: "error" | "info" | "log" | "warn" | "debug";
13156
13199
  message: string;
13157
13200
  }[];
13158
13201
  }[];
@@ -13819,7 +13862,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13819
13862
  args: import("hono/utils/types").JSONValue[];
13820
13863
  }[];
13821
13864
  logs: {
13822
- level: "log" | "error" | "info" | "warn" | "debug";
13865
+ level: "error" | "info" | "log" | "warn" | "debug";
13823
13866
  message: string;
13824
13867
  }[];
13825
13868
  error?: string | undefined;