authhero 8.7.0 → 8.7.1

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 (40) hide show
  1. package/dist/assets/u/js/client.js +5 -5
  2. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  3. package/dist/assets/u/widget/index.esm.js +1 -1
  4. package/dist/assets/u/widget/p-f6babd26.entry.js +1 -0
  5. package/dist/authhero.cjs +148 -138
  6. package/dist/authhero.d.ts +251 -83
  7. package/dist/authhero.mjs +13889 -13762
  8. package/dist/client.js +5 -5
  9. package/dist/stats.html +1 -1
  10. package/dist/tsconfig.types.tsbuildinfo +1 -1
  11. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  12. package/dist/types/client/client-bundle.d.ts +1 -1
  13. package/dist/types/index.d.ts +251 -83
  14. package/dist/types/routes/auth-api/index.d.ts +32 -32
  15. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  18. package/dist/types/routes/auth-api/token.d.ts +10 -10
  19. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  20. package/dist/types/routes/management-api/branding.d.ts +13 -13
  21. package/dist/types/routes/management-api/clients.d.ts +7 -7
  22. package/dist/types/routes/management-api/connections.d.ts +1 -1
  23. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  24. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  25. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  26. package/dist/types/routes/management-api/forms.d.ts +287 -119
  27. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  28. package/dist/types/routes/management-api/index.d.ts +225 -57
  29. package/dist/types/routes/management-api/logs.d.ts +3 -3
  30. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  31. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  32. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  33. package/dist/types/routes/management-api/users.d.ts +2 -2
  34. package/dist/types/routes/universal-login/common.d.ts +2 -2
  35. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  36. package/dist/types/routes/universal-login/index.d.ts +2 -2
  37. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  39. package/package.json +6 -6
  40. package/dist/assets/u/widget/p-1fc7fcdb.entry.js +0 -1
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
37
37
  };
38
38
  } & {
39
39
  json: {
40
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
40
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
41
41
  phone_number?: string | undefined;
42
42
  totp_secret?: string | undefined;
43
43
  credential_id?: string | undefined;
@@ -177,7 +177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
177
177
  };
178
178
  };
179
179
  output: {
180
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
180
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
181
181
  enabled: boolean;
182
182
  trial_expired?: boolean | undefined;
183
183
  }[];
@@ -332,7 +332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
332
332
  $get: {
333
333
  input: {
334
334
  param: {
335
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
335
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
336
336
  };
337
337
  } & {
338
338
  header: {
@@ -340,7 +340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
340
340
  };
341
341
  };
342
342
  output: {
343
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
343
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
344
344
  enabled: boolean;
345
345
  trial_expired?: boolean | undefined;
346
346
  };
@@ -353,7 +353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
353
353
  $put: {
354
354
  input: {
355
355
  param: {
356
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
356
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
357
357
  };
358
358
  } & {
359
359
  header: {
@@ -365,7 +365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
365
365
  };
366
366
  };
367
367
  output: {
368
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
368
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
369
369
  enabled: boolean;
370
370
  trial_expired?: boolean | undefined;
371
371
  };
@@ -1298,8 +1298,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1298
1298
  };
1299
1299
  } & {
1300
1300
  json: {
1301
- assign_membership_on_login?: boolean | undefined;
1302
1301
  show_as_button?: boolean | undefined;
1302
+ assign_membership_on_login?: boolean | undefined;
1303
1303
  is_signup_enabled?: boolean | undefined;
1304
1304
  };
1305
1305
  };
@@ -2597,6 +2597,30 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2597
2597
  multiple?: boolean | undefined;
2598
2598
  default_value?: string | string[] | undefined;
2599
2599
  } | undefined;
2600
+ } | {
2601
+ id: string;
2602
+ visible: boolean;
2603
+ type: "CODE";
2604
+ order?: number | undefined;
2605
+ category?: "FIELD" | undefined;
2606
+ label?: string | undefined;
2607
+ hint?: string | undefined;
2608
+ messages?: {
2609
+ text: string;
2610
+ type: "error" | "success" | "info" | "warning";
2611
+ id?: number | undefined;
2612
+ }[] | undefined;
2613
+ required?: boolean | undefined;
2614
+ sensitive?: boolean | undefined;
2615
+ config?: {
2616
+ length?: number | undefined;
2617
+ mode?: "numeric" | "alphanumeric" | undefined;
2618
+ auto_submit?: boolean | undefined;
2619
+ group_size?: number | undefined;
2620
+ separator?: string | undefined;
2621
+ placeholder?: string | undefined;
2622
+ default_value?: string | undefined;
2623
+ } | undefined;
2600
2624
  } | {
2601
2625
  id: string;
2602
2626
  visible: boolean;
@@ -3174,6 +3198,30 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3174
3198
  multiple?: boolean | undefined;
3175
3199
  default_value?: string | string[] | undefined;
3176
3200
  } | undefined;
3201
+ } | {
3202
+ id: string;
3203
+ visible: boolean;
3204
+ type: "CODE";
3205
+ order?: number | undefined;
3206
+ category?: "FIELD" | undefined;
3207
+ label?: string | undefined;
3208
+ hint?: string | undefined;
3209
+ messages?: {
3210
+ text: string;
3211
+ type: "error" | "success" | "info" | "warning";
3212
+ id?: number | undefined;
3213
+ }[] | undefined;
3214
+ required?: boolean | undefined;
3215
+ sensitive?: boolean | undefined;
3216
+ config?: {
3217
+ length?: number | undefined;
3218
+ mode?: "numeric" | "alphanumeric" | undefined;
3219
+ auto_submit?: boolean | undefined;
3220
+ group_size?: number | undefined;
3221
+ separator?: string | undefined;
3222
+ placeholder?: string | undefined;
3223
+ default_value?: string | undefined;
3224
+ } | undefined;
3177
3225
  } | {
3178
3226
  id: string;
3179
3227
  visible: boolean;
@@ -3766,6 +3814,30 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3766
3814
  multiple?: boolean | undefined;
3767
3815
  default_value?: string | string[] | undefined;
3768
3816
  } | undefined;
3817
+ } | {
3818
+ id: string;
3819
+ visible: boolean;
3820
+ type: "CODE";
3821
+ order?: number | undefined;
3822
+ category?: "FIELD" | undefined;
3823
+ label?: string | undefined;
3824
+ hint?: string | undefined;
3825
+ messages?: {
3826
+ text: string;
3827
+ type: "error" | "success" | "info" | "warning";
3828
+ id?: number | undefined;
3829
+ }[] | undefined;
3830
+ required?: boolean | undefined;
3831
+ sensitive?: boolean | undefined;
3832
+ config?: {
3833
+ length?: number | undefined;
3834
+ mode?: "numeric" | "alphanumeric" | undefined;
3835
+ auto_submit?: boolean | undefined;
3836
+ group_size?: number | undefined;
3837
+ separator?: string | undefined;
3838
+ placeholder?: string | undefined;
3839
+ default_value?: string | undefined;
3840
+ } | undefined;
3769
3841
  } | {
3770
3842
  id: string;
3771
3843
  visible: boolean;
@@ -4364,6 +4436,30 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4364
4436
  multiple?: boolean | undefined;
4365
4437
  default_value?: string | string[] | undefined;
4366
4438
  } | undefined;
4439
+ } | {
4440
+ id: string;
4441
+ type: "CODE";
4442
+ order?: number | undefined;
4443
+ visible?: boolean | undefined;
4444
+ category?: "FIELD" | undefined;
4445
+ label?: string | undefined;
4446
+ hint?: string | undefined;
4447
+ messages?: {
4448
+ text: string;
4449
+ type: "error" | "success" | "info" | "warning";
4450
+ id?: number | undefined;
4451
+ }[] | undefined;
4452
+ required?: boolean | undefined;
4453
+ sensitive?: boolean | undefined;
4454
+ config?: {
4455
+ length?: number | undefined;
4456
+ mode?: "numeric" | "alphanumeric" | undefined;
4457
+ auto_submit?: boolean | undefined;
4458
+ group_size?: number | undefined;
4459
+ separator?: string | undefined;
4460
+ placeholder?: string | undefined;
4461
+ default_value?: string | undefined;
4462
+ } | undefined;
4367
4463
  } | {
4368
4464
  id: string;
4369
4465
  type: "COUNTRY";
@@ -4935,6 +5031,30 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4935
5031
  multiple?: boolean | undefined;
4936
5032
  default_value?: string | string[] | undefined;
4937
5033
  } | undefined;
5034
+ } | {
5035
+ id: string;
5036
+ visible: boolean;
5037
+ type: "CODE";
5038
+ order?: number | undefined;
5039
+ category?: "FIELD" | undefined;
5040
+ label?: string | undefined;
5041
+ hint?: string | undefined;
5042
+ messages?: {
5043
+ text: string;
5044
+ type: "error" | "success" | "info" | "warning";
5045
+ id?: number | undefined;
5046
+ }[] | undefined;
5047
+ required?: boolean | undefined;
5048
+ sensitive?: boolean | undefined;
5049
+ config?: {
5050
+ length?: number | undefined;
5051
+ mode?: "numeric" | "alphanumeric" | undefined;
5052
+ auto_submit?: boolean | undefined;
5053
+ group_size?: number | undefined;
5054
+ separator?: string | undefined;
5055
+ placeholder?: string | undefined;
5056
+ default_value?: string | undefined;
5057
+ } | undefined;
4938
5058
  } | {
4939
5059
  id: string;
4940
5060
  visible: boolean;
@@ -5512,6 +5632,30 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5512
5632
  multiple?: boolean | undefined;
5513
5633
  default_value?: string | string[] | undefined;
5514
5634
  } | undefined;
5635
+ } | {
5636
+ id: string;
5637
+ type: "CODE";
5638
+ order?: number | undefined;
5639
+ visible?: boolean | undefined;
5640
+ category?: "FIELD" | undefined;
5641
+ label?: string | undefined;
5642
+ hint?: string | undefined;
5643
+ messages?: {
5644
+ text: string;
5645
+ type: "error" | "success" | "info" | "warning";
5646
+ id?: number | undefined;
5647
+ }[] | undefined;
5648
+ required?: boolean | undefined;
5649
+ sensitive?: boolean | undefined;
5650
+ config?: {
5651
+ length?: number | undefined;
5652
+ mode?: "numeric" | "alphanumeric" | undefined;
5653
+ auto_submit?: boolean | undefined;
5654
+ group_size?: number | undefined;
5655
+ separator?: string | undefined;
5656
+ placeholder?: string | undefined;
5657
+ default_value?: string | undefined;
5658
+ } | undefined;
5515
5659
  } | {
5516
5660
  id: string;
5517
5661
  type: "COUNTRY";
@@ -6083,6 +6227,30 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6083
6227
  multiple?: boolean | undefined;
6084
6228
  default_value?: string | string[] | undefined;
6085
6229
  } | undefined;
6230
+ } | {
6231
+ id: string;
6232
+ visible: boolean;
6233
+ type: "CODE";
6234
+ order?: number | undefined;
6235
+ category?: "FIELD" | undefined;
6236
+ label?: string | undefined;
6237
+ hint?: string | undefined;
6238
+ messages?: {
6239
+ text: string;
6240
+ type: "error" | "success" | "info" | "warning";
6241
+ id?: number | undefined;
6242
+ }[] | undefined;
6243
+ required?: boolean | undefined;
6244
+ sensitive?: boolean | undefined;
6245
+ config?: {
6246
+ length?: number | undefined;
6247
+ mode?: "numeric" | "alphanumeric" | undefined;
6248
+ auto_submit?: boolean | undefined;
6249
+ group_size?: number | undefined;
6250
+ separator?: string | undefined;
6251
+ placeholder?: string | undefined;
6252
+ default_value?: string | undefined;
6253
+ } | undefined;
6086
6254
  } | {
6087
6255
  id: string;
6088
6256
  visible: boolean;
@@ -6601,7 +6769,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6601
6769
  };
6602
6770
  };
6603
6771
  output: {
6604
- prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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";
6605
6773
  language: string;
6606
6774
  }[];
6607
6775
  outputFormat: "json";
@@ -6639,7 +6807,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6639
6807
  $get: {
6640
6808
  input: {
6641
6809
  param: {
6642
- prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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";
6643
6811
  language: string;
6644
6812
  };
6645
6813
  } & {
@@ -6661,7 +6829,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6661
6829
  $put: {
6662
6830
  input: {
6663
6831
  param: {
6664
- prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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";
6665
6833
  language: string;
6666
6834
  };
6667
6835
  } & {
@@ -6685,7 +6853,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6685
6853
  $delete: {
6686
6854
  input: {
6687
6855
  param: {
6688
- prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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";
6689
6857
  language: string;
6690
6858
  };
6691
6859
  } & {
@@ -6824,7 +6992,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6824
6992
  } | undefined;
6825
6993
  } | undefined;
6826
6994
  passkey_options?: {
6827
- challenge_ui?: "button" | "both" | "autofill" | undefined;
6995
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
6828
6996
  local_enrollment_enabled?: boolean | undefined;
6829
6997
  progressive_enrollment_enabled?: boolean | undefined;
6830
6998
  } | undefined;
@@ -6958,7 +7126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6958
7126
  } | undefined;
6959
7127
  } | undefined;
6960
7128
  passkey_options?: {
6961
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7129
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
6962
7130
  local_enrollment_enabled?: boolean | undefined;
6963
7131
  progressive_enrollment_enabled?: boolean | undefined;
6964
7132
  } | undefined;
@@ -7107,7 +7275,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7107
7275
  } | undefined;
7108
7276
  } | undefined;
7109
7277
  passkey_options?: {
7110
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7278
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7111
7279
  local_enrollment_enabled?: boolean | undefined;
7112
7280
  progressive_enrollment_enabled?: boolean | undefined;
7113
7281
  } | undefined;
@@ -7286,7 +7454,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7286
7454
  } | undefined;
7287
7455
  } | undefined;
7288
7456
  passkey_options?: {
7289
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7457
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7290
7458
  local_enrollment_enabled?: boolean | undefined;
7291
7459
  progressive_enrollment_enabled?: boolean | undefined;
7292
7460
  } | undefined;
@@ -7444,7 +7612,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7444
7612
  } | undefined;
7445
7613
  } | undefined;
7446
7614
  passkey_options?: {
7447
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7615
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7448
7616
  local_enrollment_enabled?: boolean | undefined;
7449
7617
  progressive_enrollment_enabled?: boolean | undefined;
7450
7618
  } | undefined;
@@ -8494,7 +8662,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8494
8662
  created_at: string;
8495
8663
  updated_at: string;
8496
8664
  name: string;
8497
- provider: "auth0" | "cognito" | "okta" | "oidc";
8665
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8498
8666
  connection: string;
8499
8667
  enabled: boolean;
8500
8668
  credentials: {
@@ -8526,7 +8694,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8526
8694
  created_at: string;
8527
8695
  updated_at: string;
8528
8696
  name: string;
8529
- provider: "auth0" | "cognito" | "okta" | "oidc";
8697
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8530
8698
  connection: string;
8531
8699
  enabled: boolean;
8532
8700
  credentials: {
@@ -8552,7 +8720,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8552
8720
  } & {
8553
8721
  json: {
8554
8722
  name: string;
8555
- provider: "auth0" | "cognito" | "okta" | "oidc";
8723
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8556
8724
  connection: string;
8557
8725
  credentials: {
8558
8726
  domain: string;
@@ -8569,7 +8737,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8569
8737
  created_at: string;
8570
8738
  updated_at: string;
8571
8739
  name: string;
8572
- provider: "auth0" | "cognito" | "okta" | "oidc";
8740
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8573
8741
  connection: string;
8574
8742
  enabled: boolean;
8575
8743
  credentials: {
@@ -8600,7 +8768,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8600
8768
  json: {
8601
8769
  id?: string | undefined;
8602
8770
  name?: string | undefined;
8603
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8771
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8604
8772
  connection?: string | undefined;
8605
8773
  enabled?: boolean | undefined;
8606
8774
  credentials?: {
@@ -8616,7 +8784,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8616
8784
  created_at: string;
8617
8785
  updated_at: string;
8618
8786
  name: string;
8619
- provider: "auth0" | "cognito" | "okta" | "oidc";
8787
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8620
8788
  connection: string;
8621
8789
  enabled: boolean;
8622
8790
  credentials: {
@@ -8664,7 +8832,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8664
8832
  [x: string]: import("hono/utils/types").JSONValue;
8665
8833
  };
8666
8834
  id: string;
8667
- status: "suspended" | "active" | "paused";
8835
+ status: "active" | "suspended" | "paused";
8668
8836
  filters?: {
8669
8837
  type: string;
8670
8838
  name: string;
@@ -8696,7 +8864,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8696
8864
  [x: string]: import("hono/utils/types").JSONValue;
8697
8865
  };
8698
8866
  id: string;
8699
- status: "suspended" | "active" | "paused";
8867
+ status: "active" | "suspended" | "paused";
8700
8868
  filters?: {
8701
8869
  type: string;
8702
8870
  name: string;
@@ -8721,7 +8889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8721
8889
  name: string;
8722
8890
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8723
8891
  sink: Record<string, unknown>;
8724
- status?: "suspended" | "active" | "paused" | undefined;
8892
+ status?: "active" | "suspended" | "paused" | undefined;
8725
8893
  filters?: {
8726
8894
  type: string;
8727
8895
  name: string;
@@ -8736,7 +8904,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8736
8904
  [x: string]: import("hono/utils/types").JSONValue;
8737
8905
  };
8738
8906
  id: string;
8739
- status: "suspended" | "active" | "paused";
8907
+ status: "active" | "suspended" | "paused";
8740
8908
  filters?: {
8741
8909
  type: string;
8742
8910
  name: string;
@@ -8771,7 +8939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8771
8939
  }[] | undefined;
8772
8940
  isPriority?: boolean | undefined;
8773
8941
  id?: string | undefined;
8774
- status?: "suspended" | "active" | "paused" | undefined;
8942
+ status?: "active" | "suspended" | "paused" | undefined;
8775
8943
  created_at?: string | undefined;
8776
8944
  updated_at?: string | undefined;
8777
8945
  };
@@ -8783,7 +8951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8783
8951
  [x: string]: import("hono/utils/types").JSONValue;
8784
8952
  };
8785
8953
  id: string;
8786
- status: "suspended" | "active" | "paused";
8954
+ status: "active" | "suspended" | "paused";
8787
8955
  filters?: {
8788
8956
  type: string;
8789
8957
  name: string;
@@ -8834,7 +9002,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8834
9002
  };
8835
9003
  };
8836
9004
  output: {
8837
- type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
8838
9006
  date: string;
8839
9007
  isMobile: boolean;
8840
9008
  log_id: string;
@@ -8873,7 +9041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8873
9041
  limit: number;
8874
9042
  length: number;
8875
9043
  logs: {
8876
- type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
8877
9045
  date: string;
8878
9046
  isMobile: boolean;
8879
9047
  log_id: string;
@@ -8927,7 +9095,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8927
9095
  };
8928
9096
  };
8929
9097
  output: {
8930
- type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
8931
9099
  date: string;
8932
9100
  isMobile: boolean;
8933
9101
  log_id: string;
@@ -9315,7 +9483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9315
9483
  addons?: {
9316
9484
  [x: string]: any;
9317
9485
  } | undefined;
9318
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9486
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9319
9487
  client_metadata?: {
9320
9488
  [x: string]: string;
9321
9489
  } | undefined;
@@ -9411,7 +9579,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9411
9579
  addons?: {
9412
9580
  [x: string]: any;
9413
9581
  } | undefined;
9414
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9582
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9415
9583
  client_metadata?: {
9416
9584
  [x: string]: string;
9417
9585
  } | undefined;
@@ -9522,7 +9690,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9522
9690
  addons?: {
9523
9691
  [x: string]: any;
9524
9692
  } | undefined;
9525
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9693
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9526
9694
  client_metadata?: {
9527
9695
  [x: string]: string;
9528
9696
  } | undefined;
@@ -9632,7 +9800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9632
9800
  custom_login_page_preview?: string | undefined;
9633
9801
  form_template?: string | undefined;
9634
9802
  addons?: Record<string, any> | undefined;
9635
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9803
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9636
9804
  client_metadata?: Record<string, string> | undefined;
9637
9805
  hide_sign_up_disabled_error?: boolean | undefined;
9638
9806
  mobile?: Record<string, any> | undefined;
@@ -9712,7 +9880,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9712
9880
  addons?: {
9713
9881
  [x: string]: any;
9714
9882
  } | undefined;
9715
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9883
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9716
9884
  client_metadata?: {
9717
9885
  [x: string]: string;
9718
9886
  } | undefined;
@@ -9801,7 +9969,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9801
9969
  custom_login_page_preview?: string | undefined;
9802
9970
  form_template?: string | undefined;
9803
9971
  addons?: Record<string, any> | undefined;
9804
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9972
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9805
9973
  client_metadata?: Record<string, string> | undefined;
9806
9974
  hide_sign_up_disabled_error?: boolean | undefined;
9807
9975
  mobile?: Record<string, any> | undefined;
@@ -9881,7 +10049,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9881
10049
  addons?: {
9882
10050
  [x: string]: any;
9883
10051
  } | undefined;
9884
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10052
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9885
10053
  client_metadata?: {
9886
10054
  [x: string]: string;
9887
10055
  } | undefined;
@@ -10050,7 +10218,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10050
10218
  } | undefined;
10051
10219
  } | undefined;
10052
10220
  passkey_options?: {
10053
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10221
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10054
10222
  local_enrollment_enabled?: boolean | undefined;
10055
10223
  progressive_enrollment_enabled?: boolean | undefined;
10056
10224
  } | undefined;
@@ -10204,7 +10372,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10204
10372
  } | undefined;
10205
10373
  } | undefined;
10206
10374
  passkey_options?: {
10207
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10375
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10208
10376
  local_enrollment_enabled?: boolean | undefined;
10209
10377
  progressive_enrollment_enabled?: boolean | undefined;
10210
10378
  } | undefined;
@@ -11145,7 +11313,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11145
11313
  };
11146
11314
  };
11147
11315
  output: {
11148
- type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
11149
11317
  date: string;
11150
11318
  isMobile: boolean;
11151
11319
  log_id: string;
@@ -11184,7 +11352,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11184
11352
  limit: number;
11185
11353
  length: number;
11186
11354
  logs: {
11187
- type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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";
11188
11356
  date: string;
11189
11357
  isMobile: boolean;
11190
11358
  log_id: string;
@@ -12311,7 +12479,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12311
12479
  base_focus_color: string;
12312
12480
  base_hover_color: string;
12313
12481
  body_text: string;
12314
- captcha_widget_theme: "auto" | "light" | "dark";
12482
+ captcha_widget_theme: "dark" | "light" | "auto";
12315
12483
  error: string;
12316
12484
  header: string;
12317
12485
  icons: string;
@@ -12362,7 +12530,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12362
12530
  background_color: string;
12363
12531
  background_image_url: string;
12364
12532
  page_layout: "center" | "left" | "right";
12365
- logo_placement?: "widget" | "chip" | "none" | undefined;
12533
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12366
12534
  };
12367
12535
  widget: {
12368
12536
  header_text_alignment: "center" | "left" | "right";
@@ -12401,7 +12569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12401
12569
  base_focus_color: string;
12402
12570
  base_hover_color: string;
12403
12571
  body_text: string;
12404
- captcha_widget_theme: "auto" | "light" | "dark";
12572
+ captcha_widget_theme: "dark" | "light" | "auto";
12405
12573
  error: string;
12406
12574
  header: string;
12407
12575
  icons: string;
@@ -12452,7 +12620,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12452
12620
  background_color: string;
12453
12621
  background_image_url: string;
12454
12622
  page_layout: "center" | "left" | "right";
12455
- logo_placement?: "widget" | "chip" | "none" | undefined;
12623
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12456
12624
  };
12457
12625
  widget: {
12458
12626
  header_text_alignment: "center" | "left" | "right";
@@ -12480,7 +12648,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12480
12648
  base_focus_color: string;
12481
12649
  base_hover_color: string;
12482
12650
  body_text: string;
12483
- captcha_widget_theme: "auto" | "light" | "dark";
12651
+ captcha_widget_theme: "dark" | "light" | "auto";
12484
12652
  error: string;
12485
12653
  header: string;
12486
12654
  icons: string;
@@ -12531,7 +12699,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12531
12699
  background_color: string;
12532
12700
  background_image_url: string;
12533
12701
  page_layout: "center" | "left" | "right";
12534
- logo_placement?: "widget" | "chip" | "none" | undefined;
12702
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12535
12703
  };
12536
12704
  widget: {
12537
12705
  header_text_alignment: "center" | "left" | "right";
@@ -12570,7 +12738,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12570
12738
  font?: {
12571
12739
  url: string;
12572
12740
  } | undefined;
12573
- dark_mode?: "auto" | "light" | "dark" | undefined;
12741
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12574
12742
  };
12575
12743
  outputFormat: "json";
12576
12744
  status: 200;
@@ -12600,7 +12768,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12600
12768
  font?: {
12601
12769
  url: string;
12602
12770
  } | undefined;
12603
- dark_mode?: "auto" | "light" | "dark" | undefined;
12771
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12604
12772
  };
12605
12773
  };
12606
12774
  output: {
@@ -12619,7 +12787,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12619
12787
  font?: {
12620
12788
  url: string;
12621
12789
  } | undefined;
12622
- dark_mode?: "auto" | "light" | "dark" | undefined;
12790
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12623
12791
  };
12624
12792
  outputFormat: "json";
12625
12793
  status: 200;
@@ -12693,7 +12861,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12693
12861
  } & {
12694
12862
  json: {
12695
12863
  body?: string | undefined;
12696
- screen?: "login" | "identifier" | "password" | "signup" | undefined;
12864
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
12697
12865
  branding?: {
12698
12866
  colors?: {
12699
12867
  primary: string;
@@ -12710,7 +12878,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12710
12878
  font?: {
12711
12879
  url: string;
12712
12880
  } | undefined;
12713
- dark_mode?: "auto" | "light" | "dark" | undefined;
12881
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12714
12882
  } | undefined;
12715
12883
  theme?: {
12716
12884
  borders?: {
@@ -12728,7 +12896,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12728
12896
  base_focus_color: string;
12729
12897
  base_hover_color: string;
12730
12898
  body_text: string;
12731
- captcha_widget_theme: "auto" | "light" | "dark";
12899
+ captcha_widget_theme: "dark" | "light" | "auto";
12732
12900
  error: string;
12733
12901
  header: string;
12734
12902
  icons: string;
@@ -12779,7 +12947,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12779
12947
  background_color: string;
12780
12948
  background_image_url: string;
12781
12949
  page_layout: "center" | "left" | "right";
12782
- logo_placement?: "widget" | "chip" | "none" | undefined;
12950
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12783
12951
  } | undefined;
12784
12952
  widget?: {
12785
12953
  header_text_alignment: "center" | "left" | "right";
@@ -12984,7 +13152,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12984
13152
  logs: {
12985
13153
  action_name: string;
12986
13154
  lines: {
12987
- level: "error" | "log" | "info" | "warn" | "debug";
13155
+ level: "log" | "error" | "info" | "warn" | "debug";
12988
13156
  message: string;
12989
13157
  }[];
12990
13158
  }[];
@@ -13651,7 +13819,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13651
13819
  args: import("hono/utils/types").JSONValue[];
13652
13820
  }[];
13653
13821
  logs: {
13654
- level: "error" | "log" | "info" | "warn" | "debug";
13822
+ level: "log" | "error" | "info" | "warn" | "debug";
13655
13823
  message: string;
13656
13824
  }[];
13657
13825
  error?: string | undefined;