authhero 8.26.0 → 8.27.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 (43) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +139 -139
  3. package/dist/authhero.d.ts +201 -116
  4. package/dist/authhero.mjs +6339 -6281
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  7. package/dist/types/components/stories/IdentifierPage.stories.d.ts +2 -0
  8. package/dist/types/helpers/codes-cleanup.d.ts +4 -4
  9. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  10. package/dist/types/helpers/run-retention.d.ts +86 -0
  11. package/dist/types/index.d.ts +112 -110
  12. package/dist/types/routes/auth-api/index.d.ts +20 -20
  13. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  14. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  15. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  16. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  17. package/dist/types/routes/management-api/actions.d.ts +1 -1
  18. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  19. package/dist/types/routes/management-api/branding.d.ts +9 -9
  20. package/dist/types/routes/management-api/clients.d.ts +14 -14
  21. package/dist/types/routes/management-api/connections.d.ts +15 -15
  22. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  23. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  24. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  25. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  26. package/dist/types/routes/management-api/index.d.ts +83 -83
  27. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  28. package/dist/types/routes/management-api/logs.d.ts +4 -4
  29. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  30. package/dist/types/routes/management-api/organizations.d.ts +5 -5
  31. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  32. package/dist/types/routes/management-api/roles.d.ts +1 -1
  33. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  34. package/dist/types/routes/management-api/tenants.d.ts +5 -5
  35. package/dist/types/routes/management-api/themes.d.ts +6 -6
  36. package/dist/types/routes/management-api/users.d.ts +2 -2
  37. package/dist/types/routes/universal-login/common.d.ts +12 -12
  38. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  39. package/dist/types/routes/universal-login/index.d.ts +2 -2
  40. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  41. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  42. package/dist/types/types/IdToken.d.ts +1 -1
  43. package/package.json +6 -6
@@ -2722,11 +2722,11 @@ interface CodesCleanupParams {
2722
2722
  }
2723
2723
  /**
2724
2724
  * Delete codes that expired more than the retention window ago.
2725
- * Intended for use in a scheduled handler / cron job.
2726
2725
  *
2727
- * Codes are short-lived by design but nothing else prunes them, so without a
2728
- * scheduled call to this the table grows without bound. See the Data Retention
2729
- * deployment guide for the full set of tables that need sweeping.
2726
+ * Prefer `runRetention`, which calls this along with every other prunable
2727
+ * table scheduling one call means a future prunable table is covered without
2728
+ * editing your handler. Use this directly only when you want to sweep `codes`
2729
+ * on its own schedule.
2730
2730
  *
2731
2731
  * @example
2732
2732
  * ```ts
@@ -2994,6 +2994,91 @@ interface RunOutboxRelayConfig {
2994
2994
  */
2995
2995
  declare function runOutboxRelay(config: RunOutboxRelayConfig): Promise<void>;
2996
2996
 
2997
+ interface RunRetentionConfig {
2998
+ /** Same `DataAdapters` passed to `init()`. */
2999
+ dataAdapter: DataAdapters;
3000
+ /** Grace period past expiry for `codes`. Default 1. */
3001
+ codesRetentionDays?: number;
3002
+ /** Days to keep processed/dead-lettered outbox events. Default 7. */
3003
+ outboxRetentionDays?: number;
3004
+ /**
3005
+ * Scope the session sweep to a single tenant. Codes and outbox events are
3006
+ * always swept globally — an expired row is dead regardless of who owns it.
3007
+ */
3008
+ tenantId?: string;
3009
+ }
3010
+ type RetentionSweepStatus = "swept" | "skipped" | "failed";
3011
+ interface RetentionSweepBase {
3012
+ /** Table(s) this sweep covers, for logging. */
3013
+ table: string;
3014
+ }
3015
+ interface RetentionSweepSwept extends RetentionSweepBase {
3016
+ status: "swept";
3017
+ /**
3018
+ * Rows deleted. Absent when the underlying adapter reports no count —
3019
+ * `sessionCleanup` returns void, so a session sweep succeeds without one.
3020
+ */
3021
+ deleted?: number;
3022
+ }
3023
+ interface RetentionSweepSkipped extends RetentionSweepBase {
3024
+ status: "skipped";
3025
+ /** Why the sweep was skipped — an adapter that does not support it. */
3026
+ reason: string;
3027
+ }
3028
+ interface RetentionSweepFailed extends RetentionSweepBase {
3029
+ status: "failed";
3030
+ error: unknown;
3031
+ }
3032
+ /**
3033
+ * Discriminated on `status`, so a sweep cannot carry fields that contradict
3034
+ * it — no `error` on a successful sweep, no `deleted` on a failed one.
3035
+ */
3036
+ type RetentionSweep = RetentionSweepSwept | RetentionSweepSkipped | RetentionSweepFailed;
3037
+ interface RunRetentionResult {
3038
+ sweeps: RetentionSweep[];
3039
+ }
3040
+ /**
3041
+ * Thrown when one or more sweeps failed. The other sweeps still ran — check
3042
+ * `result` for what succeeded.
3043
+ */
3044
+ declare class RetentionSweepError extends Error {
3045
+ readonly result: RunRetentionResult;
3046
+ readonly errors: unknown[];
3047
+ constructor(result: RunRetentionResult, errors: unknown[]);
3048
+ }
3049
+ /**
3050
+ * Sweep every prunable AuthHero table in one call.
3051
+ *
3052
+ * This is the entry point for retention — a deployment that schedules this
3053
+ * daily needs nothing else, and gains coverage of future prunable tables
3054
+ * without editing its handler.
3055
+ *
3056
+ * Covers `codes`, `outbox_events`, and (where the adapter supports it)
3057
+ * `sessions` / `refresh_tokens` / `login_sessions`. It does **not** drain the
3058
+ * outbox: delivery is `runOutboxRelay`'s job, and the two are scheduled
3059
+ * independently. Running both is safe — the relay's own cleanup pass and this
3060
+ * one are idempotent.
3061
+ *
3062
+ * `logs` is deliberately excluded. Audit-retention obligations differ per
3063
+ * deployment, so AuthHero will not silently delete audit rows on your behalf;
3064
+ * prune `logs` on `date` yourself.
3065
+ *
3066
+ * Every sweep runs even if an earlier one throws, so one broken adapter method
3067
+ * cannot stop the rest of the tables being pruned. If any sweep failed, a
3068
+ * `RetentionSweepError` carrying the partial result is thrown once at the end.
3069
+ *
3070
+ * @example
3071
+ * ```ts
3072
+ * export default {
3073
+ * async scheduled(_event, env) {
3074
+ * const { sweeps } = await runRetention({ dataAdapter });
3075
+ * console.log(sweeps);
3076
+ * },
3077
+ * };
3078
+ * ```
3079
+ */
3080
+ declare function runRetention(config: RunRetentionConfig): Promise<RunRetentionResult>;
3081
+
2997
3082
  declare class LogsDestination implements EventDestination {
2998
3083
  name: string;
2999
3084
  private logs;
@@ -4072,8 +4157,8 @@ declare function init(config: AuthHeroConfig): {
4072
4157
  $get: {
4073
4158
  input: {
4074
4159
  query: {
4075
- include_password_hashes?: "false" | "true" | undefined;
4076
- gzip?: "false" | "true" | undefined;
4160
+ include_password_hashes?: "true" | "false" | undefined;
4161
+ gzip?: "true" | "false" | undefined;
4077
4162
  };
4078
4163
  } & {
4079
4164
  header: {
@@ -4086,8 +4171,8 @@ declare function init(config: AuthHeroConfig): {
4086
4171
  } | {
4087
4172
  input: {
4088
4173
  query: {
4089
- include_password_hashes?: "false" | "true" | undefined;
4090
- gzip?: "false" | "true" | undefined;
4174
+ include_password_hashes?: "true" | "false" | undefined;
4175
+ gzip?: "true" | "false" | undefined;
4091
4176
  };
4092
4177
  } & {
4093
4178
  header: {
@@ -4106,7 +4191,7 @@ declare function init(config: AuthHeroConfig): {
4106
4191
  $post: {
4107
4192
  input: {
4108
4193
  query: {
4109
- include_password_hashes?: "false" | "true" | undefined;
4194
+ include_password_hashes?: "true" | "false" | undefined;
4110
4195
  };
4111
4196
  } & {
4112
4197
  header: {
@@ -4160,7 +4245,7 @@ declare function init(config: AuthHeroConfig): {
4160
4245
  };
4161
4246
  } & {
4162
4247
  json: {
4163
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
4248
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
4164
4249
  phone_number?: string | undefined;
4165
4250
  totp_secret?: string | undefined;
4166
4251
  credential_id?: string | undefined;
@@ -4300,7 +4385,7 @@ declare function init(config: AuthHeroConfig): {
4300
4385
  };
4301
4386
  };
4302
4387
  output: {
4303
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4388
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4304
4389
  enabled: boolean;
4305
4390
  trial_expired?: boolean | undefined;
4306
4391
  }[];
@@ -4455,7 +4540,7 @@ declare function init(config: AuthHeroConfig): {
4455
4540
  $get: {
4456
4541
  input: {
4457
4542
  param: {
4458
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4543
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4459
4544
  };
4460
4545
  } & {
4461
4546
  header: {
@@ -4463,7 +4548,7 @@ declare function init(config: AuthHeroConfig): {
4463
4548
  };
4464
4549
  };
4465
4550
  output: {
4466
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4551
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4467
4552
  enabled: boolean;
4468
4553
  trial_expired?: boolean | undefined;
4469
4554
  };
@@ -4476,7 +4561,7 @@ declare function init(config: AuthHeroConfig): {
4476
4561
  $put: {
4477
4562
  input: {
4478
4563
  param: {
4479
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4564
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4480
4565
  };
4481
4566
  } & {
4482
4567
  header: {
@@ -4488,7 +4573,7 @@ declare function init(config: AuthHeroConfig): {
4488
4573
  };
4489
4574
  };
4490
4575
  output: {
4491
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4576
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4492
4577
  enabled: boolean;
4493
4578
  trial_expired?: boolean | undefined;
4494
4579
  };
@@ -5260,19 +5345,19 @@ declare function init(config: AuthHeroConfig): {
5260
5345
  } & {
5261
5346
  json: {
5262
5347
  client_id: string;
5263
- inviter: {
5264
- name?: string | undefined;
5265
- };
5266
5348
  invitee: {
5267
5349
  email?: string | undefined;
5268
5350
  };
5351
+ inviter: {
5352
+ name?: string | undefined;
5353
+ };
5269
5354
  id?: string | undefined;
5270
5355
  app_metadata?: Record<string, any> | undefined;
5271
5356
  user_metadata?: Record<string, any> | undefined;
5272
5357
  connection_id?: string | undefined;
5273
5358
  roles?: string[] | undefined;
5274
- ttl_sec?: number | undefined;
5275
5359
  send_invitation_email?: boolean | undefined;
5360
+ ttl_sec?: number | undefined;
5276
5361
  };
5277
5362
  };
5278
5363
  output: {
@@ -5455,8 +5540,8 @@ declare function init(config: AuthHeroConfig): {
5455
5540
  };
5456
5541
  } & {
5457
5542
  json: {
5458
- assign_membership_on_login?: boolean | undefined;
5459
5543
  show_as_button?: boolean | undefined;
5544
+ assign_membership_on_login?: boolean | undefined;
5460
5545
  is_signup_enabled?: boolean | undefined;
5461
5546
  };
5462
5547
  };
@@ -6027,9 +6112,9 @@ declare function init(config: AuthHeroConfig): {
6027
6112
  };
6028
6113
  } & {
6029
6114
  query: {
6115
+ from?: string | undefined;
6030
6116
  page?: string | undefined;
6031
6117
  include_totals?: string | undefined;
6032
- from?: string | undefined;
6033
6118
  per_page?: string | undefined;
6034
6119
  take?: string | undefined;
6035
6120
  };
@@ -10981,7 +11066,7 @@ declare function init(config: AuthHeroConfig): {
10981
11066
  };
10982
11067
  };
10983
11068
  output: {
10984
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
11069
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
10985
11070
  language: string;
10986
11071
  }[];
10987
11072
  outputFormat: "json";
@@ -11019,7 +11104,7 @@ declare function init(config: AuthHeroConfig): {
11019
11104
  $get: {
11020
11105
  input: {
11021
11106
  param: {
11022
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
11107
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11023
11108
  language: string;
11024
11109
  };
11025
11110
  } & {
@@ -11041,7 +11126,7 @@ declare function init(config: AuthHeroConfig): {
11041
11126
  $put: {
11042
11127
  input: {
11043
11128
  param: {
11044
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
11129
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11045
11130
  language: string;
11046
11131
  };
11047
11132
  } & {
@@ -11065,7 +11150,7 @@ declare function init(config: AuthHeroConfig): {
11065
11150
  $delete: {
11066
11151
  input: {
11067
11152
  param: {
11068
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
11153
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11069
11154
  language: string;
11070
11155
  };
11071
11156
  } & {
@@ -11157,7 +11242,7 @@ declare function init(config: AuthHeroConfig): {
11157
11242
  active?: boolean | undefined;
11158
11243
  } | undefined;
11159
11244
  signup?: {
11160
- status?: "required" | "optional" | "disabled" | undefined;
11245
+ status?: "optional" | "required" | "disabled" | undefined;
11161
11246
  verification?: {
11162
11247
  active?: boolean | undefined;
11163
11248
  } | undefined;
@@ -11174,7 +11259,7 @@ declare function init(config: AuthHeroConfig): {
11174
11259
  active?: boolean | undefined;
11175
11260
  } | undefined;
11176
11261
  signup?: {
11177
- status?: "required" | "optional" | "disabled" | undefined;
11262
+ status?: "optional" | "required" | "disabled" | undefined;
11178
11263
  } | undefined;
11179
11264
  validation?: {
11180
11265
  max_length?: number | undefined;
@@ -11191,7 +11276,7 @@ declare function init(config: AuthHeroConfig): {
11191
11276
  active?: boolean | undefined;
11192
11277
  } | undefined;
11193
11278
  signup?: {
11194
- status?: "required" | "optional" | "disabled" | undefined;
11279
+ status?: "optional" | "required" | "disabled" | undefined;
11195
11280
  } | undefined;
11196
11281
  } | undefined;
11197
11282
  } | undefined;
@@ -11291,7 +11376,7 @@ declare function init(config: AuthHeroConfig): {
11291
11376
  active?: boolean | undefined;
11292
11377
  } | undefined;
11293
11378
  signup?: {
11294
- status?: "required" | "optional" | "disabled" | undefined;
11379
+ status?: "optional" | "required" | "disabled" | undefined;
11295
11380
  verification?: {
11296
11381
  active?: boolean | undefined;
11297
11382
  } | undefined;
@@ -11308,7 +11393,7 @@ declare function init(config: AuthHeroConfig): {
11308
11393
  active?: boolean | undefined;
11309
11394
  } | undefined;
11310
11395
  signup?: {
11311
- status?: "required" | "optional" | "disabled" | undefined;
11396
+ status?: "optional" | "required" | "disabled" | undefined;
11312
11397
  } | undefined;
11313
11398
  validation?: {
11314
11399
  max_length?: number | undefined;
@@ -11325,7 +11410,7 @@ declare function init(config: AuthHeroConfig): {
11325
11410
  active?: boolean | undefined;
11326
11411
  } | undefined;
11327
11412
  signup?: {
11328
- status?: "required" | "optional" | "disabled" | undefined;
11413
+ status?: "optional" | "required" | "disabled" | undefined;
11329
11414
  } | undefined;
11330
11415
  } | undefined;
11331
11416
  } | undefined;
@@ -11441,7 +11526,7 @@ declare function init(config: AuthHeroConfig): {
11441
11526
  active?: boolean | undefined;
11442
11527
  } | undefined;
11443
11528
  signup?: {
11444
- status?: "required" | "optional" | "disabled" | undefined;
11529
+ status?: "optional" | "required" | "disabled" | undefined;
11445
11530
  verification?: {
11446
11531
  active?: boolean | undefined;
11447
11532
  } | undefined;
@@ -11458,7 +11543,7 @@ declare function init(config: AuthHeroConfig): {
11458
11543
  active?: boolean | undefined;
11459
11544
  } | undefined;
11460
11545
  signup?: {
11461
- status?: "required" | "optional" | "disabled" | undefined;
11546
+ status?: "optional" | "required" | "disabled" | undefined;
11462
11547
  } | undefined;
11463
11548
  validation?: {
11464
11549
  max_length?: number | undefined;
@@ -11475,7 +11560,7 @@ declare function init(config: AuthHeroConfig): {
11475
11560
  active?: boolean | undefined;
11476
11561
  } | undefined;
11477
11562
  signup?: {
11478
- status?: "required" | "optional" | "disabled" | undefined;
11563
+ status?: "optional" | "required" | "disabled" | undefined;
11479
11564
  } | undefined;
11480
11565
  } | undefined;
11481
11566
  } | undefined;
@@ -11620,7 +11705,7 @@ declare function init(config: AuthHeroConfig): {
11620
11705
  active?: boolean | undefined;
11621
11706
  } | undefined;
11622
11707
  signup?: {
11623
- status?: "required" | "optional" | "disabled" | undefined;
11708
+ status?: "optional" | "required" | "disabled" | undefined;
11624
11709
  verification?: {
11625
11710
  active?: boolean | undefined;
11626
11711
  } | undefined;
@@ -11637,7 +11722,7 @@ declare function init(config: AuthHeroConfig): {
11637
11722
  active?: boolean | undefined;
11638
11723
  } | undefined;
11639
11724
  signup?: {
11640
- status?: "required" | "optional" | "disabled" | undefined;
11725
+ status?: "optional" | "required" | "disabled" | undefined;
11641
11726
  } | undefined;
11642
11727
  validation?: {
11643
11728
  max_length?: number | undefined;
@@ -11654,7 +11739,7 @@ declare function init(config: AuthHeroConfig): {
11654
11739
  active?: boolean | undefined;
11655
11740
  } | undefined;
11656
11741
  signup?: {
11657
- status?: "required" | "optional" | "disabled" | undefined;
11742
+ status?: "optional" | "required" | "disabled" | undefined;
11658
11743
  } | undefined;
11659
11744
  } | undefined;
11660
11745
  } | undefined;
@@ -11778,7 +11863,7 @@ declare function init(config: AuthHeroConfig): {
11778
11863
  active?: boolean | undefined;
11779
11864
  } | undefined;
11780
11865
  signup?: {
11781
- status?: "required" | "optional" | "disabled" | undefined;
11866
+ status?: "optional" | "required" | "disabled" | undefined;
11782
11867
  verification?: {
11783
11868
  active?: boolean | undefined;
11784
11869
  } | undefined;
@@ -11795,7 +11880,7 @@ declare function init(config: AuthHeroConfig): {
11795
11880
  active?: boolean | undefined;
11796
11881
  } | undefined;
11797
11882
  signup?: {
11798
- status?: "required" | "optional" | "disabled" | undefined;
11883
+ status?: "optional" | "required" | "disabled" | undefined;
11799
11884
  } | undefined;
11800
11885
  validation?: {
11801
11886
  max_length?: number | undefined;
@@ -11812,7 +11897,7 @@ declare function init(config: AuthHeroConfig): {
11812
11897
  active?: boolean | undefined;
11813
11898
  } | undefined;
11814
11899
  signup?: {
11815
- status?: "required" | "optional" | "disabled" | undefined;
11900
+ status?: "optional" | "required" | "disabled" | undefined;
11816
11901
  } | undefined;
11817
11902
  } | undefined;
11818
11903
  } | undefined;
@@ -11964,7 +12049,7 @@ declare function init(config: AuthHeroConfig): {
11964
12049
  tenant_id: string;
11965
12050
  created_at: string;
11966
12051
  updated_at: string;
11967
- deploymentStatus: "deployed" | "failed" | "not_required";
12052
+ deploymentStatus: "failed" | "deployed" | "not_required";
11968
12053
  secrets?: {
11969
12054
  [x: string]: string;
11970
12055
  } | undefined;
@@ -12054,7 +12139,7 @@ declare function init(config: AuthHeroConfig): {
12054
12139
  tenant_id: string;
12055
12140
  created_at: string;
12056
12141
  updated_at: string;
12057
- deploymentStatus: "deployed" | "failed" | "not_required";
12142
+ deploymentStatus: "failed" | "deployed" | "not_required";
12058
12143
  secrets?: {
12059
12144
  [x: string]: string;
12060
12145
  } | undefined;
@@ -12568,7 +12653,7 @@ declare function init(config: AuthHeroConfig): {
12568
12653
  log_type: string;
12569
12654
  category: "user_action" | "admin_action" | "system" | "api";
12570
12655
  actor: {
12571
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
12656
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
12572
12657
  id?: string | undefined;
12573
12658
  email?: string | undefined;
12574
12659
  org_id?: string | undefined;
@@ -12878,7 +12963,7 @@ declare function init(config: AuthHeroConfig): {
12878
12963
  created_at: string;
12879
12964
  updated_at: string;
12880
12965
  name: string;
12881
- provider: "auth0" | "cognito" | "okta" | "oidc";
12966
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12882
12967
  connection: string;
12883
12968
  enabled: boolean;
12884
12969
  credentials: {
@@ -12910,7 +12995,7 @@ declare function init(config: AuthHeroConfig): {
12910
12995
  created_at: string;
12911
12996
  updated_at: string;
12912
12997
  name: string;
12913
- provider: "auth0" | "cognito" | "okta" | "oidc";
12998
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12914
12999
  connection: string;
12915
13000
  enabled: boolean;
12916
13001
  credentials: {
@@ -12936,7 +13021,7 @@ declare function init(config: AuthHeroConfig): {
12936
13021
  } & {
12937
13022
  json: {
12938
13023
  name: string;
12939
- provider: "auth0" | "cognito" | "okta" | "oidc";
13024
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12940
13025
  connection: string;
12941
13026
  credentials: {
12942
13027
  domain: string;
@@ -12953,7 +13038,7 @@ declare function init(config: AuthHeroConfig): {
12953
13038
  created_at: string;
12954
13039
  updated_at: string;
12955
13040
  name: string;
12956
- provider: "auth0" | "cognito" | "okta" | "oidc";
13041
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12957
13042
  connection: string;
12958
13043
  enabled: boolean;
12959
13044
  credentials: {
@@ -12984,7 +13069,7 @@ declare function init(config: AuthHeroConfig): {
12984
13069
  json: {
12985
13070
  id?: string | undefined;
12986
13071
  name?: string | undefined;
12987
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
13072
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
12988
13073
  connection?: string | undefined;
12989
13074
  enabled?: boolean | undefined;
12990
13075
  credentials?: {
@@ -13000,7 +13085,7 @@ declare function init(config: AuthHeroConfig): {
13000
13085
  created_at: string;
13001
13086
  updated_at: string;
13002
13087
  name: string;
13003
- provider: "auth0" | "cognito" | "okta" | "oidc";
13088
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13004
13089
  connection: string;
13005
13090
  enabled: boolean;
13006
13091
  credentials: {
@@ -13048,7 +13133,7 @@ declare function init(config: AuthHeroConfig): {
13048
13133
  [x: string]: hono_utils_types.JSONValue;
13049
13134
  };
13050
13135
  id: string;
13051
- status: "suspended" | "active" | "paused";
13136
+ status: "active" | "suspended" | "paused";
13052
13137
  filters?: {
13053
13138
  type: string;
13054
13139
  name: string;
@@ -13080,7 +13165,7 @@ declare function init(config: AuthHeroConfig): {
13080
13165
  [x: string]: hono_utils_types.JSONValue;
13081
13166
  };
13082
13167
  id: string;
13083
- status: "suspended" | "active" | "paused";
13168
+ status: "active" | "suspended" | "paused";
13084
13169
  filters?: {
13085
13170
  type: string;
13086
13171
  name: string;
@@ -13105,7 +13190,7 @@ declare function init(config: AuthHeroConfig): {
13105
13190
  name: string;
13106
13191
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
13107
13192
  sink: Record<string, unknown>;
13108
- status?: "suspended" | "active" | "paused" | undefined;
13193
+ status?: "active" | "suspended" | "paused" | undefined;
13109
13194
  filters?: {
13110
13195
  type: string;
13111
13196
  name: string;
@@ -13120,7 +13205,7 @@ declare function init(config: AuthHeroConfig): {
13120
13205
  [x: string]: hono_utils_types.JSONValue;
13121
13206
  };
13122
13207
  id: string;
13123
- status: "suspended" | "active" | "paused";
13208
+ status: "active" | "suspended" | "paused";
13124
13209
  filters?: {
13125
13210
  type: string;
13126
13211
  name: string;
@@ -13155,7 +13240,7 @@ declare function init(config: AuthHeroConfig): {
13155
13240
  }[] | undefined;
13156
13241
  isPriority?: boolean | undefined;
13157
13242
  id?: string | undefined;
13158
- status?: "suspended" | "active" | "paused" | undefined;
13243
+ status?: "active" | "suspended" | "paused" | undefined;
13159
13244
  created_at?: string | undefined;
13160
13245
  updated_at?: string | undefined;
13161
13246
  };
@@ -13167,7 +13252,7 @@ declare function init(config: AuthHeroConfig): {
13167
13252
  [x: string]: hono_utils_types.JSONValue;
13168
13253
  };
13169
13254
  id: string;
13170
- status: "suspended" | "active" | "paused";
13255
+ status: "active" | "suspended" | "paused";
13171
13256
  filters?: {
13172
13257
  type: string;
13173
13258
  name: string;
@@ -13218,7 +13303,7 @@ declare function init(config: AuthHeroConfig): {
13218
13303
  };
13219
13304
  };
13220
13305
  output: {
13221
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13306
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13222
13307
  date: string;
13223
13308
  isMobile: boolean;
13224
13309
  log_id: string;
@@ -13257,7 +13342,7 @@ declare function init(config: AuthHeroConfig): {
13257
13342
  limit: number;
13258
13343
  length: number;
13259
13344
  logs: {
13260
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13345
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13261
13346
  date: string;
13262
13347
  isMobile: boolean;
13263
13348
  log_id: string;
@@ -13296,7 +13381,7 @@ declare function init(config: AuthHeroConfig): {
13296
13381
  next?: string | undefined;
13297
13382
  } | {
13298
13383
  logs: {
13299
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13384
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13300
13385
  date: string;
13301
13386
  isMobile: boolean;
13302
13387
  log_id: string;
@@ -13350,7 +13435,7 @@ declare function init(config: AuthHeroConfig): {
13350
13435
  };
13351
13436
  };
13352
13437
  output: {
13353
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13438
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13354
13439
  date: string;
13355
13440
  isMobile: boolean;
13356
13441
  log_id: string;
@@ -13761,7 +13846,7 @@ declare function init(config: AuthHeroConfig): {
13761
13846
  addons?: {
13762
13847
  [x: string]: any;
13763
13848
  } | undefined;
13764
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13849
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13765
13850
  client_metadata?: {
13766
13851
  [x: string]: string;
13767
13852
  } | undefined;
@@ -13863,7 +13948,7 @@ declare function init(config: AuthHeroConfig): {
13863
13948
  addons?: {
13864
13949
  [x: string]: any;
13865
13950
  } | undefined;
13866
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13951
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13867
13952
  client_metadata?: {
13868
13953
  [x: string]: string;
13869
13954
  } | undefined;
@@ -13965,7 +14050,7 @@ declare function init(config: AuthHeroConfig): {
13965
14050
  addons?: {
13966
14051
  [x: string]: any;
13967
14052
  } | undefined;
13968
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14053
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13969
14054
  client_metadata?: {
13970
14055
  [x: string]: string;
13971
14056
  } | undefined;
@@ -14082,7 +14167,7 @@ declare function init(config: AuthHeroConfig): {
14082
14167
  addons?: {
14083
14168
  [x: string]: any;
14084
14169
  } | undefined;
14085
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14170
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14086
14171
  client_metadata?: {
14087
14172
  [x: string]: string;
14088
14173
  } | undefined;
@@ -14200,7 +14285,7 @@ declare function init(config: AuthHeroConfig): {
14200
14285
  custom_login_page_preview?: string | undefined;
14201
14286
  form_template?: string | undefined;
14202
14287
  addons?: Record<string, any> | undefined;
14203
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14288
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14204
14289
  client_metadata?: Record<string, string> | undefined;
14205
14290
  hide_sign_up_disabled_error?: boolean | undefined;
14206
14291
  mobile?: Record<string, any> | undefined;
@@ -14286,7 +14371,7 @@ declare function init(config: AuthHeroConfig): {
14286
14371
  addons?: {
14287
14372
  [x: string]: any;
14288
14373
  } | undefined;
14289
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14374
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14290
14375
  client_metadata?: {
14291
14376
  [x: string]: string;
14292
14377
  } | undefined;
@@ -14383,7 +14468,7 @@ declare function init(config: AuthHeroConfig): {
14383
14468
  custom_login_page_preview?: string | undefined;
14384
14469
  form_template?: string | undefined;
14385
14470
  addons?: Record<string, any> | undefined;
14386
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14471
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14387
14472
  client_metadata?: Record<string, string> | undefined;
14388
14473
  hide_sign_up_disabled_error?: boolean | undefined;
14389
14474
  mobile?: Record<string, any> | undefined;
@@ -14469,7 +14554,7 @@ declare function init(config: AuthHeroConfig): {
14469
14554
  addons?: {
14470
14555
  [x: string]: any;
14471
14556
  } | undefined;
14472
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14557
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14473
14558
  client_metadata?: {
14474
14559
  [x: string]: string;
14475
14560
  } | undefined;
@@ -14591,7 +14676,7 @@ declare function init(config: AuthHeroConfig): {
14591
14676
  active?: boolean | undefined;
14592
14677
  } | undefined;
14593
14678
  signup?: {
14594
- status?: "required" | "optional" | "disabled" | undefined;
14679
+ status?: "optional" | "required" | "disabled" | undefined;
14595
14680
  verification?: {
14596
14681
  active?: boolean | undefined;
14597
14682
  } | undefined;
@@ -14608,7 +14693,7 @@ declare function init(config: AuthHeroConfig): {
14608
14693
  active?: boolean | undefined;
14609
14694
  } | undefined;
14610
14695
  signup?: {
14611
- status?: "required" | "optional" | "disabled" | undefined;
14696
+ status?: "optional" | "required" | "disabled" | undefined;
14612
14697
  } | undefined;
14613
14698
  validation?: {
14614
14699
  max_length?: number | undefined;
@@ -14625,7 +14710,7 @@ declare function init(config: AuthHeroConfig): {
14625
14710
  active?: boolean | undefined;
14626
14711
  } | undefined;
14627
14712
  signup?: {
14628
- status?: "required" | "optional" | "disabled" | undefined;
14713
+ status?: "optional" | "required" | "disabled" | undefined;
14629
14714
  } | undefined;
14630
14715
  } | undefined;
14631
14716
  } | undefined;
@@ -14745,7 +14830,7 @@ declare function init(config: AuthHeroConfig): {
14745
14830
  active?: boolean | undefined;
14746
14831
  } | undefined;
14747
14832
  signup?: {
14748
- status?: "required" | "optional" | "disabled" | undefined;
14833
+ status?: "optional" | "required" | "disabled" | undefined;
14749
14834
  verification?: {
14750
14835
  active?: boolean | undefined;
14751
14836
  } | undefined;
@@ -14762,7 +14847,7 @@ declare function init(config: AuthHeroConfig): {
14762
14847
  active?: boolean | undefined;
14763
14848
  } | undefined;
14764
14849
  signup?: {
14765
- status?: "required" | "optional" | "disabled" | undefined;
14850
+ status?: "optional" | "required" | "disabled" | undefined;
14766
14851
  } | undefined;
14767
14852
  validation?: {
14768
14853
  max_length?: number | undefined;
@@ -14779,7 +14864,7 @@ declare function init(config: AuthHeroConfig): {
14779
14864
  active?: boolean | undefined;
14780
14865
  } | undefined;
14781
14866
  signup?: {
14782
- status?: "required" | "optional" | "disabled" | undefined;
14867
+ status?: "optional" | "required" | "disabled" | undefined;
14783
14868
  } | undefined;
14784
14869
  } | undefined;
14785
14870
  } | undefined;
@@ -15805,7 +15890,7 @@ declare function init(config: AuthHeroConfig): {
15805
15890
  };
15806
15891
  };
15807
15892
  output: {
15808
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15893
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15809
15894
  date: string;
15810
15895
  isMobile: boolean;
15811
15896
  log_id: string;
@@ -15844,7 +15929,7 @@ declare function init(config: AuthHeroConfig): {
15844
15929
  limit: number;
15845
15930
  length: number;
15846
15931
  logs: {
15847
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15932
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15848
15933
  date: string;
15849
15934
  isMobile: boolean;
15850
15935
  log_id: string;
@@ -17026,12 +17111,12 @@ declare function init(config: AuthHeroConfig): {
17026
17111
  background_color: string;
17027
17112
  background_image_url: string;
17028
17113
  page_layout: "center" | "left" | "right";
17029
- logo_placement?: "widget" | "none" | "chip" | undefined;
17114
+ logo_placement?: "none" | "widget" | "chip" | undefined;
17030
17115
  };
17031
17116
  widget: {
17032
17117
  header_text_alignment: "center" | "left" | "right";
17033
17118
  logo_height: number;
17034
- logo_position: "center" | "left" | "right" | "none";
17119
+ logo_position: "none" | "center" | "left" | "right";
17035
17120
  logo_url: string;
17036
17121
  social_buttons_layout: "bottom" | "top";
17037
17122
  };
@@ -17116,12 +17201,12 @@ declare function init(config: AuthHeroConfig): {
17116
17201
  background_color: string;
17117
17202
  background_image_url: string;
17118
17203
  page_layout: "center" | "left" | "right";
17119
- logo_placement?: "widget" | "none" | "chip" | undefined;
17204
+ logo_placement?: "none" | "widget" | "chip" | undefined;
17120
17205
  };
17121
17206
  widget: {
17122
17207
  header_text_alignment: "center" | "left" | "right";
17123
17208
  logo_height: number;
17124
- logo_position: "center" | "left" | "right" | "none";
17209
+ logo_position: "none" | "center" | "left" | "right";
17125
17210
  logo_url: string;
17126
17211
  social_buttons_layout: "bottom" | "top";
17127
17212
  };
@@ -17195,12 +17280,12 @@ declare function init(config: AuthHeroConfig): {
17195
17280
  background_color: string;
17196
17281
  background_image_url: string;
17197
17282
  page_layout: "center" | "left" | "right";
17198
- logo_placement?: "widget" | "none" | "chip" | undefined;
17283
+ logo_placement?: "none" | "widget" | "chip" | undefined;
17199
17284
  };
17200
17285
  widget: {
17201
17286
  header_text_alignment: "center" | "left" | "right";
17202
17287
  logo_height: number;
17203
- logo_position: "center" | "left" | "right" | "none";
17288
+ logo_position: "none" | "center" | "left" | "right";
17204
17289
  logo_url: string;
17205
17290
  social_buttons_layout: "bottom" | "top";
17206
17291
  };
@@ -17357,7 +17442,7 @@ declare function init(config: AuthHeroConfig): {
17357
17442
  } & {
17358
17443
  json: {
17359
17444
  body?: string | undefined;
17360
- screen?: "password" | "login" | "identifier" | "signup" | undefined;
17445
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
17361
17446
  branding?: {
17362
17447
  colors?: {
17363
17448
  primary: string;
@@ -17443,12 +17528,12 @@ declare function init(config: AuthHeroConfig): {
17443
17528
  background_color: string;
17444
17529
  background_image_url: string;
17445
17530
  page_layout: "center" | "left" | "right";
17446
- logo_placement?: "widget" | "none" | "chip" | undefined;
17531
+ logo_placement?: "none" | "widget" | "chip" | undefined;
17447
17532
  } | undefined;
17448
17533
  widget?: {
17449
17534
  header_text_alignment: "center" | "left" | "right";
17450
17535
  logo_height: number;
17451
- logo_position: "center" | "left" | "right" | "none";
17536
+ logo_position: "none" | "center" | "left" | "right";
17452
17537
  logo_url: string;
17453
17538
  social_buttons_layout: "bottom" | "top";
17454
17539
  } | undefined;
@@ -17601,7 +17686,7 @@ declare function init(config: AuthHeroConfig): {
17601
17686
  output: {
17602
17687
  id: string;
17603
17688
  trigger_id: string;
17604
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
17689
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
17605
17690
  results: {
17606
17691
  action_name: string;
17607
17692
  error: {
@@ -17648,7 +17733,7 @@ declare function init(config: AuthHeroConfig): {
17648
17733
  logs: {
17649
17734
  action_name: string;
17650
17735
  lines: {
17651
- level: "error" | "log" | "info" | "warn" | "debug";
17736
+ level: "log" | "error" | "info" | "warn" | "debug";
17652
17737
  message: string;
17653
17738
  }[];
17654
17739
  }[];
@@ -18317,7 +18402,7 @@ declare function init(config: AuthHeroConfig): {
18317
18402
  args: hono_utils_types.JSONValue[];
18318
18403
  }[];
18319
18404
  logs: {
18320
- level: "error" | "log" | "info" | "warn" | "debug";
18405
+ level: "log" | "error" | "info" | "warn" | "debug";
18321
18406
  message: string;
18322
18407
  }[];
18323
18408
  error?: string | undefined;
@@ -18628,7 +18713,7 @@ declare function init(config: AuthHeroConfig): {
18628
18713
  scope?: string | undefined;
18629
18714
  grant_types?: string[] | undefined;
18630
18715
  response_types?: string[] | undefined;
18631
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
18716
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
18632
18717
  jwks_uri?: string | undefined;
18633
18718
  jwks?: Record<string, unknown> | undefined;
18634
18719
  software_id?: string | undefined;
@@ -18717,7 +18802,7 @@ declare function init(config: AuthHeroConfig): {
18717
18802
  scope?: string | undefined;
18718
18803
  grant_types?: string[] | undefined;
18719
18804
  response_types?: string[] | undefined;
18720
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
18805
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
18721
18806
  jwks_uri?: string | undefined;
18722
18807
  jwks?: Record<string, unknown> | undefined;
18723
18808
  software_id?: string | undefined;
@@ -19063,20 +19148,20 @@ declare function init(config: AuthHeroConfig): {
19063
19148
  email: string;
19064
19149
  send: "code" | "link";
19065
19150
  authParams: {
19066
- audience?: string | undefined;
19067
19151
  username?: string | undefined;
19068
- scope?: string | undefined;
19152
+ state?: string | undefined;
19153
+ audience?: string | undefined;
19069
19154
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19070
19155
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19071
- state?: string | undefined;
19072
- prompt?: string | undefined;
19073
- ui_locales?: string | undefined;
19156
+ scope?: string | undefined;
19074
19157
  organization?: string | undefined;
19158
+ nonce?: string | undefined;
19075
19159
  redirect_uri?: string | undefined;
19076
19160
  act_as?: string | undefined;
19077
- nonce?: string | undefined;
19161
+ prompt?: string | undefined;
19078
19162
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19079
19163
  code_challenge?: string | undefined;
19164
+ ui_locales?: string | undefined;
19080
19165
  max_age?: number | undefined;
19081
19166
  acr_values?: string | undefined;
19082
19167
  claims?: {
@@ -19099,20 +19184,20 @@ declare function init(config: AuthHeroConfig): {
19099
19184
  phone_number: string;
19100
19185
  send: "code" | "link";
19101
19186
  authParams: {
19102
- audience?: string | undefined;
19103
19187
  username?: string | undefined;
19104
- scope?: string | undefined;
19188
+ state?: string | undefined;
19189
+ audience?: string | undefined;
19105
19190
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19106
19191
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19107
- state?: string | undefined;
19108
- prompt?: string | undefined;
19109
- ui_locales?: string | undefined;
19192
+ scope?: string | undefined;
19110
19193
  organization?: string | undefined;
19194
+ nonce?: string | undefined;
19111
19195
  redirect_uri?: string | undefined;
19112
19196
  act_as?: string | undefined;
19113
- nonce?: string | undefined;
19197
+ prompt?: string | undefined;
19114
19198
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19115
19199
  code_challenge?: string | undefined;
19200
+ ui_locales?: string | undefined;
19116
19201
  max_age?: number | undefined;
19117
19202
  acr_values?: string | undefined;
19118
19203
  claims?: {
@@ -19243,14 +19328,14 @@ declare function init(config: AuthHeroConfig): {
19243
19328
  input: {
19244
19329
  form: {
19245
19330
  token: string;
19246
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19331
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19247
19332
  client_id?: string | undefined;
19248
19333
  client_secret?: string | undefined;
19249
19334
  };
19250
19335
  } & {
19251
19336
  json: {
19252
19337
  token: string;
19253
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19338
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19254
19339
  client_id?: string | undefined;
19255
19340
  client_secret?: string | undefined;
19256
19341
  };
@@ -19262,14 +19347,14 @@ declare function init(config: AuthHeroConfig): {
19262
19347
  input: {
19263
19348
  form: {
19264
19349
  token: string;
19265
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19350
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19266
19351
  client_id?: string | undefined;
19267
19352
  client_secret?: string | undefined;
19268
19353
  };
19269
19354
  } & {
19270
19355
  json: {
19271
19356
  token: string;
19272
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19357
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19273
19358
  client_id?: string | undefined;
19274
19359
  client_secret?: string | undefined;
19275
19360
  };
@@ -19284,14 +19369,14 @@ declare function init(config: AuthHeroConfig): {
19284
19369
  input: {
19285
19370
  form: {
19286
19371
  token: string;
19287
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19372
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19288
19373
  client_id?: string | undefined;
19289
19374
  client_secret?: string | undefined;
19290
19375
  };
19291
19376
  } & {
19292
19377
  json: {
19293
19378
  token: string;
19294
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19379
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19295
19380
  client_id?: string | undefined;
19296
19381
  client_secret?: string | undefined;
19297
19382
  };
@@ -20643,7 +20728,7 @@ declare function init(config: AuthHeroConfig): {
20643
20728
  } & {
20644
20729
  form: {
20645
20730
  username: string;
20646
- login_selection?: "password" | "code" | undefined;
20731
+ login_selection?: "code" | "password" | undefined;
20647
20732
  };
20648
20733
  };
20649
20734
  output: {};
@@ -20657,7 +20742,7 @@ declare function init(config: AuthHeroConfig): {
20657
20742
  } & {
20658
20743
  form: {
20659
20744
  username: string;
20660
- login_selection?: "password" | "code" | undefined;
20745
+ login_selection?: "code" | "password" | undefined;
20661
20746
  };
20662
20747
  };
20663
20748
  output: {};
@@ -21022,7 +21107,7 @@ declare function init(config: AuthHeroConfig): {
21022
21107
  $get: {
21023
21108
  input: {
21024
21109
  param: {
21025
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21110
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21026
21111
  };
21027
21112
  } & {
21028
21113
  query: {
@@ -21038,7 +21123,7 @@ declare function init(config: AuthHeroConfig): {
21038
21123
  } | {
21039
21124
  input: {
21040
21125
  param: {
21041
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21126
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21042
21127
  };
21043
21128
  } & {
21044
21129
  query: {
@@ -21054,7 +21139,7 @@ declare function init(config: AuthHeroConfig): {
21054
21139
  } | {
21055
21140
  input: {
21056
21141
  param: {
21057
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21142
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21058
21143
  };
21059
21144
  } & {
21060
21145
  query: {
@@ -21074,7 +21159,7 @@ declare function init(config: AuthHeroConfig): {
21074
21159
  $post: {
21075
21160
  input: {
21076
21161
  param: {
21077
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21162
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21078
21163
  };
21079
21164
  } & {
21080
21165
  query: {
@@ -21092,7 +21177,7 @@ declare function init(config: AuthHeroConfig): {
21092
21177
  } | {
21093
21178
  input: {
21094
21179
  param: {
21095
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21180
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21096
21181
  };
21097
21182
  } & {
21098
21183
  query: {
@@ -21190,5 +21275,5 @@ declare function init(config: AuthHeroConfig): {
21190
21275
  createX509Certificate: typeof createX509Certificate;
21191
21276
  };
21192
21277
 
21193
- export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
21194
- export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
21278
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
21279
+ export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };