authhero 8.25.2 → 8.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/authhero.cjs +115 -115
  2. package/dist/authhero.d.ts +148 -120
  3. package/dist/authhero.mjs +55 -46
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +7 -7
  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 +119 -117
  9. package/dist/types/routes/auth-api/index.d.ts +20 -20
  10. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  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/management-api/action-executions.d.ts +2 -2
  14. package/dist/types/routes/management-api/actions.d.ts +1 -1
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +9 -9
  17. package/dist/types/routes/management-api/clients.d.ts +16 -16
  18. package/dist/types/routes/management-api/connections.d.ts +20 -20
  19. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  20. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  21. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  22. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  23. package/dist/types/routes/management-api/index.d.ts +90 -90
  24. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  25. package/dist/types/routes/management-api/logs.d.ts +4 -4
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/organizations.d.ts +5 -5
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/roles.d.ts +1 -1
  30. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  31. package/dist/types/routes/management-api/tenants.d.ts +5 -5
  32. package/dist/types/routes/management-api/themes.d.ts +6 -6
  33. package/dist/types/routes/management-api/users.d.ts +2 -2
  34. package/dist/types/routes/universal-login/common.d.ts +14 -14
  35. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  36. package/dist/types/routes/universal-login/index.d.ts +2 -2
  37. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  39. 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: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "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" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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;
@@ -12540,7 +12568,7 @@ declare function init(config: AuthHeroConfig): {
12540
12568
  log_type: string;
12541
12569
  category: "user_action" | "admin_action" | "system" | "api";
12542
12570
  actor: {
12543
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
12571
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
12544
12572
  id?: string | undefined;
12545
12573
  email?: string | undefined;
12546
12574
  org_id?: string | 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: {
@@ -13020,7 +13048,7 @@ declare function init(config: AuthHeroConfig): {
13020
13048
  [x: string]: hono_utils_types.JSONValue;
13021
13049
  };
13022
13050
  id: string;
13023
- status: "active" | "suspended" | "paused";
13051
+ status: "suspended" | "active" | "paused";
13024
13052
  filters?: {
13025
13053
  type: string;
13026
13054
  name: string;
@@ -13052,7 +13080,7 @@ declare function init(config: AuthHeroConfig): {
13052
13080
  [x: string]: hono_utils_types.JSONValue;
13053
13081
  };
13054
13082
  id: string;
13055
- status: "active" | "suspended" | "paused";
13083
+ status: "suspended" | "active" | "paused";
13056
13084
  filters?: {
13057
13085
  type: string;
13058
13086
  name: string;
@@ -13077,7 +13105,7 @@ declare function init(config: AuthHeroConfig): {
13077
13105
  name: string;
13078
13106
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
13079
13107
  sink: Record<string, unknown>;
13080
- status?: "active" | "suspended" | "paused" | undefined;
13108
+ status?: "suspended" | "active" | "paused" | undefined;
13081
13109
  filters?: {
13082
13110
  type: string;
13083
13111
  name: string;
@@ -13092,7 +13120,7 @@ declare function init(config: AuthHeroConfig): {
13092
13120
  [x: string]: hono_utils_types.JSONValue;
13093
13121
  };
13094
13122
  id: string;
13095
- status: "active" | "suspended" | "paused";
13123
+ status: "suspended" | "active" | "paused";
13096
13124
  filters?: {
13097
13125
  type: string;
13098
13126
  name: string;
@@ -13127,7 +13155,7 @@ declare function init(config: AuthHeroConfig): {
13127
13155
  }[] | undefined;
13128
13156
  isPriority?: boolean | undefined;
13129
13157
  id?: string | undefined;
13130
- status?: "active" | "suspended" | "paused" | undefined;
13158
+ status?: "suspended" | "active" | "paused" | undefined;
13131
13159
  created_at?: string | undefined;
13132
13160
  updated_at?: string | undefined;
13133
13161
  };
@@ -13139,7 +13167,7 @@ declare function init(config: AuthHeroConfig): {
13139
13167
  [x: string]: hono_utils_types.JSONValue;
13140
13168
  };
13141
13169
  id: string;
13142
- status: "active" | "suspended" | "paused";
13170
+ status: "suspended" | "active" | "paused";
13143
13171
  filters?: {
13144
13172
  type: string;
13145
13173
  name: string;
@@ -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" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15820
15848
  date: string;
15821
15849
  isMobile: boolean;
15822
15850
  log_id: string;
@@ -16998,12 +17026,12 @@ declare function init(config: AuthHeroConfig): {
16998
17026
  background_color: string;
16999
17027
  background_image_url: string;
17000
17028
  page_layout: "center" | "left" | "right";
17001
- logo_placement?: "none" | "widget" | "chip" | undefined;
17029
+ logo_placement?: "widget" | "none" | "chip" | undefined;
17002
17030
  };
17003
17031
  widget: {
17004
17032
  header_text_alignment: "center" | "left" | "right";
17005
17033
  logo_height: number;
17006
- logo_position: "none" | "center" | "left" | "right";
17034
+ logo_position: "center" | "left" | "right" | "none";
17007
17035
  logo_url: string;
17008
17036
  social_buttons_layout: "bottom" | "top";
17009
17037
  };
@@ -17088,12 +17116,12 @@ declare function init(config: AuthHeroConfig): {
17088
17116
  background_color: string;
17089
17117
  background_image_url: string;
17090
17118
  page_layout: "center" | "left" | "right";
17091
- logo_placement?: "none" | "widget" | "chip" | undefined;
17119
+ logo_placement?: "widget" | "none" | "chip" | undefined;
17092
17120
  };
17093
17121
  widget: {
17094
17122
  header_text_alignment: "center" | "left" | "right";
17095
17123
  logo_height: number;
17096
- logo_position: "none" | "center" | "left" | "right";
17124
+ logo_position: "center" | "left" | "right" | "none";
17097
17125
  logo_url: string;
17098
17126
  social_buttons_layout: "bottom" | "top";
17099
17127
  };
@@ -17167,12 +17195,12 @@ declare function init(config: AuthHeroConfig): {
17167
17195
  background_color: string;
17168
17196
  background_image_url: string;
17169
17197
  page_layout: "center" | "left" | "right";
17170
- logo_placement?: "none" | "widget" | "chip" | undefined;
17198
+ logo_placement?: "widget" | "none" | "chip" | undefined;
17171
17199
  };
17172
17200
  widget: {
17173
17201
  header_text_alignment: "center" | "left" | "right";
17174
17202
  logo_height: number;
17175
- logo_position: "none" | "center" | "left" | "right";
17203
+ logo_position: "center" | "left" | "right" | "none";
17176
17204
  logo_url: string;
17177
17205
  social_buttons_layout: "bottom" | "top";
17178
17206
  };
@@ -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" | "login" | "identifier" | "signup" | undefined;
17333
17361
  branding?: {
17334
17362
  colors?: {
17335
17363
  primary: string;
@@ -17415,12 +17443,12 @@ declare function init(config: AuthHeroConfig): {
17415
17443
  background_color: string;
17416
17444
  background_image_url: string;
17417
17445
  page_layout: "center" | "left" | "right";
17418
- logo_placement?: "none" | "widget" | "chip" | undefined;
17446
+ logo_placement?: "widget" | "none" | "chip" | undefined;
17419
17447
  } | undefined;
17420
17448
  widget?: {
17421
17449
  header_text_alignment: "center" | "left" | "right";
17422
17450
  logo_height: number;
17423
- logo_position: "none" | "center" | "left" | "right";
17451
+ logo_position: "center" | "left" | "right" | "none";
17424
17452
  logo_url: string;
17425
17453
  social_buttons_layout: "bottom" | "top";
17426
17454
  } | undefined;
@@ -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;
@@ -19035,20 +19063,20 @@ declare function init(config: AuthHeroConfig): {
19035
19063
  email: string;
19036
19064
  send: "code" | "link";
19037
19065
  authParams: {
19038
- username?: string | undefined;
19039
- state?: string | undefined;
19040
19066
  audience?: string | undefined;
19067
+ username?: string | undefined;
19068
+ scope?: string | undefined;
19041
19069
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19042
19070
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19043
- scope?: string | undefined;
19071
+ state?: string | undefined;
19072
+ prompt?: string | undefined;
19073
+ ui_locales?: string | undefined;
19044
19074
  organization?: string | undefined;
19045
- nonce?: string | undefined;
19046
19075
  redirect_uri?: string | undefined;
19047
19076
  act_as?: string | undefined;
19048
- prompt?: string | undefined;
19077
+ nonce?: string | undefined;
19049
19078
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19050
19079
  code_challenge?: string | undefined;
19051
- ui_locales?: string | undefined;
19052
19080
  max_age?: number | undefined;
19053
19081
  acr_values?: string | undefined;
19054
19082
  claims?: {
@@ -19071,20 +19099,20 @@ declare function init(config: AuthHeroConfig): {
19071
19099
  phone_number: string;
19072
19100
  send: "code" | "link";
19073
19101
  authParams: {
19074
- username?: string | undefined;
19075
- state?: string | undefined;
19076
19102
  audience?: string | undefined;
19103
+ username?: string | undefined;
19104
+ scope?: string | undefined;
19077
19105
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19078
19106
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19079
- scope?: string | undefined;
19107
+ state?: string | undefined;
19108
+ prompt?: string | undefined;
19109
+ ui_locales?: string | undefined;
19080
19110
  organization?: string | undefined;
19081
- nonce?: string | undefined;
19082
19111
  redirect_uri?: string | undefined;
19083
19112
  act_as?: string | undefined;
19084
- prompt?: string | undefined;
19113
+ nonce?: string | undefined;
19085
19114
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19086
19115
  code_challenge?: string | undefined;
19087
- ui_locales?: string | undefined;
19088
19116
  max_age?: number | undefined;
19089
19117
  acr_values?: string | undefined;
19090
19118
  claims?: {
@@ -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
  };
@@ -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: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
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: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
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: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
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: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
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: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
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 };