authhero 8.25.2 → 8.26.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/authhero.cjs +116 -116
  2. package/dist/authhero.d.ts +165 -137
  3. package/dist/authhero.mjs +102 -87
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  6. package/dist/types/helpers/codes-cleanup.d.ts +28 -0
  7. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  8. package/dist/types/index.d.ts +136 -134
  9. package/dist/types/routes/auth-api/index.d.ts +24 -24
  10. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  11. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  12. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  13. package/dist/types/routes/auth-api/token.d.ts +10 -10
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
  16. package/dist/types/routes/management-api/actions.d.ts +1 -1
  17. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  18. package/dist/types/routes/management-api/branding.d.ts +1 -1
  19. package/dist/types/routes/management-api/clients.d.ts +10 -10
  20. package/dist/types/routes/management-api/connections.d.ts +5 -5
  21. package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
  22. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  23. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  26. package/dist/types/routes/management-api/index.d.ts +99 -99
  27. package/dist/types/routes/management-api/logs.d.ts +4 -4
  28. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  29. package/dist/types/routes/management-api/organizations.d.ts +6 -6
  30. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  31. package/dist/types/routes/management-api/roles.d.ts +1 -1
  32. package/dist/types/routes/management-api/tenant-operations.d.ts +4 -4
  33. package/dist/types/routes/management-api/users.d.ts +2 -2
  34. package/dist/types/routes/universal-login/common.d.ts +4 -4
  35. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  36. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  37. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  38. package/package.json +6 -6
@@ -1,6 +1,6 @@
1
1
  import * as hono_utils_types from 'hono/utils/types';
2
2
  import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
3
- import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
3
+ import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, CodesAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
4
4
  export * from '@authhero/adapter-interfaces';
5
5
  import * as hono_types from 'hono/types';
6
6
  import * as hono_utils_http_status from 'hono/utils/http-status';
@@ -2710,6 +2710,34 @@ interface OutboxCleanupParams {
2710
2710
  */
2711
2711
  declare function cleanupOutbox(outbox: OutboxAdapter, params?: OutboxCleanupParams): Promise<number>;
2712
2712
 
2713
+ interface CodesCleanupParams {
2714
+ /**
2715
+ * Grace period, in days, to keep codes past their expiry. Defaults to 1.
2716
+ *
2717
+ * Codes are dead the moment they expire, so this is not a retention policy
2718
+ * so much as a safety margin against clock skew — and it keeps recently
2719
+ * expired codes around briefly for debugging a failed flow.
2720
+ */
2721
+ retentionDays?: number;
2722
+ }
2723
+ /**
2724
+ * Delete codes that expired more than the retention window ago.
2725
+ * Intended for use in a scheduled handler / cron job.
2726
+ *
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.
2730
+ *
2731
+ * @example
2732
+ * ```ts
2733
+ * // Cloudflare Workers scheduled handler
2734
+ * async scheduled(_event, env) {
2735
+ * await cleanupCodes(dataAdapter.codes, { retentionDays: 1 });
2736
+ * }
2737
+ * ```
2738
+ */
2739
+ declare function cleanupCodes(codes: CodesAdapter, params?: CodesCleanupParams): Promise<number>;
2740
+
2713
2741
  /**
2714
2742
  * Mints a Bearer token for a given tenant. `scope` is forwarded so a custom
2715
2743
  * `webhookInvoker` can request a non-default scope for its outbound call.
@@ -4044,8 +4072,8 @@ declare function init(config: AuthHeroConfig): {
4044
4072
  $get: {
4045
4073
  input: {
4046
4074
  query: {
4047
- include_password_hashes?: "true" | "false" | undefined;
4048
- gzip?: "true" | "false" | undefined;
4075
+ include_password_hashes?: "false" | "true" | undefined;
4076
+ gzip?: "false" | "true" | undefined;
4049
4077
  };
4050
4078
  } & {
4051
4079
  header: {
@@ -4058,8 +4086,8 @@ declare function init(config: AuthHeroConfig): {
4058
4086
  } | {
4059
4087
  input: {
4060
4088
  query: {
4061
- include_password_hashes?: "true" | "false" | undefined;
4062
- gzip?: "true" | "false" | undefined;
4089
+ include_password_hashes?: "false" | "true" | undefined;
4090
+ gzip?: "false" | "true" | undefined;
4063
4091
  };
4064
4092
  } & {
4065
4093
  header: {
@@ -4078,7 +4106,7 @@ declare function init(config: AuthHeroConfig): {
4078
4106
  $post: {
4079
4107
  input: {
4080
4108
  query: {
4081
- include_password_hashes?: "true" | "false" | undefined;
4109
+ include_password_hashes?: "false" | "true" | undefined;
4082
4110
  };
4083
4111
  } & {
4084
4112
  header: {
@@ -4132,7 +4160,7 @@ declare function init(config: AuthHeroConfig): {
4132
4160
  };
4133
4161
  } & {
4134
4162
  json: {
4135
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
4163
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
4136
4164
  phone_number?: string | undefined;
4137
4165
  totp_secret?: string | undefined;
4138
4166
  credential_id?: string | undefined;
@@ -4272,7 +4300,7 @@ declare function init(config: AuthHeroConfig): {
4272
4300
  };
4273
4301
  };
4274
4302
  output: {
4275
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4303
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4276
4304
  enabled: boolean;
4277
4305
  trial_expired?: boolean | undefined;
4278
4306
  }[];
@@ -4427,7 +4455,7 @@ declare function init(config: AuthHeroConfig): {
4427
4455
  $get: {
4428
4456
  input: {
4429
4457
  param: {
4430
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4458
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4431
4459
  };
4432
4460
  } & {
4433
4461
  header: {
@@ -4435,7 +4463,7 @@ declare function init(config: AuthHeroConfig): {
4435
4463
  };
4436
4464
  };
4437
4465
  output: {
4438
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4466
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4439
4467
  enabled: boolean;
4440
4468
  trial_expired?: boolean | undefined;
4441
4469
  };
@@ -4448,7 +4476,7 @@ declare function init(config: AuthHeroConfig): {
4448
4476
  $put: {
4449
4477
  input: {
4450
4478
  param: {
4451
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4479
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4452
4480
  };
4453
4481
  } & {
4454
4482
  header: {
@@ -4460,7 +4488,7 @@ declare function init(config: AuthHeroConfig): {
4460
4488
  };
4461
4489
  };
4462
4490
  output: {
4463
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4491
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4464
4492
  enabled: boolean;
4465
4493
  trial_expired?: boolean | undefined;
4466
4494
  };
@@ -5232,19 +5260,19 @@ declare function init(config: AuthHeroConfig): {
5232
5260
  } & {
5233
5261
  json: {
5234
5262
  client_id: string;
5235
- invitee: {
5236
- email?: string | undefined;
5237
- };
5238
5263
  inviter: {
5239
5264
  name?: string | undefined;
5240
5265
  };
5266
+ invitee: {
5267
+ email?: string | undefined;
5268
+ };
5241
5269
  id?: string | undefined;
5242
5270
  app_metadata?: Record<string, any> | undefined;
5243
5271
  user_metadata?: Record<string, any> | undefined;
5244
5272
  connection_id?: string | undefined;
5245
5273
  roles?: string[] | undefined;
5246
- send_invitation_email?: boolean | undefined;
5247
5274
  ttl_sec?: number | undefined;
5275
+ send_invitation_email?: boolean | undefined;
5248
5276
  };
5249
5277
  };
5250
5278
  output: {
@@ -5427,8 +5455,8 @@ declare function init(config: AuthHeroConfig): {
5427
5455
  };
5428
5456
  } & {
5429
5457
  json: {
5430
- show_as_button?: boolean | undefined;
5431
5458
  assign_membership_on_login?: boolean | undefined;
5459
+ show_as_button?: boolean | undefined;
5432
5460
  is_signup_enabled?: boolean | undefined;
5433
5461
  };
5434
5462
  };
@@ -5999,9 +6027,9 @@ declare function init(config: AuthHeroConfig): {
5999
6027
  };
6000
6028
  } & {
6001
6029
  query: {
6002
- from?: string | undefined;
6003
6030
  page?: string | undefined;
6004
6031
  include_totals?: string | undefined;
6032
+ from?: string | undefined;
6005
6033
  per_page?: string | undefined;
6006
6034
  take?: string | undefined;
6007
6035
  };
@@ -10953,7 +10981,7 @@ declare function init(config: AuthHeroConfig): {
10953
10981
  };
10954
10982
  };
10955
10983
  output: {
10956
- 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";
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";
10957
10985
  language: string;
10958
10986
  }[];
10959
10987
  outputFormat: "json";
@@ -10991,7 +11019,7 @@ declare function init(config: AuthHeroConfig): {
10991
11019
  $get: {
10992
11020
  input: {
10993
11021
  param: {
10994
- 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";
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";
10995
11023
  language: string;
10996
11024
  };
10997
11025
  } & {
@@ -11013,7 +11041,7 @@ declare function init(config: AuthHeroConfig): {
11013
11041
  $put: {
11014
11042
  input: {
11015
11043
  param: {
11016
- 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";
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";
11017
11045
  language: string;
11018
11046
  };
11019
11047
  } & {
@@ -11037,7 +11065,7 @@ declare function init(config: AuthHeroConfig): {
11037
11065
  $delete: {
11038
11066
  input: {
11039
11067
  param: {
11040
- 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";
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";
11041
11069
  language: string;
11042
11070
  };
11043
11071
  } & {
@@ -11129,7 +11157,7 @@ declare function init(config: AuthHeroConfig): {
11129
11157
  active?: boolean | undefined;
11130
11158
  } | undefined;
11131
11159
  signup?: {
11132
- status?: "optional" | "required" | "disabled" | undefined;
11160
+ status?: "required" | "optional" | "disabled" | undefined;
11133
11161
  verification?: {
11134
11162
  active?: boolean | undefined;
11135
11163
  } | undefined;
@@ -11146,7 +11174,7 @@ declare function init(config: AuthHeroConfig): {
11146
11174
  active?: boolean | undefined;
11147
11175
  } | undefined;
11148
11176
  signup?: {
11149
- status?: "optional" | "required" | "disabled" | undefined;
11177
+ status?: "required" | "optional" | "disabled" | undefined;
11150
11178
  } | undefined;
11151
11179
  validation?: {
11152
11180
  max_length?: number | undefined;
@@ -11163,7 +11191,7 @@ declare function init(config: AuthHeroConfig): {
11163
11191
  active?: boolean | undefined;
11164
11192
  } | undefined;
11165
11193
  signup?: {
11166
- status?: "optional" | "required" | "disabled" | undefined;
11194
+ status?: "required" | "optional" | "disabled" | undefined;
11167
11195
  } | undefined;
11168
11196
  } | undefined;
11169
11197
  } | undefined;
@@ -11176,7 +11204,7 @@ declare function init(config: AuthHeroConfig): {
11176
11204
  } | undefined;
11177
11205
  } | undefined;
11178
11206
  passkey_options?: {
11179
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11207
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11180
11208
  local_enrollment_enabled?: boolean | undefined;
11181
11209
  progressive_enrollment_enabled?: boolean | undefined;
11182
11210
  } | undefined;
@@ -11263,7 +11291,7 @@ declare function init(config: AuthHeroConfig): {
11263
11291
  active?: boolean | undefined;
11264
11292
  } | undefined;
11265
11293
  signup?: {
11266
- status?: "optional" | "required" | "disabled" | undefined;
11294
+ status?: "required" | "optional" | "disabled" | undefined;
11267
11295
  verification?: {
11268
11296
  active?: boolean | undefined;
11269
11297
  } | undefined;
@@ -11280,7 +11308,7 @@ declare function init(config: AuthHeroConfig): {
11280
11308
  active?: boolean | undefined;
11281
11309
  } | undefined;
11282
11310
  signup?: {
11283
- status?: "optional" | "required" | "disabled" | undefined;
11311
+ status?: "required" | "optional" | "disabled" | undefined;
11284
11312
  } | undefined;
11285
11313
  validation?: {
11286
11314
  max_length?: number | undefined;
@@ -11297,7 +11325,7 @@ declare function init(config: AuthHeroConfig): {
11297
11325
  active?: boolean | undefined;
11298
11326
  } | undefined;
11299
11327
  signup?: {
11300
- status?: "optional" | "required" | "disabled" | undefined;
11328
+ status?: "required" | "optional" | "disabled" | undefined;
11301
11329
  } | undefined;
11302
11330
  } | undefined;
11303
11331
  } | undefined;
@@ -11310,7 +11338,7 @@ declare function init(config: AuthHeroConfig): {
11310
11338
  } | undefined;
11311
11339
  } | undefined;
11312
11340
  passkey_options?: {
11313
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11341
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11314
11342
  local_enrollment_enabled?: boolean | undefined;
11315
11343
  progressive_enrollment_enabled?: boolean | undefined;
11316
11344
  } | undefined;
@@ -11413,7 +11441,7 @@ declare function init(config: AuthHeroConfig): {
11413
11441
  active?: boolean | undefined;
11414
11442
  } | undefined;
11415
11443
  signup?: {
11416
- status?: "optional" | "required" | "disabled" | undefined;
11444
+ status?: "required" | "optional" | "disabled" | undefined;
11417
11445
  verification?: {
11418
11446
  active?: boolean | undefined;
11419
11447
  } | undefined;
@@ -11430,7 +11458,7 @@ declare function init(config: AuthHeroConfig): {
11430
11458
  active?: boolean | undefined;
11431
11459
  } | undefined;
11432
11460
  signup?: {
11433
- status?: "optional" | "required" | "disabled" | undefined;
11461
+ status?: "required" | "optional" | "disabled" | undefined;
11434
11462
  } | undefined;
11435
11463
  validation?: {
11436
11464
  max_length?: number | undefined;
@@ -11447,7 +11475,7 @@ declare function init(config: AuthHeroConfig): {
11447
11475
  active?: boolean | undefined;
11448
11476
  } | undefined;
11449
11477
  signup?: {
11450
- status?: "optional" | "required" | "disabled" | undefined;
11478
+ status?: "required" | "optional" | "disabled" | undefined;
11451
11479
  } | undefined;
11452
11480
  } | undefined;
11453
11481
  } | undefined;
@@ -11460,7 +11488,7 @@ declare function init(config: AuthHeroConfig): {
11460
11488
  } | undefined;
11461
11489
  } | undefined;
11462
11490
  passkey_options?: {
11463
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11491
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11464
11492
  local_enrollment_enabled?: boolean | undefined;
11465
11493
  progressive_enrollment_enabled?: boolean | undefined;
11466
11494
  } | undefined;
@@ -11592,7 +11620,7 @@ declare function init(config: AuthHeroConfig): {
11592
11620
  active?: boolean | undefined;
11593
11621
  } | undefined;
11594
11622
  signup?: {
11595
- status?: "optional" | "required" | "disabled" | undefined;
11623
+ status?: "required" | "optional" | "disabled" | undefined;
11596
11624
  verification?: {
11597
11625
  active?: boolean | undefined;
11598
11626
  } | undefined;
@@ -11609,7 +11637,7 @@ declare function init(config: AuthHeroConfig): {
11609
11637
  active?: boolean | undefined;
11610
11638
  } | undefined;
11611
11639
  signup?: {
11612
- status?: "optional" | "required" | "disabled" | undefined;
11640
+ status?: "required" | "optional" | "disabled" | undefined;
11613
11641
  } | undefined;
11614
11642
  validation?: {
11615
11643
  max_length?: number | undefined;
@@ -11626,7 +11654,7 @@ declare function init(config: AuthHeroConfig): {
11626
11654
  active?: boolean | undefined;
11627
11655
  } | undefined;
11628
11656
  signup?: {
11629
- status?: "optional" | "required" | "disabled" | undefined;
11657
+ status?: "required" | "optional" | "disabled" | undefined;
11630
11658
  } | undefined;
11631
11659
  } | undefined;
11632
11660
  } | undefined;
@@ -11639,7 +11667,7 @@ declare function init(config: AuthHeroConfig): {
11639
11667
  } | undefined;
11640
11668
  } | undefined;
11641
11669
  passkey_options?: {
11642
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11670
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11643
11671
  local_enrollment_enabled?: boolean | undefined;
11644
11672
  progressive_enrollment_enabled?: boolean | undefined;
11645
11673
  } | undefined;
@@ -11750,7 +11778,7 @@ declare function init(config: AuthHeroConfig): {
11750
11778
  active?: boolean | undefined;
11751
11779
  } | undefined;
11752
11780
  signup?: {
11753
- status?: "optional" | "required" | "disabled" | undefined;
11781
+ status?: "required" | "optional" | "disabled" | undefined;
11754
11782
  verification?: {
11755
11783
  active?: boolean | undefined;
11756
11784
  } | undefined;
@@ -11767,7 +11795,7 @@ declare function init(config: AuthHeroConfig): {
11767
11795
  active?: boolean | undefined;
11768
11796
  } | undefined;
11769
11797
  signup?: {
11770
- status?: "optional" | "required" | "disabled" | undefined;
11798
+ status?: "required" | "optional" | "disabled" | undefined;
11771
11799
  } | undefined;
11772
11800
  validation?: {
11773
11801
  max_length?: number | undefined;
@@ -11784,7 +11812,7 @@ declare function init(config: AuthHeroConfig): {
11784
11812
  active?: boolean | undefined;
11785
11813
  } | undefined;
11786
11814
  signup?: {
11787
- status?: "optional" | "required" | "disabled" | undefined;
11815
+ status?: "required" | "optional" | "disabled" | undefined;
11788
11816
  } | undefined;
11789
11817
  } | undefined;
11790
11818
  } | undefined;
@@ -11797,7 +11825,7 @@ declare function init(config: AuthHeroConfig): {
11797
11825
  } | undefined;
11798
11826
  } | undefined;
11799
11827
  passkey_options?: {
11800
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11828
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11801
11829
  local_enrollment_enabled?: boolean | undefined;
11802
11830
  progressive_enrollment_enabled?: boolean | undefined;
11803
11831
  } | undefined;
@@ -11936,7 +11964,7 @@ declare function init(config: AuthHeroConfig): {
11936
11964
  tenant_id: string;
11937
11965
  created_at: string;
11938
11966
  updated_at: string;
11939
- deploymentStatus: "failed" | "deployed" | "not_required";
11967
+ deploymentStatus: "deployed" | "failed" | "not_required";
11940
11968
  secrets?: {
11941
11969
  [x: string]: string;
11942
11970
  } | undefined;
@@ -12026,7 +12054,7 @@ declare function init(config: AuthHeroConfig): {
12026
12054
  tenant_id: string;
12027
12055
  created_at: string;
12028
12056
  updated_at: string;
12029
- deploymentStatus: "failed" | "deployed" | "not_required";
12057
+ deploymentStatus: "deployed" | "failed" | "not_required";
12030
12058
  secrets?: {
12031
12059
  [x: string]: string;
12032
12060
  } | undefined;
@@ -12850,7 +12878,7 @@ declare function init(config: AuthHeroConfig): {
12850
12878
  created_at: string;
12851
12879
  updated_at: string;
12852
12880
  name: string;
12853
- provider: "auth0" | "oidc" | "okta" | "cognito";
12881
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12854
12882
  connection: string;
12855
12883
  enabled: boolean;
12856
12884
  credentials: {
@@ -12882,7 +12910,7 @@ declare function init(config: AuthHeroConfig): {
12882
12910
  created_at: string;
12883
12911
  updated_at: string;
12884
12912
  name: string;
12885
- provider: "auth0" | "oidc" | "okta" | "cognito";
12913
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12886
12914
  connection: string;
12887
12915
  enabled: boolean;
12888
12916
  credentials: {
@@ -12908,7 +12936,7 @@ declare function init(config: AuthHeroConfig): {
12908
12936
  } & {
12909
12937
  json: {
12910
12938
  name: string;
12911
- provider: "auth0" | "oidc" | "okta" | "cognito";
12939
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12912
12940
  connection: string;
12913
12941
  credentials: {
12914
12942
  domain: string;
@@ -12925,7 +12953,7 @@ declare function init(config: AuthHeroConfig): {
12925
12953
  created_at: string;
12926
12954
  updated_at: string;
12927
12955
  name: string;
12928
- provider: "auth0" | "oidc" | "okta" | "cognito";
12956
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12929
12957
  connection: string;
12930
12958
  enabled: boolean;
12931
12959
  credentials: {
@@ -12956,7 +12984,7 @@ declare function init(config: AuthHeroConfig): {
12956
12984
  json: {
12957
12985
  id?: string | undefined;
12958
12986
  name?: string | undefined;
12959
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
12987
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
12960
12988
  connection?: string | undefined;
12961
12989
  enabled?: boolean | undefined;
12962
12990
  credentials?: {
@@ -12972,7 +13000,7 @@ declare function init(config: AuthHeroConfig): {
12972
13000
  created_at: string;
12973
13001
  updated_at: string;
12974
13002
  name: string;
12975
- provider: "auth0" | "oidc" | "okta" | "cognito";
13003
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12976
13004
  connection: string;
12977
13005
  enabled: boolean;
12978
13006
  credentials: {
@@ -13190,7 +13218,7 @@ declare function init(config: AuthHeroConfig): {
13190
13218
  };
13191
13219
  };
13192
13220
  output: {
13193
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
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";
13194
13222
  date: string;
13195
13223
  isMobile: boolean;
13196
13224
  log_id: string;
@@ -13229,7 +13257,7 @@ declare function init(config: AuthHeroConfig): {
13229
13257
  limit: number;
13230
13258
  length: number;
13231
13259
  logs: {
13232
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
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";
13233
13261
  date: string;
13234
13262
  isMobile: boolean;
13235
13263
  log_id: string;
@@ -13268,7 +13296,7 @@ declare function init(config: AuthHeroConfig): {
13268
13296
  next?: string | undefined;
13269
13297
  } | {
13270
13298
  logs: {
13271
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
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";
13272
13300
  date: string;
13273
13301
  isMobile: boolean;
13274
13302
  log_id: string;
@@ -13322,7 +13350,7 @@ declare function init(config: AuthHeroConfig): {
13322
13350
  };
13323
13351
  };
13324
13352
  output: {
13325
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
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";
13326
13354
  date: string;
13327
13355
  isMobile: boolean;
13328
13356
  log_id: string;
@@ -13733,7 +13761,7 @@ declare function init(config: AuthHeroConfig): {
13733
13761
  addons?: {
13734
13762
  [x: string]: any;
13735
13763
  } | undefined;
13736
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13764
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13737
13765
  client_metadata?: {
13738
13766
  [x: string]: string;
13739
13767
  } | undefined;
@@ -13835,7 +13863,7 @@ declare function init(config: AuthHeroConfig): {
13835
13863
  addons?: {
13836
13864
  [x: string]: any;
13837
13865
  } | undefined;
13838
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13866
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13839
13867
  client_metadata?: {
13840
13868
  [x: string]: string;
13841
13869
  } | undefined;
@@ -13937,7 +13965,7 @@ declare function init(config: AuthHeroConfig): {
13937
13965
  addons?: {
13938
13966
  [x: string]: any;
13939
13967
  } | undefined;
13940
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13968
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13941
13969
  client_metadata?: {
13942
13970
  [x: string]: string;
13943
13971
  } | undefined;
@@ -14054,7 +14082,7 @@ declare function init(config: AuthHeroConfig): {
14054
14082
  addons?: {
14055
14083
  [x: string]: any;
14056
14084
  } | undefined;
14057
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14085
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14058
14086
  client_metadata?: {
14059
14087
  [x: string]: string;
14060
14088
  } | undefined;
@@ -14172,7 +14200,7 @@ declare function init(config: AuthHeroConfig): {
14172
14200
  custom_login_page_preview?: string | undefined;
14173
14201
  form_template?: string | undefined;
14174
14202
  addons?: Record<string, any> | undefined;
14175
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14203
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14176
14204
  client_metadata?: Record<string, string> | undefined;
14177
14205
  hide_sign_up_disabled_error?: boolean | undefined;
14178
14206
  mobile?: Record<string, any> | undefined;
@@ -14258,7 +14286,7 @@ declare function init(config: AuthHeroConfig): {
14258
14286
  addons?: {
14259
14287
  [x: string]: any;
14260
14288
  } | undefined;
14261
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14289
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14262
14290
  client_metadata?: {
14263
14291
  [x: string]: string;
14264
14292
  } | undefined;
@@ -14355,7 +14383,7 @@ declare function init(config: AuthHeroConfig): {
14355
14383
  custom_login_page_preview?: string | undefined;
14356
14384
  form_template?: string | undefined;
14357
14385
  addons?: Record<string, any> | undefined;
14358
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14386
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14359
14387
  client_metadata?: Record<string, string> | undefined;
14360
14388
  hide_sign_up_disabled_error?: boolean | undefined;
14361
14389
  mobile?: Record<string, any> | undefined;
@@ -14441,7 +14469,7 @@ declare function init(config: AuthHeroConfig): {
14441
14469
  addons?: {
14442
14470
  [x: string]: any;
14443
14471
  } | undefined;
14444
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14472
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14445
14473
  client_metadata?: {
14446
14474
  [x: string]: string;
14447
14475
  } | undefined;
@@ -14563,7 +14591,7 @@ declare function init(config: AuthHeroConfig): {
14563
14591
  active?: boolean | undefined;
14564
14592
  } | undefined;
14565
14593
  signup?: {
14566
- status?: "optional" | "required" | "disabled" | undefined;
14594
+ status?: "required" | "optional" | "disabled" | undefined;
14567
14595
  verification?: {
14568
14596
  active?: boolean | undefined;
14569
14597
  } | undefined;
@@ -14580,7 +14608,7 @@ declare function init(config: AuthHeroConfig): {
14580
14608
  active?: boolean | undefined;
14581
14609
  } | undefined;
14582
14610
  signup?: {
14583
- status?: "optional" | "required" | "disabled" | undefined;
14611
+ status?: "required" | "optional" | "disabled" | undefined;
14584
14612
  } | undefined;
14585
14613
  validation?: {
14586
14614
  max_length?: number | undefined;
@@ -14597,7 +14625,7 @@ declare function init(config: AuthHeroConfig): {
14597
14625
  active?: boolean | undefined;
14598
14626
  } | undefined;
14599
14627
  signup?: {
14600
- status?: "optional" | "required" | "disabled" | undefined;
14628
+ status?: "required" | "optional" | "disabled" | undefined;
14601
14629
  } | undefined;
14602
14630
  } | undefined;
14603
14631
  } | undefined;
@@ -14610,7 +14638,7 @@ declare function init(config: AuthHeroConfig): {
14610
14638
  } | undefined;
14611
14639
  } | undefined;
14612
14640
  passkey_options?: {
14613
- challenge_ui?: "button" | "both" | "autofill" | undefined;
14641
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
14614
14642
  local_enrollment_enabled?: boolean | undefined;
14615
14643
  progressive_enrollment_enabled?: boolean | undefined;
14616
14644
  } | undefined;
@@ -14717,7 +14745,7 @@ declare function init(config: AuthHeroConfig): {
14717
14745
  active?: boolean | undefined;
14718
14746
  } | undefined;
14719
14747
  signup?: {
14720
- status?: "optional" | "required" | "disabled" | undefined;
14748
+ status?: "required" | "optional" | "disabled" | undefined;
14721
14749
  verification?: {
14722
14750
  active?: boolean | undefined;
14723
14751
  } | undefined;
@@ -14734,7 +14762,7 @@ declare function init(config: AuthHeroConfig): {
14734
14762
  active?: boolean | undefined;
14735
14763
  } | undefined;
14736
14764
  signup?: {
14737
- status?: "optional" | "required" | "disabled" | undefined;
14765
+ status?: "required" | "optional" | "disabled" | undefined;
14738
14766
  } | undefined;
14739
14767
  validation?: {
14740
14768
  max_length?: number | undefined;
@@ -14751,7 +14779,7 @@ declare function init(config: AuthHeroConfig): {
14751
14779
  active?: boolean | undefined;
14752
14780
  } | undefined;
14753
14781
  signup?: {
14754
- status?: "optional" | "required" | "disabled" | undefined;
14782
+ status?: "required" | "optional" | "disabled" | undefined;
14755
14783
  } | undefined;
14756
14784
  } | undefined;
14757
14785
  } | undefined;
@@ -14764,7 +14792,7 @@ declare function init(config: AuthHeroConfig): {
14764
14792
  } | undefined;
14765
14793
  } | undefined;
14766
14794
  passkey_options?: {
14767
- challenge_ui?: "button" | "both" | "autofill" | undefined;
14795
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
14768
14796
  local_enrollment_enabled?: boolean | undefined;
14769
14797
  progressive_enrollment_enabled?: boolean | undefined;
14770
14798
  } | undefined;
@@ -15777,7 +15805,7 @@ declare function init(config: AuthHeroConfig): {
15777
15805
  };
15778
15806
  };
15779
15807
  output: {
15780
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
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";
15781
15809
  date: string;
15782
15810
  isMobile: boolean;
15783
15811
  log_id: string;
@@ -15816,7 +15844,7 @@ declare function init(config: AuthHeroConfig): {
15816
15844
  limit: number;
15817
15845
  length: number;
15818
15846
  logs: {
15819
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
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";
15820
15848
  date: string;
15821
15849
  isMobile: boolean;
15822
15850
  log_id: string;
@@ -16135,7 +16163,7 @@ declare function init(config: AuthHeroConfig): {
16135
16163
  };
16136
16164
  } & {
16137
16165
  json: {
16138
- 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";
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";
16139
16167
  body: string;
16140
16168
  from: string;
16141
16169
  subject: string;
@@ -16156,7 +16184,7 @@ declare function init(config: AuthHeroConfig): {
16156
16184
  };
16157
16185
  } & {
16158
16186
  json: {
16159
- 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";
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";
16160
16188
  body: string;
16161
16189
  from: string;
16162
16190
  subject: string;
@@ -16168,7 +16196,7 @@ declare function init(config: AuthHeroConfig): {
16168
16196
  };
16169
16197
  };
16170
16198
  output: {
16171
- 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";
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";
16172
16200
  body: string;
16173
16201
  from: string;
16174
16202
  subject: string;
@@ -16191,7 +16219,7 @@ declare function init(config: AuthHeroConfig): {
16191
16219
  };
16192
16220
  };
16193
16221
  output: {
16194
- 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";
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";
16195
16223
  body: string;
16196
16224
  subject: string;
16197
16225
  }[];
@@ -16204,7 +16232,7 @@ declare function init(config: AuthHeroConfig): {
16204
16232
  $get: {
16205
16233
  input: {
16206
16234
  param: {
16207
- 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";
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";
16208
16236
  };
16209
16237
  } & {
16210
16238
  header: {
@@ -16217,7 +16245,7 @@ declare function init(config: AuthHeroConfig): {
16217
16245
  } | {
16218
16246
  input: {
16219
16247
  param: {
16220
- 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";
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";
16221
16249
  };
16222
16250
  } & {
16223
16251
  header: {
@@ -16225,7 +16253,7 @@ declare function init(config: AuthHeroConfig): {
16225
16253
  };
16226
16254
  };
16227
16255
  output: {
16228
- 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";
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";
16229
16257
  body: string;
16230
16258
  from: string;
16231
16259
  subject: string;
@@ -16244,7 +16272,7 @@ declare function init(config: AuthHeroConfig): {
16244
16272
  $put: {
16245
16273
  input: {
16246
16274
  param: {
16247
- 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";
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";
16248
16276
  };
16249
16277
  } & {
16250
16278
  header: {
@@ -16252,7 +16280,7 @@ declare function init(config: AuthHeroConfig): {
16252
16280
  };
16253
16281
  } & {
16254
16282
  json: {
16255
- 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";
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";
16256
16284
  body: string;
16257
16285
  subject: string;
16258
16286
  syntax?: "liquid" | undefined;
@@ -16264,7 +16292,7 @@ declare function init(config: AuthHeroConfig): {
16264
16292
  };
16265
16293
  };
16266
16294
  output: {
16267
- 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";
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";
16268
16296
  body: string;
16269
16297
  from: string;
16270
16298
  subject: string;
@@ -16283,7 +16311,7 @@ declare function init(config: AuthHeroConfig): {
16283
16311
  $patch: {
16284
16312
  input: {
16285
16313
  param: {
16286
- 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";
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";
16287
16315
  };
16288
16316
  } & {
16289
16317
  header: {
@@ -16291,7 +16319,7 @@ declare function init(config: AuthHeroConfig): {
16291
16319
  };
16292
16320
  } & {
16293
16321
  json: {
16294
- 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;
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;
16295
16323
  body?: string | undefined;
16296
16324
  from?: string | undefined;
16297
16325
  subject?: string | undefined;
@@ -16308,7 +16336,7 @@ declare function init(config: AuthHeroConfig): {
16308
16336
  } | {
16309
16337
  input: {
16310
16338
  param: {
16311
- 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";
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";
16312
16340
  };
16313
16341
  } & {
16314
16342
  header: {
@@ -16316,7 +16344,7 @@ declare function init(config: AuthHeroConfig): {
16316
16344
  };
16317
16345
  } & {
16318
16346
  json: {
16319
- 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;
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;
16320
16348
  body?: string | undefined;
16321
16349
  from?: string | undefined;
16322
16350
  subject?: string | undefined;
@@ -16328,7 +16356,7 @@ declare function init(config: AuthHeroConfig): {
16328
16356
  };
16329
16357
  };
16330
16358
  output: {
16331
- 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";
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";
16332
16360
  body: string;
16333
16361
  from: string;
16334
16362
  subject: string;
@@ -16347,7 +16375,7 @@ declare function init(config: AuthHeroConfig): {
16347
16375
  $delete: {
16348
16376
  input: {
16349
16377
  param: {
16350
- 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";
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";
16351
16379
  };
16352
16380
  } & {
16353
16381
  header: {
@@ -16360,7 +16388,7 @@ declare function init(config: AuthHeroConfig): {
16360
16388
  } | {
16361
16389
  input: {
16362
16390
  param: {
16363
- 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";
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";
16364
16392
  };
16365
16393
  } & {
16366
16394
  header: {
@@ -16377,7 +16405,7 @@ declare function init(config: AuthHeroConfig): {
16377
16405
  $post: {
16378
16406
  input: {
16379
16407
  param: {
16380
- 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";
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";
16381
16409
  };
16382
16410
  } & {
16383
16411
  header: {
@@ -16660,7 +16688,7 @@ declare function init(config: AuthHeroConfig): {
16660
16688
  type: "auth0_managed_certs" | "self_managed_certs";
16661
16689
  custom_domain_id: string;
16662
16690
  primary: boolean;
16663
- status: "pending" | "ready" | "disabled" | "pending_verification";
16691
+ status: "disabled" | "pending" | "ready" | "pending_verification";
16664
16692
  verification_method?: "txt" | undefined;
16665
16693
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16666
16694
  domain_metadata?: {
@@ -16701,7 +16729,7 @@ declare function init(config: AuthHeroConfig): {
16701
16729
  type: "auth0_managed_certs" | "self_managed_certs";
16702
16730
  custom_domain_id: string;
16703
16731
  primary: boolean;
16704
- status: "pending" | "ready" | "disabled" | "pending_verification";
16732
+ status: "disabled" | "pending" | "ready" | "pending_verification";
16705
16733
  verification_method?: "txt" | undefined;
16706
16734
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16707
16735
  domain_metadata?: {
@@ -16765,7 +16793,7 @@ declare function init(config: AuthHeroConfig): {
16765
16793
  type: "auth0_managed_certs" | "self_managed_certs";
16766
16794
  custom_domain_id: string;
16767
16795
  primary: boolean;
16768
- status: "pending" | "ready" | "disabled" | "pending_verification";
16796
+ status: "disabled" | "pending" | "ready" | "pending_verification";
16769
16797
  verification_method?: "txt" | undefined;
16770
16798
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16771
16799
  domain_metadata?: {
@@ -16812,7 +16840,7 @@ declare function init(config: AuthHeroConfig): {
16812
16840
  type: "auth0_managed_certs" | "self_managed_certs";
16813
16841
  custom_domain_id: string;
16814
16842
  primary: boolean;
16815
- status: "pending" | "ready" | "disabled" | "pending_verification";
16843
+ status: "disabled" | "pending" | "ready" | "pending_verification";
16816
16844
  verification_method?: "txt" | undefined;
16817
16845
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16818
16846
  domain_metadata?: {
@@ -16858,7 +16886,7 @@ declare function init(config: AuthHeroConfig): {
16858
16886
  type: "auth0_managed_certs" | "self_managed_certs";
16859
16887
  custom_domain_id: string;
16860
16888
  primary: boolean;
16861
- status: "pending" | "ready" | "disabled" | "pending_verification";
16889
+ status: "disabled" | "pending" | "ready" | "pending_verification";
16862
16890
  verification_method?: "txt" | undefined;
16863
16891
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16864
16892
  domain_metadata?: {
@@ -16899,7 +16927,7 @@ declare function init(config: AuthHeroConfig): {
16899
16927
  type: "auth0_managed_certs" | "self_managed_certs";
16900
16928
  custom_domain_id: string;
16901
16929
  primary: boolean;
16902
- status: "pending" | "ready" | "disabled" | "pending_verification";
16930
+ status: "disabled" | "pending" | "ready" | "pending_verification";
16903
16931
  verification_method?: "txt" | undefined;
16904
16932
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16905
16933
  domain_metadata?: {
@@ -17329,7 +17357,7 @@ declare function init(config: AuthHeroConfig): {
17329
17357
  } & {
17330
17358
  json: {
17331
17359
  body?: string | undefined;
17332
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
17360
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
17333
17361
  branding?: {
17334
17362
  colors?: {
17335
17363
  primary: string;
@@ -17573,7 +17601,7 @@ declare function init(config: AuthHeroConfig): {
17573
17601
  output: {
17574
17602
  id: string;
17575
17603
  trigger_id: string;
17576
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
17604
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
17577
17605
  results: {
17578
17606
  action_name: string;
17579
17607
  error: {
@@ -17620,7 +17648,7 @@ declare function init(config: AuthHeroConfig): {
17620
17648
  logs: {
17621
17649
  action_name: string;
17622
17650
  lines: {
17623
- level: "log" | "error" | "info" | "warn" | "debug";
17651
+ level: "error" | "log" | "info" | "warn" | "debug";
17624
17652
  message: string;
17625
17653
  }[];
17626
17654
  }[];
@@ -18289,7 +18317,7 @@ declare function init(config: AuthHeroConfig): {
18289
18317
  args: hono_utils_types.JSONValue[];
18290
18318
  }[];
18291
18319
  logs: {
18292
- level: "log" | "error" | "info" | "warn" | "debug";
18320
+ level: "error" | "log" | "info" | "warn" | "debug";
18293
18321
  message: string;
18294
18322
  }[];
18295
18323
  error?: string | undefined;
@@ -18600,7 +18628,7 @@ declare function init(config: AuthHeroConfig): {
18600
18628
  scope?: string | undefined;
18601
18629
  grant_types?: string[] | undefined;
18602
18630
  response_types?: string[] | undefined;
18603
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
18631
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
18604
18632
  jwks_uri?: string | undefined;
18605
18633
  jwks?: Record<string, unknown> | undefined;
18606
18634
  software_id?: string | undefined;
@@ -18689,7 +18717,7 @@ declare function init(config: AuthHeroConfig): {
18689
18717
  scope?: string | undefined;
18690
18718
  grant_types?: string[] | undefined;
18691
18719
  response_types?: string[] | undefined;
18692
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
18720
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
18693
18721
  jwks_uri?: string | undefined;
18694
18722
  jwks?: Record<string, unknown> | undefined;
18695
18723
  software_id?: string | undefined;
@@ -19036,16 +19064,16 @@ declare function init(config: AuthHeroConfig): {
19036
19064
  send: "code" | "link";
19037
19065
  authParams: {
19038
19066
  username?: string | undefined;
19039
- state?: string | undefined;
19040
19067
  audience?: string | undefined;
19068
+ scope?: string | undefined;
19069
+ state?: string | undefined;
19041
19070
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19042
19071
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19043
- scope?: string | undefined;
19072
+ prompt?: string | undefined;
19073
+ act_as?: string | undefined;
19074
+ redirect_uri?: string | undefined;
19044
19075
  organization?: string | undefined;
19045
19076
  nonce?: string | undefined;
19046
- redirect_uri?: string | undefined;
19047
- act_as?: string | undefined;
19048
- prompt?: string | undefined;
19049
19077
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19050
19078
  code_challenge?: string | undefined;
19051
19079
  ui_locales?: string | undefined;
@@ -19072,16 +19100,16 @@ declare function init(config: AuthHeroConfig): {
19072
19100
  send: "code" | "link";
19073
19101
  authParams: {
19074
19102
  username?: string | undefined;
19075
- state?: string | undefined;
19076
19103
  audience?: string | undefined;
19104
+ scope?: string | undefined;
19105
+ state?: string | undefined;
19077
19106
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19078
19107
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19079
- scope?: string | undefined;
19108
+ prompt?: string | undefined;
19109
+ act_as?: string | undefined;
19110
+ redirect_uri?: string | undefined;
19080
19111
  organization?: string | undefined;
19081
19112
  nonce?: string | undefined;
19082
- redirect_uri?: string | undefined;
19083
- act_as?: string | undefined;
19084
- prompt?: string | undefined;
19085
19113
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19086
19114
  code_challenge?: string | undefined;
19087
19115
  ui_locales?: string | undefined;
@@ -19215,14 +19243,14 @@ declare function init(config: AuthHeroConfig): {
19215
19243
  input: {
19216
19244
  form: {
19217
19245
  token: string;
19218
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19246
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19219
19247
  client_id?: string | undefined;
19220
19248
  client_secret?: string | undefined;
19221
19249
  };
19222
19250
  } & {
19223
19251
  json: {
19224
19252
  token: string;
19225
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19253
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19226
19254
  client_id?: string | undefined;
19227
19255
  client_secret?: string | undefined;
19228
19256
  };
@@ -19234,14 +19262,14 @@ declare function init(config: AuthHeroConfig): {
19234
19262
  input: {
19235
19263
  form: {
19236
19264
  token: string;
19237
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19265
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19238
19266
  client_id?: string | undefined;
19239
19267
  client_secret?: string | undefined;
19240
19268
  };
19241
19269
  } & {
19242
19270
  json: {
19243
19271
  token: string;
19244
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19272
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19245
19273
  client_id?: string | undefined;
19246
19274
  client_secret?: string | undefined;
19247
19275
  };
@@ -19256,14 +19284,14 @@ declare function init(config: AuthHeroConfig): {
19256
19284
  input: {
19257
19285
  form: {
19258
19286
  token: string;
19259
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19287
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19260
19288
  client_id?: string | undefined;
19261
19289
  client_secret?: string | undefined;
19262
19290
  };
19263
19291
  } & {
19264
19292
  json: {
19265
19293
  token: string;
19266
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19294
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19267
19295
  client_id?: string | undefined;
19268
19296
  client_secret?: string | undefined;
19269
19297
  };
@@ -19313,7 +19341,7 @@ declare function init(config: AuthHeroConfig): {
19313
19341
  client_id: string;
19314
19342
  username: string;
19315
19343
  otp: string;
19316
- realm: "sms" | "email";
19344
+ realm: "email" | "sms";
19317
19345
  } | {
19318
19346
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19319
19347
  subject_token: string;
@@ -19360,7 +19388,7 @@ declare function init(config: AuthHeroConfig): {
19360
19388
  client_id: string;
19361
19389
  username: string;
19362
19390
  otp: string;
19363
- realm: "sms" | "email";
19391
+ realm: "email" | "sms";
19364
19392
  } | {
19365
19393
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19366
19394
  subject_token: string;
@@ -19412,7 +19440,7 @@ declare function init(config: AuthHeroConfig): {
19412
19440
  client_id: string;
19413
19441
  username: string;
19414
19442
  otp: string;
19415
- realm: "sms" | "email";
19443
+ realm: "email" | "sms";
19416
19444
  } | {
19417
19445
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19418
19446
  subject_token: string;
@@ -19459,7 +19487,7 @@ declare function init(config: AuthHeroConfig): {
19459
19487
  client_id: string;
19460
19488
  username: string;
19461
19489
  otp: string;
19462
- realm: "sms" | "email";
19490
+ realm: "email" | "sms";
19463
19491
  } | {
19464
19492
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19465
19493
  subject_token: string;
@@ -19519,7 +19547,7 @@ declare function init(config: AuthHeroConfig): {
19519
19547
  client_id: string;
19520
19548
  username: string;
19521
19549
  otp: string;
19522
- realm: "sms" | "email";
19550
+ realm: "email" | "sms";
19523
19551
  } | {
19524
19552
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19525
19553
  subject_token: string;
@@ -19566,7 +19594,7 @@ declare function init(config: AuthHeroConfig): {
19566
19594
  client_id: string;
19567
19595
  username: string;
19568
19596
  otp: string;
19569
- realm: "sms" | "email";
19597
+ realm: "email" | "sms";
19570
19598
  } | {
19571
19599
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19572
19600
  subject_token: string;
@@ -19621,7 +19649,7 @@ declare function init(config: AuthHeroConfig): {
19621
19649
  client_id: string;
19622
19650
  username: string;
19623
19651
  otp: string;
19624
- realm: "sms" | "email";
19652
+ realm: "email" | "sms";
19625
19653
  } | {
19626
19654
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19627
19655
  subject_token: string;
@@ -19668,7 +19696,7 @@ declare function init(config: AuthHeroConfig): {
19668
19696
  client_id: string;
19669
19697
  username: string;
19670
19698
  otp: string;
19671
- realm: "sms" | "email";
19699
+ realm: "email" | "sms";
19672
19700
  } | {
19673
19701
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19674
19702
  subject_token: string;
@@ -19723,7 +19751,7 @@ declare function init(config: AuthHeroConfig): {
19723
19751
  client_id: string;
19724
19752
  username: string;
19725
19753
  otp: string;
19726
- realm: "sms" | "email";
19754
+ realm: "email" | "sms";
19727
19755
  } | {
19728
19756
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19729
19757
  subject_token: string;
@@ -19770,7 +19798,7 @@ declare function init(config: AuthHeroConfig): {
19770
19798
  client_id: string;
19771
19799
  username: string;
19772
19800
  otp: string;
19773
- realm: "sms" | "email";
19801
+ realm: "email" | "sms";
19774
19802
  } | {
19775
19803
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19776
19804
  subject_token: string;
@@ -20615,7 +20643,7 @@ declare function init(config: AuthHeroConfig): {
20615
20643
  } & {
20616
20644
  form: {
20617
20645
  username: string;
20618
- login_selection?: "code" | "password" | undefined;
20646
+ login_selection?: "password" | "code" | undefined;
20619
20647
  };
20620
20648
  };
20621
20649
  output: {};
@@ -20629,7 +20657,7 @@ declare function init(config: AuthHeroConfig): {
20629
20657
  } & {
20630
20658
  form: {
20631
20659
  username: string;
20632
- login_selection?: "code" | "password" | undefined;
20660
+ login_selection?: "password" | "code" | undefined;
20633
20661
  };
20634
20662
  };
20635
20663
  output: {};
@@ -20994,7 +21022,7 @@ declare function init(config: AuthHeroConfig): {
20994
21022
  $get: {
20995
21023
  input: {
20996
21024
  param: {
20997
- 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";
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";
20998
21026
  };
20999
21027
  } & {
21000
21028
  query: {
@@ -21010,7 +21038,7 @@ declare function init(config: AuthHeroConfig): {
21010
21038
  } | {
21011
21039
  input: {
21012
21040
  param: {
21013
- 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";
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";
21014
21042
  };
21015
21043
  } & {
21016
21044
  query: {
@@ -21026,7 +21054,7 @@ declare function init(config: AuthHeroConfig): {
21026
21054
  } | {
21027
21055
  input: {
21028
21056
  param: {
21029
- 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";
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";
21030
21058
  };
21031
21059
  } & {
21032
21060
  query: {
@@ -21046,7 +21074,7 @@ declare function init(config: AuthHeroConfig): {
21046
21074
  $post: {
21047
21075
  input: {
21048
21076
  param: {
21049
- 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";
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";
21050
21078
  };
21051
21079
  } & {
21052
21080
  query: {
@@ -21064,7 +21092,7 @@ declare function init(config: AuthHeroConfig): {
21064
21092
  } | {
21065
21093
  input: {
21066
21094
  param: {
21067
- 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";
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";
21068
21096
  };
21069
21097
  } & {
21070
21098
  query: {
@@ -21162,5 +21190,5 @@ declare function init(config: AuthHeroConfig): {
21162
21190
  createX509Certificate: typeof createX509Certificate;
21163
21191
  };
21164
21192
 
21165
- 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, 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 };
21166
- export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, 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 };
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 };