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
@@ -86,7 +86,7 @@ export declare function init(config: AuthHeroConfig): {
86
86
  };
87
87
  } & {
88
88
  json: {
89
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
89
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
90
90
  phone_number?: string | undefined;
91
91
  totp_secret?: string | undefined;
92
92
  credential_id?: string | undefined;
@@ -226,7 +226,7 @@ export declare function init(config: AuthHeroConfig): {
226
226
  };
227
227
  };
228
228
  output: {
229
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
229
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
230
230
  enabled: boolean;
231
231
  trial_expired?: boolean | undefined;
232
232
  }[];
@@ -381,7 +381,7 @@ export declare function init(config: AuthHeroConfig): {
381
381
  $get: {
382
382
  input: {
383
383
  param: {
384
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
384
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
385
385
  };
386
386
  } & {
387
387
  header: {
@@ -389,7 +389,7 @@ export declare function init(config: AuthHeroConfig): {
389
389
  };
390
390
  };
391
391
  output: {
392
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
392
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
393
393
  enabled: boolean;
394
394
  trial_expired?: boolean | undefined;
395
395
  };
@@ -402,7 +402,7 @@ export declare function init(config: AuthHeroConfig): {
402
402
  $put: {
403
403
  input: {
404
404
  param: {
405
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
405
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
406
406
  };
407
407
  } & {
408
408
  header: {
@@ -414,7 +414,7 @@ export declare function init(config: AuthHeroConfig): {
414
414
  };
415
415
  };
416
416
  output: {
417
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
417
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
418
418
  enabled: boolean;
419
419
  trial_expired?: boolean | undefined;
420
420
  };
@@ -1347,8 +1347,8 @@ export declare function init(config: AuthHeroConfig): {
1347
1347
  };
1348
1348
  } & {
1349
1349
  json: {
1350
- assign_membership_on_login?: boolean | undefined;
1351
1350
  show_as_button?: boolean | undefined;
1351
+ assign_membership_on_login?: boolean | undefined;
1352
1352
  is_signup_enabled?: boolean | undefined;
1353
1353
  };
1354
1354
  };
@@ -2646,6 +2646,30 @@ export declare function init(config: AuthHeroConfig): {
2646
2646
  multiple?: boolean | undefined;
2647
2647
  default_value?: string | string[] | undefined;
2648
2648
  } | undefined;
2649
+ } | {
2650
+ id: string;
2651
+ visible: boolean;
2652
+ type: "CODE";
2653
+ order?: number | undefined;
2654
+ category?: "FIELD" | undefined;
2655
+ label?: string | undefined;
2656
+ hint?: string | undefined;
2657
+ messages?: {
2658
+ text: string;
2659
+ type: "error" | "success" | "info" | "warning";
2660
+ id?: number | undefined;
2661
+ }[] | undefined;
2662
+ required?: boolean | undefined;
2663
+ sensitive?: boolean | undefined;
2664
+ config?: {
2665
+ length?: number | undefined;
2666
+ mode?: "numeric" | "alphanumeric" | undefined;
2667
+ auto_submit?: boolean | undefined;
2668
+ group_size?: number | undefined;
2669
+ separator?: string | undefined;
2670
+ placeholder?: string | undefined;
2671
+ default_value?: string | undefined;
2672
+ } | undefined;
2649
2673
  } | {
2650
2674
  id: string;
2651
2675
  visible: boolean;
@@ -3223,6 +3247,30 @@ export declare function init(config: AuthHeroConfig): {
3223
3247
  multiple?: boolean | undefined;
3224
3248
  default_value?: string | string[] | undefined;
3225
3249
  } | undefined;
3250
+ } | {
3251
+ id: string;
3252
+ visible: boolean;
3253
+ type: "CODE";
3254
+ order?: number | undefined;
3255
+ category?: "FIELD" | undefined;
3256
+ label?: string | undefined;
3257
+ hint?: string | undefined;
3258
+ messages?: {
3259
+ text: string;
3260
+ type: "error" | "success" | "info" | "warning";
3261
+ id?: number | undefined;
3262
+ }[] | undefined;
3263
+ required?: boolean | undefined;
3264
+ sensitive?: boolean | undefined;
3265
+ config?: {
3266
+ length?: number | undefined;
3267
+ mode?: "numeric" | "alphanumeric" | undefined;
3268
+ auto_submit?: boolean | undefined;
3269
+ group_size?: number | undefined;
3270
+ separator?: string | undefined;
3271
+ placeholder?: string | undefined;
3272
+ default_value?: string | undefined;
3273
+ } | undefined;
3226
3274
  } | {
3227
3275
  id: string;
3228
3276
  visible: boolean;
@@ -3815,6 +3863,30 @@ export declare function init(config: AuthHeroConfig): {
3815
3863
  multiple?: boolean | undefined;
3816
3864
  default_value?: string | string[] | undefined;
3817
3865
  } | undefined;
3866
+ } | {
3867
+ id: string;
3868
+ visible: boolean;
3869
+ type: "CODE";
3870
+ order?: number | undefined;
3871
+ category?: "FIELD" | undefined;
3872
+ label?: string | undefined;
3873
+ hint?: string | undefined;
3874
+ messages?: {
3875
+ text: string;
3876
+ type: "error" | "success" | "info" | "warning";
3877
+ id?: number | undefined;
3878
+ }[] | undefined;
3879
+ required?: boolean | undefined;
3880
+ sensitive?: boolean | undefined;
3881
+ config?: {
3882
+ length?: number | undefined;
3883
+ mode?: "numeric" | "alphanumeric" | undefined;
3884
+ auto_submit?: boolean | undefined;
3885
+ group_size?: number | undefined;
3886
+ separator?: string | undefined;
3887
+ placeholder?: string | undefined;
3888
+ default_value?: string | undefined;
3889
+ } | undefined;
3818
3890
  } | {
3819
3891
  id: string;
3820
3892
  visible: boolean;
@@ -4413,6 +4485,30 @@ export declare function init(config: AuthHeroConfig): {
4413
4485
  multiple?: boolean | undefined;
4414
4486
  default_value?: string | string[] | undefined;
4415
4487
  } | undefined;
4488
+ } | {
4489
+ id: string;
4490
+ type: "CODE";
4491
+ order?: number | undefined;
4492
+ visible?: boolean | undefined;
4493
+ category?: "FIELD" | undefined;
4494
+ label?: string | undefined;
4495
+ hint?: string | undefined;
4496
+ messages?: {
4497
+ text: string;
4498
+ type: "error" | "success" | "info" | "warning";
4499
+ id?: number | undefined;
4500
+ }[] | undefined;
4501
+ required?: boolean | undefined;
4502
+ sensitive?: boolean | undefined;
4503
+ config?: {
4504
+ length?: number | undefined;
4505
+ mode?: "numeric" | "alphanumeric" | undefined;
4506
+ auto_submit?: boolean | undefined;
4507
+ group_size?: number | undefined;
4508
+ separator?: string | undefined;
4509
+ placeholder?: string | undefined;
4510
+ default_value?: string | undefined;
4511
+ } | undefined;
4416
4512
  } | {
4417
4513
  id: string;
4418
4514
  type: "COUNTRY";
@@ -4984,6 +5080,30 @@ export declare function init(config: AuthHeroConfig): {
4984
5080
  multiple?: boolean | undefined;
4985
5081
  default_value?: string | string[] | undefined;
4986
5082
  } | undefined;
5083
+ } | {
5084
+ id: string;
5085
+ visible: boolean;
5086
+ type: "CODE";
5087
+ order?: number | undefined;
5088
+ category?: "FIELD" | undefined;
5089
+ label?: string | undefined;
5090
+ hint?: string | undefined;
5091
+ messages?: {
5092
+ text: string;
5093
+ type: "error" | "success" | "info" | "warning";
5094
+ id?: number | undefined;
5095
+ }[] | undefined;
5096
+ required?: boolean | undefined;
5097
+ sensitive?: boolean | undefined;
5098
+ config?: {
5099
+ length?: number | undefined;
5100
+ mode?: "numeric" | "alphanumeric" | undefined;
5101
+ auto_submit?: boolean | undefined;
5102
+ group_size?: number | undefined;
5103
+ separator?: string | undefined;
5104
+ placeholder?: string | undefined;
5105
+ default_value?: string | undefined;
5106
+ } | undefined;
4987
5107
  } | {
4988
5108
  id: string;
4989
5109
  visible: boolean;
@@ -5561,6 +5681,30 @@ export declare function init(config: AuthHeroConfig): {
5561
5681
  multiple?: boolean | undefined;
5562
5682
  default_value?: string | string[] | undefined;
5563
5683
  } | undefined;
5684
+ } | {
5685
+ id: string;
5686
+ type: "CODE";
5687
+ order?: number | undefined;
5688
+ visible?: boolean | undefined;
5689
+ category?: "FIELD" | undefined;
5690
+ label?: string | undefined;
5691
+ hint?: string | undefined;
5692
+ messages?: {
5693
+ text: string;
5694
+ type: "error" | "success" | "info" | "warning";
5695
+ id?: number | undefined;
5696
+ }[] | undefined;
5697
+ required?: boolean | undefined;
5698
+ sensitive?: boolean | undefined;
5699
+ config?: {
5700
+ length?: number | undefined;
5701
+ mode?: "numeric" | "alphanumeric" | undefined;
5702
+ auto_submit?: boolean | undefined;
5703
+ group_size?: number | undefined;
5704
+ separator?: string | undefined;
5705
+ placeholder?: string | undefined;
5706
+ default_value?: string | undefined;
5707
+ } | undefined;
5564
5708
  } | {
5565
5709
  id: string;
5566
5710
  type: "COUNTRY";
@@ -6132,6 +6276,30 @@ export declare function init(config: AuthHeroConfig): {
6132
6276
  multiple?: boolean | undefined;
6133
6277
  default_value?: string | string[] | undefined;
6134
6278
  } | undefined;
6279
+ } | {
6280
+ id: string;
6281
+ visible: boolean;
6282
+ type: "CODE";
6283
+ order?: number | undefined;
6284
+ category?: "FIELD" | undefined;
6285
+ label?: string | undefined;
6286
+ hint?: string | undefined;
6287
+ messages?: {
6288
+ text: string;
6289
+ type: "error" | "success" | "info" | "warning";
6290
+ id?: number | undefined;
6291
+ }[] | undefined;
6292
+ required?: boolean | undefined;
6293
+ sensitive?: boolean | undefined;
6294
+ config?: {
6295
+ length?: number | undefined;
6296
+ mode?: "numeric" | "alphanumeric" | undefined;
6297
+ auto_submit?: boolean | undefined;
6298
+ group_size?: number | undefined;
6299
+ separator?: string | undefined;
6300
+ placeholder?: string | undefined;
6301
+ default_value?: string | undefined;
6302
+ } | undefined;
6135
6303
  } | {
6136
6304
  id: string;
6137
6305
  visible: boolean;
@@ -6650,7 +6818,7 @@ export declare function init(config: AuthHeroConfig): {
6650
6818
  };
6651
6819
  };
6652
6820
  output: {
6653
- 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";
6821
+ 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";
6654
6822
  language: string;
6655
6823
  }[];
6656
6824
  outputFormat: "json";
@@ -6688,7 +6856,7 @@ export declare function init(config: AuthHeroConfig): {
6688
6856
  $get: {
6689
6857
  input: {
6690
6858
  param: {
6691
- 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";
6859
+ 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";
6692
6860
  language: string;
6693
6861
  };
6694
6862
  } & {
@@ -6710,7 +6878,7 @@ export declare function init(config: AuthHeroConfig): {
6710
6878
  $put: {
6711
6879
  input: {
6712
6880
  param: {
6713
- 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";
6881
+ 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";
6714
6882
  language: string;
6715
6883
  };
6716
6884
  } & {
@@ -6734,7 +6902,7 @@ export declare function init(config: AuthHeroConfig): {
6734
6902
  $delete: {
6735
6903
  input: {
6736
6904
  param: {
6737
- 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";
6905
+ 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";
6738
6906
  language: string;
6739
6907
  };
6740
6908
  } & {
@@ -6873,7 +7041,7 @@ export declare function init(config: AuthHeroConfig): {
6873
7041
  } | undefined;
6874
7042
  } | undefined;
6875
7043
  passkey_options?: {
6876
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7044
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
6877
7045
  local_enrollment_enabled?: boolean | undefined;
6878
7046
  progressive_enrollment_enabled?: boolean | undefined;
6879
7047
  } | undefined;
@@ -7007,7 +7175,7 @@ export declare function init(config: AuthHeroConfig): {
7007
7175
  } | undefined;
7008
7176
  } | undefined;
7009
7177
  passkey_options?: {
7010
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7178
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7011
7179
  local_enrollment_enabled?: boolean | undefined;
7012
7180
  progressive_enrollment_enabled?: boolean | undefined;
7013
7181
  } | undefined;
@@ -7156,7 +7324,7 @@ export declare function init(config: AuthHeroConfig): {
7156
7324
  } | undefined;
7157
7325
  } | undefined;
7158
7326
  passkey_options?: {
7159
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7327
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7160
7328
  local_enrollment_enabled?: boolean | undefined;
7161
7329
  progressive_enrollment_enabled?: boolean | undefined;
7162
7330
  } | undefined;
@@ -7335,7 +7503,7 @@ export declare function init(config: AuthHeroConfig): {
7335
7503
  } | undefined;
7336
7504
  } | undefined;
7337
7505
  passkey_options?: {
7338
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7506
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7339
7507
  local_enrollment_enabled?: boolean | undefined;
7340
7508
  progressive_enrollment_enabled?: boolean | undefined;
7341
7509
  } | undefined;
@@ -7493,7 +7661,7 @@ export declare function init(config: AuthHeroConfig): {
7493
7661
  } | undefined;
7494
7662
  } | undefined;
7495
7663
  passkey_options?: {
7496
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7664
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7497
7665
  local_enrollment_enabled?: boolean | undefined;
7498
7666
  progressive_enrollment_enabled?: boolean | undefined;
7499
7667
  } | undefined;
@@ -8543,7 +8711,7 @@ export declare function init(config: AuthHeroConfig): {
8543
8711
  created_at: string;
8544
8712
  updated_at: string;
8545
8713
  name: string;
8546
- provider: "auth0" | "cognito" | "okta" | "oidc";
8714
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8547
8715
  connection: string;
8548
8716
  enabled: boolean;
8549
8717
  credentials: {
@@ -8575,7 +8743,7 @@ export declare function init(config: AuthHeroConfig): {
8575
8743
  created_at: string;
8576
8744
  updated_at: string;
8577
8745
  name: string;
8578
- provider: "auth0" | "cognito" | "okta" | "oidc";
8746
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8579
8747
  connection: string;
8580
8748
  enabled: boolean;
8581
8749
  credentials: {
@@ -8601,7 +8769,7 @@ export declare function init(config: AuthHeroConfig): {
8601
8769
  } & {
8602
8770
  json: {
8603
8771
  name: string;
8604
- provider: "auth0" | "cognito" | "okta" | "oidc";
8772
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8605
8773
  connection: string;
8606
8774
  credentials: {
8607
8775
  domain: string;
@@ -8618,7 +8786,7 @@ export declare function init(config: AuthHeroConfig): {
8618
8786
  created_at: string;
8619
8787
  updated_at: string;
8620
8788
  name: string;
8621
- provider: "auth0" | "cognito" | "okta" | "oidc";
8789
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8622
8790
  connection: string;
8623
8791
  enabled: boolean;
8624
8792
  credentials: {
@@ -8649,7 +8817,7 @@ export declare function init(config: AuthHeroConfig): {
8649
8817
  json: {
8650
8818
  id?: string | undefined;
8651
8819
  name?: string | undefined;
8652
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8820
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8653
8821
  connection?: string | undefined;
8654
8822
  enabled?: boolean | undefined;
8655
8823
  credentials?: {
@@ -8665,7 +8833,7 @@ export declare function init(config: AuthHeroConfig): {
8665
8833
  created_at: string;
8666
8834
  updated_at: string;
8667
8835
  name: string;
8668
- provider: "auth0" | "cognito" | "okta" | "oidc";
8836
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8669
8837
  connection: string;
8670
8838
  enabled: boolean;
8671
8839
  credentials: {
@@ -8713,7 +8881,7 @@ export declare function init(config: AuthHeroConfig): {
8713
8881
  [x: string]: import("hono/utils/types").JSONValue;
8714
8882
  };
8715
8883
  id: string;
8716
- status: "suspended" | "active" | "paused";
8884
+ status: "active" | "suspended" | "paused";
8717
8885
  filters?: {
8718
8886
  type: string;
8719
8887
  name: string;
@@ -8745,7 +8913,7 @@ export declare function init(config: AuthHeroConfig): {
8745
8913
  [x: string]: import("hono/utils/types").JSONValue;
8746
8914
  };
8747
8915
  id: string;
8748
- status: "suspended" | "active" | "paused";
8916
+ status: "active" | "suspended" | "paused";
8749
8917
  filters?: {
8750
8918
  type: string;
8751
8919
  name: string;
@@ -8770,7 +8938,7 @@ export declare function init(config: AuthHeroConfig): {
8770
8938
  name: string;
8771
8939
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8772
8940
  sink: Record<string, unknown>;
8773
- status?: "suspended" | "active" | "paused" | undefined;
8941
+ status?: "active" | "suspended" | "paused" | undefined;
8774
8942
  filters?: {
8775
8943
  type: string;
8776
8944
  name: string;
@@ -8785,7 +8953,7 @@ export declare function init(config: AuthHeroConfig): {
8785
8953
  [x: string]: import("hono/utils/types").JSONValue;
8786
8954
  };
8787
8955
  id: string;
8788
- status: "suspended" | "active" | "paused";
8956
+ status: "active" | "suspended" | "paused";
8789
8957
  filters?: {
8790
8958
  type: string;
8791
8959
  name: string;
@@ -8820,7 +8988,7 @@ export declare function init(config: AuthHeroConfig): {
8820
8988
  }[] | undefined;
8821
8989
  isPriority?: boolean | undefined;
8822
8990
  id?: string | undefined;
8823
- status?: "suspended" | "active" | "paused" | undefined;
8991
+ status?: "active" | "suspended" | "paused" | undefined;
8824
8992
  created_at?: string | undefined;
8825
8993
  updated_at?: string | undefined;
8826
8994
  };
@@ -8832,7 +9000,7 @@ export declare function init(config: AuthHeroConfig): {
8832
9000
  [x: string]: import("hono/utils/types").JSONValue;
8833
9001
  };
8834
9002
  id: string;
8835
- status: "suspended" | "active" | "paused";
9003
+ status: "active" | "suspended" | "paused";
8836
9004
  filters?: {
8837
9005
  type: string;
8838
9006
  name: string;
@@ -8883,7 +9051,7 @@ export declare function init(config: AuthHeroConfig): {
8883
9051
  };
8884
9052
  };
8885
9053
  output: {
8886
- 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";
9054
+ 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";
8887
9055
  date: string;
8888
9056
  isMobile: boolean;
8889
9057
  log_id: string;
@@ -8922,7 +9090,7 @@ export declare function init(config: AuthHeroConfig): {
8922
9090
  limit: number;
8923
9091
  length: number;
8924
9092
  logs: {
8925
- 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";
9093
+ 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";
8926
9094
  date: string;
8927
9095
  isMobile: boolean;
8928
9096
  log_id: string;
@@ -8976,7 +9144,7 @@ export declare function init(config: AuthHeroConfig): {
8976
9144
  };
8977
9145
  };
8978
9146
  output: {
8979
- 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";
9147
+ 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";
8980
9148
  date: string;
8981
9149
  isMobile: boolean;
8982
9150
  log_id: string;
@@ -9364,7 +9532,7 @@ export declare function init(config: AuthHeroConfig): {
9364
9532
  addons?: {
9365
9533
  [x: string]: any;
9366
9534
  } | undefined;
9367
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9535
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9368
9536
  client_metadata?: {
9369
9537
  [x: string]: string;
9370
9538
  } | undefined;
@@ -9460,7 +9628,7 @@ export declare function init(config: AuthHeroConfig): {
9460
9628
  addons?: {
9461
9629
  [x: string]: any;
9462
9630
  } | undefined;
9463
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9631
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9464
9632
  client_metadata?: {
9465
9633
  [x: string]: string;
9466
9634
  } | undefined;
@@ -9571,7 +9739,7 @@ export declare function init(config: AuthHeroConfig): {
9571
9739
  addons?: {
9572
9740
  [x: string]: any;
9573
9741
  } | undefined;
9574
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9742
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9575
9743
  client_metadata?: {
9576
9744
  [x: string]: string;
9577
9745
  } | undefined;
@@ -9681,7 +9849,7 @@ export declare function init(config: AuthHeroConfig): {
9681
9849
  custom_login_page_preview?: string | undefined;
9682
9850
  form_template?: string | undefined;
9683
9851
  addons?: Record<string, any> | undefined;
9684
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9852
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9685
9853
  client_metadata?: Record<string, string> | undefined;
9686
9854
  hide_sign_up_disabled_error?: boolean | undefined;
9687
9855
  mobile?: Record<string, any> | undefined;
@@ -9761,7 +9929,7 @@ export declare function init(config: AuthHeroConfig): {
9761
9929
  addons?: {
9762
9930
  [x: string]: any;
9763
9931
  } | undefined;
9764
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9932
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9765
9933
  client_metadata?: {
9766
9934
  [x: string]: string;
9767
9935
  } | undefined;
@@ -9850,7 +10018,7 @@ export declare function init(config: AuthHeroConfig): {
9850
10018
  custom_login_page_preview?: string | undefined;
9851
10019
  form_template?: string | undefined;
9852
10020
  addons?: Record<string, any> | undefined;
9853
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10021
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9854
10022
  client_metadata?: Record<string, string> | undefined;
9855
10023
  hide_sign_up_disabled_error?: boolean | undefined;
9856
10024
  mobile?: Record<string, any> | undefined;
@@ -9930,7 +10098,7 @@ export declare function init(config: AuthHeroConfig): {
9930
10098
  addons?: {
9931
10099
  [x: string]: any;
9932
10100
  } | undefined;
9933
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10101
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9934
10102
  client_metadata?: {
9935
10103
  [x: string]: string;
9936
10104
  } | undefined;
@@ -10099,7 +10267,7 @@ export declare function init(config: AuthHeroConfig): {
10099
10267
  } | undefined;
10100
10268
  } | undefined;
10101
10269
  passkey_options?: {
10102
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10270
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10103
10271
  local_enrollment_enabled?: boolean | undefined;
10104
10272
  progressive_enrollment_enabled?: boolean | undefined;
10105
10273
  } | undefined;
@@ -10253,7 +10421,7 @@ export declare function init(config: AuthHeroConfig): {
10253
10421
  } | undefined;
10254
10422
  } | undefined;
10255
10423
  passkey_options?: {
10256
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10424
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10257
10425
  local_enrollment_enabled?: boolean | undefined;
10258
10426
  progressive_enrollment_enabled?: boolean | undefined;
10259
10427
  } | undefined;
@@ -11194,7 +11362,7 @@ export declare function init(config: AuthHeroConfig): {
11194
11362
  };
11195
11363
  };
11196
11364
  output: {
11197
- 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";
11365
+ 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";
11198
11366
  date: string;
11199
11367
  isMobile: boolean;
11200
11368
  log_id: string;
@@ -11233,7 +11401,7 @@ export declare function init(config: AuthHeroConfig): {
11233
11401
  limit: number;
11234
11402
  length: number;
11235
11403
  logs: {
11236
- 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";
11404
+ 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";
11237
11405
  date: string;
11238
11406
  isMobile: boolean;
11239
11407
  log_id: string;
@@ -12360,7 +12528,7 @@ export declare function init(config: AuthHeroConfig): {
12360
12528
  base_focus_color: string;
12361
12529
  base_hover_color: string;
12362
12530
  body_text: string;
12363
- captcha_widget_theme: "auto" | "light" | "dark";
12531
+ captcha_widget_theme: "dark" | "light" | "auto";
12364
12532
  error: string;
12365
12533
  header: string;
12366
12534
  icons: string;
@@ -12411,7 +12579,7 @@ export declare function init(config: AuthHeroConfig): {
12411
12579
  background_color: string;
12412
12580
  background_image_url: string;
12413
12581
  page_layout: "center" | "left" | "right";
12414
- logo_placement?: "widget" | "chip" | "none" | undefined;
12582
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12415
12583
  };
12416
12584
  widget: {
12417
12585
  header_text_alignment: "center" | "left" | "right";
@@ -12450,7 +12618,7 @@ export declare function init(config: AuthHeroConfig): {
12450
12618
  base_focus_color: string;
12451
12619
  base_hover_color: string;
12452
12620
  body_text: string;
12453
- captcha_widget_theme: "auto" | "light" | "dark";
12621
+ captcha_widget_theme: "dark" | "light" | "auto";
12454
12622
  error: string;
12455
12623
  header: string;
12456
12624
  icons: string;
@@ -12501,7 +12669,7 @@ export declare function init(config: AuthHeroConfig): {
12501
12669
  background_color: string;
12502
12670
  background_image_url: string;
12503
12671
  page_layout: "center" | "left" | "right";
12504
- logo_placement?: "widget" | "chip" | "none" | undefined;
12672
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12505
12673
  };
12506
12674
  widget: {
12507
12675
  header_text_alignment: "center" | "left" | "right";
@@ -12529,7 +12697,7 @@ export declare function init(config: AuthHeroConfig): {
12529
12697
  base_focus_color: string;
12530
12698
  base_hover_color: string;
12531
12699
  body_text: string;
12532
- captcha_widget_theme: "auto" | "light" | "dark";
12700
+ captcha_widget_theme: "dark" | "light" | "auto";
12533
12701
  error: string;
12534
12702
  header: string;
12535
12703
  icons: string;
@@ -12580,7 +12748,7 @@ export declare function init(config: AuthHeroConfig): {
12580
12748
  background_color: string;
12581
12749
  background_image_url: string;
12582
12750
  page_layout: "center" | "left" | "right";
12583
- logo_placement?: "widget" | "chip" | "none" | undefined;
12751
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12584
12752
  };
12585
12753
  widget: {
12586
12754
  header_text_alignment: "center" | "left" | "right";
@@ -12619,7 +12787,7 @@ export declare function init(config: AuthHeroConfig): {
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;
@@ -12649,7 +12817,7 @@ export declare function init(config: AuthHeroConfig): {
12649
12817
  font?: {
12650
12818
  url: string;
12651
12819
  } | undefined;
12652
- dark_mode?: "auto" | "light" | "dark" | undefined;
12820
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12653
12821
  };
12654
12822
  };
12655
12823
  output: {
@@ -12668,7 +12836,7 @@ export declare function init(config: AuthHeroConfig): {
12668
12836
  font?: {
12669
12837
  url: string;
12670
12838
  } | undefined;
12671
- dark_mode?: "auto" | "light" | "dark" | undefined;
12839
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12672
12840
  };
12673
12841
  outputFormat: "json";
12674
12842
  status: 200;
@@ -12742,7 +12910,7 @@ export declare function init(config: AuthHeroConfig): {
12742
12910
  } & {
12743
12911
  json: {
12744
12912
  body?: string | undefined;
12745
- screen?: "login" | "identifier" | "password" | "signup" | undefined;
12913
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
12746
12914
  branding?: {
12747
12915
  colors?: {
12748
12916
  primary: string;
@@ -12759,7 +12927,7 @@ export declare function init(config: AuthHeroConfig): {
12759
12927
  font?: {
12760
12928
  url: string;
12761
12929
  } | undefined;
12762
- dark_mode?: "auto" | "light" | "dark" | undefined;
12930
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12763
12931
  } | undefined;
12764
12932
  theme?: {
12765
12933
  borders?: {
@@ -12777,7 +12945,7 @@ export declare function init(config: AuthHeroConfig): {
12777
12945
  base_focus_color: string;
12778
12946
  base_hover_color: string;
12779
12947
  body_text: string;
12780
- captcha_widget_theme: "auto" | "light" | "dark";
12948
+ captcha_widget_theme: "dark" | "light" | "auto";
12781
12949
  error: string;
12782
12950
  header: string;
12783
12951
  icons: string;
@@ -12828,7 +12996,7 @@ export declare function init(config: AuthHeroConfig): {
12828
12996
  background_color: string;
12829
12997
  background_image_url: string;
12830
12998
  page_layout: "center" | "left" | "right";
12831
- logo_placement?: "widget" | "chip" | "none" | undefined;
12999
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12832
13000
  } | undefined;
12833
13001
  widget?: {
12834
13002
  header_text_alignment: "center" | "left" | "right";
@@ -13033,7 +13201,7 @@ export declare function init(config: AuthHeroConfig): {
13033
13201
  logs: {
13034
13202
  action_name: string;
13035
13203
  lines: {
13036
- level: "error" | "log" | "info" | "warn" | "debug";
13204
+ level: "log" | "error" | "info" | "warn" | "debug";
13037
13205
  message: string;
13038
13206
  }[];
13039
13207
  }[];
@@ -13700,7 +13868,7 @@ export declare function init(config: AuthHeroConfig): {
13700
13868
  args: import("hono/utils/types").JSONValue[];
13701
13869
  }[];
13702
13870
  logs: {
13703
- level: "error" | "log" | "info" | "warn" | "debug";
13871
+ level: "log" | "error" | "info" | "warn" | "debug";
13704
13872
  message: string;
13705
13873
  }[];
13706
13874
  error?: string | undefined;
@@ -13998,7 +14166,7 @@ export declare function init(config: AuthHeroConfig): {
13998
14166
  scope?: string | undefined;
13999
14167
  grant_types?: string[] | undefined;
14000
14168
  response_types?: string[] | undefined;
14001
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14169
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14002
14170
  jwks_uri?: string | undefined;
14003
14171
  jwks?: Record<string, unknown> | undefined;
14004
14172
  software_id?: string | undefined;
@@ -14087,7 +14255,7 @@ export declare function init(config: AuthHeroConfig): {
14087
14255
  scope?: string | undefined;
14088
14256
  grant_types?: string[] | undefined;
14089
14257
  response_types?: string[] | undefined;
14090
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14258
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14091
14259
  jwks_uri?: string | undefined;
14092
14260
  jwks?: Record<string, unknown> | undefined;
14093
14261
  software_id?: string | undefined;
@@ -14433,17 +14601,17 @@ export declare function init(config: AuthHeroConfig): {
14433
14601
  email: string;
14434
14602
  send: "code" | "link";
14435
14603
  authParams: {
14436
- state?: string | undefined;
14437
14604
  username?: string | undefined;
14605
+ state?: string | undefined;
14438
14606
  audience?: string | undefined;
14439
- scope?: string | undefined;
14440
14607
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14441
14608
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14442
- prompt?: string | undefined;
14443
- act_as?: string | undefined;
14444
- redirect_uri?: string | undefined;
14609
+ scope?: string | undefined;
14445
14610
  organization?: string | undefined;
14446
14611
  nonce?: string | undefined;
14612
+ redirect_uri?: string | undefined;
14613
+ act_as?: string | undefined;
14614
+ prompt?: string | undefined;
14447
14615
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14448
14616
  code_challenge?: string | undefined;
14449
14617
  ui_locales?: string | undefined;
@@ -14469,17 +14637,17 @@ export declare function init(config: AuthHeroConfig): {
14469
14637
  phone_number: string;
14470
14638
  send: "code" | "link";
14471
14639
  authParams: {
14472
- state?: string | undefined;
14473
14640
  username?: string | undefined;
14641
+ state?: string | undefined;
14474
14642
  audience?: string | undefined;
14475
- scope?: string | undefined;
14476
14643
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14477
14644
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14478
- prompt?: string | undefined;
14479
- act_as?: string | undefined;
14480
- redirect_uri?: string | undefined;
14645
+ scope?: string | undefined;
14481
14646
  organization?: string | undefined;
14482
14647
  nonce?: string | undefined;
14648
+ redirect_uri?: string | undefined;
14649
+ act_as?: string | undefined;
14650
+ prompt?: string | undefined;
14483
14651
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14484
14652
  code_challenge?: string | undefined;
14485
14653
  ui_locales?: string | undefined;
@@ -14613,14 +14781,14 @@ export declare function init(config: AuthHeroConfig): {
14613
14781
  input: {
14614
14782
  form: {
14615
14783
  token: string;
14616
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14784
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14617
14785
  client_id?: string | undefined;
14618
14786
  client_secret?: string | undefined;
14619
14787
  };
14620
14788
  } & {
14621
14789
  json: {
14622
14790
  token: string;
14623
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14791
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14624
14792
  client_id?: string | undefined;
14625
14793
  client_secret?: string | undefined;
14626
14794
  };
@@ -14632,14 +14800,14 @@ export declare function init(config: AuthHeroConfig): {
14632
14800
  input: {
14633
14801
  form: {
14634
14802
  token: string;
14635
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14803
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14636
14804
  client_id?: string | undefined;
14637
14805
  client_secret?: string | undefined;
14638
14806
  };
14639
14807
  } & {
14640
14808
  json: {
14641
14809
  token: string;
14642
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14810
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14643
14811
  client_id?: string | undefined;
14644
14812
  client_secret?: string | undefined;
14645
14813
  };
@@ -14654,14 +14822,14 @@ export declare function init(config: AuthHeroConfig): {
14654
14822
  input: {
14655
14823
  form: {
14656
14824
  token: string;
14657
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14825
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14658
14826
  client_id?: string | undefined;
14659
14827
  client_secret?: string | undefined;
14660
14828
  };
14661
14829
  } & {
14662
14830
  json: {
14663
14831
  token: string;
14664
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14832
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14665
14833
  client_id?: string | undefined;
14666
14834
  client_secret?: string | undefined;
14667
14835
  };
@@ -16009,7 +16177,7 @@ export declare function init(config: AuthHeroConfig): {
16009
16177
  } & {
16010
16178
  form: {
16011
16179
  username: string;
16012
- login_selection?: "password" | "code" | undefined;
16180
+ login_selection?: "code" | "password" | undefined;
16013
16181
  };
16014
16182
  };
16015
16183
  output: {};
@@ -16023,7 +16191,7 @@ export declare function init(config: AuthHeroConfig): {
16023
16191
  } & {
16024
16192
  form: {
16025
16193
  username: string;
16026
- login_selection?: "password" | "code" | undefined;
16194
+ login_selection?: "code" | "password" | undefined;
16027
16195
  };
16028
16196
  };
16029
16197
  output: {};
@@ -16388,7 +16556,7 @@ export declare function init(config: AuthHeroConfig): {
16388
16556
  $get: {
16389
16557
  input: {
16390
16558
  param: {
16391
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16559
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16392
16560
  };
16393
16561
  } & {
16394
16562
  query: {
@@ -16404,7 +16572,7 @@ export declare function init(config: AuthHeroConfig): {
16404
16572
  } | {
16405
16573
  input: {
16406
16574
  param: {
16407
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16575
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16408
16576
  };
16409
16577
  } & {
16410
16578
  query: {
@@ -16420,7 +16588,7 @@ export declare function init(config: AuthHeroConfig): {
16420
16588
  } | {
16421
16589
  input: {
16422
16590
  param: {
16423
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16591
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16424
16592
  };
16425
16593
  } & {
16426
16594
  query: {
@@ -16440,7 +16608,7 @@ export declare function init(config: AuthHeroConfig): {
16440
16608
  $post: {
16441
16609
  input: {
16442
16610
  param: {
16443
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16611
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16444
16612
  };
16445
16613
  } & {
16446
16614
  query: {
@@ -16458,7 +16626,7 @@ export declare function init(config: AuthHeroConfig): {
16458
16626
  } | {
16459
16627
  input: {
16460
16628
  param: {
16461
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16629
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16462
16630
  };
16463
16631
  } & {
16464
16632
  query: {
@@ -16476,7 +16644,7 @@ export declare function init(config: AuthHeroConfig): {
16476
16644
  } | {
16477
16645
  input: {
16478
16646
  param: {
16479
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16647
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16480
16648
  };
16481
16649
  } & {
16482
16650
  query: {