authhero 9.1.1 → 9.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/index.esm.js +1 -1
  3. package/dist/assets/u/widget/p-e95c436f.entry.js +1 -0
  4. package/dist/authhero.cjs +143 -143
  5. package/dist/authhero.d.ts +277 -138
  6. package/dist/authhero.mjs +14434 -14771
  7. package/dist/tsconfig.types.tsbuildinfo +1 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  9. package/dist/types/helpers/action-executions-cleanup.d.ts +34 -0
  10. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  11. package/dist/types/helpers/run-retention.d.ts +4 -1
  12. package/dist/types/index.d.ts +238 -134
  13. package/dist/types/oauth2-client/client.d.ts +50 -0
  14. package/dist/types/oauth2-client/index.d.ts +3 -0
  15. package/dist/types/oauth2-client/providers.d.ts +49 -0
  16. package/dist/types/routes/auth-api/index.d.ts +32 -32
  17. package/dist/types/routes/auth-api/oidc-logout.d.ts +3 -3
  18. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  19. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  20. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  21. package/dist/types/routes/auth-api/token.d.ts +10 -10
  22. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  23. package/dist/types/routes/management-api/branding.d.ts +3 -3
  24. package/dist/types/routes/management-api/clients.d.ts +14 -14
  25. package/dist/types/routes/management-api/connections.d.ts +15 -15
  26. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  27. package/dist/types/routes/management-api/forms.d.ts +154 -126
  28. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  29. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  30. package/dist/types/routes/management-api/hooks.d.ts +74 -0
  31. package/dist/types/routes/management-api/index.d.ts +189 -87
  32. package/dist/types/routes/management-api/logs.d.ts +4 -4
  33. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  34. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  35. package/dist/types/routes/management-api/tenants.d.ts +29 -29
  36. package/dist/types/routes/management-api/users.d.ts +2 -2
  37. package/dist/types/routes/universal-login/common.d.ts +8 -8
  38. package/dist/types/routes/universal-login/continue.d.ts +2 -2
  39. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  40. package/dist/types/routes/universal-login/identifier.d.ts +4 -4
  41. package/dist/types/routes/universal-login/impersonate.d.ts +2 -2
  42. package/dist/types/routes/universal-login/index.d.ts +8 -8
  43. package/dist/types/routes/universal-login/u2-index.d.ts +7 -7
  44. package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
  45. package/dist/types/strategies/internal-oauth2.d.ts +5 -5
  46. package/package.json +6 -7
  47. package/dist/assets/u/widget/p-c179b5da.entry.js +0 -1
@@ -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, LinkCandidate, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, OutboxAdapter, AuditEvent, CodesAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
3
+ import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, LinkCandidate, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, OutboxAdapter, AuditEvent, CodesAdapter, ActionExecutionsAdapter, 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';
@@ -2745,6 +2745,40 @@ interface CodesCleanupParams {
2745
2745
  */
2746
2746
  declare function cleanupCodes(codes: CodesAdapter, params?: CodesCleanupParams): Promise<number>;
2747
2747
 
2748
+ interface ActionExecutionsCleanupParams {
2749
+ /**
2750
+ * Days of execution history to keep. Defaults to 30.
2751
+ *
2752
+ * Unlike `codes`, these rows have no expiry — they are diagnostic history,
2753
+ * referenced from logs when debugging an action. The window is a genuine
2754
+ * retention policy: long enough to investigate a report that arrives late,
2755
+ * short enough that the table stops growing without bound.
2756
+ */
2757
+ retentionDays?: number;
2758
+ }
2759
+ /**
2760
+ * Delete action executions created more than the retention window ago.
2761
+ *
2762
+ * Prefer `runRetention`, which calls this along with every other prunable
2763
+ * table — scheduling one call means a future prunable table is covered
2764
+ * without editing your handler. Use this directly only when you want to sweep
2765
+ * `action_executions` on its own schedule.
2766
+ *
2767
+ * Returns `null` when the adapter does not support cleanup (backends like
2768
+ * DynamoDB TTL or Analytics Engine expire rows themselves).
2769
+ *
2770
+ * @example
2771
+ * ```ts
2772
+ * // Cloudflare Workers scheduled handler
2773
+ * async scheduled(_event, env) {
2774
+ * await cleanupActionExecutions(dataAdapter.actionExecutions, {
2775
+ * retentionDays: 30,
2776
+ * });
2777
+ * }
2778
+ * ```
2779
+ */
2780
+ declare function cleanupActionExecutions(actionExecutions: ActionExecutionsAdapter, params?: ActionExecutionsCleanupParams): Promise<number | null>;
2781
+
2748
2782
  /**
2749
2783
  * Mints a Bearer token for a given tenant. `scope` is forwarded so a custom
2750
2784
  * `webhookInvoker` can request a non-default scope for its outbound call.
@@ -3008,6 +3042,8 @@ interface RunRetentionConfig {
3008
3042
  codesRetentionDays?: number;
3009
3043
  /** Days to keep processed/dead-lettered outbox events. Default 7. */
3010
3044
  outboxRetentionDays?: number;
3045
+ /** Days of action execution history to keep. Default 30. */
3046
+ actionExecutionsRetentionDays?: number;
3011
3047
  /**
3012
3048
  * Scope the session sweep to a single tenant. Codes and outbox events are
3013
3049
  * always swept globally — an expired row is dead regardless of who owns it.
@@ -3061,7 +3097,8 @@ declare class RetentionSweepError extends Error {
3061
3097
  * without editing its handler.
3062
3098
  *
3063
3099
  * Covers `codes`, `outbox_events`, and (where the adapter supports it)
3064
- * `sessions` / `refresh_tokens` / `login_sessions`. It does **not** drain the
3100
+ * `action_executions` and `sessions` / `refresh_tokens` / `login_sessions`.
3101
+ * It does **not** drain the
3065
3102
  * outbox: delivery is `runOutboxRelay`'s job, and the two are scheduled
3066
3103
  * independently. Running both is safe — the relay's own cleanup pass and this
3067
3104
  * one are idempotent.
@@ -4224,8 +4261,8 @@ declare function init(config: AuthHeroConfig): {
4224
4261
  $get: {
4225
4262
  input: {
4226
4263
  query: {
4227
- include_password_hashes?: "false" | "true" | undefined;
4228
- gzip?: "false" | "true" | undefined;
4264
+ include_password_hashes?: "true" | "false" | undefined;
4265
+ gzip?: "true" | "false" | undefined;
4229
4266
  };
4230
4267
  } & {
4231
4268
  header: {
@@ -4238,8 +4275,8 @@ declare function init(config: AuthHeroConfig): {
4238
4275
  } | {
4239
4276
  input: {
4240
4277
  query: {
4241
- include_password_hashes?: "false" | "true" | undefined;
4242
- gzip?: "false" | "true" | undefined;
4278
+ include_password_hashes?: "true" | "false" | undefined;
4279
+ gzip?: "true" | "false" | undefined;
4243
4280
  };
4244
4281
  } & {
4245
4282
  header: {
@@ -4258,7 +4295,7 @@ declare function init(config: AuthHeroConfig): {
4258
4295
  $post: {
4259
4296
  input: {
4260
4297
  query: {
4261
- include_password_hashes?: "false" | "true" | undefined;
4298
+ include_password_hashes?: "true" | "false" | undefined;
4262
4299
  };
4263
4300
  } & {
4264
4301
  header: {
@@ -4312,7 +4349,7 @@ declare function init(config: AuthHeroConfig): {
4312
4349
  };
4313
4350
  } & {
4314
4351
  json: {
4315
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
4352
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
4316
4353
  phone_number?: string | undefined;
4317
4354
  totp_secret?: string | undefined;
4318
4355
  credential_id?: string | undefined;
@@ -4452,7 +4489,7 @@ declare function init(config: AuthHeroConfig): {
4452
4489
  };
4453
4490
  };
4454
4491
  output: {
4455
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4492
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4456
4493
  enabled: boolean;
4457
4494
  trial_expired?: boolean | undefined;
4458
4495
  }[];
@@ -4607,7 +4644,7 @@ declare function init(config: AuthHeroConfig): {
4607
4644
  $get: {
4608
4645
  input: {
4609
4646
  param: {
4610
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4647
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4611
4648
  };
4612
4649
  } & {
4613
4650
  header: {
@@ -4615,7 +4652,7 @@ declare function init(config: AuthHeroConfig): {
4615
4652
  };
4616
4653
  };
4617
4654
  output: {
4618
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4655
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4619
4656
  enabled: boolean;
4620
4657
  trial_expired?: boolean | undefined;
4621
4658
  };
@@ -4628,7 +4665,7 @@ declare function init(config: AuthHeroConfig): {
4628
4665
  $put: {
4629
4666
  input: {
4630
4667
  param: {
4631
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4668
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4632
4669
  };
4633
4670
  } & {
4634
4671
  header: {
@@ -4640,7 +4677,7 @@ declare function init(config: AuthHeroConfig): {
4640
4677
  };
4641
4678
  };
4642
4679
  output: {
4643
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4680
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4644
4681
  enabled: boolean;
4645
4682
  trial_expired?: boolean | undefined;
4646
4683
  };
@@ -5412,19 +5449,19 @@ declare function init(config: AuthHeroConfig): {
5412
5449
  } & {
5413
5450
  json: {
5414
5451
  client_id: string;
5415
- inviter: {
5416
- name?: string | undefined;
5417
- };
5418
5452
  invitee: {
5419
5453
  email?: string | undefined;
5420
5454
  };
5455
+ inviter: {
5456
+ name?: string | undefined;
5457
+ };
5458
+ id?: string | undefined;
5421
5459
  app_metadata?: Record<string, any> | undefined;
5422
5460
  user_metadata?: Record<string, any> | undefined;
5423
- id?: string | undefined;
5424
5461
  connection_id?: string | undefined;
5425
5462
  roles?: string[] | undefined;
5426
- ttl_sec?: number | undefined;
5427
5463
  send_invitation_email?: boolean | undefined;
5464
+ ttl_sec?: number | undefined;
5428
5465
  };
5429
5466
  };
5430
5467
  output: {
@@ -5607,8 +5644,8 @@ declare function init(config: AuthHeroConfig): {
5607
5644
  };
5608
5645
  } & {
5609
5646
  json: {
5610
- assign_membership_on_login?: boolean | undefined;
5611
5647
  show_as_button?: boolean | undefined;
5648
+ assign_membership_on_login?: boolean | undefined;
5612
5649
  is_signup_enabled?: boolean | undefined;
5613
5650
  };
5614
5651
  };
@@ -7092,6 +7129,8 @@ declare function init(config: AuthHeroConfig): {
7092
7129
  config?: {
7093
7130
  placeholder?: string | undefined;
7094
7131
  default_value?: string | undefined;
7132
+ last_used?: boolean | undefined;
7133
+ last_used_label?: string | undefined;
7095
7134
  } | undefined;
7096
7135
  } | {
7097
7136
  id: string;
@@ -7263,6 +7302,8 @@ declare function init(config: AuthHeroConfig): {
7263
7302
  multiline?: boolean | undefined;
7264
7303
  max_length?: number | undefined;
7265
7304
  default_value?: string | undefined;
7305
+ last_used?: boolean | undefined;
7306
+ last_used_label?: string | undefined;
7266
7307
  } | undefined;
7267
7308
  } | {
7268
7309
  id: string;
@@ -7695,6 +7736,8 @@ declare function init(config: AuthHeroConfig): {
7695
7736
  config?: {
7696
7737
  placeholder?: string | undefined;
7697
7738
  default_value?: string | undefined;
7739
+ last_used?: boolean | undefined;
7740
+ last_used_label?: string | undefined;
7698
7741
  } | undefined;
7699
7742
  } | {
7700
7743
  id: string;
@@ -7866,6 +7909,8 @@ declare function init(config: AuthHeroConfig): {
7866
7909
  multiline?: boolean | undefined;
7867
7910
  max_length?: number | undefined;
7868
7911
  default_value?: string | undefined;
7912
+ last_used?: boolean | undefined;
7913
+ last_used_label?: string | undefined;
7869
7914
  } | undefined;
7870
7915
  } | {
7871
7916
  id: string;
@@ -8314,6 +8359,8 @@ declare function init(config: AuthHeroConfig): {
8314
8359
  config?: {
8315
8360
  placeholder?: string | undefined;
8316
8361
  default_value?: string | undefined;
8362
+ last_used?: boolean | undefined;
8363
+ last_used_label?: string | undefined;
8317
8364
  } | undefined;
8318
8365
  } | {
8319
8366
  id: string;
@@ -8485,6 +8532,8 @@ declare function init(config: AuthHeroConfig): {
8485
8532
  multiline?: boolean | undefined;
8486
8533
  max_length?: number | undefined;
8487
8534
  default_value?: string | undefined;
8535
+ last_used?: boolean | undefined;
8536
+ last_used_label?: string | undefined;
8488
8537
  } | undefined;
8489
8538
  } | {
8490
8539
  id: string;
@@ -8934,6 +8983,8 @@ declare function init(config: AuthHeroConfig): {
8934
8983
  config?: {
8935
8984
  placeholder?: string | undefined;
8936
8985
  default_value?: string | undefined;
8986
+ last_used?: boolean | undefined;
8987
+ last_used_label?: string | undefined;
8937
8988
  } | undefined;
8938
8989
  } | {
8939
8990
  id: string;
@@ -9105,6 +9156,8 @@ declare function init(config: AuthHeroConfig): {
9105
9156
  multiline?: boolean | undefined;
9106
9157
  max_length?: number | undefined;
9107
9158
  default_value?: string | undefined;
9159
+ last_used?: boolean | undefined;
9160
+ last_used_label?: string | undefined;
9108
9161
  } | undefined;
9109
9162
  } | {
9110
9163
  id: string;
@@ -9535,6 +9588,8 @@ declare function init(config: AuthHeroConfig): {
9535
9588
  config?: {
9536
9589
  placeholder?: string | undefined;
9537
9590
  default_value?: string | undefined;
9591
+ last_used?: boolean | undefined;
9592
+ last_used_label?: string | undefined;
9538
9593
  } | undefined;
9539
9594
  } | {
9540
9595
  id: string;
@@ -9706,6 +9761,8 @@ declare function init(config: AuthHeroConfig): {
9706
9761
  multiline?: boolean | undefined;
9707
9762
  max_length?: number | undefined;
9708
9763
  default_value?: string | undefined;
9764
+ last_used?: boolean | undefined;
9765
+ last_used_label?: string | undefined;
9709
9766
  } | undefined;
9710
9767
  } | {
9711
9768
  id: string;
@@ -10134,6 +10191,8 @@ declare function init(config: AuthHeroConfig): {
10134
10191
  config?: {
10135
10192
  placeholder?: string | undefined;
10136
10193
  default_value?: string | undefined;
10194
+ last_used?: boolean | undefined;
10195
+ last_used_label?: string | undefined;
10137
10196
  } | undefined;
10138
10197
  } | {
10139
10198
  id: string;
@@ -10305,6 +10364,8 @@ declare function init(config: AuthHeroConfig): {
10305
10364
  multiline?: boolean | undefined;
10306
10365
  max_length?: number | undefined;
10307
10366
  default_value?: string | undefined;
10367
+ last_used?: boolean | undefined;
10368
+ last_used_label?: string | undefined;
10308
10369
  } | undefined;
10309
10370
  } | {
10310
10371
  id: string;
@@ -10735,6 +10796,8 @@ declare function init(config: AuthHeroConfig): {
10735
10796
  config?: {
10736
10797
  placeholder?: string | undefined;
10737
10798
  default_value?: string | undefined;
10799
+ last_used?: boolean | undefined;
10800
+ last_used_label?: string | undefined;
10738
10801
  } | undefined;
10739
10802
  } | {
10740
10803
  id: string;
@@ -10906,6 +10969,8 @@ declare function init(config: AuthHeroConfig): {
10906
10969
  multiline?: boolean | undefined;
10907
10970
  max_length?: number | undefined;
10908
10971
  default_value?: string | undefined;
10972
+ last_used?: boolean | undefined;
10973
+ last_used_label?: string | undefined;
10909
10974
  } | undefined;
10910
10975
  } | {
10911
10976
  id: string;
@@ -11149,7 +11214,7 @@ declare function init(config: AuthHeroConfig): {
11149
11214
  };
11150
11215
  };
11151
11216
  output: {
11152
- prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11217
+ prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11153
11218
  language: string;
11154
11219
  }[];
11155
11220
  outputFormat: "json";
@@ -11187,7 +11252,7 @@ declare function init(config: AuthHeroConfig): {
11187
11252
  $get: {
11188
11253
  input: {
11189
11254
  param: {
11190
- prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11255
+ prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11191
11256
  language: string;
11192
11257
  };
11193
11258
  } & {
@@ -11209,7 +11274,7 @@ declare function init(config: AuthHeroConfig): {
11209
11274
  $put: {
11210
11275
  input: {
11211
11276
  param: {
11212
- prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11277
+ prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11213
11278
  language: string;
11214
11279
  };
11215
11280
  } & {
@@ -11233,7 +11298,7 @@ declare function init(config: AuthHeroConfig): {
11233
11298
  $delete: {
11234
11299
  input: {
11235
11300
  param: {
11236
- prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11301
+ prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11237
11302
  language: string;
11238
11303
  };
11239
11304
  } & {
@@ -11325,7 +11390,7 @@ declare function init(config: AuthHeroConfig): {
11325
11390
  active?: boolean | undefined;
11326
11391
  } | undefined;
11327
11392
  signup?: {
11328
- status?: "optional" | "required" | "disabled" | undefined;
11393
+ status?: "required" | "optional" | "disabled" | undefined;
11329
11394
  verification?: {
11330
11395
  active?: boolean | undefined;
11331
11396
  } | undefined;
@@ -11342,7 +11407,7 @@ declare function init(config: AuthHeroConfig): {
11342
11407
  active?: boolean | undefined;
11343
11408
  } | undefined;
11344
11409
  signup?: {
11345
- status?: "optional" | "required" | "disabled" | undefined;
11410
+ status?: "required" | "optional" | "disabled" | undefined;
11346
11411
  } | undefined;
11347
11412
  validation?: {
11348
11413
  max_length?: number | undefined;
@@ -11359,7 +11424,7 @@ declare function init(config: AuthHeroConfig): {
11359
11424
  active?: boolean | undefined;
11360
11425
  } | undefined;
11361
11426
  signup?: {
11362
- status?: "optional" | "required" | "disabled" | undefined;
11427
+ status?: "required" | "optional" | "disabled" | undefined;
11363
11428
  } | undefined;
11364
11429
  } | undefined;
11365
11430
  } | undefined;
@@ -11459,7 +11524,7 @@ declare function init(config: AuthHeroConfig): {
11459
11524
  active?: boolean | undefined;
11460
11525
  } | undefined;
11461
11526
  signup?: {
11462
- status?: "optional" | "required" | "disabled" | undefined;
11527
+ status?: "required" | "optional" | "disabled" | undefined;
11463
11528
  verification?: {
11464
11529
  active?: boolean | undefined;
11465
11530
  } | undefined;
@@ -11476,7 +11541,7 @@ declare function init(config: AuthHeroConfig): {
11476
11541
  active?: boolean | undefined;
11477
11542
  } | undefined;
11478
11543
  signup?: {
11479
- status?: "optional" | "required" | "disabled" | undefined;
11544
+ status?: "required" | "optional" | "disabled" | undefined;
11480
11545
  } | undefined;
11481
11546
  validation?: {
11482
11547
  max_length?: number | undefined;
@@ -11493,7 +11558,7 @@ declare function init(config: AuthHeroConfig): {
11493
11558
  active?: boolean | undefined;
11494
11559
  } | undefined;
11495
11560
  signup?: {
11496
- status?: "optional" | "required" | "disabled" | undefined;
11561
+ status?: "required" | "optional" | "disabled" | undefined;
11497
11562
  } | undefined;
11498
11563
  } | undefined;
11499
11564
  } | undefined;
@@ -11609,7 +11674,7 @@ declare function init(config: AuthHeroConfig): {
11609
11674
  active?: boolean | undefined;
11610
11675
  } | undefined;
11611
11676
  signup?: {
11612
- status?: "optional" | "required" | "disabled" | undefined;
11677
+ status?: "required" | "optional" | "disabled" | undefined;
11613
11678
  verification?: {
11614
11679
  active?: boolean | undefined;
11615
11680
  } | undefined;
@@ -11626,7 +11691,7 @@ declare function init(config: AuthHeroConfig): {
11626
11691
  active?: boolean | undefined;
11627
11692
  } | undefined;
11628
11693
  signup?: {
11629
- status?: "optional" | "required" | "disabled" | undefined;
11694
+ status?: "required" | "optional" | "disabled" | undefined;
11630
11695
  } | undefined;
11631
11696
  validation?: {
11632
11697
  max_length?: number | undefined;
@@ -11643,7 +11708,7 @@ declare function init(config: AuthHeroConfig): {
11643
11708
  active?: boolean | undefined;
11644
11709
  } | undefined;
11645
11710
  signup?: {
11646
- status?: "optional" | "required" | "disabled" | undefined;
11711
+ status?: "required" | "optional" | "disabled" | undefined;
11647
11712
  } | undefined;
11648
11713
  } | undefined;
11649
11714
  } | undefined;
@@ -11788,7 +11853,7 @@ declare function init(config: AuthHeroConfig): {
11788
11853
  active?: boolean | undefined;
11789
11854
  } | undefined;
11790
11855
  signup?: {
11791
- status?: "optional" | "required" | "disabled" | undefined;
11856
+ status?: "required" | "optional" | "disabled" | undefined;
11792
11857
  verification?: {
11793
11858
  active?: boolean | undefined;
11794
11859
  } | undefined;
@@ -11805,7 +11870,7 @@ declare function init(config: AuthHeroConfig): {
11805
11870
  active?: boolean | undefined;
11806
11871
  } | undefined;
11807
11872
  signup?: {
11808
- status?: "optional" | "required" | "disabled" | undefined;
11873
+ status?: "required" | "optional" | "disabled" | undefined;
11809
11874
  } | undefined;
11810
11875
  validation?: {
11811
11876
  max_length?: number | undefined;
@@ -11822,7 +11887,7 @@ declare function init(config: AuthHeroConfig): {
11822
11887
  active?: boolean | undefined;
11823
11888
  } | undefined;
11824
11889
  signup?: {
11825
- status?: "optional" | "required" | "disabled" | undefined;
11890
+ status?: "required" | "optional" | "disabled" | undefined;
11826
11891
  } | undefined;
11827
11892
  } | undefined;
11828
11893
  } | undefined;
@@ -11946,7 +12011,7 @@ declare function init(config: AuthHeroConfig): {
11946
12011
  active?: boolean | undefined;
11947
12012
  } | undefined;
11948
12013
  signup?: {
11949
- status?: "optional" | "required" | "disabled" | undefined;
12014
+ status?: "required" | "optional" | "disabled" | undefined;
11950
12015
  verification?: {
11951
12016
  active?: boolean | undefined;
11952
12017
  } | undefined;
@@ -11963,7 +12028,7 @@ declare function init(config: AuthHeroConfig): {
11963
12028
  active?: boolean | undefined;
11964
12029
  } | undefined;
11965
12030
  signup?: {
11966
- status?: "optional" | "required" | "disabled" | undefined;
12031
+ status?: "required" | "optional" | "disabled" | undefined;
11967
12032
  } | undefined;
11968
12033
  validation?: {
11969
12034
  max_length?: number | undefined;
@@ -11980,7 +12045,7 @@ declare function init(config: AuthHeroConfig): {
11980
12045
  active?: boolean | undefined;
11981
12046
  } | undefined;
11982
12047
  signup?: {
11983
- status?: "optional" | "required" | "disabled" | undefined;
12048
+ status?: "required" | "optional" | "disabled" | undefined;
11984
12049
  } | undefined;
11985
12050
  } | undefined;
11986
12051
  } | undefined;
@@ -12317,6 +12382,19 @@ declare function init(config: AuthHeroConfig): {
12317
12382
  metadata?: {
12318
12383
  [x: string]: hono_utils_types.JSONValue;
12319
12384
  } | undefined;
12385
+ } | {
12386
+ trigger_id: "post-user-login";
12387
+ enabled: boolean;
12388
+ synchronous: boolean;
12389
+ created_at: string;
12390
+ updated_at: string;
12391
+ hook_id: string;
12392
+ page_id: "impersonate";
12393
+ priority?: number | undefined;
12394
+ metadata?: {
12395
+ [x: string]: hono_utils_types.JSONValue;
12396
+ } | undefined;
12397
+ permission_required?: string | undefined;
12320
12398
  })[] | {
12321
12399
  start: number;
12322
12400
  limit: number;
@@ -12369,6 +12447,19 @@ declare function init(config: AuthHeroConfig): {
12369
12447
  metadata?: {
12370
12448
  [x: string]: hono_utils_types.JSONValue;
12371
12449
  } | undefined;
12450
+ } | {
12451
+ trigger_id: "post-user-login";
12452
+ enabled: boolean;
12453
+ synchronous: boolean;
12454
+ created_at: string;
12455
+ updated_at: string;
12456
+ hook_id: string;
12457
+ page_id: "impersonate";
12458
+ priority?: number | undefined;
12459
+ metadata?: {
12460
+ [x: string]: hono_utils_types.JSONValue;
12461
+ } | undefined;
12462
+ permission_required?: string | undefined;
12372
12463
  })[];
12373
12464
  total?: number | undefined;
12374
12465
  next?: string | undefined;
@@ -12417,6 +12508,15 @@ declare function init(config: AuthHeroConfig): {
12417
12508
  priority?: number | undefined;
12418
12509
  hook_id?: string | undefined;
12419
12510
  metadata?: Record<string, unknown> | undefined;
12511
+ } | {
12512
+ trigger_id: "post-user-login";
12513
+ page_id: "impersonate";
12514
+ permission_required?: string | undefined;
12515
+ enabled?: boolean | undefined;
12516
+ synchronous?: boolean | undefined;
12517
+ priority?: number | undefined;
12518
+ hook_id?: string | undefined;
12519
+ metadata?: Record<string, unknown> | undefined;
12420
12520
  };
12421
12521
  };
12422
12522
  output: {
@@ -12467,6 +12567,19 @@ declare function init(config: AuthHeroConfig): {
12467
12567
  metadata?: {
12468
12568
  [x: string]: hono_utils_types.JSONValue;
12469
12569
  } | undefined;
12570
+ } | {
12571
+ trigger_id: "post-user-login";
12572
+ enabled: boolean;
12573
+ synchronous: boolean;
12574
+ created_at: string;
12575
+ updated_at: string;
12576
+ hook_id: string;
12577
+ page_id: "impersonate";
12578
+ priority?: number | undefined;
12579
+ metadata?: {
12580
+ [x: string]: hono_utils_types.JSONValue;
12581
+ } | undefined;
12582
+ permission_required?: string | undefined;
12470
12583
  };
12471
12584
  outputFormat: "json";
12472
12585
  status: 201;
@@ -12549,6 +12662,19 @@ declare function init(config: AuthHeroConfig): {
12549
12662
  metadata?: {
12550
12663
  [x: string]: hono_utils_types.JSONValue;
12551
12664
  } | undefined;
12665
+ } | {
12666
+ trigger_id: "post-user-login";
12667
+ enabled: boolean;
12668
+ synchronous: boolean;
12669
+ created_at: string;
12670
+ updated_at: string;
12671
+ hook_id: string;
12672
+ page_id: "impersonate";
12673
+ priority?: number | undefined;
12674
+ metadata?: {
12675
+ [x: string]: hono_utils_types.JSONValue;
12676
+ } | undefined;
12677
+ permission_required?: string | undefined;
12552
12678
  };
12553
12679
  outputFormat: "json";
12554
12680
  status: 200;
@@ -12627,6 +12753,19 @@ declare function init(config: AuthHeroConfig): {
12627
12753
  metadata?: {
12628
12754
  [x: string]: hono_utils_types.JSONValue;
12629
12755
  } | undefined;
12756
+ } | {
12757
+ trigger_id: "post-user-login";
12758
+ enabled: boolean;
12759
+ synchronous: boolean;
12760
+ created_at: string;
12761
+ updated_at: string;
12762
+ hook_id: string;
12763
+ page_id: "impersonate";
12764
+ priority?: number | undefined;
12765
+ metadata?: {
12766
+ [x: string]: hono_utils_types.JSONValue;
12767
+ } | undefined;
12768
+ permission_required?: string | undefined;
12630
12769
  };
12631
12770
  outputFormat: "json";
12632
12771
  status: 200;
@@ -12736,7 +12875,7 @@ declare function init(config: AuthHeroConfig): {
12736
12875
  log_type: string;
12737
12876
  category: "user_action" | "admin_action" | "system" | "api";
12738
12877
  actor: {
12739
- type: "client_credentials" | "user" | "api_key" | "system" | "admin";
12878
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
12740
12879
  id?: string | undefined;
12741
12880
  email?: string | undefined;
12742
12881
  org_id?: string | undefined;
@@ -13047,7 +13186,7 @@ declare function init(config: AuthHeroConfig): {
13047
13186
  created_at: string;
13048
13187
  updated_at: string;
13049
13188
  name: string;
13050
- provider: "auth0" | "cognito" | "okta" | "oidc";
13189
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13051
13190
  connection: string;
13052
13191
  enabled: boolean;
13053
13192
  credentials: {
@@ -13079,7 +13218,7 @@ declare function init(config: AuthHeroConfig): {
13079
13218
  created_at: string;
13080
13219
  updated_at: string;
13081
13220
  name: string;
13082
- provider: "auth0" | "cognito" | "okta" | "oidc";
13221
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13083
13222
  connection: string;
13084
13223
  enabled: boolean;
13085
13224
  credentials: {
@@ -13105,7 +13244,7 @@ declare function init(config: AuthHeroConfig): {
13105
13244
  } & {
13106
13245
  json: {
13107
13246
  name: string;
13108
- provider: "auth0" | "cognito" | "okta" | "oidc";
13247
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13109
13248
  connection: string;
13110
13249
  credentials: {
13111
13250
  domain: string;
@@ -13122,7 +13261,7 @@ declare function init(config: AuthHeroConfig): {
13122
13261
  created_at: string;
13123
13262
  updated_at: string;
13124
13263
  name: string;
13125
- provider: "auth0" | "cognito" | "okta" | "oidc";
13264
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13126
13265
  connection: string;
13127
13266
  enabled: boolean;
13128
13267
  credentials: {
@@ -13153,7 +13292,7 @@ declare function init(config: AuthHeroConfig): {
13153
13292
  json: {
13154
13293
  id?: string | undefined;
13155
13294
  name?: string | undefined;
13156
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
13295
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
13157
13296
  connection?: string | undefined;
13158
13297
  enabled?: boolean | undefined;
13159
13298
  credentials?: {
@@ -13169,7 +13308,7 @@ declare function init(config: AuthHeroConfig): {
13169
13308
  created_at: string;
13170
13309
  updated_at: string;
13171
13310
  name: string;
13172
- provider: "auth0" | "cognito" | "okta" | "oidc";
13311
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13173
13312
  connection: string;
13174
13313
  enabled: boolean;
13175
13314
  credentials: {
@@ -13387,7 +13526,7 @@ declare function init(config: AuthHeroConfig): {
13387
13526
  };
13388
13527
  };
13389
13528
  output: {
13390
- type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13529
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13391
13530
  date: string;
13392
13531
  isMobile: boolean;
13393
13532
  log_id: string;
@@ -13426,7 +13565,7 @@ declare function init(config: AuthHeroConfig): {
13426
13565
  limit: number;
13427
13566
  length: number;
13428
13567
  logs: {
13429
- type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13568
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13430
13569
  date: string;
13431
13570
  isMobile: boolean;
13432
13571
  log_id: string;
@@ -13465,7 +13604,7 @@ declare function init(config: AuthHeroConfig): {
13465
13604
  next?: string | undefined;
13466
13605
  } | {
13467
13606
  logs: {
13468
- type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13607
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13469
13608
  date: string;
13470
13609
  isMobile: boolean;
13471
13610
  log_id: string;
@@ -13519,7 +13658,7 @@ declare function init(config: AuthHeroConfig): {
13519
13658
  };
13520
13659
  };
13521
13660
  output: {
13522
- type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13661
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13523
13662
  date: string;
13524
13663
  isMobile: boolean;
13525
13664
  log_id: string;
@@ -13930,7 +14069,7 @@ declare function init(config: AuthHeroConfig): {
13930
14069
  addons?: {
13931
14070
  [x: string]: any;
13932
14071
  } | undefined;
13933
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14072
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13934
14073
  client_metadata?: {
13935
14074
  [x: string]: string;
13936
14075
  } | undefined;
@@ -14032,7 +14171,7 @@ declare function init(config: AuthHeroConfig): {
14032
14171
  addons?: {
14033
14172
  [x: string]: any;
14034
14173
  } | undefined;
14035
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14174
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14036
14175
  client_metadata?: {
14037
14176
  [x: string]: string;
14038
14177
  } | undefined;
@@ -14134,7 +14273,7 @@ declare function init(config: AuthHeroConfig): {
14134
14273
  addons?: {
14135
14274
  [x: string]: any;
14136
14275
  } | undefined;
14137
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14276
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14138
14277
  client_metadata?: {
14139
14278
  [x: string]: string;
14140
14279
  } | undefined;
@@ -14251,7 +14390,7 @@ declare function init(config: AuthHeroConfig): {
14251
14390
  addons?: {
14252
14391
  [x: string]: any;
14253
14392
  } | undefined;
14254
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14393
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14255
14394
  client_metadata?: {
14256
14395
  [x: string]: string;
14257
14396
  } | undefined;
@@ -14369,7 +14508,7 @@ declare function init(config: AuthHeroConfig): {
14369
14508
  custom_login_page_preview?: string | undefined;
14370
14509
  form_template?: string | undefined;
14371
14510
  addons?: Record<string, any> | undefined;
14372
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14511
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14373
14512
  client_metadata?: Record<string, string> | undefined;
14374
14513
  hide_sign_up_disabled_error?: boolean | undefined;
14375
14514
  mobile?: Record<string, any> | undefined;
@@ -14455,7 +14594,7 @@ declare function init(config: AuthHeroConfig): {
14455
14594
  addons?: {
14456
14595
  [x: string]: any;
14457
14596
  } | undefined;
14458
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14597
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14459
14598
  client_metadata?: {
14460
14599
  [x: string]: string;
14461
14600
  } | undefined;
@@ -14552,7 +14691,7 @@ declare function init(config: AuthHeroConfig): {
14552
14691
  custom_login_page_preview?: string | undefined;
14553
14692
  form_template?: string | undefined;
14554
14693
  addons?: Record<string, any> | undefined;
14555
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14694
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14556
14695
  client_metadata?: Record<string, string> | undefined;
14557
14696
  hide_sign_up_disabled_error?: boolean | undefined;
14558
14697
  mobile?: Record<string, any> | undefined;
@@ -14638,7 +14777,7 @@ declare function init(config: AuthHeroConfig): {
14638
14777
  addons?: {
14639
14778
  [x: string]: any;
14640
14779
  } | undefined;
14641
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14780
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14642
14781
  client_metadata?: {
14643
14782
  [x: string]: string;
14644
14783
  } | undefined;
@@ -14760,7 +14899,7 @@ declare function init(config: AuthHeroConfig): {
14760
14899
  active?: boolean | undefined;
14761
14900
  } | undefined;
14762
14901
  signup?: {
14763
- status?: "optional" | "required" | "disabled" | undefined;
14902
+ status?: "required" | "optional" | "disabled" | undefined;
14764
14903
  verification?: {
14765
14904
  active?: boolean | undefined;
14766
14905
  } | undefined;
@@ -14777,7 +14916,7 @@ declare function init(config: AuthHeroConfig): {
14777
14916
  active?: boolean | undefined;
14778
14917
  } | undefined;
14779
14918
  signup?: {
14780
- status?: "optional" | "required" | "disabled" | undefined;
14919
+ status?: "required" | "optional" | "disabled" | undefined;
14781
14920
  } | undefined;
14782
14921
  validation?: {
14783
14922
  max_length?: number | undefined;
@@ -14794,7 +14933,7 @@ declare function init(config: AuthHeroConfig): {
14794
14933
  active?: boolean | undefined;
14795
14934
  } | undefined;
14796
14935
  signup?: {
14797
- status?: "optional" | "required" | "disabled" | undefined;
14936
+ status?: "required" | "optional" | "disabled" | undefined;
14798
14937
  } | undefined;
14799
14938
  } | undefined;
14800
14939
  } | undefined;
@@ -14914,7 +15053,7 @@ declare function init(config: AuthHeroConfig): {
14914
15053
  active?: boolean | undefined;
14915
15054
  } | undefined;
14916
15055
  signup?: {
14917
- status?: "optional" | "required" | "disabled" | undefined;
15056
+ status?: "required" | "optional" | "disabled" | undefined;
14918
15057
  verification?: {
14919
15058
  active?: boolean | undefined;
14920
15059
  } | undefined;
@@ -14931,7 +15070,7 @@ declare function init(config: AuthHeroConfig): {
14931
15070
  active?: boolean | undefined;
14932
15071
  } | undefined;
14933
15072
  signup?: {
14934
- status?: "optional" | "required" | "disabled" | undefined;
15073
+ status?: "required" | "optional" | "disabled" | undefined;
14935
15074
  } | undefined;
14936
15075
  validation?: {
14937
15076
  max_length?: number | undefined;
@@ -14948,7 +15087,7 @@ declare function init(config: AuthHeroConfig): {
14948
15087
  active?: boolean | undefined;
14949
15088
  } | undefined;
14950
15089
  signup?: {
14951
- status?: "optional" | "required" | "disabled" | undefined;
15090
+ status?: "required" | "optional" | "disabled" | undefined;
14952
15091
  } | undefined;
14953
15092
  } | undefined;
14954
15093
  } | undefined;
@@ -15983,7 +16122,7 @@ declare function init(config: AuthHeroConfig): {
15983
16122
  };
15984
16123
  };
15985
16124
  output: {
15986
- type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
16125
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15987
16126
  date: string;
15988
16127
  isMobile: boolean;
15989
16128
  log_id: string;
@@ -16022,7 +16161,7 @@ declare function init(config: AuthHeroConfig): {
16022
16161
  limit: number;
16023
16162
  length: number;
16024
16163
  logs: {
16025
- type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
16164
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
16026
16165
  date: string;
16027
16166
  isMobile: boolean;
16028
16167
  log_id: string;
@@ -16341,7 +16480,7 @@ declare function init(config: AuthHeroConfig): {
16341
16480
  };
16342
16481
  } & {
16343
16482
  json: {
16344
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16483
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16345
16484
  body: string;
16346
16485
  from: string;
16347
16486
  subject: string;
@@ -16362,7 +16501,7 @@ declare function init(config: AuthHeroConfig): {
16362
16501
  };
16363
16502
  } & {
16364
16503
  json: {
16365
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16504
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16366
16505
  body: string;
16367
16506
  from: string;
16368
16507
  subject: string;
@@ -16374,7 +16513,7 @@ declare function init(config: AuthHeroConfig): {
16374
16513
  };
16375
16514
  };
16376
16515
  output: {
16377
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16516
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16378
16517
  body: string;
16379
16518
  from: string;
16380
16519
  subject: string;
@@ -16397,7 +16536,7 @@ declare function init(config: AuthHeroConfig): {
16397
16536
  };
16398
16537
  };
16399
16538
  output: {
16400
- name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16539
+ name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16401
16540
  body: string;
16402
16541
  subject: string;
16403
16542
  }[];
@@ -16410,7 +16549,7 @@ declare function init(config: AuthHeroConfig): {
16410
16549
  $get: {
16411
16550
  input: {
16412
16551
  param: {
16413
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16552
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16414
16553
  };
16415
16554
  } & {
16416
16555
  header: {
@@ -16423,7 +16562,7 @@ declare function init(config: AuthHeroConfig): {
16423
16562
  } | {
16424
16563
  input: {
16425
16564
  param: {
16426
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16565
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16427
16566
  };
16428
16567
  } & {
16429
16568
  header: {
@@ -16431,7 +16570,7 @@ declare function init(config: AuthHeroConfig): {
16431
16570
  };
16432
16571
  };
16433
16572
  output: {
16434
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16573
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16435
16574
  body: string;
16436
16575
  from: string;
16437
16576
  subject: string;
@@ -16450,7 +16589,7 @@ declare function init(config: AuthHeroConfig): {
16450
16589
  $put: {
16451
16590
  input: {
16452
16591
  param: {
16453
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16592
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16454
16593
  };
16455
16594
  } & {
16456
16595
  header: {
@@ -16458,7 +16597,7 @@ declare function init(config: AuthHeroConfig): {
16458
16597
  };
16459
16598
  } & {
16460
16599
  json: {
16461
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16600
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16462
16601
  body: string;
16463
16602
  subject: string;
16464
16603
  syntax?: "liquid" | undefined;
@@ -16470,7 +16609,7 @@ declare function init(config: AuthHeroConfig): {
16470
16609
  };
16471
16610
  };
16472
16611
  output: {
16473
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16612
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16474
16613
  body: string;
16475
16614
  from: string;
16476
16615
  subject: string;
@@ -16489,7 +16628,7 @@ declare function init(config: AuthHeroConfig): {
16489
16628
  $patch: {
16490
16629
  input: {
16491
16630
  param: {
16492
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16631
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16493
16632
  };
16494
16633
  } & {
16495
16634
  header: {
@@ -16497,7 +16636,7 @@ declare function init(config: AuthHeroConfig): {
16497
16636
  };
16498
16637
  } & {
16499
16638
  json: {
16500
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16639
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16501
16640
  body?: string | undefined;
16502
16641
  from?: string | undefined;
16503
16642
  subject?: string | undefined;
@@ -16514,7 +16653,7 @@ declare function init(config: AuthHeroConfig): {
16514
16653
  } | {
16515
16654
  input: {
16516
16655
  param: {
16517
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16656
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16518
16657
  };
16519
16658
  } & {
16520
16659
  header: {
@@ -16522,7 +16661,7 @@ declare function init(config: AuthHeroConfig): {
16522
16661
  };
16523
16662
  } & {
16524
16663
  json: {
16525
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16664
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16526
16665
  body?: string | undefined;
16527
16666
  from?: string | undefined;
16528
16667
  subject?: string | undefined;
@@ -16534,7 +16673,7 @@ declare function init(config: AuthHeroConfig): {
16534
16673
  };
16535
16674
  };
16536
16675
  output: {
16537
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16676
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16538
16677
  body: string;
16539
16678
  from: string;
16540
16679
  subject: string;
@@ -16553,7 +16692,7 @@ declare function init(config: AuthHeroConfig): {
16553
16692
  $delete: {
16554
16693
  input: {
16555
16694
  param: {
16556
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16695
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16557
16696
  };
16558
16697
  } & {
16559
16698
  header: {
@@ -16566,7 +16705,7 @@ declare function init(config: AuthHeroConfig): {
16566
16705
  } | {
16567
16706
  input: {
16568
16707
  param: {
16569
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16708
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16570
16709
  };
16571
16710
  } & {
16572
16711
  header: {
@@ -16583,7 +16722,7 @@ declare function init(config: AuthHeroConfig): {
16583
16722
  $post: {
16584
16723
  input: {
16585
16724
  param: {
16586
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16725
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16587
16726
  };
16588
16727
  } & {
16589
16728
  header: {
@@ -17496,7 +17635,7 @@ declare function init(config: AuthHeroConfig): {
17496
17635
  };
17497
17636
  output: {};
17498
17637
  outputFormat: string;
17499
- status: 204;
17638
+ status: 400;
17500
17639
  } | {
17501
17640
  input: {
17502
17641
  header: {
@@ -17509,7 +17648,7 @@ declare function init(config: AuthHeroConfig): {
17509
17648
  };
17510
17649
  output: {};
17511
17650
  outputFormat: string;
17512
- status: 400;
17651
+ status: 204;
17513
17652
  };
17514
17653
  };
17515
17654
  } & {
@@ -17535,7 +17674,7 @@ declare function init(config: AuthHeroConfig): {
17535
17674
  } & {
17536
17675
  json: {
17537
17676
  body?: string | undefined;
17538
- screen?: "login" | "identifier" | "signup" | "password" | undefined;
17677
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
17539
17678
  branding?: {
17540
17679
  colors?: {
17541
17680
  primary: string;
@@ -17704,7 +17843,7 @@ declare function init(config: AuthHeroConfig): {
17704
17843
  json: {
17705
17844
  bindings: {
17706
17845
  ref: {
17707
- type?: "action_name" | "action_id" | undefined;
17846
+ type?: "action_id" | "action_name" | undefined;
17708
17847
  value?: string | undefined;
17709
17848
  id?: string | undefined;
17710
17849
  name?: string | undefined;
@@ -17826,7 +17965,7 @@ declare function init(config: AuthHeroConfig): {
17826
17965
  logs: {
17827
17966
  action_name: string;
17828
17967
  lines: {
17829
- level: "log" | "error" | "info" | "warn" | "debug";
17968
+ level: "error" | "log" | "info" | "warn" | "debug";
17830
17969
  message: string;
17831
17970
  }[];
17832
17971
  }[];
@@ -18495,7 +18634,7 @@ declare function init(config: AuthHeroConfig): {
18495
18634
  args: hono_utils_types.JSONValue[];
18496
18635
  }[];
18497
18636
  logs: {
18498
- level: "log" | "error" | "info" | "warn" | "debug";
18637
+ level: "error" | "log" | "info" | "warn" | "debug";
18499
18638
  message: string;
18500
18639
  }[];
18501
18640
  error?: string | undefined;
@@ -18806,7 +18945,7 @@ declare function init(config: AuthHeroConfig): {
18806
18945
  scope?: string | undefined;
18807
18946
  grant_types?: string[] | undefined;
18808
18947
  response_types?: string[] | undefined;
18809
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
18948
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
18810
18949
  jwks_uri?: string | undefined;
18811
18950
  jwks?: Record<string, unknown> | undefined;
18812
18951
  software_id?: string | undefined;
@@ -18895,7 +19034,7 @@ declare function init(config: AuthHeroConfig): {
18895
19034
  scope?: string | undefined;
18896
19035
  grant_types?: string[] | undefined;
18897
19036
  response_types?: string[] | undefined;
18898
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
19037
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
18899
19038
  jwks_uri?: string | undefined;
18900
19039
  jwks?: Record<string, unknown> | undefined;
18901
19040
  software_id?: string | undefined;
@@ -19243,17 +19382,17 @@ declare function init(config: AuthHeroConfig): {
19243
19382
  authParams: {
19244
19383
  username?: string | undefined;
19245
19384
  state?: string | undefined;
19246
- act_as?: string | undefined;
19385
+ audience?: string | undefined;
19247
19386
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19248
19387
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19249
- redirect_uri?: string | undefined;
19250
- audience?: string | undefined;
19251
- organization?: string | undefined;
19252
- nonce?: string | undefined;
19253
19388
  scope?: string | undefined;
19254
- prompt?: string | undefined;
19389
+ organization?: string | undefined;
19390
+ redirect_uri?: string | undefined;
19255
19391
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19256
19392
  code_challenge?: string | undefined;
19393
+ nonce?: string | undefined;
19394
+ act_as?: string | undefined;
19395
+ prompt?: string | undefined;
19257
19396
  ui_locales?: string | undefined;
19258
19397
  max_age?: number | undefined;
19259
19398
  acr_values?: string | undefined;
@@ -19279,17 +19418,17 @@ declare function init(config: AuthHeroConfig): {
19279
19418
  authParams: {
19280
19419
  username?: string | undefined;
19281
19420
  state?: string | undefined;
19282
- act_as?: string | undefined;
19421
+ audience?: string | undefined;
19283
19422
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19284
19423
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19285
- redirect_uri?: string | undefined;
19286
- audience?: string | undefined;
19287
- organization?: string | undefined;
19288
- nonce?: string | undefined;
19289
19424
  scope?: string | undefined;
19290
- prompt?: string | undefined;
19425
+ organization?: string | undefined;
19426
+ redirect_uri?: string | undefined;
19291
19427
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19292
19428
  code_challenge?: string | undefined;
19429
+ nonce?: string | undefined;
19430
+ act_as?: string | undefined;
19431
+ prompt?: string | undefined;
19293
19432
  ui_locales?: string | undefined;
19294
19433
  max_age?: number | undefined;
19295
19434
  acr_values?: string | undefined;
@@ -19421,14 +19560,14 @@ declare function init(config: AuthHeroConfig): {
19421
19560
  input: {
19422
19561
  form: {
19423
19562
  token: string;
19424
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19563
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19425
19564
  client_id?: string | undefined;
19426
19565
  client_secret?: string | undefined;
19427
19566
  };
19428
19567
  } & {
19429
19568
  json: {
19430
19569
  token: string;
19431
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19570
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19432
19571
  client_id?: string | undefined;
19433
19572
  client_secret?: string | undefined;
19434
19573
  };
@@ -19440,14 +19579,14 @@ declare function init(config: AuthHeroConfig): {
19440
19579
  input: {
19441
19580
  form: {
19442
19581
  token: string;
19443
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19582
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19444
19583
  client_id?: string | undefined;
19445
19584
  client_secret?: string | undefined;
19446
19585
  };
19447
19586
  } & {
19448
19587
  json: {
19449
19588
  token: string;
19450
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19589
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19451
19590
  client_id?: string | undefined;
19452
19591
  client_secret?: string | undefined;
19453
19592
  };
@@ -19462,14 +19601,14 @@ declare function init(config: AuthHeroConfig): {
19462
19601
  input: {
19463
19602
  form: {
19464
19603
  token: string;
19465
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19604
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19466
19605
  client_id?: string | undefined;
19467
19606
  client_secret?: string | undefined;
19468
19607
  };
19469
19608
  } & {
19470
19609
  json: {
19471
19610
  token: string;
19472
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19611
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19473
19612
  client_id?: string | undefined;
19474
19613
  client_secret?: string | undefined;
19475
19614
  };
@@ -19519,7 +19658,7 @@ declare function init(config: AuthHeroConfig): {
19519
19658
  client_id: string;
19520
19659
  username: string;
19521
19660
  otp: string;
19522
- realm: "email" | "sms";
19661
+ realm: "sms" | "email";
19523
19662
  } | {
19524
19663
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19525
19664
  subject_token: string;
@@ -19566,7 +19705,7 @@ declare function init(config: AuthHeroConfig): {
19566
19705
  client_id: string;
19567
19706
  username: string;
19568
19707
  otp: string;
19569
- realm: "email" | "sms";
19708
+ realm: "sms" | "email";
19570
19709
  } | {
19571
19710
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19572
19711
  subject_token: string;
@@ -19618,7 +19757,7 @@ declare function init(config: AuthHeroConfig): {
19618
19757
  client_id: string;
19619
19758
  username: string;
19620
19759
  otp: string;
19621
- realm: "email" | "sms";
19760
+ realm: "sms" | "email";
19622
19761
  } | {
19623
19762
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19624
19763
  subject_token: string;
@@ -19665,7 +19804,7 @@ declare function init(config: AuthHeroConfig): {
19665
19804
  client_id: string;
19666
19805
  username: string;
19667
19806
  otp: string;
19668
- realm: "email" | "sms";
19807
+ realm: "sms" | "email";
19669
19808
  } | {
19670
19809
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19671
19810
  subject_token: string;
@@ -19725,7 +19864,7 @@ declare function init(config: AuthHeroConfig): {
19725
19864
  client_id: string;
19726
19865
  username: string;
19727
19866
  otp: string;
19728
- realm: "email" | "sms";
19867
+ realm: "sms" | "email";
19729
19868
  } | {
19730
19869
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19731
19870
  subject_token: string;
@@ -19772,7 +19911,7 @@ declare function init(config: AuthHeroConfig): {
19772
19911
  client_id: string;
19773
19912
  username: string;
19774
19913
  otp: string;
19775
- realm: "email" | "sms";
19914
+ realm: "sms" | "email";
19776
19915
  } | {
19777
19916
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19778
19917
  subject_token: string;
@@ -19827,7 +19966,7 @@ declare function init(config: AuthHeroConfig): {
19827
19966
  client_id: string;
19828
19967
  username: string;
19829
19968
  otp: string;
19830
- realm: "email" | "sms";
19969
+ realm: "sms" | "email";
19831
19970
  } | {
19832
19971
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19833
19972
  subject_token: string;
@@ -19874,7 +20013,7 @@ declare function init(config: AuthHeroConfig): {
19874
20013
  client_id: string;
19875
20014
  username: string;
19876
20015
  otp: string;
19877
- realm: "email" | "sms";
20016
+ realm: "sms" | "email";
19878
20017
  } | {
19879
20018
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19880
20019
  subject_token: string;
@@ -19929,7 +20068,7 @@ declare function init(config: AuthHeroConfig): {
19929
20068
  client_id: string;
19930
20069
  username: string;
19931
20070
  otp: string;
19932
- realm: "email" | "sms";
20071
+ realm: "sms" | "email";
19933
20072
  } | {
19934
20073
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19935
20074
  subject_token: string;
@@ -19976,7 +20115,7 @@ declare function init(config: AuthHeroConfig): {
19976
20115
  client_id: string;
19977
20116
  username: string;
19978
20117
  otp: string;
19979
- realm: "email" | "sms";
20118
+ realm: "sms" | "email";
19980
20119
  } | {
19981
20120
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19982
20121
  subject_token: string;
@@ -20212,7 +20351,7 @@ declare function init(config: AuthHeroConfig): {
20212
20351
  };
20213
20352
  output: {};
20214
20353
  outputFormat: string;
20215
- status: 302;
20354
+ status: 400;
20216
20355
  } | {
20217
20356
  input: {
20218
20357
  query: {
@@ -20226,7 +20365,7 @@ declare function init(config: AuthHeroConfig): {
20226
20365
  };
20227
20366
  output: {};
20228
20367
  outputFormat: string;
20229
- status: 400;
20368
+ status: 302;
20230
20369
  };
20231
20370
  };
20232
20371
  }, "/oidc/logout"> & hono_types.MergeSchemaPath<{
@@ -20333,7 +20472,7 @@ declare function init(config: AuthHeroConfig): {
20333
20472
  };
20334
20473
  output: {};
20335
20474
  outputFormat: string;
20336
- status: 302;
20475
+ status: 400;
20337
20476
  } | {
20338
20477
  input: {
20339
20478
  query: {
@@ -20342,7 +20481,7 @@ declare function init(config: AuthHeroConfig): {
20342
20481
  };
20343
20482
  output: {};
20344
20483
  outputFormat: string;
20345
- status: 400;
20484
+ status: 302;
20346
20485
  } | {
20347
20486
  input: {
20348
20487
  query: {
@@ -20471,7 +20610,7 @@ declare function init(config: AuthHeroConfig): {
20471
20610
  };
20472
20611
  output: {};
20473
20612
  outputFormat: string;
20474
- status: 302;
20613
+ status: 400;
20475
20614
  } | {
20476
20615
  input: {
20477
20616
  query: {
@@ -20484,7 +20623,7 @@ declare function init(config: AuthHeroConfig): {
20484
20623
  };
20485
20624
  output: {};
20486
20625
  outputFormat: string;
20487
- status: 400;
20626
+ status: 302;
20488
20627
  };
20489
20628
  };
20490
20629
  }, "/impersonate"> & hono_types.MergeSchemaPath<{
@@ -20821,12 +20960,12 @@ declare function init(config: AuthHeroConfig): {
20821
20960
  } & {
20822
20961
  form: {
20823
20962
  username: string;
20824
- login_selection?: "code" | "password" | undefined;
20963
+ login_selection?: "password" | "code" | undefined;
20825
20964
  };
20826
20965
  };
20827
20966
  output: {};
20828
20967
  outputFormat: string;
20829
- status: 302;
20968
+ status: 400;
20830
20969
  } | {
20831
20970
  input: {
20832
20971
  query: {
@@ -20835,12 +20974,12 @@ declare function init(config: AuthHeroConfig): {
20835
20974
  } & {
20836
20975
  form: {
20837
20976
  username: string;
20838
- login_selection?: "code" | "password" | undefined;
20977
+ login_selection?: "password" | "code" | undefined;
20839
20978
  };
20840
20979
  };
20841
20980
  output: {};
20842
20981
  outputFormat: string;
20843
- status: 400;
20982
+ status: 302;
20844
20983
  };
20845
20984
  };
20846
20985
  }, "/login/identifier"> & hono_types.MergeSchemaPath<{
@@ -21200,7 +21339,7 @@ declare function init(config: AuthHeroConfig): {
21200
21339
  $get: {
21201
21340
  input: {
21202
21341
  param: {
21203
- screen: "login" | "account" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21342
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21204
21343
  };
21205
21344
  } & {
21206
21345
  query: {
@@ -21216,7 +21355,7 @@ declare function init(config: AuthHeroConfig): {
21216
21355
  } | {
21217
21356
  input: {
21218
21357
  param: {
21219
- screen: "login" | "account" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21358
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21220
21359
  };
21221
21360
  } & {
21222
21361
  query: {
@@ -21228,11 +21367,11 @@ declare function init(config: AuthHeroConfig): {
21228
21367
  };
21229
21368
  output: {};
21230
21369
  outputFormat: string;
21231
- status: 302;
21370
+ status: 400;
21232
21371
  } | {
21233
21372
  input: {
21234
21373
  param: {
21235
- screen: "login" | "account" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21374
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21236
21375
  };
21237
21376
  } & {
21238
21377
  query: {
@@ -21244,7 +21383,7 @@ declare function init(config: AuthHeroConfig): {
21244
21383
  };
21245
21384
  output: {};
21246
21385
  outputFormat: string;
21247
- status: 400;
21386
+ status: 302;
21248
21387
  };
21249
21388
  };
21250
21389
  } & {
@@ -21252,7 +21391,7 @@ declare function init(config: AuthHeroConfig): {
21252
21391
  $post: {
21253
21392
  input: {
21254
21393
  param: {
21255
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21394
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21256
21395
  };
21257
21396
  } & {
21258
21397
  query: {
@@ -21270,7 +21409,7 @@ declare function init(config: AuthHeroConfig): {
21270
21409
  } | {
21271
21410
  input: {
21272
21411
  param: {
21273
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21412
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21274
21413
  };
21275
21414
  } & {
21276
21415
  query: {
@@ -21372,5 +21511,5 @@ declare function init(config: AuthHeroConfig): {
21372
21511
  createX509Certificate: typeof createX509Certificate;
21373
21512
  };
21374
21513
 
21375
- export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, ensureSigningKey, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
21376
- export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureSigningKeyOptions, EnsureSigningKeyResult, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
21514
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupActionExecutions, 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, ensureSigningKey, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
21515
+ export type { ActionExecutionsCleanupParams, AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureSigningKeyOptions, EnsureSigningKeyResult, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };