authhero 8.26.1 → 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 (41) 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 +218 -133
  4. package/dist/authhero.mjs +6292 -6240
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  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 +129 -127
  12. package/dist/types/routes/auth-api/index.d.ts +24 -24
  13. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  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/auth-api/token.d.ts +10 -10
  17. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  18. package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
  19. package/dist/types/routes/management-api/actions.d.ts +1 -1
  20. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  21. package/dist/types/routes/management-api/branding.d.ts +1 -1
  22. package/dist/types/routes/management-api/clients.d.ts +8 -8
  23. package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
  24. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  25. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  26. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  27. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  28. package/dist/types/routes/management-api/index.d.ts +92 -92
  29. package/dist/types/routes/management-api/logs.d.ts +4 -4
  30. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  31. package/dist/types/routes/management-api/organizations.d.ts +6 -6
  32. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  33. package/dist/types/routes/management-api/roles.d.ts +1 -1
  34. package/dist/types/routes/management-api/tenant-operations.d.ts +4 -4
  35. package/dist/types/routes/management-api/users.d.ts +2 -2
  36. package/dist/types/routes/universal-login/common.d.ts +2 -2
  37. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  38. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  39. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  40. package/dist/types/types/IdToken.d.ts +1 -1
  41. package/package.json +5 -5
@@ -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: "email" | "sms" | "otp" | "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: "email" | "sms" | "otp" | "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: "email" | "sms" | "otp" | "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: "email" | "sms" | "otp" | "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: "email" | "sms" | "otp" | "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" | "organizations" | "signup" | "login" | "mfa" | "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" | "organizations" | "signup" | "login" | "mfa" | "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" | "organizations" | "signup" | "login" | "mfa" | "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" | "organizations" | "signup" | "login" | "mfa" | "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;
@@ -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: {
@@ -13218,7 +13303,7 @@ declare function init(config: AuthHeroConfig): {
13218
13303
  };
13219
13304
  };
13220
13305
  output: {
13221
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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;
@@ -16163,7 +16248,7 @@ declare function init(config: AuthHeroConfig): {
16163
16248
  };
16164
16249
  } & {
16165
16250
  json: {
16166
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16251
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16167
16252
  body: string;
16168
16253
  from: string;
16169
16254
  subject: string;
@@ -16184,7 +16269,7 @@ declare function init(config: AuthHeroConfig): {
16184
16269
  };
16185
16270
  } & {
16186
16271
  json: {
16187
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16272
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16188
16273
  body: string;
16189
16274
  from: string;
16190
16275
  subject: string;
@@ -16196,7 +16281,7 @@ declare function init(config: AuthHeroConfig): {
16196
16281
  };
16197
16282
  };
16198
16283
  output: {
16199
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16284
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16200
16285
  body: string;
16201
16286
  from: string;
16202
16287
  subject: string;
@@ -16219,7 +16304,7 @@ declare function init(config: AuthHeroConfig): {
16219
16304
  };
16220
16305
  };
16221
16306
  output: {
16222
- name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16307
+ name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16223
16308
  body: string;
16224
16309
  subject: string;
16225
16310
  }[];
@@ -16232,7 +16317,7 @@ declare function init(config: AuthHeroConfig): {
16232
16317
  $get: {
16233
16318
  input: {
16234
16319
  param: {
16235
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16320
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16236
16321
  };
16237
16322
  } & {
16238
16323
  header: {
@@ -16245,7 +16330,7 @@ declare function init(config: AuthHeroConfig): {
16245
16330
  } | {
16246
16331
  input: {
16247
16332
  param: {
16248
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16333
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16249
16334
  };
16250
16335
  } & {
16251
16336
  header: {
@@ -16253,7 +16338,7 @@ declare function init(config: AuthHeroConfig): {
16253
16338
  };
16254
16339
  };
16255
16340
  output: {
16256
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16341
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16257
16342
  body: string;
16258
16343
  from: string;
16259
16344
  subject: string;
@@ -16272,7 +16357,7 @@ declare function init(config: AuthHeroConfig): {
16272
16357
  $put: {
16273
16358
  input: {
16274
16359
  param: {
16275
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16360
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16276
16361
  };
16277
16362
  } & {
16278
16363
  header: {
@@ -16280,7 +16365,7 @@ declare function init(config: AuthHeroConfig): {
16280
16365
  };
16281
16366
  } & {
16282
16367
  json: {
16283
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16368
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16284
16369
  body: string;
16285
16370
  subject: string;
16286
16371
  syntax?: "liquid" | undefined;
@@ -16292,7 +16377,7 @@ declare function init(config: AuthHeroConfig): {
16292
16377
  };
16293
16378
  };
16294
16379
  output: {
16295
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16380
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16296
16381
  body: string;
16297
16382
  from: string;
16298
16383
  subject: string;
@@ -16311,7 +16396,7 @@ declare function init(config: AuthHeroConfig): {
16311
16396
  $patch: {
16312
16397
  input: {
16313
16398
  param: {
16314
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16399
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16315
16400
  };
16316
16401
  } & {
16317
16402
  header: {
@@ -16319,7 +16404,7 @@ declare function init(config: AuthHeroConfig): {
16319
16404
  };
16320
16405
  } & {
16321
16406
  json: {
16322
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16407
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16323
16408
  body?: string | undefined;
16324
16409
  from?: string | undefined;
16325
16410
  subject?: string | undefined;
@@ -16336,7 +16421,7 @@ declare function init(config: AuthHeroConfig): {
16336
16421
  } | {
16337
16422
  input: {
16338
16423
  param: {
16339
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16424
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16340
16425
  };
16341
16426
  } & {
16342
16427
  header: {
@@ -16344,7 +16429,7 @@ declare function init(config: AuthHeroConfig): {
16344
16429
  };
16345
16430
  } & {
16346
16431
  json: {
16347
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16432
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16348
16433
  body?: string | undefined;
16349
16434
  from?: string | undefined;
16350
16435
  subject?: string | undefined;
@@ -16356,7 +16441,7 @@ declare function init(config: AuthHeroConfig): {
16356
16441
  };
16357
16442
  };
16358
16443
  output: {
16359
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16444
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16360
16445
  body: string;
16361
16446
  from: string;
16362
16447
  subject: string;
@@ -16375,7 +16460,7 @@ declare function init(config: AuthHeroConfig): {
16375
16460
  $delete: {
16376
16461
  input: {
16377
16462
  param: {
16378
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16463
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16379
16464
  };
16380
16465
  } & {
16381
16466
  header: {
@@ -16388,7 +16473,7 @@ declare function init(config: AuthHeroConfig): {
16388
16473
  } | {
16389
16474
  input: {
16390
16475
  param: {
16391
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16476
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16392
16477
  };
16393
16478
  } & {
16394
16479
  header: {
@@ -16405,7 +16490,7 @@ declare function init(config: AuthHeroConfig): {
16405
16490
  $post: {
16406
16491
  input: {
16407
16492
  param: {
16408
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16493
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16409
16494
  };
16410
16495
  } & {
16411
16496
  header: {
@@ -16688,7 +16773,7 @@ declare function init(config: AuthHeroConfig): {
16688
16773
  type: "auth0_managed_certs" | "self_managed_certs";
16689
16774
  custom_domain_id: string;
16690
16775
  primary: boolean;
16691
- status: "disabled" | "pending" | "ready" | "pending_verification";
16776
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16692
16777
  verification_method?: "txt" | undefined;
16693
16778
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16694
16779
  domain_metadata?: {
@@ -16729,7 +16814,7 @@ declare function init(config: AuthHeroConfig): {
16729
16814
  type: "auth0_managed_certs" | "self_managed_certs";
16730
16815
  custom_domain_id: string;
16731
16816
  primary: boolean;
16732
- status: "disabled" | "pending" | "ready" | "pending_verification";
16817
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16733
16818
  verification_method?: "txt" | undefined;
16734
16819
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16735
16820
  domain_metadata?: {
@@ -16793,7 +16878,7 @@ declare function init(config: AuthHeroConfig): {
16793
16878
  type: "auth0_managed_certs" | "self_managed_certs";
16794
16879
  custom_domain_id: string;
16795
16880
  primary: boolean;
16796
- status: "disabled" | "pending" | "ready" | "pending_verification";
16881
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16797
16882
  verification_method?: "txt" | undefined;
16798
16883
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16799
16884
  domain_metadata?: {
@@ -16840,7 +16925,7 @@ declare function init(config: AuthHeroConfig): {
16840
16925
  type: "auth0_managed_certs" | "self_managed_certs";
16841
16926
  custom_domain_id: string;
16842
16927
  primary: boolean;
16843
- status: "disabled" | "pending" | "ready" | "pending_verification";
16928
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16844
16929
  verification_method?: "txt" | undefined;
16845
16930
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16846
16931
  domain_metadata?: {
@@ -16886,7 +16971,7 @@ declare function init(config: AuthHeroConfig): {
16886
16971
  type: "auth0_managed_certs" | "self_managed_certs";
16887
16972
  custom_domain_id: string;
16888
16973
  primary: boolean;
16889
- status: "disabled" | "pending" | "ready" | "pending_verification";
16974
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16890
16975
  verification_method?: "txt" | undefined;
16891
16976
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16892
16977
  domain_metadata?: {
@@ -16927,7 +17012,7 @@ declare function init(config: AuthHeroConfig): {
16927
17012
  type: "auth0_managed_certs" | "self_managed_certs";
16928
17013
  custom_domain_id: string;
16929
17014
  primary: boolean;
16930
- status: "disabled" | "pending" | "ready" | "pending_verification";
17015
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16931
17016
  verification_method?: "txt" | undefined;
16932
17017
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16933
17018
  domain_metadata?: {
@@ -17357,7 +17442,7 @@ declare function init(config: AuthHeroConfig): {
17357
17442
  } & {
17358
17443
  json: {
17359
17444
  body?: string | undefined;
17360
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
17445
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
17361
17446
  branding?: {
17362
17447
  colors?: {
17363
17448
  primary: string;
@@ -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;
@@ -19064,16 +19149,16 @@ declare function init(config: AuthHeroConfig): {
19064
19149
  send: "code" | "link";
19065
19150
  authParams: {
19066
19151
  username?: string | undefined;
19067
- audience?: string | undefined;
19068
- scope?: string | undefined;
19069
19152
  state?: string | undefined;
19153
+ audience?: string | undefined;
19070
19154
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19071
19155
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19072
- prompt?: string | undefined;
19073
- act_as?: string | undefined;
19074
- redirect_uri?: string | undefined;
19156
+ scope?: string | undefined;
19075
19157
  organization?: string | undefined;
19076
19158
  nonce?: string | undefined;
19159
+ redirect_uri?: string | undefined;
19160
+ act_as?: string | undefined;
19161
+ prompt?: string | undefined;
19077
19162
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19078
19163
  code_challenge?: string | undefined;
19079
19164
  ui_locales?: string | undefined;
@@ -19100,16 +19185,16 @@ declare function init(config: AuthHeroConfig): {
19100
19185
  send: "code" | "link";
19101
19186
  authParams: {
19102
19187
  username?: string | undefined;
19103
- audience?: string | undefined;
19104
- scope?: string | undefined;
19105
19188
  state?: string | undefined;
19189
+ audience?: string | undefined;
19106
19190
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19107
19191
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19108
- prompt?: string | undefined;
19109
- act_as?: string | undefined;
19110
- redirect_uri?: string | undefined;
19192
+ scope?: string | undefined;
19111
19193
  organization?: string | undefined;
19112
19194
  nonce?: string | undefined;
19195
+ redirect_uri?: string | undefined;
19196
+ act_as?: string | undefined;
19197
+ prompt?: string | undefined;
19113
19198
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19114
19199
  code_challenge?: string | undefined;
19115
19200
  ui_locales?: string | undefined;
@@ -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
  };
@@ -19341,7 +19426,7 @@ declare function init(config: AuthHeroConfig): {
19341
19426
  client_id: string;
19342
19427
  username: string;
19343
19428
  otp: string;
19344
- realm: "email" | "sms";
19429
+ realm: "sms" | "email";
19345
19430
  } | {
19346
19431
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19347
19432
  subject_token: string;
@@ -19388,7 +19473,7 @@ declare function init(config: AuthHeroConfig): {
19388
19473
  client_id: string;
19389
19474
  username: string;
19390
19475
  otp: string;
19391
- realm: "email" | "sms";
19476
+ realm: "sms" | "email";
19392
19477
  } | {
19393
19478
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19394
19479
  subject_token: string;
@@ -19440,7 +19525,7 @@ declare function init(config: AuthHeroConfig): {
19440
19525
  client_id: string;
19441
19526
  username: string;
19442
19527
  otp: string;
19443
- realm: "email" | "sms";
19528
+ realm: "sms" | "email";
19444
19529
  } | {
19445
19530
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19446
19531
  subject_token: string;
@@ -19487,7 +19572,7 @@ declare function init(config: AuthHeroConfig): {
19487
19572
  client_id: string;
19488
19573
  username: string;
19489
19574
  otp: string;
19490
- realm: "email" | "sms";
19575
+ realm: "sms" | "email";
19491
19576
  } | {
19492
19577
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19493
19578
  subject_token: string;
@@ -19547,7 +19632,7 @@ declare function init(config: AuthHeroConfig): {
19547
19632
  client_id: string;
19548
19633
  username: string;
19549
19634
  otp: string;
19550
- realm: "email" | "sms";
19635
+ realm: "sms" | "email";
19551
19636
  } | {
19552
19637
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19553
19638
  subject_token: string;
@@ -19594,7 +19679,7 @@ declare function init(config: AuthHeroConfig): {
19594
19679
  client_id: string;
19595
19680
  username: string;
19596
19681
  otp: string;
19597
- realm: "email" | "sms";
19682
+ realm: "sms" | "email";
19598
19683
  } | {
19599
19684
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19600
19685
  subject_token: string;
@@ -19649,7 +19734,7 @@ declare function init(config: AuthHeroConfig): {
19649
19734
  client_id: string;
19650
19735
  username: string;
19651
19736
  otp: string;
19652
- realm: "email" | "sms";
19737
+ realm: "sms" | "email";
19653
19738
  } | {
19654
19739
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19655
19740
  subject_token: string;
@@ -19696,7 +19781,7 @@ declare function init(config: AuthHeroConfig): {
19696
19781
  client_id: string;
19697
19782
  username: string;
19698
19783
  otp: string;
19699
- realm: "email" | "sms";
19784
+ realm: "sms" | "email";
19700
19785
  } | {
19701
19786
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19702
19787
  subject_token: string;
@@ -19751,7 +19836,7 @@ declare function init(config: AuthHeroConfig): {
19751
19836
  client_id: string;
19752
19837
  username: string;
19753
19838
  otp: string;
19754
- realm: "email" | "sms";
19839
+ realm: "sms" | "email";
19755
19840
  } | {
19756
19841
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19757
19842
  subject_token: string;
@@ -19798,7 +19883,7 @@ declare function init(config: AuthHeroConfig): {
19798
19883
  client_id: string;
19799
19884
  username: string;
19800
19885
  otp: string;
19801
- realm: "email" | "sms";
19886
+ realm: "sms" | "email";
19802
19887
  } | {
19803
19888
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19804
19889
  subject_token: string;
@@ -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: "signup" | "login" | "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: "signup" | "login" | "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: "signup" | "login" | "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: "signup" | "login" | "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: "signup" | "login" | "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 };