authhero 9.1.1 → 9.3.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 (47) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/index.esm.js +1 -1
  3. package/dist/assets/u/widget/p-e95c436f.entry.js +1 -0
  4. package/dist/authhero.cjs +143 -143
  5. package/dist/authhero.d.ts +277 -138
  6. package/dist/authhero.mjs +14434 -14771
  7. package/dist/tsconfig.types.tsbuildinfo +1 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  9. package/dist/types/helpers/action-executions-cleanup.d.ts +34 -0
  10. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  11. package/dist/types/helpers/run-retention.d.ts +4 -1
  12. package/dist/types/index.d.ts +238 -134
  13. package/dist/types/oauth2-client/client.d.ts +50 -0
  14. package/dist/types/oauth2-client/index.d.ts +3 -0
  15. package/dist/types/oauth2-client/providers.d.ts +49 -0
  16. package/dist/types/routes/auth-api/index.d.ts +32 -32
  17. package/dist/types/routes/auth-api/oidc-logout.d.ts +3 -3
  18. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  19. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  20. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  21. package/dist/types/routes/auth-api/token.d.ts +10 -10
  22. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  23. package/dist/types/routes/management-api/branding.d.ts +3 -3
  24. package/dist/types/routes/management-api/clients.d.ts +14 -14
  25. package/dist/types/routes/management-api/connections.d.ts +15 -15
  26. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  27. package/dist/types/routes/management-api/forms.d.ts +154 -126
  28. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  29. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  30. package/dist/types/routes/management-api/hooks.d.ts +74 -0
  31. package/dist/types/routes/management-api/index.d.ts +189 -87
  32. package/dist/types/routes/management-api/logs.d.ts +4 -4
  33. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  34. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  35. package/dist/types/routes/management-api/tenants.d.ts +29 -29
  36. package/dist/types/routes/management-api/users.d.ts +2 -2
  37. package/dist/types/routes/universal-login/common.d.ts +8 -8
  38. package/dist/types/routes/universal-login/continue.d.ts +2 -2
  39. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  40. package/dist/types/routes/universal-login/identifier.d.ts +4 -4
  41. package/dist/types/routes/universal-login/impersonate.d.ts +2 -2
  42. package/dist/types/routes/universal-login/index.d.ts +8 -8
  43. package/dist/types/routes/universal-login/u2-index.d.ts +7 -7
  44. package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
  45. package/dist/types/strategies/internal-oauth2.d.ts +5 -5
  46. package/package.json +6 -7
  47. package/dist/assets/u/widget/p-c179b5da.entry.js +0 -1
@@ -16,8 +16,10 @@ export { drainOutbox } from "./helpers/outbox-relay";
16
16
  export type { EventDestination } from "./helpers/outbox-relay";
17
17
  export { cleanupOutbox } from "./helpers/outbox-cleanup";
18
18
  export { cleanupCodes } from "./helpers/codes-cleanup";
19
+ export { cleanupActionExecutions } from "./helpers/action-executions-cleanup";
19
20
  export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
20
21
  export type { CodesCleanupParams } from "./helpers/codes-cleanup";
22
+ export type { ActionExecutionsCleanupParams } from "./helpers/action-executions-cleanup";
21
23
  export { createDefaultDestinations } from "./helpers/default-destinations";
22
24
  export type { CreateDefaultDestinationsConfig } from "./helpers/default-destinations";
23
25
  export { provisionDefaultClients, isInteractiveClient, } from "./helpers/provision-tenant-clients";
@@ -78,8 +80,8 @@ export declare function init(config: AuthHeroConfig): {
78
80
  $get: {
79
81
  input: {
80
82
  query: {
81
- include_password_hashes?: "false" | "true" | undefined;
82
- gzip?: "false" | "true" | undefined;
83
+ include_password_hashes?: "true" | "false" | undefined;
84
+ gzip?: "true" | "false" | undefined;
83
85
  };
84
86
  } & {
85
87
  header: {
@@ -92,8 +94,8 @@ export declare function init(config: AuthHeroConfig): {
92
94
  } | {
93
95
  input: {
94
96
  query: {
95
- include_password_hashes?: "false" | "true" | undefined;
96
- gzip?: "false" | "true" | undefined;
97
+ include_password_hashes?: "true" | "false" | undefined;
98
+ gzip?: "true" | "false" | undefined;
97
99
  };
98
100
  } & {
99
101
  header: {
@@ -112,7 +114,7 @@ export declare function init(config: AuthHeroConfig): {
112
114
  $post: {
113
115
  input: {
114
116
  query: {
115
- include_password_hashes?: "false" | "true" | undefined;
117
+ include_password_hashes?: "true" | "false" | undefined;
116
118
  };
117
119
  } & {
118
120
  header: {
@@ -166,7 +168,7 @@ export declare function init(config: AuthHeroConfig): {
166
168
  };
167
169
  } & {
168
170
  json: {
169
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
171
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
170
172
  phone_number?: string | undefined;
171
173
  totp_secret?: string | undefined;
172
174
  credential_id?: string | undefined;
@@ -306,7 +308,7 @@ export declare function init(config: AuthHeroConfig): {
306
308
  };
307
309
  };
308
310
  output: {
309
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
311
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
310
312
  enabled: boolean;
311
313
  trial_expired?: boolean | undefined;
312
314
  }[];
@@ -461,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
461
463
  $get: {
462
464
  input: {
463
465
  param: {
464
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
466
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
465
467
  };
466
468
  } & {
467
469
  header: {
@@ -469,7 +471,7 @@ export declare function init(config: AuthHeroConfig): {
469
471
  };
470
472
  };
471
473
  output: {
472
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
474
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
473
475
  enabled: boolean;
474
476
  trial_expired?: boolean | undefined;
475
477
  };
@@ -482,7 +484,7 @@ export declare function init(config: AuthHeroConfig): {
482
484
  $put: {
483
485
  input: {
484
486
  param: {
485
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
487
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
486
488
  };
487
489
  } & {
488
490
  header: {
@@ -494,7 +496,7 @@ export declare function init(config: AuthHeroConfig): {
494
496
  };
495
497
  };
496
498
  output: {
497
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
499
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
498
500
  enabled: boolean;
499
501
  trial_expired?: boolean | undefined;
500
502
  };
@@ -1266,19 +1268,19 @@ export declare function init(config: AuthHeroConfig): {
1266
1268
  } & {
1267
1269
  json: {
1268
1270
  client_id: string;
1269
- inviter: {
1270
- name?: string | undefined;
1271
- };
1272
1271
  invitee: {
1273
1272
  email?: string | undefined;
1274
1273
  };
1274
+ inviter: {
1275
+ name?: string | undefined;
1276
+ };
1277
+ id?: string | undefined;
1275
1278
  app_metadata?: Record<string, any> | undefined;
1276
1279
  user_metadata?: Record<string, any> | undefined;
1277
- id?: string | undefined;
1278
1280
  connection_id?: string | undefined;
1279
1281
  roles?: string[] | undefined;
1280
- ttl_sec?: number | undefined;
1281
1282
  send_invitation_email?: boolean | undefined;
1283
+ ttl_sec?: number | undefined;
1282
1284
  };
1283
1285
  };
1284
1286
  output: {
@@ -1461,8 +1463,8 @@ export declare function init(config: AuthHeroConfig): {
1461
1463
  };
1462
1464
  } & {
1463
1465
  json: {
1464
- assign_membership_on_login?: boolean | undefined;
1465
1466
  show_as_button?: boolean | undefined;
1467
+ assign_membership_on_login?: boolean | undefined;
1466
1468
  is_signup_enabled?: boolean | undefined;
1467
1469
  };
1468
1470
  };
@@ -2946,6 +2948,8 @@ export declare function init(config: AuthHeroConfig): {
2946
2948
  config?: {
2947
2949
  placeholder?: string | undefined;
2948
2950
  default_value?: string | undefined;
2951
+ last_used?: boolean | undefined;
2952
+ last_used_label?: string | undefined;
2949
2953
  } | undefined;
2950
2954
  } | {
2951
2955
  id: string;
@@ -3117,6 +3121,8 @@ export declare function init(config: AuthHeroConfig): {
3117
3121
  multiline?: boolean | undefined;
3118
3122
  max_length?: number | undefined;
3119
3123
  default_value?: string | undefined;
3124
+ last_used?: boolean | undefined;
3125
+ last_used_label?: string | undefined;
3120
3126
  } | undefined;
3121
3127
  } | {
3122
3128
  id: string;
@@ -3549,6 +3555,8 @@ export declare function init(config: AuthHeroConfig): {
3549
3555
  config?: {
3550
3556
  placeholder?: string | undefined;
3551
3557
  default_value?: string | undefined;
3558
+ last_used?: boolean | undefined;
3559
+ last_used_label?: string | undefined;
3552
3560
  } | undefined;
3553
3561
  } | {
3554
3562
  id: string;
@@ -3720,6 +3728,8 @@ export declare function init(config: AuthHeroConfig): {
3720
3728
  multiline?: boolean | undefined;
3721
3729
  max_length?: number | undefined;
3722
3730
  default_value?: string | undefined;
3731
+ last_used?: boolean | undefined;
3732
+ last_used_label?: string | undefined;
3723
3733
  } | undefined;
3724
3734
  } | {
3725
3735
  id: string;
@@ -4168,6 +4178,8 @@ export declare function init(config: AuthHeroConfig): {
4168
4178
  config?: {
4169
4179
  placeholder?: string | undefined;
4170
4180
  default_value?: string | undefined;
4181
+ last_used?: boolean | undefined;
4182
+ last_used_label?: string | undefined;
4171
4183
  } | undefined;
4172
4184
  } | {
4173
4185
  id: string;
@@ -4339,6 +4351,8 @@ export declare function init(config: AuthHeroConfig): {
4339
4351
  multiline?: boolean | undefined;
4340
4352
  max_length?: number | undefined;
4341
4353
  default_value?: string | undefined;
4354
+ last_used?: boolean | undefined;
4355
+ last_used_label?: string | undefined;
4342
4356
  } | undefined;
4343
4357
  } | {
4344
4358
  id: string;
@@ -4788,6 +4802,8 @@ export declare function init(config: AuthHeroConfig): {
4788
4802
  config?: {
4789
4803
  placeholder?: string | undefined;
4790
4804
  default_value?: string | undefined;
4805
+ last_used?: boolean | undefined;
4806
+ last_used_label?: string | undefined;
4791
4807
  } | undefined;
4792
4808
  } | {
4793
4809
  id: string;
@@ -4959,6 +4975,8 @@ export declare function init(config: AuthHeroConfig): {
4959
4975
  multiline?: boolean | undefined;
4960
4976
  max_length?: number | undefined;
4961
4977
  default_value?: string | undefined;
4978
+ last_used?: boolean | undefined;
4979
+ last_used_label?: string | undefined;
4962
4980
  } | undefined;
4963
4981
  } | {
4964
4982
  id: string;
@@ -5389,6 +5407,8 @@ export declare function init(config: AuthHeroConfig): {
5389
5407
  config?: {
5390
5408
  placeholder?: string | undefined;
5391
5409
  default_value?: string | undefined;
5410
+ last_used?: boolean | undefined;
5411
+ last_used_label?: string | undefined;
5392
5412
  } | undefined;
5393
5413
  } | {
5394
5414
  id: string;
@@ -5560,6 +5580,8 @@ export declare function init(config: AuthHeroConfig): {
5560
5580
  multiline?: boolean | undefined;
5561
5581
  max_length?: number | undefined;
5562
5582
  default_value?: string | undefined;
5583
+ last_used?: boolean | undefined;
5584
+ last_used_label?: string | undefined;
5563
5585
  } | undefined;
5564
5586
  } | {
5565
5587
  id: string;
@@ -5988,6 +6010,8 @@ export declare function init(config: AuthHeroConfig): {
5988
6010
  config?: {
5989
6011
  placeholder?: string | undefined;
5990
6012
  default_value?: string | undefined;
6013
+ last_used?: boolean | undefined;
6014
+ last_used_label?: string | undefined;
5991
6015
  } | undefined;
5992
6016
  } | {
5993
6017
  id: string;
@@ -6159,6 +6183,8 @@ export declare function init(config: AuthHeroConfig): {
6159
6183
  multiline?: boolean | undefined;
6160
6184
  max_length?: number | undefined;
6161
6185
  default_value?: string | undefined;
6186
+ last_used?: boolean | undefined;
6187
+ last_used_label?: string | undefined;
6162
6188
  } | undefined;
6163
6189
  } | {
6164
6190
  id: string;
@@ -6589,6 +6615,8 @@ export declare function init(config: AuthHeroConfig): {
6589
6615
  config?: {
6590
6616
  placeholder?: string | undefined;
6591
6617
  default_value?: string | undefined;
6618
+ last_used?: boolean | undefined;
6619
+ last_used_label?: string | undefined;
6592
6620
  } | undefined;
6593
6621
  } | {
6594
6622
  id: string;
@@ -6760,6 +6788,8 @@ export declare function init(config: AuthHeroConfig): {
6760
6788
  multiline?: boolean | undefined;
6761
6789
  max_length?: number | undefined;
6762
6790
  default_value?: string | undefined;
6791
+ last_used?: boolean | undefined;
6792
+ last_used_label?: string | undefined;
6763
6793
  } | undefined;
6764
6794
  } | {
6765
6795
  id: string;
@@ -7003,7 +7033,7 @@ export declare function init(config: AuthHeroConfig): {
7003
7033
  };
7004
7034
  };
7005
7035
  output: {
7006
- prompt: "status" | "login" | "mfa" | "organizations" | "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";
7036
+ prompt: "mfa" | "status" | "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";
7007
7037
  language: string;
7008
7038
  }[];
7009
7039
  outputFormat: "json";
@@ -7041,7 +7071,7 @@ export declare function init(config: AuthHeroConfig): {
7041
7071
  $get: {
7042
7072
  input: {
7043
7073
  param: {
7044
- prompt: "status" | "login" | "mfa" | "organizations" | "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";
7074
+ prompt: "mfa" | "status" | "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";
7045
7075
  language: string;
7046
7076
  };
7047
7077
  } & {
@@ -7063,7 +7093,7 @@ export declare function init(config: AuthHeroConfig): {
7063
7093
  $put: {
7064
7094
  input: {
7065
7095
  param: {
7066
- prompt: "status" | "login" | "mfa" | "organizations" | "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";
7096
+ prompt: "mfa" | "status" | "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";
7067
7097
  language: string;
7068
7098
  };
7069
7099
  } & {
@@ -7087,7 +7117,7 @@ export declare function init(config: AuthHeroConfig): {
7087
7117
  $delete: {
7088
7118
  input: {
7089
7119
  param: {
7090
- prompt: "status" | "login" | "mfa" | "organizations" | "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";
7120
+ prompt: "mfa" | "status" | "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";
7091
7121
  language: string;
7092
7122
  };
7093
7123
  } & {
@@ -7179,7 +7209,7 @@ export declare function init(config: AuthHeroConfig): {
7179
7209
  active?: boolean | undefined;
7180
7210
  } | undefined;
7181
7211
  signup?: {
7182
- status?: "optional" | "required" | "disabled" | undefined;
7212
+ status?: "required" | "optional" | "disabled" | undefined;
7183
7213
  verification?: {
7184
7214
  active?: boolean | undefined;
7185
7215
  } | undefined;
@@ -7196,7 +7226,7 @@ export declare function init(config: AuthHeroConfig): {
7196
7226
  active?: boolean | undefined;
7197
7227
  } | undefined;
7198
7228
  signup?: {
7199
- status?: "optional" | "required" | "disabled" | undefined;
7229
+ status?: "required" | "optional" | "disabled" | undefined;
7200
7230
  } | undefined;
7201
7231
  validation?: {
7202
7232
  max_length?: number | undefined;
@@ -7213,7 +7243,7 @@ export declare function init(config: AuthHeroConfig): {
7213
7243
  active?: boolean | undefined;
7214
7244
  } | undefined;
7215
7245
  signup?: {
7216
- status?: "optional" | "required" | "disabled" | undefined;
7246
+ status?: "required" | "optional" | "disabled" | undefined;
7217
7247
  } | undefined;
7218
7248
  } | undefined;
7219
7249
  } | undefined;
@@ -7313,7 +7343,7 @@ export declare function init(config: AuthHeroConfig): {
7313
7343
  active?: boolean | undefined;
7314
7344
  } | undefined;
7315
7345
  signup?: {
7316
- status?: "optional" | "required" | "disabled" | undefined;
7346
+ status?: "required" | "optional" | "disabled" | undefined;
7317
7347
  verification?: {
7318
7348
  active?: boolean | undefined;
7319
7349
  } | undefined;
@@ -7330,7 +7360,7 @@ export declare function init(config: AuthHeroConfig): {
7330
7360
  active?: boolean | undefined;
7331
7361
  } | undefined;
7332
7362
  signup?: {
7333
- status?: "optional" | "required" | "disabled" | undefined;
7363
+ status?: "required" | "optional" | "disabled" | undefined;
7334
7364
  } | undefined;
7335
7365
  validation?: {
7336
7366
  max_length?: number | undefined;
@@ -7347,7 +7377,7 @@ export declare function init(config: AuthHeroConfig): {
7347
7377
  active?: boolean | undefined;
7348
7378
  } | undefined;
7349
7379
  signup?: {
7350
- status?: "optional" | "required" | "disabled" | undefined;
7380
+ status?: "required" | "optional" | "disabled" | undefined;
7351
7381
  } | undefined;
7352
7382
  } | undefined;
7353
7383
  } | undefined;
@@ -7463,7 +7493,7 @@ export declare function init(config: AuthHeroConfig): {
7463
7493
  active?: boolean | undefined;
7464
7494
  } | undefined;
7465
7495
  signup?: {
7466
- status?: "optional" | "required" | "disabled" | undefined;
7496
+ status?: "required" | "optional" | "disabled" | undefined;
7467
7497
  verification?: {
7468
7498
  active?: boolean | undefined;
7469
7499
  } | undefined;
@@ -7480,7 +7510,7 @@ export declare function init(config: AuthHeroConfig): {
7480
7510
  active?: boolean | undefined;
7481
7511
  } | undefined;
7482
7512
  signup?: {
7483
- status?: "optional" | "required" | "disabled" | undefined;
7513
+ status?: "required" | "optional" | "disabled" | undefined;
7484
7514
  } | undefined;
7485
7515
  validation?: {
7486
7516
  max_length?: number | undefined;
@@ -7497,7 +7527,7 @@ export declare function init(config: AuthHeroConfig): {
7497
7527
  active?: boolean | undefined;
7498
7528
  } | undefined;
7499
7529
  signup?: {
7500
- status?: "optional" | "required" | "disabled" | undefined;
7530
+ status?: "required" | "optional" | "disabled" | undefined;
7501
7531
  } | undefined;
7502
7532
  } | undefined;
7503
7533
  } | undefined;
@@ -7642,7 +7672,7 @@ export declare function init(config: AuthHeroConfig): {
7642
7672
  active?: boolean | undefined;
7643
7673
  } | undefined;
7644
7674
  signup?: {
7645
- status?: "optional" | "required" | "disabled" | undefined;
7675
+ status?: "required" | "optional" | "disabled" | undefined;
7646
7676
  verification?: {
7647
7677
  active?: boolean | undefined;
7648
7678
  } | undefined;
@@ -7659,7 +7689,7 @@ export declare function init(config: AuthHeroConfig): {
7659
7689
  active?: boolean | undefined;
7660
7690
  } | undefined;
7661
7691
  signup?: {
7662
- status?: "optional" | "required" | "disabled" | undefined;
7692
+ status?: "required" | "optional" | "disabled" | undefined;
7663
7693
  } | undefined;
7664
7694
  validation?: {
7665
7695
  max_length?: number | undefined;
@@ -7676,7 +7706,7 @@ export declare function init(config: AuthHeroConfig): {
7676
7706
  active?: boolean | undefined;
7677
7707
  } | undefined;
7678
7708
  signup?: {
7679
- status?: "optional" | "required" | "disabled" | undefined;
7709
+ status?: "required" | "optional" | "disabled" | undefined;
7680
7710
  } | undefined;
7681
7711
  } | undefined;
7682
7712
  } | undefined;
@@ -7800,7 +7830,7 @@ export declare function init(config: AuthHeroConfig): {
7800
7830
  active?: boolean | undefined;
7801
7831
  } | undefined;
7802
7832
  signup?: {
7803
- status?: "optional" | "required" | "disabled" | undefined;
7833
+ status?: "required" | "optional" | "disabled" | undefined;
7804
7834
  verification?: {
7805
7835
  active?: boolean | undefined;
7806
7836
  } | undefined;
@@ -7817,7 +7847,7 @@ export declare function init(config: AuthHeroConfig): {
7817
7847
  active?: boolean | undefined;
7818
7848
  } | undefined;
7819
7849
  signup?: {
7820
- status?: "optional" | "required" | "disabled" | undefined;
7850
+ status?: "required" | "optional" | "disabled" | undefined;
7821
7851
  } | undefined;
7822
7852
  validation?: {
7823
7853
  max_length?: number | undefined;
@@ -7834,7 +7864,7 @@ export declare function init(config: AuthHeroConfig): {
7834
7864
  active?: boolean | undefined;
7835
7865
  } | undefined;
7836
7866
  signup?: {
7837
- status?: "optional" | "required" | "disabled" | undefined;
7867
+ status?: "required" | "optional" | "disabled" | undefined;
7838
7868
  } | undefined;
7839
7869
  } | undefined;
7840
7870
  } | undefined;
@@ -8171,6 +8201,19 @@ export declare function init(config: AuthHeroConfig): {
8171
8201
  metadata?: {
8172
8202
  [x: string]: import("hono/utils/types").JSONValue;
8173
8203
  } | undefined;
8204
+ } | {
8205
+ trigger_id: "post-user-login";
8206
+ enabled: boolean;
8207
+ synchronous: boolean;
8208
+ created_at: string;
8209
+ updated_at: string;
8210
+ hook_id: string;
8211
+ page_id: "impersonate";
8212
+ priority?: number | undefined;
8213
+ metadata?: {
8214
+ [x: string]: import("hono/utils/types").JSONValue;
8215
+ } | undefined;
8216
+ permission_required?: string | undefined;
8174
8217
  })[] | {
8175
8218
  start: number;
8176
8219
  limit: number;
@@ -8223,6 +8266,19 @@ export declare function init(config: AuthHeroConfig): {
8223
8266
  metadata?: {
8224
8267
  [x: string]: import("hono/utils/types").JSONValue;
8225
8268
  } | undefined;
8269
+ } | {
8270
+ trigger_id: "post-user-login";
8271
+ enabled: boolean;
8272
+ synchronous: boolean;
8273
+ created_at: string;
8274
+ updated_at: string;
8275
+ hook_id: string;
8276
+ page_id: "impersonate";
8277
+ priority?: number | undefined;
8278
+ metadata?: {
8279
+ [x: string]: import("hono/utils/types").JSONValue;
8280
+ } | undefined;
8281
+ permission_required?: string | undefined;
8226
8282
  })[];
8227
8283
  total?: number | undefined;
8228
8284
  next?: string | undefined;
@@ -8271,6 +8327,15 @@ export declare function init(config: AuthHeroConfig): {
8271
8327
  priority?: number | undefined;
8272
8328
  hook_id?: string | undefined;
8273
8329
  metadata?: Record<string, unknown> | undefined;
8330
+ } | {
8331
+ trigger_id: "post-user-login";
8332
+ page_id: "impersonate";
8333
+ permission_required?: string | undefined;
8334
+ enabled?: boolean | undefined;
8335
+ synchronous?: boolean | undefined;
8336
+ priority?: number | undefined;
8337
+ hook_id?: string | undefined;
8338
+ metadata?: Record<string, unknown> | undefined;
8274
8339
  };
8275
8340
  };
8276
8341
  output: {
@@ -8321,6 +8386,19 @@ export declare function init(config: AuthHeroConfig): {
8321
8386
  metadata?: {
8322
8387
  [x: string]: import("hono/utils/types").JSONValue;
8323
8388
  } | undefined;
8389
+ } | {
8390
+ trigger_id: "post-user-login";
8391
+ enabled: boolean;
8392
+ synchronous: boolean;
8393
+ created_at: string;
8394
+ updated_at: string;
8395
+ hook_id: string;
8396
+ page_id: "impersonate";
8397
+ priority?: number | undefined;
8398
+ metadata?: {
8399
+ [x: string]: import("hono/utils/types").JSONValue;
8400
+ } | undefined;
8401
+ permission_required?: string | undefined;
8324
8402
  };
8325
8403
  outputFormat: "json";
8326
8404
  status: 201;
@@ -8403,6 +8481,19 @@ export declare function init(config: AuthHeroConfig): {
8403
8481
  metadata?: {
8404
8482
  [x: string]: import("hono/utils/types").JSONValue;
8405
8483
  } | undefined;
8484
+ } | {
8485
+ trigger_id: "post-user-login";
8486
+ enabled: boolean;
8487
+ synchronous: boolean;
8488
+ created_at: string;
8489
+ updated_at: string;
8490
+ hook_id: string;
8491
+ page_id: "impersonate";
8492
+ priority?: number | undefined;
8493
+ metadata?: {
8494
+ [x: string]: import("hono/utils/types").JSONValue;
8495
+ } | undefined;
8496
+ permission_required?: string | undefined;
8406
8497
  };
8407
8498
  outputFormat: "json";
8408
8499
  status: 200;
@@ -8481,6 +8572,19 @@ export declare function init(config: AuthHeroConfig): {
8481
8572
  metadata?: {
8482
8573
  [x: string]: import("hono/utils/types").JSONValue;
8483
8574
  } | undefined;
8575
+ } | {
8576
+ trigger_id: "post-user-login";
8577
+ enabled: boolean;
8578
+ synchronous: boolean;
8579
+ created_at: string;
8580
+ updated_at: string;
8581
+ hook_id: string;
8582
+ page_id: "impersonate";
8583
+ priority?: number | undefined;
8584
+ metadata?: {
8585
+ [x: string]: import("hono/utils/types").JSONValue;
8586
+ } | undefined;
8587
+ permission_required?: string | undefined;
8484
8588
  };
8485
8589
  outputFormat: "json";
8486
8590
  status: 200;
@@ -8590,7 +8694,7 @@ export declare function init(config: AuthHeroConfig): {
8590
8694
  log_type: string;
8591
8695
  category: "user_action" | "admin_action" | "system" | "api";
8592
8696
  actor: {
8593
- type: "client_credentials" | "user" | "api_key" | "system" | "admin";
8697
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8594
8698
  id?: string | undefined;
8595
8699
  email?: string | undefined;
8596
8700
  org_id?: string | undefined;
@@ -8901,7 +9005,7 @@ export declare function init(config: AuthHeroConfig): {
8901
9005
  created_at: string;
8902
9006
  updated_at: string;
8903
9007
  name: string;
8904
- provider: "auth0" | "cognito" | "okta" | "oidc";
9008
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8905
9009
  connection: string;
8906
9010
  enabled: boolean;
8907
9011
  credentials: {
@@ -8933,7 +9037,7 @@ export declare function init(config: AuthHeroConfig): {
8933
9037
  created_at: string;
8934
9038
  updated_at: string;
8935
9039
  name: string;
8936
- provider: "auth0" | "cognito" | "okta" | "oidc";
9040
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8937
9041
  connection: string;
8938
9042
  enabled: boolean;
8939
9043
  credentials: {
@@ -8959,7 +9063,7 @@ export declare function init(config: AuthHeroConfig): {
8959
9063
  } & {
8960
9064
  json: {
8961
9065
  name: string;
8962
- provider: "auth0" | "cognito" | "okta" | "oidc";
9066
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8963
9067
  connection: string;
8964
9068
  credentials: {
8965
9069
  domain: string;
@@ -8976,7 +9080,7 @@ export declare function init(config: AuthHeroConfig): {
8976
9080
  created_at: string;
8977
9081
  updated_at: string;
8978
9082
  name: string;
8979
- provider: "auth0" | "cognito" | "okta" | "oidc";
9083
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8980
9084
  connection: string;
8981
9085
  enabled: boolean;
8982
9086
  credentials: {
@@ -9007,7 +9111,7 @@ export declare function init(config: AuthHeroConfig): {
9007
9111
  json: {
9008
9112
  id?: string | undefined;
9009
9113
  name?: string | undefined;
9010
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
9114
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
9011
9115
  connection?: string | undefined;
9012
9116
  enabled?: boolean | undefined;
9013
9117
  credentials?: {
@@ -9023,7 +9127,7 @@ export declare function init(config: AuthHeroConfig): {
9023
9127
  created_at: string;
9024
9128
  updated_at: string;
9025
9129
  name: string;
9026
- provider: "auth0" | "cognito" | "okta" | "oidc";
9130
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9027
9131
  connection: string;
9028
9132
  enabled: boolean;
9029
9133
  credentials: {
@@ -9241,7 +9345,7 @@ export declare function init(config: AuthHeroConfig): {
9241
9345
  };
9242
9346
  };
9243
9347
  output: {
9244
- type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9348
+ type: "fn" | "sapi" | "i" | "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";
9245
9349
  date: string;
9246
9350
  isMobile: boolean;
9247
9351
  log_id: string;
@@ -9280,7 +9384,7 @@ export declare function init(config: AuthHeroConfig): {
9280
9384
  limit: number;
9281
9385
  length: number;
9282
9386
  logs: {
9283
- type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9387
+ type: "fn" | "sapi" | "i" | "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";
9284
9388
  date: string;
9285
9389
  isMobile: boolean;
9286
9390
  log_id: string;
@@ -9319,7 +9423,7 @@ export declare function init(config: AuthHeroConfig): {
9319
9423
  next?: string | undefined;
9320
9424
  } | {
9321
9425
  logs: {
9322
- type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9426
+ type: "fn" | "sapi" | "i" | "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";
9323
9427
  date: string;
9324
9428
  isMobile: boolean;
9325
9429
  log_id: string;
@@ -9373,7 +9477,7 @@ export declare function init(config: AuthHeroConfig): {
9373
9477
  };
9374
9478
  };
9375
9479
  output: {
9376
- type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9480
+ type: "fn" | "sapi" | "i" | "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";
9377
9481
  date: string;
9378
9482
  isMobile: boolean;
9379
9483
  log_id: string;
@@ -9784,7 +9888,7 @@ export declare function init(config: AuthHeroConfig): {
9784
9888
  addons?: {
9785
9889
  [x: string]: any;
9786
9890
  } | undefined;
9787
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9891
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9788
9892
  client_metadata?: {
9789
9893
  [x: string]: string;
9790
9894
  } | undefined;
@@ -9886,7 +9990,7 @@ export declare function init(config: AuthHeroConfig): {
9886
9990
  addons?: {
9887
9991
  [x: string]: any;
9888
9992
  } | undefined;
9889
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9993
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9890
9994
  client_metadata?: {
9891
9995
  [x: string]: string;
9892
9996
  } | undefined;
@@ -9988,7 +10092,7 @@ export declare function init(config: AuthHeroConfig): {
9988
10092
  addons?: {
9989
10093
  [x: string]: any;
9990
10094
  } | undefined;
9991
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10095
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9992
10096
  client_metadata?: {
9993
10097
  [x: string]: string;
9994
10098
  } | undefined;
@@ -10105,7 +10209,7 @@ export declare function init(config: AuthHeroConfig): {
10105
10209
  addons?: {
10106
10210
  [x: string]: any;
10107
10211
  } | undefined;
10108
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10212
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10109
10213
  client_metadata?: {
10110
10214
  [x: string]: string;
10111
10215
  } | undefined;
@@ -10223,7 +10327,7 @@ export declare function init(config: AuthHeroConfig): {
10223
10327
  custom_login_page_preview?: string | undefined;
10224
10328
  form_template?: string | undefined;
10225
10329
  addons?: Record<string, any> | undefined;
10226
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10330
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10227
10331
  client_metadata?: Record<string, string> | undefined;
10228
10332
  hide_sign_up_disabled_error?: boolean | undefined;
10229
10333
  mobile?: Record<string, any> | undefined;
@@ -10309,7 +10413,7 @@ export declare function init(config: AuthHeroConfig): {
10309
10413
  addons?: {
10310
10414
  [x: string]: any;
10311
10415
  } | undefined;
10312
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10416
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10313
10417
  client_metadata?: {
10314
10418
  [x: string]: string;
10315
10419
  } | undefined;
@@ -10406,7 +10510,7 @@ export declare function init(config: AuthHeroConfig): {
10406
10510
  custom_login_page_preview?: string | undefined;
10407
10511
  form_template?: string | undefined;
10408
10512
  addons?: Record<string, any> | undefined;
10409
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10513
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10410
10514
  client_metadata?: Record<string, string> | undefined;
10411
10515
  hide_sign_up_disabled_error?: boolean | undefined;
10412
10516
  mobile?: Record<string, any> | undefined;
@@ -10492,7 +10596,7 @@ export declare function init(config: AuthHeroConfig): {
10492
10596
  addons?: {
10493
10597
  [x: string]: any;
10494
10598
  } | undefined;
10495
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10599
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10496
10600
  client_metadata?: {
10497
10601
  [x: string]: string;
10498
10602
  } | undefined;
@@ -10614,7 +10718,7 @@ export declare function init(config: AuthHeroConfig): {
10614
10718
  active?: boolean | undefined;
10615
10719
  } | undefined;
10616
10720
  signup?: {
10617
- status?: "optional" | "required" | "disabled" | undefined;
10721
+ status?: "required" | "optional" | "disabled" | undefined;
10618
10722
  verification?: {
10619
10723
  active?: boolean | undefined;
10620
10724
  } | undefined;
@@ -10631,7 +10735,7 @@ export declare function init(config: AuthHeroConfig): {
10631
10735
  active?: boolean | undefined;
10632
10736
  } | undefined;
10633
10737
  signup?: {
10634
- status?: "optional" | "required" | "disabled" | undefined;
10738
+ status?: "required" | "optional" | "disabled" | undefined;
10635
10739
  } | undefined;
10636
10740
  validation?: {
10637
10741
  max_length?: number | undefined;
@@ -10648,7 +10752,7 @@ export declare function init(config: AuthHeroConfig): {
10648
10752
  active?: boolean | undefined;
10649
10753
  } | undefined;
10650
10754
  signup?: {
10651
- status?: "optional" | "required" | "disabled" | undefined;
10755
+ status?: "required" | "optional" | "disabled" | undefined;
10652
10756
  } | undefined;
10653
10757
  } | undefined;
10654
10758
  } | undefined;
@@ -10768,7 +10872,7 @@ export declare function init(config: AuthHeroConfig): {
10768
10872
  active?: boolean | undefined;
10769
10873
  } | undefined;
10770
10874
  signup?: {
10771
- status?: "optional" | "required" | "disabled" | undefined;
10875
+ status?: "required" | "optional" | "disabled" | undefined;
10772
10876
  verification?: {
10773
10877
  active?: boolean | undefined;
10774
10878
  } | undefined;
@@ -10785,7 +10889,7 @@ export declare function init(config: AuthHeroConfig): {
10785
10889
  active?: boolean | undefined;
10786
10890
  } | undefined;
10787
10891
  signup?: {
10788
- status?: "optional" | "required" | "disabled" | undefined;
10892
+ status?: "required" | "optional" | "disabled" | undefined;
10789
10893
  } | undefined;
10790
10894
  validation?: {
10791
10895
  max_length?: number | undefined;
@@ -10802,7 +10906,7 @@ export declare function init(config: AuthHeroConfig): {
10802
10906
  active?: boolean | undefined;
10803
10907
  } | undefined;
10804
10908
  signup?: {
10805
- status?: "optional" | "required" | "disabled" | undefined;
10909
+ status?: "required" | "optional" | "disabled" | undefined;
10806
10910
  } | undefined;
10807
10911
  } | undefined;
10808
10912
  } | undefined;
@@ -11837,7 +11941,7 @@ export declare function init(config: AuthHeroConfig): {
11837
11941
  };
11838
11942
  };
11839
11943
  output: {
11840
- type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11944
+ type: "fn" | "sapi" | "i" | "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";
11841
11945
  date: string;
11842
11946
  isMobile: boolean;
11843
11947
  log_id: string;
@@ -11876,7 +11980,7 @@ export declare function init(config: AuthHeroConfig): {
11876
11980
  limit: number;
11877
11981
  length: number;
11878
11982
  logs: {
11879
- type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11983
+ type: "fn" | "sapi" | "i" | "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";
11880
11984
  date: string;
11881
11985
  isMobile: boolean;
11882
11986
  log_id: string;
@@ -12195,7 +12299,7 @@ export declare function init(config: AuthHeroConfig): {
12195
12299
  };
12196
12300
  } & {
12197
12301
  json: {
12198
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12302
+ 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";
12199
12303
  body: string;
12200
12304
  from: string;
12201
12305
  subject: string;
@@ -12216,7 +12320,7 @@ export declare function init(config: AuthHeroConfig): {
12216
12320
  };
12217
12321
  } & {
12218
12322
  json: {
12219
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12323
+ 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";
12220
12324
  body: string;
12221
12325
  from: string;
12222
12326
  subject: string;
@@ -12228,7 +12332,7 @@ export declare function init(config: AuthHeroConfig): {
12228
12332
  };
12229
12333
  };
12230
12334
  output: {
12231
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12335
+ 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";
12232
12336
  body: string;
12233
12337
  from: string;
12234
12338
  subject: string;
@@ -12251,7 +12355,7 @@ export declare function init(config: AuthHeroConfig): {
12251
12355
  };
12252
12356
  };
12253
12357
  output: {
12254
- name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12358
+ 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";
12255
12359
  body: string;
12256
12360
  subject: string;
12257
12361
  }[];
@@ -12264,7 +12368,7 @@ export declare function init(config: AuthHeroConfig): {
12264
12368
  $get: {
12265
12369
  input: {
12266
12370
  param: {
12267
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12371
+ 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";
12268
12372
  };
12269
12373
  } & {
12270
12374
  header: {
@@ -12277,7 +12381,7 @@ export declare function init(config: AuthHeroConfig): {
12277
12381
  } | {
12278
12382
  input: {
12279
12383
  param: {
12280
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12384
+ 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";
12281
12385
  };
12282
12386
  } & {
12283
12387
  header: {
@@ -12285,7 +12389,7 @@ export declare function init(config: AuthHeroConfig): {
12285
12389
  };
12286
12390
  };
12287
12391
  output: {
12288
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12392
+ 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";
12289
12393
  body: string;
12290
12394
  from: string;
12291
12395
  subject: string;
@@ -12304,7 +12408,7 @@ export declare function init(config: AuthHeroConfig): {
12304
12408
  $put: {
12305
12409
  input: {
12306
12410
  param: {
12307
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12411
+ 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";
12308
12412
  };
12309
12413
  } & {
12310
12414
  header: {
@@ -12312,7 +12416,7 @@ export declare function init(config: AuthHeroConfig): {
12312
12416
  };
12313
12417
  } & {
12314
12418
  json: {
12315
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12419
+ 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";
12316
12420
  body: string;
12317
12421
  subject: string;
12318
12422
  syntax?: "liquid" | undefined;
@@ -12324,7 +12428,7 @@ export declare function init(config: AuthHeroConfig): {
12324
12428
  };
12325
12429
  };
12326
12430
  output: {
12327
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12431
+ 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";
12328
12432
  body: string;
12329
12433
  from: string;
12330
12434
  subject: string;
@@ -12343,7 +12447,7 @@ export declare function init(config: AuthHeroConfig): {
12343
12447
  $patch: {
12344
12448
  input: {
12345
12449
  param: {
12346
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12450
+ 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";
12347
12451
  };
12348
12452
  } & {
12349
12453
  header: {
@@ -12351,7 +12455,7 @@ export declare function init(config: AuthHeroConfig): {
12351
12455
  };
12352
12456
  } & {
12353
12457
  json: {
12354
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12458
+ 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;
12355
12459
  body?: string | undefined;
12356
12460
  from?: string | undefined;
12357
12461
  subject?: string | undefined;
@@ -12368,7 +12472,7 @@ export declare function init(config: AuthHeroConfig): {
12368
12472
  } | {
12369
12473
  input: {
12370
12474
  param: {
12371
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12475
+ 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";
12372
12476
  };
12373
12477
  } & {
12374
12478
  header: {
@@ -12376,7 +12480,7 @@ export declare function init(config: AuthHeroConfig): {
12376
12480
  };
12377
12481
  } & {
12378
12482
  json: {
12379
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12483
+ 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;
12380
12484
  body?: string | undefined;
12381
12485
  from?: string | undefined;
12382
12486
  subject?: string | undefined;
@@ -12388,7 +12492,7 @@ export declare function init(config: AuthHeroConfig): {
12388
12492
  };
12389
12493
  };
12390
12494
  output: {
12391
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12495
+ 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";
12392
12496
  body: string;
12393
12497
  from: string;
12394
12498
  subject: string;
@@ -12407,7 +12511,7 @@ export declare function init(config: AuthHeroConfig): {
12407
12511
  $delete: {
12408
12512
  input: {
12409
12513
  param: {
12410
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12514
+ 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";
12411
12515
  };
12412
12516
  } & {
12413
12517
  header: {
@@ -12420,7 +12524,7 @@ export declare function init(config: AuthHeroConfig): {
12420
12524
  } | {
12421
12525
  input: {
12422
12526
  param: {
12423
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12527
+ 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";
12424
12528
  };
12425
12529
  } & {
12426
12530
  header: {
@@ -12437,7 +12541,7 @@ export declare function init(config: AuthHeroConfig): {
12437
12541
  $post: {
12438
12542
  input: {
12439
12543
  param: {
12440
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12544
+ 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";
12441
12545
  };
12442
12546
  } & {
12443
12547
  header: {
@@ -13350,7 +13454,7 @@ export declare function init(config: AuthHeroConfig): {
13350
13454
  };
13351
13455
  output: {};
13352
13456
  outputFormat: string;
13353
- status: 204;
13457
+ status: 400;
13354
13458
  } | {
13355
13459
  input: {
13356
13460
  header: {
@@ -13363,7 +13467,7 @@ export declare function init(config: AuthHeroConfig): {
13363
13467
  };
13364
13468
  output: {};
13365
13469
  outputFormat: string;
13366
- status: 400;
13470
+ status: 204;
13367
13471
  };
13368
13472
  };
13369
13473
  } & {
@@ -13389,7 +13493,7 @@ export declare function init(config: AuthHeroConfig): {
13389
13493
  } & {
13390
13494
  json: {
13391
13495
  body?: string | undefined;
13392
- screen?: "login" | "identifier" | "signup" | "password" | undefined;
13496
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
13393
13497
  branding?: {
13394
13498
  colors?: {
13395
13499
  primary: string;
@@ -13558,7 +13662,7 @@ export declare function init(config: AuthHeroConfig): {
13558
13662
  json: {
13559
13663
  bindings: {
13560
13664
  ref: {
13561
- type?: "action_name" | "action_id" | undefined;
13665
+ type?: "action_id" | "action_name" | undefined;
13562
13666
  value?: string | undefined;
13563
13667
  id?: string | undefined;
13564
13668
  name?: string | undefined;
@@ -13680,7 +13784,7 @@ export declare function init(config: AuthHeroConfig): {
13680
13784
  logs: {
13681
13785
  action_name: string;
13682
13786
  lines: {
13683
- level: "log" | "error" | "info" | "warn" | "debug";
13787
+ level: "error" | "log" | "info" | "warn" | "debug";
13684
13788
  message: string;
13685
13789
  }[];
13686
13790
  }[];
@@ -14349,7 +14453,7 @@ export declare function init(config: AuthHeroConfig): {
14349
14453
  args: import("hono/utils/types").JSONValue[];
14350
14454
  }[];
14351
14455
  logs: {
14352
- level: "log" | "error" | "info" | "warn" | "debug";
14456
+ level: "error" | "log" | "info" | "warn" | "debug";
14353
14457
  message: string;
14354
14458
  }[];
14355
14459
  error?: string | undefined;
@@ -14660,7 +14764,7 @@ export declare function init(config: AuthHeroConfig): {
14660
14764
  scope?: string | undefined;
14661
14765
  grant_types?: string[] | undefined;
14662
14766
  response_types?: string[] | undefined;
14663
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14767
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14664
14768
  jwks_uri?: string | undefined;
14665
14769
  jwks?: Record<string, unknown> | undefined;
14666
14770
  software_id?: string | undefined;
@@ -14749,7 +14853,7 @@ export declare function init(config: AuthHeroConfig): {
14749
14853
  scope?: string | undefined;
14750
14854
  grant_types?: string[] | undefined;
14751
14855
  response_types?: string[] | undefined;
14752
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14856
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14753
14857
  jwks_uri?: string | undefined;
14754
14858
  jwks?: Record<string, unknown> | undefined;
14755
14859
  software_id?: string | undefined;
@@ -15097,17 +15201,17 @@ export declare function init(config: AuthHeroConfig): {
15097
15201
  authParams: {
15098
15202
  username?: string | undefined;
15099
15203
  state?: string | undefined;
15100
- act_as?: string | undefined;
15204
+ audience?: string | undefined;
15101
15205
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15102
15206
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15103
- redirect_uri?: string | undefined;
15104
- audience?: string | undefined;
15105
- organization?: string | undefined;
15106
- nonce?: string | undefined;
15107
15207
  scope?: string | undefined;
15108
- prompt?: string | undefined;
15208
+ organization?: string | undefined;
15209
+ redirect_uri?: string | undefined;
15109
15210
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15110
15211
  code_challenge?: string | undefined;
15212
+ nonce?: string | undefined;
15213
+ act_as?: string | undefined;
15214
+ prompt?: string | undefined;
15111
15215
  ui_locales?: string | undefined;
15112
15216
  max_age?: number | undefined;
15113
15217
  acr_values?: string | undefined;
@@ -15133,17 +15237,17 @@ export declare function init(config: AuthHeroConfig): {
15133
15237
  authParams: {
15134
15238
  username?: string | undefined;
15135
15239
  state?: string | undefined;
15136
- act_as?: string | undefined;
15240
+ audience?: string | undefined;
15137
15241
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15138
15242
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15139
- redirect_uri?: string | undefined;
15140
- audience?: string | undefined;
15141
- organization?: string | undefined;
15142
- nonce?: string | undefined;
15143
15243
  scope?: string | undefined;
15144
- prompt?: string | undefined;
15244
+ organization?: string | undefined;
15245
+ redirect_uri?: string | undefined;
15145
15246
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15146
15247
  code_challenge?: string | undefined;
15248
+ nonce?: string | undefined;
15249
+ act_as?: string | undefined;
15250
+ prompt?: string | undefined;
15147
15251
  ui_locales?: string | undefined;
15148
15252
  max_age?: number | undefined;
15149
15253
  acr_values?: string | undefined;
@@ -15275,14 +15379,14 @@ export declare function init(config: AuthHeroConfig): {
15275
15379
  input: {
15276
15380
  form: {
15277
15381
  token: string;
15278
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15382
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15279
15383
  client_id?: string | undefined;
15280
15384
  client_secret?: string | undefined;
15281
15385
  };
15282
15386
  } & {
15283
15387
  json: {
15284
15388
  token: string;
15285
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15389
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15286
15390
  client_id?: string | undefined;
15287
15391
  client_secret?: string | undefined;
15288
15392
  };
@@ -15294,14 +15398,14 @@ export declare function init(config: AuthHeroConfig): {
15294
15398
  input: {
15295
15399
  form: {
15296
15400
  token: string;
15297
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15401
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15298
15402
  client_id?: string | undefined;
15299
15403
  client_secret?: string | undefined;
15300
15404
  };
15301
15405
  } & {
15302
15406
  json: {
15303
15407
  token: string;
15304
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15408
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15305
15409
  client_id?: string | undefined;
15306
15410
  client_secret?: string | undefined;
15307
15411
  };
@@ -15316,14 +15420,14 @@ export declare function init(config: AuthHeroConfig): {
15316
15420
  input: {
15317
15421
  form: {
15318
15422
  token: string;
15319
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15423
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15320
15424
  client_id?: string | undefined;
15321
15425
  client_secret?: string | undefined;
15322
15426
  };
15323
15427
  } & {
15324
15428
  json: {
15325
15429
  token: string;
15326
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15430
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
15327
15431
  client_id?: string | undefined;
15328
15432
  client_secret?: string | undefined;
15329
15433
  };
@@ -15373,7 +15477,7 @@ export declare function init(config: AuthHeroConfig): {
15373
15477
  client_id: string;
15374
15478
  username: string;
15375
15479
  otp: string;
15376
- realm: "email" | "sms";
15480
+ realm: "sms" | "email";
15377
15481
  } | {
15378
15482
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15379
15483
  subject_token: string;
@@ -15420,7 +15524,7 @@ export declare function init(config: AuthHeroConfig): {
15420
15524
  client_id: string;
15421
15525
  username: string;
15422
15526
  otp: string;
15423
- realm: "email" | "sms";
15527
+ realm: "sms" | "email";
15424
15528
  } | {
15425
15529
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15426
15530
  subject_token: string;
@@ -15472,7 +15576,7 @@ export declare function init(config: AuthHeroConfig): {
15472
15576
  client_id: string;
15473
15577
  username: string;
15474
15578
  otp: string;
15475
- realm: "email" | "sms";
15579
+ realm: "sms" | "email";
15476
15580
  } | {
15477
15581
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15478
15582
  subject_token: string;
@@ -15519,7 +15623,7 @@ export declare function init(config: AuthHeroConfig): {
15519
15623
  client_id: string;
15520
15624
  username: string;
15521
15625
  otp: string;
15522
- realm: "email" | "sms";
15626
+ realm: "sms" | "email";
15523
15627
  } | {
15524
15628
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15525
15629
  subject_token: string;
@@ -15579,7 +15683,7 @@ export declare function init(config: AuthHeroConfig): {
15579
15683
  client_id: string;
15580
15684
  username: string;
15581
15685
  otp: string;
15582
- realm: "email" | "sms";
15686
+ realm: "sms" | "email";
15583
15687
  } | {
15584
15688
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15585
15689
  subject_token: string;
@@ -15626,7 +15730,7 @@ export declare function init(config: AuthHeroConfig): {
15626
15730
  client_id: string;
15627
15731
  username: string;
15628
15732
  otp: string;
15629
- realm: "email" | "sms";
15733
+ realm: "sms" | "email";
15630
15734
  } | {
15631
15735
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15632
15736
  subject_token: string;
@@ -15681,7 +15785,7 @@ export declare function init(config: AuthHeroConfig): {
15681
15785
  client_id: string;
15682
15786
  username: string;
15683
15787
  otp: string;
15684
- realm: "email" | "sms";
15788
+ realm: "sms" | "email";
15685
15789
  } | {
15686
15790
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15687
15791
  subject_token: string;
@@ -15728,7 +15832,7 @@ export declare function init(config: AuthHeroConfig): {
15728
15832
  client_id: string;
15729
15833
  username: string;
15730
15834
  otp: string;
15731
- realm: "email" | "sms";
15835
+ realm: "sms" | "email";
15732
15836
  } | {
15733
15837
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15734
15838
  subject_token: string;
@@ -15783,7 +15887,7 @@ export declare function init(config: AuthHeroConfig): {
15783
15887
  client_id: string;
15784
15888
  username: string;
15785
15889
  otp: string;
15786
- realm: "email" | "sms";
15890
+ realm: "sms" | "email";
15787
15891
  } | {
15788
15892
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15789
15893
  subject_token: string;
@@ -15830,7 +15934,7 @@ export declare function init(config: AuthHeroConfig): {
15830
15934
  client_id: string;
15831
15935
  username: string;
15832
15936
  otp: string;
15833
- realm: "email" | "sms";
15937
+ realm: "sms" | "email";
15834
15938
  } | {
15835
15939
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15836
15940
  subject_token: string;
@@ -16066,7 +16170,7 @@ export declare function init(config: AuthHeroConfig): {
16066
16170
  };
16067
16171
  output: {};
16068
16172
  outputFormat: string;
16069
- status: 302;
16173
+ status: 400;
16070
16174
  } | {
16071
16175
  input: {
16072
16176
  query: {
@@ -16080,7 +16184,7 @@ export declare function init(config: AuthHeroConfig): {
16080
16184
  };
16081
16185
  output: {};
16082
16186
  outputFormat: string;
16083
- status: 400;
16187
+ status: 302;
16084
16188
  };
16085
16189
  };
16086
16190
  }, "/oidc/logout"> & import("hono/types").MergeSchemaPath<{
@@ -16187,7 +16291,7 @@ export declare function init(config: AuthHeroConfig): {
16187
16291
  };
16188
16292
  output: {};
16189
16293
  outputFormat: string;
16190
- status: 302;
16294
+ status: 400;
16191
16295
  } | {
16192
16296
  input: {
16193
16297
  query: {
@@ -16196,7 +16300,7 @@ export declare function init(config: AuthHeroConfig): {
16196
16300
  };
16197
16301
  output: {};
16198
16302
  outputFormat: string;
16199
- status: 400;
16303
+ status: 302;
16200
16304
  } | {
16201
16305
  input: {
16202
16306
  query: {
@@ -16325,7 +16429,7 @@ export declare function init(config: AuthHeroConfig): {
16325
16429
  };
16326
16430
  output: {};
16327
16431
  outputFormat: string;
16328
- status: 302;
16432
+ status: 400;
16329
16433
  } | {
16330
16434
  input: {
16331
16435
  query: {
@@ -16338,7 +16442,7 @@ export declare function init(config: AuthHeroConfig): {
16338
16442
  };
16339
16443
  output: {};
16340
16444
  outputFormat: string;
16341
- status: 400;
16445
+ status: 302;
16342
16446
  };
16343
16447
  };
16344
16448
  }, "/impersonate"> & import("hono/types").MergeSchemaPath<{
@@ -16675,12 +16779,12 @@ export declare function init(config: AuthHeroConfig): {
16675
16779
  } & {
16676
16780
  form: {
16677
16781
  username: string;
16678
- login_selection?: "code" | "password" | undefined;
16782
+ login_selection?: "password" | "code" | undefined;
16679
16783
  };
16680
16784
  };
16681
16785
  output: {};
16682
16786
  outputFormat: string;
16683
- status: 302;
16787
+ status: 400;
16684
16788
  } | {
16685
16789
  input: {
16686
16790
  query: {
@@ -16689,12 +16793,12 @@ export declare function init(config: AuthHeroConfig): {
16689
16793
  } & {
16690
16794
  form: {
16691
16795
  username: string;
16692
- login_selection?: "code" | "password" | undefined;
16796
+ login_selection?: "password" | "code" | undefined;
16693
16797
  };
16694
16798
  };
16695
16799
  output: {};
16696
16800
  outputFormat: string;
16697
- status: 400;
16801
+ status: 302;
16698
16802
  };
16699
16803
  };
16700
16804
  }, "/login/identifier"> & import("hono/types").MergeSchemaPath<{
@@ -17054,7 +17158,7 @@ export declare function init(config: AuthHeroConfig): {
17054
17158
  $get: {
17055
17159
  input: {
17056
17160
  param: {
17057
- screen: "login" | "account" | "signup" | "reset-password" | "consent" | "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";
17161
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "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";
17058
17162
  };
17059
17163
  } & {
17060
17164
  query: {
@@ -17070,7 +17174,7 @@ export declare function init(config: AuthHeroConfig): {
17070
17174
  } | {
17071
17175
  input: {
17072
17176
  param: {
17073
- screen: "login" | "account" | "signup" | "reset-password" | "consent" | "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";
17177
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "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";
17074
17178
  };
17075
17179
  } & {
17076
17180
  query: {
@@ -17082,11 +17186,11 @@ export declare function init(config: AuthHeroConfig): {
17082
17186
  };
17083
17187
  output: {};
17084
17188
  outputFormat: string;
17085
- status: 302;
17189
+ status: 400;
17086
17190
  } | {
17087
17191
  input: {
17088
17192
  param: {
17089
- screen: "login" | "account" | "signup" | "reset-password" | "consent" | "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";
17193
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "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";
17090
17194
  };
17091
17195
  } & {
17092
17196
  query: {
@@ -17098,7 +17202,7 @@ export declare function init(config: AuthHeroConfig): {
17098
17202
  };
17099
17203
  output: {};
17100
17204
  outputFormat: string;
17101
- status: 400;
17205
+ status: 302;
17102
17206
  };
17103
17207
  };
17104
17208
  } & {
@@ -17106,7 +17210,7 @@ export declare function init(config: AuthHeroConfig): {
17106
17210
  $post: {
17107
17211
  input: {
17108
17212
  param: {
17109
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17213
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "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";
17110
17214
  };
17111
17215
  } & {
17112
17216
  query: {
@@ -17124,7 +17228,7 @@ export declare function init(config: AuthHeroConfig): {
17124
17228
  } | {
17125
17229
  input: {
17126
17230
  param: {
17127
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17231
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "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";
17128
17232
  };
17129
17233
  } & {
17130
17234
  query: {