authhero 8.22.0 → 8.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +142 -142
  3. package/dist/authhero.d.ts +242 -127
  4. package/dist/authhero.mjs +20674 -15903
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +12 -4
  7. package/dist/types/helpers/backchannel-logout.d.ts +19 -0
  8. package/dist/types/helpers/client.d.ts +10 -1
  9. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  10. package/dist/types/index.d.ts +232 -126
  11. package/dist/types/routes/auth-api/index.d.ts +24 -20
  12. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  13. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  14. package/dist/types/routes/auth-api/token.d.ts +10 -10
  15. package/dist/types/routes/auth-api/well-known.d.ts +4 -0
  16. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  17. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  18. package/dist/types/routes/management-api/branding.d.ts +9 -9
  19. package/dist/types/routes/management-api/clients.d.ts +68 -16
  20. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  21. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  22. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  23. package/dist/types/routes/management-api/index.d.ts +179 -77
  24. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  25. package/dist/types/routes/management-api/logs.d.ts +4 -4
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/roles.d.ts +50 -0
  30. package/dist/types/routes/management-api/tenants.d.ts +5 -5
  31. package/dist/types/routes/management-api/themes.d.ts +6 -6
  32. package/dist/types/routes/management-api/users.d.ts +2 -2
  33. package/dist/types/routes/universal-login/common.d.ts +24 -8
  34. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  35. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  36. package/dist/types/types/IdToken.d.ts +2 -2
  37. package/dist/types/utils/crypto.d.ts +3 -0
  38. package/dist/types/utils/jwt.d.ts +29 -0
  39. package/dist/types/utils/request-origin.d.ts +6 -0
  40. package/dist/types/utils/totp.d.ts +10 -0
  41. package/dist/types/variables.d.ts +8 -0
  42. package/package.json +6 -7
@@ -121,7 +121,16 @@ declare const enrichedClientSchema: z.ZodObject<{
121
121
  allowed_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
122
122
  allowed_logout_urls: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
123
123
  session_transfer: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
124
- oidc_logout: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
124
+ oidc_logout: z.ZodOptional<z.ZodDefault<z.ZodObject<{
125
+ backchannel_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
126
+ backchannel_logout_initiators: z.ZodOptional<z.ZodObject<{
127
+ mode: z.ZodOptional<z.ZodEnum<{
128
+ custom: "custom";
129
+ all: "all";
130
+ }>>;
131
+ selected_initiators: z.ZodOptional<z.ZodArray<z.ZodString>>;
132
+ }, z.core.$loose>>;
133
+ }, z.core.$loose>>>;
125
134
  grant_types: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
126
135
  jwt_configuration: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
127
136
  signing_keys: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>>>;
@@ -3393,7 +3402,7 @@ declare function init(config: AuthHeroConfig): {
3393
3402
  };
3394
3403
  } & {
3395
3404
  json: {
3396
- type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
3405
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3397
3406
  phone_number?: string | undefined;
3398
3407
  totp_secret?: string | undefined;
3399
3408
  credential_id?: string | undefined;
@@ -3533,7 +3542,7 @@ declare function init(config: AuthHeroConfig): {
3533
3542
  };
3534
3543
  };
3535
3544
  output: {
3536
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3545
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3537
3546
  enabled: boolean;
3538
3547
  trial_expired?: boolean | undefined;
3539
3548
  }[];
@@ -3688,7 +3697,7 @@ declare function init(config: AuthHeroConfig): {
3688
3697
  $get: {
3689
3698
  input: {
3690
3699
  param: {
3691
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3700
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3692
3701
  };
3693
3702
  } & {
3694
3703
  header: {
@@ -3696,7 +3705,7 @@ declare function init(config: AuthHeroConfig): {
3696
3705
  };
3697
3706
  };
3698
3707
  output: {
3699
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3708
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3700
3709
  enabled: boolean;
3701
3710
  trial_expired?: boolean | undefined;
3702
3711
  };
@@ -3709,7 +3718,7 @@ declare function init(config: AuthHeroConfig): {
3709
3718
  $put: {
3710
3719
  input: {
3711
3720
  param: {
3712
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3721
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3713
3722
  };
3714
3723
  } & {
3715
3724
  header: {
@@ -3721,7 +3730,7 @@ declare function init(config: AuthHeroConfig): {
3721
3730
  };
3722
3731
  };
3723
3732
  output: {
3724
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3733
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3725
3734
  enabled: boolean;
3726
3735
  trial_expired?: boolean | undefined;
3727
3736
  };
@@ -4499,11 +4508,11 @@ declare function init(config: AuthHeroConfig): {
4499
4508
  invitee: {
4500
4509
  email?: string | undefined;
4501
4510
  };
4511
+ roles?: string[] | undefined;
4502
4512
  id?: string | undefined;
4503
4513
  app_metadata?: Record<string, any> | undefined;
4504
4514
  user_metadata?: Record<string, any> | undefined;
4505
4515
  connection_id?: string | undefined;
4506
- roles?: string[] | undefined;
4507
4516
  ttl_sec?: number | undefined;
4508
4517
  send_invitation_email?: boolean | undefined;
4509
4518
  };
@@ -4688,8 +4697,8 @@ declare function init(config: AuthHeroConfig): {
4688
4697
  };
4689
4698
  } & {
4690
4699
  json: {
4691
- assign_membership_on_login?: boolean | undefined;
4692
4700
  show_as_button?: boolean | undefined;
4701
+ assign_membership_on_login?: boolean | undefined;
4693
4702
  is_signup_enabled?: boolean | undefined;
4694
4703
  };
4695
4704
  };
@@ -5251,6 +5260,56 @@ declare function init(config: AuthHeroConfig): {
5251
5260
  status: 200;
5252
5261
  };
5253
5262
  };
5263
+ } & {
5264
+ "/:id/users": {
5265
+ $get: {
5266
+ input: {
5267
+ param: {
5268
+ id: string;
5269
+ };
5270
+ } & {
5271
+ query: {
5272
+ page?: string | undefined;
5273
+ include_totals?: string | undefined;
5274
+ from?: string | undefined;
5275
+ per_page?: string | undefined;
5276
+ take?: string | undefined;
5277
+ };
5278
+ } & {
5279
+ header: {
5280
+ "tenant-id"?: string | undefined;
5281
+ };
5282
+ };
5283
+ output: {
5284
+ user_id: string;
5285
+ email?: string | undefined;
5286
+ name?: string | undefined;
5287
+ picture?: string | undefined;
5288
+ }[] | {
5289
+ start: number;
5290
+ limit: number;
5291
+ length: number;
5292
+ users: {
5293
+ user_id: string;
5294
+ email?: string | undefined;
5295
+ name?: string | undefined;
5296
+ picture?: string | undefined;
5297
+ }[];
5298
+ total?: number | undefined;
5299
+ next?: string | undefined;
5300
+ } | {
5301
+ users: {
5302
+ user_id: string;
5303
+ email?: string | undefined;
5304
+ name?: string | undefined;
5305
+ picture?: string | undefined;
5306
+ }[];
5307
+ next?: string | undefined;
5308
+ };
5309
+ outputFormat: "json";
5310
+ status: 200;
5311
+ };
5312
+ };
5254
5313
  } & {
5255
5314
  "/:id/permissions": {
5256
5315
  $post: {
@@ -10164,7 +10223,7 @@ declare function init(config: AuthHeroConfig): {
10164
10223
  };
10165
10224
  };
10166
10225
  output: {
10167
- prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10226
+ 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";
10168
10227
  language: string;
10169
10228
  }[];
10170
10229
  outputFormat: "json";
@@ -10202,7 +10261,7 @@ declare function init(config: AuthHeroConfig): {
10202
10261
  $get: {
10203
10262
  input: {
10204
10263
  param: {
10205
- prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10264
+ 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";
10206
10265
  language: string;
10207
10266
  };
10208
10267
  } & {
@@ -10224,7 +10283,7 @@ declare function init(config: AuthHeroConfig): {
10224
10283
  $put: {
10225
10284
  input: {
10226
10285
  param: {
10227
- prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10286
+ 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";
10228
10287
  language: string;
10229
10288
  };
10230
10289
  } & {
@@ -10248,7 +10307,7 @@ declare function init(config: AuthHeroConfig): {
10248
10307
  $delete: {
10249
10308
  input: {
10250
10309
  param: {
10251
- prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10310
+ 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";
10252
10311
  language: string;
10253
10312
  };
10254
10313
  } & {
@@ -10340,7 +10399,7 @@ declare function init(config: AuthHeroConfig): {
10340
10399
  active?: boolean | undefined;
10341
10400
  } | undefined;
10342
10401
  signup?: {
10343
- status?: "optional" | "required" | "disabled" | undefined;
10402
+ status?: "required" | "optional" | "disabled" | undefined;
10344
10403
  verification?: {
10345
10404
  active?: boolean | undefined;
10346
10405
  } | undefined;
@@ -10357,7 +10416,7 @@ declare function init(config: AuthHeroConfig): {
10357
10416
  active?: boolean | undefined;
10358
10417
  } | undefined;
10359
10418
  signup?: {
10360
- status?: "optional" | "required" | "disabled" | undefined;
10419
+ status?: "required" | "optional" | "disabled" | undefined;
10361
10420
  } | undefined;
10362
10421
  validation?: {
10363
10422
  max_length?: number | undefined;
@@ -10374,7 +10433,7 @@ declare function init(config: AuthHeroConfig): {
10374
10433
  active?: boolean | undefined;
10375
10434
  } | undefined;
10376
10435
  signup?: {
10377
- status?: "optional" | "required" | "disabled" | undefined;
10436
+ status?: "required" | "optional" | "disabled" | undefined;
10378
10437
  } | undefined;
10379
10438
  } | undefined;
10380
10439
  } | undefined;
@@ -10474,7 +10533,7 @@ declare function init(config: AuthHeroConfig): {
10474
10533
  active?: boolean | undefined;
10475
10534
  } | undefined;
10476
10535
  signup?: {
10477
- status?: "optional" | "required" | "disabled" | undefined;
10536
+ status?: "required" | "optional" | "disabled" | undefined;
10478
10537
  verification?: {
10479
10538
  active?: boolean | undefined;
10480
10539
  } | undefined;
@@ -10491,7 +10550,7 @@ declare function init(config: AuthHeroConfig): {
10491
10550
  active?: boolean | undefined;
10492
10551
  } | undefined;
10493
10552
  signup?: {
10494
- status?: "optional" | "required" | "disabled" | undefined;
10553
+ status?: "required" | "optional" | "disabled" | undefined;
10495
10554
  } | undefined;
10496
10555
  validation?: {
10497
10556
  max_length?: number | undefined;
@@ -10508,7 +10567,7 @@ declare function init(config: AuthHeroConfig): {
10508
10567
  active?: boolean | undefined;
10509
10568
  } | undefined;
10510
10569
  signup?: {
10511
- status?: "optional" | "required" | "disabled" | undefined;
10570
+ status?: "required" | "optional" | "disabled" | undefined;
10512
10571
  } | undefined;
10513
10572
  } | undefined;
10514
10573
  } | undefined;
@@ -10624,7 +10683,7 @@ declare function init(config: AuthHeroConfig): {
10624
10683
  active?: boolean | undefined;
10625
10684
  } | undefined;
10626
10685
  signup?: {
10627
- status?: "optional" | "required" | "disabled" | undefined;
10686
+ status?: "required" | "optional" | "disabled" | undefined;
10628
10687
  verification?: {
10629
10688
  active?: boolean | undefined;
10630
10689
  } | undefined;
@@ -10641,7 +10700,7 @@ declare function init(config: AuthHeroConfig): {
10641
10700
  active?: boolean | undefined;
10642
10701
  } | undefined;
10643
10702
  signup?: {
10644
- status?: "optional" | "required" | "disabled" | undefined;
10703
+ status?: "required" | "optional" | "disabled" | undefined;
10645
10704
  } | undefined;
10646
10705
  validation?: {
10647
10706
  max_length?: number | undefined;
@@ -10658,7 +10717,7 @@ declare function init(config: AuthHeroConfig): {
10658
10717
  active?: boolean | undefined;
10659
10718
  } | undefined;
10660
10719
  signup?: {
10661
- status?: "optional" | "required" | "disabled" | undefined;
10720
+ status?: "required" | "optional" | "disabled" | undefined;
10662
10721
  } | undefined;
10663
10722
  } | undefined;
10664
10723
  } | undefined;
@@ -10803,7 +10862,7 @@ declare function init(config: AuthHeroConfig): {
10803
10862
  active?: boolean | undefined;
10804
10863
  } | undefined;
10805
10864
  signup?: {
10806
- status?: "optional" | "required" | "disabled" | undefined;
10865
+ status?: "required" | "optional" | "disabled" | undefined;
10807
10866
  verification?: {
10808
10867
  active?: boolean | undefined;
10809
10868
  } | undefined;
@@ -10820,7 +10879,7 @@ declare function init(config: AuthHeroConfig): {
10820
10879
  active?: boolean | undefined;
10821
10880
  } | undefined;
10822
10881
  signup?: {
10823
- status?: "optional" | "required" | "disabled" | undefined;
10882
+ status?: "required" | "optional" | "disabled" | undefined;
10824
10883
  } | undefined;
10825
10884
  validation?: {
10826
10885
  max_length?: number | undefined;
@@ -10837,7 +10896,7 @@ declare function init(config: AuthHeroConfig): {
10837
10896
  active?: boolean | undefined;
10838
10897
  } | undefined;
10839
10898
  signup?: {
10840
- status?: "optional" | "required" | "disabled" | undefined;
10899
+ status?: "required" | "optional" | "disabled" | undefined;
10841
10900
  } | undefined;
10842
10901
  } | undefined;
10843
10902
  } | undefined;
@@ -10961,7 +11020,7 @@ declare function init(config: AuthHeroConfig): {
10961
11020
  active?: boolean | undefined;
10962
11021
  } | undefined;
10963
11022
  signup?: {
10964
- status?: "optional" | "required" | "disabled" | undefined;
11023
+ status?: "required" | "optional" | "disabled" | undefined;
10965
11024
  verification?: {
10966
11025
  active?: boolean | undefined;
10967
11026
  } | undefined;
@@ -10978,7 +11037,7 @@ declare function init(config: AuthHeroConfig): {
10978
11037
  active?: boolean | undefined;
10979
11038
  } | undefined;
10980
11039
  signup?: {
10981
- status?: "optional" | "required" | "disabled" | undefined;
11040
+ status?: "required" | "optional" | "disabled" | undefined;
10982
11041
  } | undefined;
10983
11042
  validation?: {
10984
11043
  max_length?: number | undefined;
@@ -10995,7 +11054,7 @@ declare function init(config: AuthHeroConfig): {
10995
11054
  active?: boolean | undefined;
10996
11055
  } | undefined;
10997
11056
  signup?: {
10998
- status?: "optional" | "required" | "disabled" | undefined;
11057
+ status?: "required" | "optional" | "disabled" | undefined;
10999
11058
  } | undefined;
11000
11059
  } | undefined;
11001
11060
  } | undefined;
@@ -11751,7 +11810,7 @@ declare function init(config: AuthHeroConfig): {
11751
11810
  log_type: string;
11752
11811
  category: "user_action" | "admin_action" | "system" | "api";
11753
11812
  actor: {
11754
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
11813
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11755
11814
  id?: string | undefined;
11756
11815
  email?: string | undefined;
11757
11816
  org_id?: string | undefined;
@@ -12061,7 +12120,7 @@ declare function init(config: AuthHeroConfig): {
12061
12120
  created_at: string;
12062
12121
  updated_at: string;
12063
12122
  name: string;
12064
- provider: "auth0" | "cognito" | "okta" | "oidc";
12123
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12065
12124
  connection: string;
12066
12125
  enabled: boolean;
12067
12126
  credentials: {
@@ -12093,7 +12152,7 @@ declare function init(config: AuthHeroConfig): {
12093
12152
  created_at: string;
12094
12153
  updated_at: string;
12095
12154
  name: string;
12096
- provider: "auth0" | "cognito" | "okta" | "oidc";
12155
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12097
12156
  connection: string;
12098
12157
  enabled: boolean;
12099
12158
  credentials: {
@@ -12119,7 +12178,7 @@ declare function init(config: AuthHeroConfig): {
12119
12178
  } & {
12120
12179
  json: {
12121
12180
  name: string;
12122
- provider: "auth0" | "cognito" | "okta" | "oidc";
12181
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12123
12182
  connection: string;
12124
12183
  credentials: {
12125
12184
  domain: string;
@@ -12136,7 +12195,7 @@ declare function init(config: AuthHeroConfig): {
12136
12195
  created_at: string;
12137
12196
  updated_at: string;
12138
12197
  name: string;
12139
- provider: "auth0" | "cognito" | "okta" | "oidc";
12198
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12140
12199
  connection: string;
12141
12200
  enabled: boolean;
12142
12201
  credentials: {
@@ -12167,7 +12226,7 @@ declare function init(config: AuthHeroConfig): {
12167
12226
  json: {
12168
12227
  id?: string | undefined;
12169
12228
  name?: string | undefined;
12170
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
12229
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
12171
12230
  connection?: string | undefined;
12172
12231
  enabled?: boolean | undefined;
12173
12232
  credentials?: {
@@ -12183,7 +12242,7 @@ declare function init(config: AuthHeroConfig): {
12183
12242
  created_at: string;
12184
12243
  updated_at: string;
12185
12244
  name: string;
12186
- provider: "auth0" | "cognito" | "okta" | "oidc";
12245
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12187
12246
  connection: string;
12188
12247
  enabled: boolean;
12189
12248
  credentials: {
@@ -12231,7 +12290,7 @@ declare function init(config: AuthHeroConfig): {
12231
12290
  [x: string]: hono_utils_types.JSONValue;
12232
12291
  };
12233
12292
  id: string;
12234
- status: "suspended" | "active" | "paused";
12293
+ status: "active" | "suspended" | "paused";
12235
12294
  filters?: {
12236
12295
  type: string;
12237
12296
  name: string;
@@ -12263,7 +12322,7 @@ declare function init(config: AuthHeroConfig): {
12263
12322
  [x: string]: hono_utils_types.JSONValue;
12264
12323
  };
12265
12324
  id: string;
12266
- status: "suspended" | "active" | "paused";
12325
+ status: "active" | "suspended" | "paused";
12267
12326
  filters?: {
12268
12327
  type: string;
12269
12328
  name: string;
@@ -12288,7 +12347,7 @@ declare function init(config: AuthHeroConfig): {
12288
12347
  name: string;
12289
12348
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
12290
12349
  sink: Record<string, unknown>;
12291
- status?: "suspended" | "active" | "paused" | undefined;
12350
+ status?: "active" | "suspended" | "paused" | undefined;
12292
12351
  filters?: {
12293
12352
  type: string;
12294
12353
  name: string;
@@ -12303,7 +12362,7 @@ declare function init(config: AuthHeroConfig): {
12303
12362
  [x: string]: hono_utils_types.JSONValue;
12304
12363
  };
12305
12364
  id: string;
12306
- status: "suspended" | "active" | "paused";
12365
+ status: "active" | "suspended" | "paused";
12307
12366
  filters?: {
12308
12367
  type: string;
12309
12368
  name: string;
@@ -12338,7 +12397,7 @@ declare function init(config: AuthHeroConfig): {
12338
12397
  }[] | undefined;
12339
12398
  isPriority?: boolean | undefined;
12340
12399
  id?: string | undefined;
12341
- status?: "suspended" | "active" | "paused" | undefined;
12400
+ status?: "active" | "suspended" | "paused" | undefined;
12342
12401
  created_at?: string | undefined;
12343
12402
  updated_at?: string | undefined;
12344
12403
  };
@@ -12350,7 +12409,7 @@ declare function init(config: AuthHeroConfig): {
12350
12409
  [x: string]: hono_utils_types.JSONValue;
12351
12410
  };
12352
12411
  id: string;
12353
- status: "suspended" | "active" | "paused";
12412
+ status: "active" | "suspended" | "paused";
12354
12413
  filters?: {
12355
12414
  type: string;
12356
12415
  name: string;
@@ -12401,7 +12460,7 @@ declare function init(config: AuthHeroConfig): {
12401
12460
  };
12402
12461
  };
12403
12462
  output: {
12404
- type: "fn" | "i" | "cs" | "fi" | "sv" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
12463
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12405
12464
  date: string;
12406
12465
  isMobile: boolean;
12407
12466
  log_id: string;
@@ -12440,7 +12499,7 @@ declare function init(config: AuthHeroConfig): {
12440
12499
  limit: number;
12441
12500
  length: number;
12442
12501
  logs: {
12443
- type: "fn" | "i" | "cs" | "fi" | "sv" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
12502
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12444
12503
  date: string;
12445
12504
  isMobile: boolean;
12446
12505
  log_id: string;
@@ -12479,7 +12538,7 @@ declare function init(config: AuthHeroConfig): {
12479
12538
  next?: string | undefined;
12480
12539
  } | {
12481
12540
  logs: {
12482
- type: "fn" | "i" | "cs" | "fi" | "sv" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
12541
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12483
12542
  date: string;
12484
12543
  isMobile: boolean;
12485
12544
  log_id: string;
@@ -12533,7 +12592,7 @@ declare function init(config: AuthHeroConfig): {
12533
12592
  };
12534
12593
  };
12535
12594
  output: {
12536
- type: "fn" | "i" | "cs" | "fi" | "sv" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
12595
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12537
12596
  date: string;
12538
12597
  isMobile: boolean;
12539
12598
  log_id: string;
@@ -12919,7 +12978,13 @@ declare function init(config: AuthHeroConfig): {
12919
12978
  [x: string]: any;
12920
12979
  } | undefined;
12921
12980
  oidc_logout?: {
12922
- [x: string]: any;
12981
+ [x: string]: hono_utils_types.JSONValue;
12982
+ backchannel_logout_urls?: string[] | undefined;
12983
+ backchannel_logout_initiators?: {
12984
+ [x: string]: hono_utils_types.JSONValue;
12985
+ mode?: "custom" | "all" | undefined;
12986
+ selected_initiators?: string[] | undefined;
12987
+ } | undefined;
12923
12988
  } | undefined;
12924
12989
  grant_types?: string[] | undefined;
12925
12990
  jwt_configuration?: {
@@ -12938,7 +13003,7 @@ declare function init(config: AuthHeroConfig): {
12938
13003
  addons?: {
12939
13004
  [x: string]: any;
12940
13005
  } | undefined;
12941
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13006
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12942
13007
  client_metadata?: {
12943
13008
  [x: string]: string;
12944
13009
  } | undefined;
@@ -13015,7 +13080,13 @@ declare function init(config: AuthHeroConfig): {
13015
13080
  [x: string]: any;
13016
13081
  } | undefined;
13017
13082
  oidc_logout?: {
13018
- [x: string]: any;
13083
+ [x: string]: hono_utils_types.JSONValue;
13084
+ backchannel_logout_urls?: string[] | undefined;
13085
+ backchannel_logout_initiators?: {
13086
+ [x: string]: hono_utils_types.JSONValue;
13087
+ mode?: "custom" | "all" | undefined;
13088
+ selected_initiators?: string[] | undefined;
13089
+ } | undefined;
13019
13090
  } | undefined;
13020
13091
  grant_types?: string[] | undefined;
13021
13092
  jwt_configuration?: {
@@ -13034,7 +13105,7 @@ declare function init(config: AuthHeroConfig): {
13034
13105
  addons?: {
13035
13106
  [x: string]: any;
13036
13107
  } | undefined;
13037
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13108
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13038
13109
  client_metadata?: {
13039
13110
  [x: string]: string;
13040
13111
  } | undefined;
@@ -13111,7 +13182,13 @@ declare function init(config: AuthHeroConfig): {
13111
13182
  [x: string]: any;
13112
13183
  } | undefined;
13113
13184
  oidc_logout?: {
13114
- [x: string]: any;
13185
+ [x: string]: hono_utils_types.JSONValue;
13186
+ backchannel_logout_urls?: string[] | undefined;
13187
+ backchannel_logout_initiators?: {
13188
+ [x: string]: hono_utils_types.JSONValue;
13189
+ mode?: "custom" | "all" | undefined;
13190
+ selected_initiators?: string[] | undefined;
13191
+ } | undefined;
13115
13192
  } | undefined;
13116
13193
  grant_types?: string[] | undefined;
13117
13194
  jwt_configuration?: {
@@ -13130,7 +13207,7 @@ declare function init(config: AuthHeroConfig): {
13130
13207
  addons?: {
13131
13208
  [x: string]: any;
13132
13209
  } | undefined;
13133
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13210
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13134
13211
  client_metadata?: {
13135
13212
  [x: string]: string;
13136
13213
  } | undefined;
@@ -13222,7 +13299,13 @@ declare function init(config: AuthHeroConfig): {
13222
13299
  [x: string]: any;
13223
13300
  } | undefined;
13224
13301
  oidc_logout?: {
13225
- [x: string]: any;
13302
+ [x: string]: hono_utils_types.JSONValue;
13303
+ backchannel_logout_urls?: string[] | undefined;
13304
+ backchannel_logout_initiators?: {
13305
+ [x: string]: hono_utils_types.JSONValue;
13306
+ mode?: "custom" | "all" | undefined;
13307
+ selected_initiators?: string[] | undefined;
13308
+ } | undefined;
13226
13309
  } | undefined;
13227
13310
  grant_types?: string[] | undefined;
13228
13311
  jwt_configuration?: {
@@ -13241,7 +13324,7 @@ declare function init(config: AuthHeroConfig): {
13241
13324
  addons?: {
13242
13325
  [x: string]: any;
13243
13326
  } | undefined;
13244
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13327
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13245
13328
  client_metadata?: {
13246
13329
  [x: string]: string;
13247
13330
  } | undefined;
@@ -13337,7 +13420,15 @@ declare function init(config: AuthHeroConfig): {
13337
13420
  connections?: string[] | undefined;
13338
13421
  allowed_logout_urls?: string[] | undefined;
13339
13422
  session_transfer?: Record<string, any> | undefined;
13340
- oidc_logout?: Record<string, any> | undefined;
13423
+ oidc_logout?: {
13424
+ [x: string]: unknown;
13425
+ backchannel_logout_urls?: string[] | undefined;
13426
+ backchannel_logout_initiators?: {
13427
+ [x: string]: unknown;
13428
+ mode?: "custom" | "all" | undefined;
13429
+ selected_initiators?: string[] | undefined;
13430
+ } | undefined;
13431
+ } | undefined;
13341
13432
  grant_types?: string[] | undefined;
13342
13433
  jwt_configuration?: Record<string, any> | undefined;
13343
13434
  signing_keys?: Record<string, any>[] | undefined;
@@ -13351,7 +13442,7 @@ declare function init(config: AuthHeroConfig): {
13351
13442
  custom_login_page_preview?: string | undefined;
13352
13443
  form_template?: string | undefined;
13353
13444
  addons?: Record<string, any> | undefined;
13354
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13445
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13355
13446
  client_metadata?: Record<string, string> | undefined;
13356
13447
  hide_sign_up_disabled_error?: boolean | undefined;
13357
13448
  mobile?: Record<string, any> | undefined;
@@ -13412,7 +13503,13 @@ declare function init(config: AuthHeroConfig): {
13412
13503
  [x: string]: any;
13413
13504
  } | undefined;
13414
13505
  oidc_logout?: {
13415
- [x: string]: any;
13506
+ [x: string]: hono_utils_types.JSONValue;
13507
+ backchannel_logout_urls?: string[] | undefined;
13508
+ backchannel_logout_initiators?: {
13509
+ [x: string]: hono_utils_types.JSONValue;
13510
+ mode?: "custom" | "all" | undefined;
13511
+ selected_initiators?: string[] | undefined;
13512
+ } | undefined;
13416
13513
  } | undefined;
13417
13514
  grant_types?: string[] | undefined;
13418
13515
  jwt_configuration?: {
@@ -13431,7 +13528,7 @@ declare function init(config: AuthHeroConfig): {
13431
13528
  addons?: {
13432
13529
  [x: string]: any;
13433
13530
  } | undefined;
13434
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13531
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13435
13532
  client_metadata?: {
13436
13533
  [x: string]: string;
13437
13534
  } | undefined;
@@ -13506,7 +13603,15 @@ declare function init(config: AuthHeroConfig): {
13506
13603
  connections?: string[] | undefined;
13507
13604
  allowed_logout_urls?: string[] | undefined;
13508
13605
  session_transfer?: Record<string, any> | undefined;
13509
- oidc_logout?: Record<string, any> | undefined;
13606
+ oidc_logout?: {
13607
+ [x: string]: unknown;
13608
+ backchannel_logout_urls?: string[] | undefined;
13609
+ backchannel_logout_initiators?: {
13610
+ [x: string]: unknown;
13611
+ mode?: "custom" | "all" | undefined;
13612
+ selected_initiators?: string[] | undefined;
13613
+ } | undefined;
13614
+ } | undefined;
13510
13615
  grant_types?: string[] | undefined;
13511
13616
  jwt_configuration?: Record<string, any> | undefined;
13512
13617
  signing_keys?: Record<string, any>[] | undefined;
@@ -13520,7 +13625,7 @@ declare function init(config: AuthHeroConfig): {
13520
13625
  custom_login_page_preview?: string | undefined;
13521
13626
  form_template?: string | undefined;
13522
13627
  addons?: Record<string, any> | undefined;
13523
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13628
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13524
13629
  client_metadata?: Record<string, string> | undefined;
13525
13630
  hide_sign_up_disabled_error?: boolean | undefined;
13526
13631
  mobile?: Record<string, any> | undefined;
@@ -13581,7 +13686,13 @@ declare function init(config: AuthHeroConfig): {
13581
13686
  [x: string]: any;
13582
13687
  } | undefined;
13583
13688
  oidc_logout?: {
13584
- [x: string]: any;
13689
+ [x: string]: hono_utils_types.JSONValue;
13690
+ backchannel_logout_urls?: string[] | undefined;
13691
+ backchannel_logout_initiators?: {
13692
+ [x: string]: hono_utils_types.JSONValue;
13693
+ mode?: "custom" | "all" | undefined;
13694
+ selected_initiators?: string[] | undefined;
13695
+ } | undefined;
13585
13696
  } | undefined;
13586
13697
  grant_types?: string[] | undefined;
13587
13698
  jwt_configuration?: {
@@ -13600,7 +13711,7 @@ declare function init(config: AuthHeroConfig): {
13600
13711
  addons?: {
13601
13712
  [x: string]: any;
13602
13713
  } | undefined;
13603
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13714
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13604
13715
  client_metadata?: {
13605
13716
  [x: string]: string;
13606
13717
  } | undefined;
@@ -13722,7 +13833,7 @@ declare function init(config: AuthHeroConfig): {
13722
13833
  active?: boolean | undefined;
13723
13834
  } | undefined;
13724
13835
  signup?: {
13725
- status?: "optional" | "required" | "disabled" | undefined;
13836
+ status?: "required" | "optional" | "disabled" | undefined;
13726
13837
  verification?: {
13727
13838
  active?: boolean | undefined;
13728
13839
  } | undefined;
@@ -13739,7 +13850,7 @@ declare function init(config: AuthHeroConfig): {
13739
13850
  active?: boolean | undefined;
13740
13851
  } | undefined;
13741
13852
  signup?: {
13742
- status?: "optional" | "required" | "disabled" | undefined;
13853
+ status?: "required" | "optional" | "disabled" | undefined;
13743
13854
  } | undefined;
13744
13855
  validation?: {
13745
13856
  max_length?: number | undefined;
@@ -13756,7 +13867,7 @@ declare function init(config: AuthHeroConfig): {
13756
13867
  active?: boolean | undefined;
13757
13868
  } | undefined;
13758
13869
  signup?: {
13759
- status?: "optional" | "required" | "disabled" | undefined;
13870
+ status?: "required" | "optional" | "disabled" | undefined;
13760
13871
  } | undefined;
13761
13872
  } | undefined;
13762
13873
  } | undefined;
@@ -13876,7 +13987,7 @@ declare function init(config: AuthHeroConfig): {
13876
13987
  active?: boolean | undefined;
13877
13988
  } | undefined;
13878
13989
  signup?: {
13879
- status?: "optional" | "required" | "disabled" | undefined;
13990
+ status?: "required" | "optional" | "disabled" | undefined;
13880
13991
  verification?: {
13881
13992
  active?: boolean | undefined;
13882
13993
  } | undefined;
@@ -13893,7 +14004,7 @@ declare function init(config: AuthHeroConfig): {
13893
14004
  active?: boolean | undefined;
13894
14005
  } | undefined;
13895
14006
  signup?: {
13896
- status?: "optional" | "required" | "disabled" | undefined;
14007
+ status?: "required" | "optional" | "disabled" | undefined;
13897
14008
  } | undefined;
13898
14009
  validation?: {
13899
14010
  max_length?: number | undefined;
@@ -13910,7 +14021,7 @@ declare function init(config: AuthHeroConfig): {
13910
14021
  active?: boolean | undefined;
13911
14022
  } | undefined;
13912
14023
  signup?: {
13913
- status?: "optional" | "required" | "disabled" | undefined;
14024
+ status?: "required" | "optional" | "disabled" | undefined;
13914
14025
  } | undefined;
13915
14026
  } | undefined;
13916
14027
  } | undefined;
@@ -14867,7 +14978,7 @@ declare function init(config: AuthHeroConfig): {
14867
14978
  };
14868
14979
  };
14869
14980
  output: {
14870
- type: "fn" | "i" | "cs" | "fi" | "sv" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
14981
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14871
14982
  date: string;
14872
14983
  isMobile: boolean;
14873
14984
  log_id: string;
@@ -14906,7 +15017,7 @@ declare function init(config: AuthHeroConfig): {
14906
15017
  limit: number;
14907
15018
  length: number;
14908
15019
  logs: {
14909
- type: "fn" | "i" | "cs" | "fi" | "sv" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
15020
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14910
15021
  date: string;
14911
15022
  isMobile: boolean;
14912
15023
  log_id: string;
@@ -15225,7 +15336,7 @@ declare function init(config: AuthHeroConfig): {
15225
15336
  };
15226
15337
  } & {
15227
15338
  json: {
15228
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15339
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15229
15340
  body: string;
15230
15341
  from: string;
15231
15342
  subject: string;
@@ -15246,7 +15357,7 @@ declare function init(config: AuthHeroConfig): {
15246
15357
  };
15247
15358
  } & {
15248
15359
  json: {
15249
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15360
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15250
15361
  body: string;
15251
15362
  from: string;
15252
15363
  subject: string;
@@ -15258,7 +15369,7 @@ declare function init(config: AuthHeroConfig): {
15258
15369
  };
15259
15370
  };
15260
15371
  output: {
15261
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15372
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15262
15373
  body: string;
15263
15374
  from: string;
15264
15375
  subject: string;
@@ -15281,7 +15392,7 @@ declare function init(config: AuthHeroConfig): {
15281
15392
  };
15282
15393
  };
15283
15394
  output: {
15284
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15395
+ name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15285
15396
  body: string;
15286
15397
  subject: string;
15287
15398
  }[];
@@ -15294,7 +15405,7 @@ declare function init(config: AuthHeroConfig): {
15294
15405
  $get: {
15295
15406
  input: {
15296
15407
  param: {
15297
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15408
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15298
15409
  };
15299
15410
  } & {
15300
15411
  header: {
@@ -15307,7 +15418,7 @@ declare function init(config: AuthHeroConfig): {
15307
15418
  } | {
15308
15419
  input: {
15309
15420
  param: {
15310
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15421
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15311
15422
  };
15312
15423
  } & {
15313
15424
  header: {
@@ -15315,7 +15426,7 @@ declare function init(config: AuthHeroConfig): {
15315
15426
  };
15316
15427
  };
15317
15428
  output: {
15318
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15429
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15319
15430
  body: string;
15320
15431
  from: string;
15321
15432
  subject: string;
@@ -15334,7 +15445,7 @@ declare function init(config: AuthHeroConfig): {
15334
15445
  $put: {
15335
15446
  input: {
15336
15447
  param: {
15337
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15448
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15338
15449
  };
15339
15450
  } & {
15340
15451
  header: {
@@ -15342,7 +15453,7 @@ declare function init(config: AuthHeroConfig): {
15342
15453
  };
15343
15454
  } & {
15344
15455
  json: {
15345
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15456
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15346
15457
  body: string;
15347
15458
  subject: string;
15348
15459
  syntax?: "liquid" | undefined;
@@ -15354,7 +15465,7 @@ declare function init(config: AuthHeroConfig): {
15354
15465
  };
15355
15466
  };
15356
15467
  output: {
15357
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15468
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15358
15469
  body: string;
15359
15470
  from: string;
15360
15471
  subject: string;
@@ -15373,7 +15484,7 @@ declare function init(config: AuthHeroConfig): {
15373
15484
  $patch: {
15374
15485
  input: {
15375
15486
  param: {
15376
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15487
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15377
15488
  };
15378
15489
  } & {
15379
15490
  header: {
@@ -15381,7 +15492,7 @@ declare function init(config: AuthHeroConfig): {
15381
15492
  };
15382
15493
  } & {
15383
15494
  json: {
15384
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15495
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15385
15496
  body?: string | undefined;
15386
15497
  from?: string | undefined;
15387
15498
  subject?: string | undefined;
@@ -15398,7 +15509,7 @@ declare function init(config: AuthHeroConfig): {
15398
15509
  } | {
15399
15510
  input: {
15400
15511
  param: {
15401
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15512
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15402
15513
  };
15403
15514
  } & {
15404
15515
  header: {
@@ -15406,7 +15517,7 @@ declare function init(config: AuthHeroConfig): {
15406
15517
  };
15407
15518
  } & {
15408
15519
  json: {
15409
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15520
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15410
15521
  body?: string | undefined;
15411
15522
  from?: string | undefined;
15412
15523
  subject?: string | undefined;
@@ -15418,7 +15529,7 @@ declare function init(config: AuthHeroConfig): {
15418
15529
  };
15419
15530
  };
15420
15531
  output: {
15421
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15532
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15422
15533
  body: string;
15423
15534
  from: string;
15424
15535
  subject: string;
@@ -15437,7 +15548,7 @@ declare function init(config: AuthHeroConfig): {
15437
15548
  $delete: {
15438
15549
  input: {
15439
15550
  param: {
15440
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15551
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15441
15552
  };
15442
15553
  } & {
15443
15554
  header: {
@@ -15450,7 +15561,7 @@ declare function init(config: AuthHeroConfig): {
15450
15561
  } | {
15451
15562
  input: {
15452
15563
  param: {
15453
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15564
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15454
15565
  };
15455
15566
  } & {
15456
15567
  header: {
@@ -15467,7 +15578,7 @@ declare function init(config: AuthHeroConfig): {
15467
15578
  $post: {
15468
15579
  input: {
15469
15580
  param: {
15470
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15581
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15471
15582
  };
15472
15583
  } & {
15473
15584
  header: {
@@ -16088,12 +16199,12 @@ declare function init(config: AuthHeroConfig): {
16088
16199
  background_color: string;
16089
16200
  background_image_url: string;
16090
16201
  page_layout: "center" | "left" | "right";
16091
- logo_placement?: "widget" | "none" | "chip" | undefined;
16202
+ logo_placement?: "none" | "widget" | "chip" | undefined;
16092
16203
  };
16093
16204
  widget: {
16094
16205
  header_text_alignment: "center" | "left" | "right";
16095
16206
  logo_height: number;
16096
- logo_position: "center" | "left" | "right" | "none";
16207
+ logo_position: "none" | "center" | "left" | "right";
16097
16208
  logo_url: string;
16098
16209
  social_buttons_layout: "bottom" | "top";
16099
16210
  };
@@ -16178,12 +16289,12 @@ declare function init(config: AuthHeroConfig): {
16178
16289
  background_color: string;
16179
16290
  background_image_url: string;
16180
16291
  page_layout: "center" | "left" | "right";
16181
- logo_placement?: "widget" | "none" | "chip" | undefined;
16292
+ logo_placement?: "none" | "widget" | "chip" | undefined;
16182
16293
  };
16183
16294
  widget: {
16184
16295
  header_text_alignment: "center" | "left" | "right";
16185
16296
  logo_height: number;
16186
- logo_position: "center" | "left" | "right" | "none";
16297
+ logo_position: "none" | "center" | "left" | "right";
16187
16298
  logo_url: string;
16188
16299
  social_buttons_layout: "bottom" | "top";
16189
16300
  };
@@ -16257,12 +16368,12 @@ declare function init(config: AuthHeroConfig): {
16257
16368
  background_color: string;
16258
16369
  background_image_url: string;
16259
16370
  page_layout: "center" | "left" | "right";
16260
- logo_placement?: "widget" | "none" | "chip" | undefined;
16371
+ logo_placement?: "none" | "widget" | "chip" | undefined;
16261
16372
  };
16262
16373
  widget: {
16263
16374
  header_text_alignment: "center" | "left" | "right";
16264
16375
  logo_height: number;
16265
- logo_position: "center" | "left" | "right" | "none";
16376
+ logo_position: "none" | "center" | "left" | "right";
16266
16377
  logo_url: string;
16267
16378
  social_buttons_layout: "bottom" | "top";
16268
16379
  };
@@ -16419,7 +16530,7 @@ declare function init(config: AuthHeroConfig): {
16419
16530
  } & {
16420
16531
  json: {
16421
16532
  body?: string | undefined;
16422
- screen?: "password" | "login" | "identifier" | "signup" | undefined;
16533
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
16423
16534
  branding?: {
16424
16535
  colors?: {
16425
16536
  primary: string;
@@ -16505,12 +16616,12 @@ declare function init(config: AuthHeroConfig): {
16505
16616
  background_color: string;
16506
16617
  background_image_url: string;
16507
16618
  page_layout: "center" | "left" | "right";
16508
- logo_placement?: "widget" | "none" | "chip" | undefined;
16619
+ logo_placement?: "none" | "widget" | "chip" | undefined;
16509
16620
  } | undefined;
16510
16621
  widget?: {
16511
16622
  header_text_alignment: "center" | "left" | "right";
16512
16623
  logo_height: number;
16513
- logo_position: "center" | "left" | "right" | "none";
16624
+ logo_position: "none" | "center" | "left" | "right";
16514
16625
  logo_url: string;
16515
16626
  social_buttons_layout: "bottom" | "top";
16516
16627
  } | undefined;
@@ -17690,7 +17801,7 @@ declare function init(config: AuthHeroConfig): {
17690
17801
  scope?: string | undefined;
17691
17802
  grant_types?: string[] | undefined;
17692
17803
  response_types?: string[] | undefined;
17693
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17804
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17694
17805
  jwks_uri?: string | undefined;
17695
17806
  jwks?: Record<string, unknown> | undefined;
17696
17807
  software_id?: string | undefined;
@@ -17779,7 +17890,7 @@ declare function init(config: AuthHeroConfig): {
17779
17890
  scope?: string | undefined;
17780
17891
  grant_types?: string[] | undefined;
17781
17892
  response_types?: string[] | undefined;
17782
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17893
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17783
17894
  jwks_uri?: string | undefined;
17784
17895
  jwks?: Record<string, unknown> | undefined;
17785
17896
  software_id?: string | undefined;
@@ -18125,20 +18236,20 @@ declare function init(config: AuthHeroConfig): {
18125
18236
  email: string;
18126
18237
  send: "code" | "link";
18127
18238
  authParams: {
18128
- audience?: string | undefined;
18129
18239
  username?: string | undefined;
18130
- scope?: string | undefined;
18240
+ state?: string | undefined;
18241
+ audience?: string | undefined;
18131
18242
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
18132
18243
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
18133
- state?: string | undefined;
18134
- prompt?: string | undefined;
18135
- ui_locales?: string | undefined;
18244
+ scope?: string | undefined;
18136
18245
  organization?: string | undefined;
18137
- redirect_uri?: string | undefined;
18138
- act_as?: string | undefined;
18139
18246
  nonce?: string | undefined;
18247
+ act_as?: string | undefined;
18248
+ redirect_uri?: string | undefined;
18249
+ prompt?: string | undefined;
18140
18250
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18141
18251
  code_challenge?: string | undefined;
18252
+ ui_locales?: string | undefined;
18142
18253
  max_age?: number | undefined;
18143
18254
  acr_values?: string | undefined;
18144
18255
  claims?: {
@@ -18161,20 +18272,20 @@ declare function init(config: AuthHeroConfig): {
18161
18272
  phone_number: string;
18162
18273
  send: "code" | "link";
18163
18274
  authParams: {
18164
- audience?: string | undefined;
18165
18275
  username?: string | undefined;
18166
- scope?: string | undefined;
18276
+ state?: string | undefined;
18277
+ audience?: string | undefined;
18167
18278
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
18168
18279
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
18169
- state?: string | undefined;
18170
- prompt?: string | undefined;
18171
- ui_locales?: string | undefined;
18280
+ scope?: string | undefined;
18172
18281
  organization?: string | undefined;
18173
- redirect_uri?: string | undefined;
18174
- act_as?: string | undefined;
18175
18282
  nonce?: string | undefined;
18283
+ act_as?: string | undefined;
18284
+ redirect_uri?: string | undefined;
18285
+ prompt?: string | undefined;
18176
18286
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18177
18287
  code_challenge?: string | undefined;
18288
+ ui_locales?: string | undefined;
18178
18289
  max_age?: number | undefined;
18179
18290
  acr_values?: string | undefined;
18180
18291
  claims?: {
@@ -18403,7 +18514,7 @@ declare function init(config: AuthHeroConfig): {
18403
18514
  client_id: string;
18404
18515
  username: string;
18405
18516
  otp: string;
18406
- realm: "sms" | "email";
18517
+ realm: "email" | "sms";
18407
18518
  } | {
18408
18519
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18409
18520
  subject_token: string;
@@ -18450,7 +18561,7 @@ declare function init(config: AuthHeroConfig): {
18450
18561
  client_id: string;
18451
18562
  username: string;
18452
18563
  otp: string;
18453
- realm: "sms" | "email";
18564
+ realm: "email" | "sms";
18454
18565
  } | {
18455
18566
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18456
18567
  subject_token: string;
@@ -18502,7 +18613,7 @@ declare function init(config: AuthHeroConfig): {
18502
18613
  client_id: string;
18503
18614
  username: string;
18504
18615
  otp: string;
18505
- realm: "sms" | "email";
18616
+ realm: "email" | "sms";
18506
18617
  } | {
18507
18618
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18508
18619
  subject_token: string;
@@ -18549,7 +18660,7 @@ declare function init(config: AuthHeroConfig): {
18549
18660
  client_id: string;
18550
18661
  username: string;
18551
18662
  otp: string;
18552
- realm: "sms" | "email";
18663
+ realm: "email" | "sms";
18553
18664
  } | {
18554
18665
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18555
18666
  subject_token: string;
@@ -18609,7 +18720,7 @@ declare function init(config: AuthHeroConfig): {
18609
18720
  client_id: string;
18610
18721
  username: string;
18611
18722
  otp: string;
18612
- realm: "sms" | "email";
18723
+ realm: "email" | "sms";
18613
18724
  } | {
18614
18725
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18615
18726
  subject_token: string;
@@ -18656,7 +18767,7 @@ declare function init(config: AuthHeroConfig): {
18656
18767
  client_id: string;
18657
18768
  username: string;
18658
18769
  otp: string;
18659
- realm: "sms" | "email";
18770
+ realm: "email" | "sms";
18660
18771
  } | {
18661
18772
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18662
18773
  subject_token: string;
@@ -18711,7 +18822,7 @@ declare function init(config: AuthHeroConfig): {
18711
18822
  client_id: string;
18712
18823
  username: string;
18713
18824
  otp: string;
18714
- realm: "sms" | "email";
18825
+ realm: "email" | "sms";
18715
18826
  } | {
18716
18827
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18717
18828
  subject_token: string;
@@ -18758,7 +18869,7 @@ declare function init(config: AuthHeroConfig): {
18758
18869
  client_id: string;
18759
18870
  username: string;
18760
18871
  otp: string;
18761
- realm: "sms" | "email";
18872
+ realm: "email" | "sms";
18762
18873
  } | {
18763
18874
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18764
18875
  subject_token: string;
@@ -18813,7 +18924,7 @@ declare function init(config: AuthHeroConfig): {
18813
18924
  client_id: string;
18814
18925
  username: string;
18815
18926
  otp: string;
18816
- realm: "sms" | "email";
18927
+ realm: "email" | "sms";
18817
18928
  } | {
18818
18929
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18819
18930
  subject_token: string;
@@ -18860,7 +18971,7 @@ declare function init(config: AuthHeroConfig): {
18860
18971
  client_id: string;
18861
18972
  username: string;
18862
18973
  otp: string;
18863
- realm: "sms" | "email";
18974
+ realm: "email" | "sms";
18864
18975
  } | {
18865
18976
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18866
18977
  subject_token: string;
@@ -18933,6 +19044,8 @@ declare function init(config: AuthHeroConfig): {
18933
19044
  claims_parameter_supported?: boolean | undefined;
18934
19045
  request_object_signing_alg_values_supported?: string[] | undefined;
18935
19046
  client_id_metadata_document_supported?: boolean | undefined;
19047
+ backchannel_logout_supported?: boolean | undefined;
19048
+ backchannel_logout_session_supported?: boolean | undefined;
18936
19049
  };
18937
19050
  outputFormat: "json";
18938
19051
  status: 200;
@@ -18966,6 +19079,8 @@ declare function init(config: AuthHeroConfig): {
18966
19079
  claims_parameter_supported?: boolean | undefined;
18967
19080
  request_object_signing_alg_values_supported?: string[] | undefined;
18968
19081
  client_id_metadata_document_supported?: boolean | undefined;
19082
+ backchannel_logout_supported?: boolean | undefined;
19083
+ backchannel_logout_session_supported?: boolean | undefined;
18969
19084
  };
18970
19085
  outputFormat: "json";
18971
19086
  status: 200;
@@ -20080,7 +20195,7 @@ declare function init(config: AuthHeroConfig): {
20080
20195
  $get: {
20081
20196
  input: {
20082
20197
  param: {
20083
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20198
+ 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";
20084
20199
  };
20085
20200
  } & {
20086
20201
  query: {
@@ -20096,7 +20211,7 @@ declare function init(config: AuthHeroConfig): {
20096
20211
  } | {
20097
20212
  input: {
20098
20213
  param: {
20099
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20214
+ 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";
20100
20215
  };
20101
20216
  } & {
20102
20217
  query: {
@@ -20112,7 +20227,7 @@ declare function init(config: AuthHeroConfig): {
20112
20227
  } | {
20113
20228
  input: {
20114
20229
  param: {
20115
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20230
+ 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";
20116
20231
  };
20117
20232
  } & {
20118
20233
  query: {
@@ -20132,7 +20247,7 @@ declare function init(config: AuthHeroConfig): {
20132
20247
  $post: {
20133
20248
  input: {
20134
20249
  param: {
20135
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20250
+ 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";
20136
20251
  };
20137
20252
  } & {
20138
20253
  query: {
@@ -20150,7 +20265,7 @@ declare function init(config: AuthHeroConfig): {
20150
20265
  } | {
20151
20266
  input: {
20152
20267
  param: {
20153
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20268
+ 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";
20154
20269
  };
20155
20270
  } & {
20156
20271
  query: {