authhero 9.9.0 → 9.10.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 (59) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +537 -338
  3. package/dist/authhero.d.ts +297 -124
  4. package/dist/authhero.mjs +14879 -14098
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/authorization-code.d.ts +2 -1
  7. package/dist/types/authentication-flows/client-credentials.d.ts +2 -1
  8. package/dist/types/authentication-flows/grant-tokens.d.ts +16 -0
  9. package/dist/types/authentication-flows/passwordless.d.ts +6 -5
  10. package/dist/types/authentication-flows/refresh-token.d.ts +2 -1
  11. package/dist/types/authentication-flows/token-exchange.d.ts +2 -1
  12. package/dist/types/helpers/client-assertion-replay.d.ts +21 -0
  13. package/dist/types/helpers/client-assertion.d.ts +24 -2
  14. package/dist/types/helpers/default-destinations.d.ts +7 -1
  15. package/dist/types/helpers/outbox-destinations/index.d.ts +1 -0
  16. package/dist/types/helpers/outbox-destinations/pipeline.d.ts +63 -0
  17. package/dist/types/helpers/outbox-relay.d.ts +3 -0
  18. package/dist/types/helpers/refresh-token-lifetime.d.ts +103 -0
  19. package/dist/types/helpers/reserved-claims.d.ts +64 -0
  20. package/dist/types/helpers/run-outbox-relay.d.ts +8 -0
  21. package/dist/types/hooks/addDataHooks.d.ts +4 -3
  22. package/dist/types/index.d.ts +134 -121
  23. package/dist/types/routes/auth-api/index.d.ts +16 -16
  24. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  25. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  26. package/dist/types/routes/management-api/action-triggers.d.ts +0 -2
  27. package/dist/types/routes/management-api/actions.d.ts +0 -7
  28. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  29. package/dist/types/routes/management-api/branding.d.ts +9 -9
  30. package/dist/types/routes/management-api/clients.d.ts +8 -8
  31. package/dist/types/routes/management-api/connections.d.ts +1 -1
  32. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  33. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  34. package/dist/types/routes/management-api/failed-events.d.ts +21 -1
  35. package/dist/types/routes/management-api/forms.d.ts +126 -126
  36. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  37. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  38. package/dist/types/routes/management-api/index.d.ts +107 -96
  39. package/dist/types/routes/management-api/keys.d.ts +12 -12
  40. package/dist/types/routes/management-api/logs.d.ts +4 -4
  41. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  42. package/dist/types/routes/management-api/organizations.d.ts +5 -5
  43. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  44. package/dist/types/routes/management-api/roles.d.ts +1 -1
  45. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  46. package/dist/types/routes/management-api/tenants.d.ts +11 -11
  47. package/dist/types/routes/management-api/users.d.ts +15 -15
  48. package/dist/types/routes/universal-login/common.d.ts +2 -2
  49. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  50. package/dist/types/routes/universal-login/info-code-exchange.d.ts +27 -0
  51. package/dist/types/routes/universal-login/token-info-page.d.ts +26 -0
  52. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  53. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  54. package/dist/types/types/AuthHeroConfig.d.ts +27 -0
  55. package/dist/types/types/Bindings.d.ts +12 -0
  56. package/dist/types/types/OutboxMetrics.d.ts +47 -0
  57. package/dist/types/types/index.d.ts +1 -0
  58. package/dist/types/utils/email.d.ts +21 -9
  59. package/package.json +8 -8
@@ -14,6 +14,7 @@ export { cleanupUserSessions, cleanupSessions, } from "./helpers/user-session-cl
14
14
  export type { UserSessionCleanupParams } from "./helpers/user-session-cleanup";
15
15
  export { drainOutbox } from "./helpers/outbox-relay";
16
16
  export type { EventDestination } from "./helpers/outbox-relay";
17
+ export type { OutboxMetric, OutboxMetricName, OutboxMetricsSink, } from "./types/OutboxMetrics";
17
18
  export { cleanupOutbox } from "./helpers/outbox-cleanup";
18
19
  export { cleanupCodes } from "./helpers/codes-cleanup";
19
20
  export { cleanupActionExecutions } from "./helpers/action-executions-cleanup";
@@ -33,6 +34,7 @@ export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToke
33
34
  export { CodeHookDestination } from "./helpers/outbox-destinations/code-hooks";
34
35
  export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/registration-finalizer";
35
36
  export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
37
+ export { PipelineDestination, type PipelineDestinationOptions, type PipelineRecord, } from "./helpers/outbox-destinations/pipeline";
36
38
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
37
39
  export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
38
40
  export { CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, } from "./routes/proxy-control-plane/scopes";
@@ -168,7 +170,7 @@ export declare function init(config: AuthHeroConfig): {
168
170
  };
169
171
  } & {
170
172
  json: {
171
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
173
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
172
174
  phone_number?: string | undefined;
173
175
  totp_secret?: string | undefined;
174
176
  credential_id?: string | undefined;
@@ -308,7 +310,7 @@ export declare function init(config: AuthHeroConfig): {
308
310
  };
309
311
  };
310
312
  output: {
311
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
313
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
312
314
  enabled: boolean;
313
315
  trial_expired?: boolean | undefined;
314
316
  }[];
@@ -463,7 +465,7 @@ export declare function init(config: AuthHeroConfig): {
463
465
  $get: {
464
466
  input: {
465
467
  param: {
466
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
468
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
467
469
  };
468
470
  } & {
469
471
  header: {
@@ -471,7 +473,7 @@ export declare function init(config: AuthHeroConfig): {
471
473
  };
472
474
  };
473
475
  output: {
474
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
476
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
475
477
  enabled: boolean;
476
478
  trial_expired?: boolean | undefined;
477
479
  };
@@ -484,7 +486,7 @@ export declare function init(config: AuthHeroConfig): {
484
486
  $put: {
485
487
  input: {
486
488
  param: {
487
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
489
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
488
490
  };
489
491
  } & {
490
492
  header: {
@@ -496,7 +498,7 @@ export declare function init(config: AuthHeroConfig): {
496
498
  };
497
499
  };
498
500
  output: {
499
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
501
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
500
502
  enabled: boolean;
501
503
  trial_expired?: boolean | undefined;
502
504
  };
@@ -1268,19 +1270,19 @@ export declare function init(config: AuthHeroConfig): {
1268
1270
  } & {
1269
1271
  json: {
1270
1272
  client_id: string;
1271
- invitee: {
1272
- email?: string | undefined;
1273
- };
1274
1273
  inviter: {
1275
1274
  name?: string | undefined;
1276
1275
  };
1276
+ invitee: {
1277
+ email?: string | undefined;
1278
+ };
1277
1279
  id?: string | undefined;
1280
+ connection_id?: string | undefined;
1278
1281
  app_metadata?: Record<string, any> | undefined;
1279
1282
  user_metadata?: Record<string, any> | undefined;
1280
- connection_id?: string | undefined;
1281
1283
  roles?: string[] | undefined;
1282
- send_invitation_email?: boolean | undefined;
1283
1284
  ttl_sec?: number | undefined;
1285
+ send_invitation_email?: boolean | undefined;
1284
1286
  };
1285
1287
  };
1286
1288
  output: {
@@ -1463,8 +1465,8 @@ export declare function init(config: AuthHeroConfig): {
1463
1465
  };
1464
1466
  } & {
1465
1467
  json: {
1466
- show_as_button?: boolean | undefined;
1467
1468
  assign_membership_on_login?: boolean | undefined;
1469
+ show_as_button?: boolean | undefined;
1468
1470
  is_signup_enabled?: boolean | undefined;
1469
1471
  };
1470
1472
  };
@@ -2035,8 +2037,8 @@ export declare function init(config: AuthHeroConfig): {
2035
2037
  };
2036
2038
  } & {
2037
2039
  query: {
2038
- page?: string | undefined;
2039
2040
  from?: string | undefined;
2041
+ page?: string | undefined;
2040
2042
  include_totals?: string | undefined;
2041
2043
  per_page?: string | undefined;
2042
2044
  take?: string | undefined;
@@ -7107,7 +7109,7 @@ export declare function init(config: AuthHeroConfig): {
7107
7109
  };
7108
7110
  };
7109
7111
  output: {
7110
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7112
+ prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
7111
7113
  language: string;
7112
7114
  }[];
7113
7115
  outputFormat: "json";
@@ -7145,7 +7147,7 @@ export declare function init(config: AuthHeroConfig): {
7145
7147
  $get: {
7146
7148
  input: {
7147
7149
  param: {
7148
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7150
+ prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
7149
7151
  language: string;
7150
7152
  };
7151
7153
  } & {
@@ -7167,7 +7169,7 @@ export declare function init(config: AuthHeroConfig): {
7167
7169
  $put: {
7168
7170
  input: {
7169
7171
  param: {
7170
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7172
+ prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
7171
7173
  language: string;
7172
7174
  };
7173
7175
  } & {
@@ -7191,7 +7193,7 @@ export declare function init(config: AuthHeroConfig): {
7191
7193
  $delete: {
7192
7194
  input: {
7193
7195
  param: {
7194
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7196
+ prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
7195
7197
  language: string;
7196
7198
  };
7197
7199
  } & {
@@ -8803,7 +8805,7 @@ export declare function init(config: AuthHeroConfig): {
8803
8805
  log_type: string;
8804
8806
  category: "user_action" | "admin_action" | "system" | "api";
8805
8807
  actor: {
8806
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8808
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8807
8809
  id?: string | undefined;
8808
8810
  email?: string | undefined;
8809
8811
  org_id?: string | undefined;
@@ -8886,6 +8888,26 @@ export declare function init(config: AuthHeroConfig): {
8886
8888
  status: 200;
8887
8889
  };
8888
8890
  };
8891
+ } & {
8892
+ "/bulk-retry": {
8893
+ $post: {
8894
+ input: {
8895
+ header: {
8896
+ "tenant-id"?: string | undefined;
8897
+ };
8898
+ } & {
8899
+ json: {
8900
+ ids: string[];
8901
+ };
8902
+ };
8903
+ output: {
8904
+ replayed: string[];
8905
+ not_found: string[];
8906
+ };
8907
+ outputFormat: "json";
8908
+ status: 200;
8909
+ };
8910
+ };
8889
8911
  } & {
8890
8912
  "/:id/retry": {
8891
8913
  $post: {
@@ -9114,7 +9136,7 @@ export declare function init(config: AuthHeroConfig): {
9114
9136
  created_at: string;
9115
9137
  updated_at: string;
9116
9138
  name: string;
9117
- provider: "auth0" | "oidc" | "okta" | "cognito";
9139
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9118
9140
  connection: string;
9119
9141
  enabled: boolean;
9120
9142
  credentials: {
@@ -9146,7 +9168,7 @@ export declare function init(config: AuthHeroConfig): {
9146
9168
  created_at: string;
9147
9169
  updated_at: string;
9148
9170
  name: string;
9149
- provider: "auth0" | "oidc" | "okta" | "cognito";
9171
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9150
9172
  connection: string;
9151
9173
  enabled: boolean;
9152
9174
  credentials: {
@@ -9172,7 +9194,7 @@ export declare function init(config: AuthHeroConfig): {
9172
9194
  } & {
9173
9195
  json: {
9174
9196
  name: string;
9175
- provider: "auth0" | "oidc" | "okta" | "cognito";
9197
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9176
9198
  connection: string;
9177
9199
  credentials: {
9178
9200
  domain: string;
@@ -9189,7 +9211,7 @@ export declare function init(config: AuthHeroConfig): {
9189
9211
  created_at: string;
9190
9212
  updated_at: string;
9191
9213
  name: string;
9192
- provider: "auth0" | "oidc" | "okta" | "cognito";
9214
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9193
9215
  connection: string;
9194
9216
  enabled: boolean;
9195
9217
  credentials: {
@@ -9220,7 +9242,7 @@ export declare function init(config: AuthHeroConfig): {
9220
9242
  json: {
9221
9243
  id?: string | undefined;
9222
9244
  name?: string | undefined;
9223
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
9245
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
9224
9246
  connection?: string | undefined;
9225
9247
  enabled?: boolean | undefined;
9226
9248
  credentials?: {
@@ -9236,7 +9258,7 @@ export declare function init(config: AuthHeroConfig): {
9236
9258
  created_at: string;
9237
9259
  updated_at: string;
9238
9260
  name: string;
9239
- provider: "auth0" | "oidc" | "okta" | "cognito";
9261
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9240
9262
  connection: string;
9241
9263
  enabled: boolean;
9242
9264
  credentials: {
@@ -9284,7 +9306,7 @@ export declare function init(config: AuthHeroConfig): {
9284
9306
  [x: string]: import("hono/utils/types").JSONValue;
9285
9307
  };
9286
9308
  id: string;
9287
- status: "active" | "suspended" | "paused";
9309
+ status: "suspended" | "active" | "paused";
9288
9310
  filters?: {
9289
9311
  type: string;
9290
9312
  name: string;
@@ -9316,7 +9338,7 @@ export declare function init(config: AuthHeroConfig): {
9316
9338
  [x: string]: import("hono/utils/types").JSONValue;
9317
9339
  };
9318
9340
  id: string;
9319
- status: "active" | "suspended" | "paused";
9341
+ status: "suspended" | "active" | "paused";
9320
9342
  filters?: {
9321
9343
  type: string;
9322
9344
  name: string;
@@ -9341,7 +9363,7 @@ export declare function init(config: AuthHeroConfig): {
9341
9363
  name: string;
9342
9364
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
9343
9365
  sink: Record<string, unknown>;
9344
- status?: "active" | "suspended" | "paused" | undefined;
9366
+ status?: "suspended" | "active" | "paused" | undefined;
9345
9367
  filters?: {
9346
9368
  type: string;
9347
9369
  name: string;
@@ -9356,7 +9378,7 @@ export declare function init(config: AuthHeroConfig): {
9356
9378
  [x: string]: import("hono/utils/types").JSONValue;
9357
9379
  };
9358
9380
  id: string;
9359
- status: "active" | "suspended" | "paused";
9381
+ status: "suspended" | "active" | "paused";
9360
9382
  filters?: {
9361
9383
  type: string;
9362
9384
  name: string;
@@ -9391,7 +9413,7 @@ export declare function init(config: AuthHeroConfig): {
9391
9413
  }[] | undefined;
9392
9414
  isPriority?: boolean | undefined;
9393
9415
  id?: string | undefined;
9394
- status?: "active" | "suspended" | "paused" | undefined;
9416
+ status?: "suspended" | "active" | "paused" | undefined;
9395
9417
  created_at?: string | undefined;
9396
9418
  updated_at?: string | undefined;
9397
9419
  };
@@ -9403,7 +9425,7 @@ export declare function init(config: AuthHeroConfig): {
9403
9425
  [x: string]: import("hono/utils/types").JSONValue;
9404
9426
  };
9405
9427
  id: string;
9406
- status: "active" | "suspended" | "paused";
9428
+ status: "suspended" | "active" | "paused";
9407
9429
  filters?: {
9408
9430
  type: string;
9409
9431
  name: string;
@@ -9454,7 +9476,7 @@ export declare function init(config: AuthHeroConfig): {
9454
9476
  };
9455
9477
  };
9456
9478
  output: {
9457
- type: "srrt" | "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" | "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" | "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";
9479
+ type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9458
9480
  date: string;
9459
9481
  isMobile: boolean;
9460
9482
  log_id: string;
@@ -9493,7 +9515,7 @@ export declare function init(config: AuthHeroConfig): {
9493
9515
  limit: number;
9494
9516
  length: number;
9495
9517
  logs: {
9496
- type: "srrt" | "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" | "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" | "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";
9518
+ type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9497
9519
  date: string;
9498
9520
  isMobile: boolean;
9499
9521
  log_id: string;
@@ -9532,7 +9554,7 @@ export declare function init(config: AuthHeroConfig): {
9532
9554
  next?: string | undefined;
9533
9555
  } | {
9534
9556
  logs: {
9535
- type: "srrt" | "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" | "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" | "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";
9557
+ type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9536
9558
  date: string;
9537
9559
  isMobile: boolean;
9538
9560
  log_id: string;
@@ -9586,7 +9608,7 @@ export declare function init(config: AuthHeroConfig): {
9586
9608
  };
9587
9609
  };
9588
9610
  output: {
9589
- type: "srrt" | "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" | "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" | "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";
9611
+ type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9590
9612
  date: string;
9591
9613
  isMobile: boolean;
9592
9614
  log_id: string;
@@ -11170,11 +11192,11 @@ export declare function init(config: AuthHeroConfig): {
11170
11192
  cert: string;
11171
11193
  fingerprint: string;
11172
11194
  thumbprint: string;
11173
- revoked_at?: string | undefined;
11174
11195
  tenant_id?: string | undefined;
11175
11196
  connection?: string | undefined;
11176
- current?: boolean | undefined;
11177
11197
  next?: boolean | undefined;
11198
+ revoked_at?: string | undefined;
11199
+ current?: boolean | undefined;
11178
11200
  previous?: boolean | undefined;
11179
11201
  current_since?: string | undefined;
11180
11202
  current_until?: string | undefined;
@@ -11209,11 +11231,11 @@ export declare function init(config: AuthHeroConfig): {
11209
11231
  cert: string;
11210
11232
  fingerprint: string;
11211
11233
  thumbprint: string;
11212
- revoked_at?: string | undefined;
11213
11234
  tenant_id?: string | undefined;
11214
11235
  connection?: string | undefined;
11215
- current?: boolean | undefined;
11216
11236
  next?: boolean | undefined;
11237
+ revoked_at?: string | undefined;
11238
+ current?: boolean | undefined;
11217
11239
  previous?: boolean | undefined;
11218
11240
  current_since?: string | undefined;
11219
11241
  current_until?: string | undefined;
@@ -11247,11 +11269,11 @@ export declare function init(config: AuthHeroConfig): {
11247
11269
  cert: string;
11248
11270
  fingerprint: string;
11249
11271
  thumbprint: string;
11250
- revoked_at?: string | undefined;
11251
11272
  tenant_id?: string | undefined;
11252
11273
  connection?: string | undefined;
11253
- current?: boolean | undefined;
11254
11274
  next?: boolean | undefined;
11275
+ revoked_at?: string | undefined;
11276
+ current?: boolean | undefined;
11255
11277
  previous?: boolean | undefined;
11256
11278
  current_since?: string | undefined;
11257
11279
  current_until?: string | undefined;
@@ -11287,11 +11309,11 @@ export declare function init(config: AuthHeroConfig): {
11287
11309
  cert: string;
11288
11310
  fingerprint: string;
11289
11311
  thumbprint: string;
11290
- revoked_at?: string | undefined;
11291
11312
  tenant_id?: string | undefined;
11292
11313
  connection?: string | undefined;
11293
- current?: boolean | undefined;
11294
11314
  next?: boolean | undefined;
11315
+ revoked_at?: string | undefined;
11316
+ current?: boolean | undefined;
11295
11317
  previous?: boolean | undefined;
11296
11318
  current_since?: string | undefined;
11297
11319
  current_until?: string | undefined;
@@ -12140,9 +12162,11 @@ export declare function init(config: AuthHeroConfig): {
12140
12162
  };
12141
12163
  };
12142
12164
  output: {
12143
- created_at: string;
12144
12165
  id: string;
12166
+ created_at: string;
12167
+ client_id: string;
12145
12168
  user_id: string;
12169
+ rotating: boolean;
12146
12170
  device: {
12147
12171
  initial_user_agent: string;
12148
12172
  initial_ip: string;
@@ -12151,8 +12175,6 @@ export declare function init(config: AuthHeroConfig): {
12151
12175
  last_ip: string;
12152
12176
  last_asn: string;
12153
12177
  };
12154
- client_id: string;
12155
- rotating: boolean;
12156
12178
  login_id: string;
12157
12179
  resource_servers: {
12158
12180
  audience: string;
@@ -12162,21 +12184,20 @@ export declare function init(config: AuthHeroConfig): {
12162
12184
  expires_at?: string | undefined;
12163
12185
  idle_expires_at?: string | undefined;
12164
12186
  session_id?: string | undefined;
12187
+ organization?: string | undefined;
12165
12188
  auth_connection?: string | undefined;
12166
12189
  auth_strategy?: {
12167
12190
  strategy: string;
12168
12191
  strategy_type: string;
12169
12192
  } | undefined;
12170
- organization?: string | undefined;
12171
12193
  last_exchanged_at?: string | undefined;
12172
12194
  }[] | {
12173
- start: number;
12174
- limit: number;
12175
- length: number;
12176
12195
  tokens: {
12177
- created_at: string;
12178
12196
  id: string;
12197
+ created_at: string;
12198
+ client_id: string;
12179
12199
  user_id: string;
12200
+ rotating: boolean;
12180
12201
  device: {
12181
12202
  initial_user_agent: string;
12182
12203
  initial_ip: string;
@@ -12185,8 +12206,6 @@ export declare function init(config: AuthHeroConfig): {
12185
12206
  last_ip: string;
12186
12207
  last_asn: string;
12187
12208
  };
12188
- client_id: string;
12189
- rotating: boolean;
12190
12209
  login_id: string;
12191
12210
  resource_servers: {
12192
12211
  audience: string;
@@ -12196,21 +12215,25 @@ export declare function init(config: AuthHeroConfig): {
12196
12215
  expires_at?: string | undefined;
12197
12216
  idle_expires_at?: string | undefined;
12198
12217
  session_id?: string | undefined;
12218
+ organization?: string | undefined;
12199
12219
  auth_connection?: string | undefined;
12200
12220
  auth_strategy?: {
12201
12221
  strategy: string;
12202
12222
  strategy_type: string;
12203
12223
  } | undefined;
12204
- organization?: string | undefined;
12205
12224
  last_exchanged_at?: string | undefined;
12206
12225
  }[];
12207
- total?: number | undefined;
12208
12226
  next?: string | undefined;
12209
12227
  } | {
12228
+ start: number;
12229
+ limit: number;
12230
+ length: number;
12210
12231
  tokens: {
12211
- created_at: string;
12212
12232
  id: string;
12233
+ created_at: string;
12234
+ client_id: string;
12213
12235
  user_id: string;
12236
+ rotating: boolean;
12214
12237
  device: {
12215
12238
  initial_user_agent: string;
12216
12239
  initial_ip: string;
@@ -12219,8 +12242,6 @@ export declare function init(config: AuthHeroConfig): {
12219
12242
  last_ip: string;
12220
12243
  last_asn: string;
12221
12244
  };
12222
- client_id: string;
12223
- rotating: boolean;
12224
12245
  login_id: string;
12225
12246
  resource_servers: {
12226
12247
  audience: string;
@@ -12230,14 +12251,15 @@ export declare function init(config: AuthHeroConfig): {
12230
12251
  expires_at?: string | undefined;
12231
12252
  idle_expires_at?: string | undefined;
12232
12253
  session_id?: string | undefined;
12254
+ organization?: string | undefined;
12233
12255
  auth_connection?: string | undefined;
12234
12256
  auth_strategy?: {
12235
12257
  strategy: string;
12236
12258
  strategy_type: string;
12237
12259
  } | undefined;
12238
- organization?: string | undefined;
12239
12260
  last_exchanged_at?: string | undefined;
12240
12261
  }[];
12262
+ total?: number | undefined;
12241
12263
  next?: string | undefined;
12242
12264
  };
12243
12265
  outputFormat: "json";
@@ -12286,7 +12308,7 @@ export declare function init(config: AuthHeroConfig): {
12286
12308
  };
12287
12309
  };
12288
12310
  output: {
12289
- type: "srrt" | "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" | "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" | "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";
12311
+ type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12290
12312
  date: string;
12291
12313
  isMobile: boolean;
12292
12314
  log_id: string;
@@ -12325,7 +12347,7 @@ export declare function init(config: AuthHeroConfig): {
12325
12347
  limit: number;
12326
12348
  length: number;
12327
12349
  logs: {
12328
- type: "srrt" | "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" | "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" | "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";
12350
+ type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12329
12351
  date: string;
12330
12352
  isMobile: boolean;
12331
12353
  log_id: string;
@@ -12644,7 +12666,7 @@ export declare function init(config: AuthHeroConfig): {
12644
12666
  };
12645
12667
  } & {
12646
12668
  json: {
12647
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12669
+ 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";
12648
12670
  body: string;
12649
12671
  from: string;
12650
12672
  subject: string;
@@ -12665,7 +12687,7 @@ export declare function init(config: AuthHeroConfig): {
12665
12687
  };
12666
12688
  } & {
12667
12689
  json: {
12668
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12690
+ 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";
12669
12691
  body: string;
12670
12692
  from: string;
12671
12693
  subject: string;
@@ -12677,7 +12699,7 @@ export declare function init(config: AuthHeroConfig): {
12677
12699
  };
12678
12700
  };
12679
12701
  output: {
12680
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12702
+ 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";
12681
12703
  body: string;
12682
12704
  from: string;
12683
12705
  subject: string;
@@ -12700,7 +12722,7 @@ export declare function init(config: AuthHeroConfig): {
12700
12722
  };
12701
12723
  };
12702
12724
  output: {
12703
- name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12725
+ 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";
12704
12726
  body: string;
12705
12727
  subject: string;
12706
12728
  }[];
@@ -12713,7 +12735,7 @@ export declare function init(config: AuthHeroConfig): {
12713
12735
  $get: {
12714
12736
  input: {
12715
12737
  param: {
12716
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12738
+ 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";
12717
12739
  };
12718
12740
  } & {
12719
12741
  header: {
@@ -12726,7 +12748,7 @@ export declare function init(config: AuthHeroConfig): {
12726
12748
  } | {
12727
12749
  input: {
12728
12750
  param: {
12729
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12751
+ 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";
12730
12752
  };
12731
12753
  } & {
12732
12754
  header: {
@@ -12734,7 +12756,7 @@ export declare function init(config: AuthHeroConfig): {
12734
12756
  };
12735
12757
  };
12736
12758
  output: {
12737
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12759
+ 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";
12738
12760
  body: string;
12739
12761
  from: string;
12740
12762
  subject: string;
@@ -12753,7 +12775,7 @@ export declare function init(config: AuthHeroConfig): {
12753
12775
  $put: {
12754
12776
  input: {
12755
12777
  param: {
12756
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12778
+ 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";
12757
12779
  };
12758
12780
  } & {
12759
12781
  header: {
@@ -12761,7 +12783,7 @@ export declare function init(config: AuthHeroConfig): {
12761
12783
  };
12762
12784
  } & {
12763
12785
  json: {
12764
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12786
+ 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";
12765
12787
  body: string;
12766
12788
  subject: string;
12767
12789
  syntax?: "liquid" | undefined;
@@ -12773,7 +12795,7 @@ export declare function init(config: AuthHeroConfig): {
12773
12795
  };
12774
12796
  };
12775
12797
  output: {
12776
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12798
+ 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";
12777
12799
  body: string;
12778
12800
  from: string;
12779
12801
  subject: string;
@@ -12792,7 +12814,7 @@ export declare function init(config: AuthHeroConfig): {
12792
12814
  $patch: {
12793
12815
  input: {
12794
12816
  param: {
12795
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12817
+ 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";
12796
12818
  };
12797
12819
  } & {
12798
12820
  header: {
@@ -12800,7 +12822,7 @@ export declare function init(config: AuthHeroConfig): {
12800
12822
  };
12801
12823
  } & {
12802
12824
  json: {
12803
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12825
+ 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;
12804
12826
  body?: string | undefined;
12805
12827
  from?: string | undefined;
12806
12828
  subject?: string | undefined;
@@ -12817,7 +12839,7 @@ export declare function init(config: AuthHeroConfig): {
12817
12839
  } | {
12818
12840
  input: {
12819
12841
  param: {
12820
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12842
+ 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";
12821
12843
  };
12822
12844
  } & {
12823
12845
  header: {
@@ -12825,7 +12847,7 @@ export declare function init(config: AuthHeroConfig): {
12825
12847
  };
12826
12848
  } & {
12827
12849
  json: {
12828
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12850
+ 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;
12829
12851
  body?: string | undefined;
12830
12852
  from?: string | undefined;
12831
12853
  subject?: string | undefined;
@@ -12837,7 +12859,7 @@ export declare function init(config: AuthHeroConfig): {
12837
12859
  };
12838
12860
  };
12839
12861
  output: {
12840
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12862
+ 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";
12841
12863
  body: string;
12842
12864
  from: string;
12843
12865
  subject: string;
@@ -12856,7 +12878,7 @@ export declare function init(config: AuthHeroConfig): {
12856
12878
  $delete: {
12857
12879
  input: {
12858
12880
  param: {
12859
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12881
+ 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";
12860
12882
  };
12861
12883
  } & {
12862
12884
  header: {
@@ -12869,7 +12891,7 @@ export declare function init(config: AuthHeroConfig): {
12869
12891
  } | {
12870
12892
  input: {
12871
12893
  param: {
12872
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12894
+ 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";
12873
12895
  };
12874
12896
  } & {
12875
12897
  header: {
@@ -12886,7 +12908,7 @@ export declare function init(config: AuthHeroConfig): {
12886
12908
  $post: {
12887
12909
  input: {
12888
12910
  param: {
12889
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12911
+ 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";
12890
12912
  };
12891
12913
  } & {
12892
12914
  header: {
@@ -13507,12 +13529,12 @@ export declare function init(config: AuthHeroConfig): {
13507
13529
  background_color: string;
13508
13530
  background_image_url: string;
13509
13531
  page_layout: "center" | "left" | "right";
13510
- logo_placement?: "none" | "widget" | "chip" | undefined;
13532
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13511
13533
  };
13512
13534
  widget: {
13513
13535
  header_text_alignment: "center" | "left" | "right";
13514
13536
  logo_height: number;
13515
- logo_position: "none" | "center" | "left" | "right";
13537
+ logo_position: "center" | "left" | "right" | "none";
13516
13538
  logo_url: string;
13517
13539
  social_buttons_layout: "bottom" | "top";
13518
13540
  };
@@ -13597,12 +13619,12 @@ export declare function init(config: AuthHeroConfig): {
13597
13619
  background_color: string;
13598
13620
  background_image_url: string;
13599
13621
  page_layout: "center" | "left" | "right";
13600
- logo_placement?: "none" | "widget" | "chip" | undefined;
13622
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13601
13623
  };
13602
13624
  widget: {
13603
13625
  header_text_alignment: "center" | "left" | "right";
13604
13626
  logo_height: number;
13605
- logo_position: "none" | "center" | "left" | "right";
13627
+ logo_position: "center" | "left" | "right" | "none";
13606
13628
  logo_url: string;
13607
13629
  social_buttons_layout: "bottom" | "top";
13608
13630
  };
@@ -13676,12 +13698,12 @@ export declare function init(config: AuthHeroConfig): {
13676
13698
  background_color: string;
13677
13699
  background_image_url: string;
13678
13700
  page_layout: "center" | "left" | "right";
13679
- logo_placement?: "none" | "widget" | "chip" | undefined;
13701
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13680
13702
  };
13681
13703
  widget: {
13682
13704
  header_text_alignment: "center" | "left" | "right";
13683
13705
  logo_height: number;
13684
- logo_position: "none" | "center" | "left" | "right";
13706
+ logo_position: "center" | "left" | "right" | "none";
13685
13707
  logo_url: string;
13686
13708
  social_buttons_layout: "bottom" | "top";
13687
13709
  };
@@ -13838,7 +13860,7 @@ export declare function init(config: AuthHeroConfig): {
13838
13860
  } & {
13839
13861
  json: {
13840
13862
  body?: string | undefined;
13841
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
13863
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
13842
13864
  branding?: {
13843
13865
  colors?: {
13844
13866
  primary: string;
@@ -13924,12 +13946,12 @@ export declare function init(config: AuthHeroConfig): {
13924
13946
  background_color: string;
13925
13947
  background_image_url: string;
13926
13948
  page_layout: "center" | "left" | "right";
13927
- logo_placement?: "none" | "widget" | "chip" | undefined;
13949
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13928
13950
  } | undefined;
13929
13951
  widget?: {
13930
13952
  header_text_alignment: "center" | "left" | "right";
13931
13953
  logo_height: number;
13932
- logo_position: "none" | "center" | "left" | "right";
13954
+ logo_position: "center" | "left" | "right" | "none";
13933
13955
  logo_url: string;
13934
13956
  social_buttons_layout: "bottom" | "top";
13935
13957
  } | undefined;
@@ -13981,7 +14003,6 @@ export declare function init(config: AuthHeroConfig): {
13981
14003
  deployed_at?: string | undefined;
13982
14004
  secrets?: {
13983
14005
  name: string;
13984
- value?: string | undefined;
13985
14006
  }[] | undefined;
13986
14007
  };
13987
14008
  created_at: string;
@@ -14043,7 +14064,6 @@ export declare function init(config: AuthHeroConfig): {
14043
14064
  deployed_at?: string | undefined;
14044
14065
  secrets?: {
14045
14066
  name: string;
14046
- value?: string | undefined;
14047
14067
  }[] | undefined;
14048
14068
  };
14049
14069
  created_at: string;
@@ -14180,7 +14200,6 @@ export declare function init(config: AuthHeroConfig): {
14180
14200
  deployed_at?: string | undefined;
14181
14201
  secrets?: {
14182
14202
  name: string;
14183
- value?: string | undefined;
14184
14203
  }[] | undefined;
14185
14204
  }[] | {
14186
14205
  start: number;
@@ -14208,7 +14227,6 @@ export declare function init(config: AuthHeroConfig): {
14208
14227
  deployed_at?: string | undefined;
14209
14228
  secrets?: {
14210
14229
  name: string;
14211
- value?: string | undefined;
14212
14230
  }[] | undefined;
14213
14231
  }[];
14214
14232
  total?: number | undefined;
@@ -14268,7 +14286,6 @@ export declare function init(config: AuthHeroConfig): {
14268
14286
  deployed_at?: string | undefined;
14269
14287
  secrets?: {
14270
14288
  name: string;
14271
- value?: string | undefined;
14272
14289
  }[] | undefined;
14273
14290
  };
14274
14291
  outputFormat: "json";
@@ -14322,7 +14339,6 @@ export declare function init(config: AuthHeroConfig): {
14322
14339
  deployed_at?: string | undefined;
14323
14340
  secrets?: {
14324
14341
  name: string;
14325
- value?: string | undefined;
14326
14342
  }[] | undefined;
14327
14343
  };
14328
14344
  outputFormat: "json";
@@ -14416,7 +14432,6 @@ export declare function init(config: AuthHeroConfig): {
14416
14432
  deployed_at?: string | undefined;
14417
14433
  secrets?: {
14418
14434
  name: string;
14419
- value?: string | undefined;
14420
14435
  }[] | undefined;
14421
14436
  };
14422
14437
  outputFormat: "json";
@@ -14513,7 +14528,6 @@ export declare function init(config: AuthHeroConfig): {
14513
14528
  deployed_at?: string | undefined;
14514
14529
  secrets?: {
14515
14530
  name: string;
14516
- value?: string | undefined;
14517
14531
  }[] | undefined;
14518
14532
  };
14519
14533
  outputFormat: "json";
@@ -14730,7 +14744,6 @@ export declare function init(config: AuthHeroConfig): {
14730
14744
  deployed_at?: string | undefined;
14731
14745
  secrets?: {
14732
14746
  name: string;
14733
- value?: string | undefined;
14734
14747
  }[] | undefined;
14735
14748
  };
14736
14749
  outputFormat: "json";
@@ -15544,17 +15557,17 @@ export declare function init(config: AuthHeroConfig): {
15544
15557
  email: string;
15545
15558
  send: "code" | "link";
15546
15559
  authParams: {
15560
+ audience?: string | undefined;
15547
15561
  username?: string | undefined;
15562
+ prompt?: string | undefined;
15548
15563
  scope?: string | undefined;
15549
- audience?: string | undefined;
15550
- state?: string | undefined;
15551
- act_as?: string | undefined;
15564
+ organization?: string | undefined;
15552
15565
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15553
15566
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15567
+ state?: string | undefined;
15554
15568
  redirect_uri?: string | undefined;
15555
- organization?: string | undefined;
15569
+ act_as?: string | undefined;
15556
15570
  nonce?: string | undefined;
15557
- prompt?: string | undefined;
15558
15571
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15559
15572
  code_challenge?: string | undefined;
15560
15573
  ui_locales?: string | undefined;
@@ -15580,17 +15593,17 @@ export declare function init(config: AuthHeroConfig): {
15580
15593
  phone_number: string;
15581
15594
  send: "code" | "link";
15582
15595
  authParams: {
15596
+ audience?: string | undefined;
15583
15597
  username?: string | undefined;
15598
+ prompt?: string | undefined;
15584
15599
  scope?: string | undefined;
15585
- audience?: string | undefined;
15586
- state?: string | undefined;
15587
- act_as?: string | undefined;
15600
+ organization?: string | undefined;
15588
15601
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15589
15602
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15603
+ state?: string | undefined;
15590
15604
  redirect_uri?: string | undefined;
15591
- organization?: string | undefined;
15605
+ act_as?: string | undefined;
15592
15606
  nonce?: string | undefined;
15593
- prompt?: string | undefined;
15594
15607
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15595
15608
  code_challenge?: string | undefined;
15596
15609
  ui_locales?: string | undefined;
@@ -15822,7 +15835,7 @@ export declare function init(config: AuthHeroConfig): {
15822
15835
  client_id: string;
15823
15836
  username: string;
15824
15837
  otp: string;
15825
- realm: "email" | "sms";
15838
+ realm: "sms" | "email";
15826
15839
  scope?: string | undefined;
15827
15840
  audience?: string | undefined;
15828
15841
  } | {
@@ -15871,7 +15884,7 @@ export declare function init(config: AuthHeroConfig): {
15871
15884
  client_id: string;
15872
15885
  username: string;
15873
15886
  otp: string;
15874
- realm: "email" | "sms";
15887
+ realm: "sms" | "email";
15875
15888
  scope?: string | undefined;
15876
15889
  audience?: string | undefined;
15877
15890
  } | {
@@ -15925,7 +15938,7 @@ export declare function init(config: AuthHeroConfig): {
15925
15938
  client_id: string;
15926
15939
  username: string;
15927
15940
  otp: string;
15928
- realm: "email" | "sms";
15941
+ realm: "sms" | "email";
15929
15942
  scope?: string | undefined;
15930
15943
  audience?: string | undefined;
15931
15944
  } | {
@@ -15974,7 +15987,7 @@ export declare function init(config: AuthHeroConfig): {
15974
15987
  client_id: string;
15975
15988
  username: string;
15976
15989
  otp: string;
15977
- realm: "email" | "sms";
15990
+ realm: "sms" | "email";
15978
15991
  scope?: string | undefined;
15979
15992
  audience?: string | undefined;
15980
15993
  } | {
@@ -16036,7 +16049,7 @@ export declare function init(config: AuthHeroConfig): {
16036
16049
  client_id: string;
16037
16050
  username: string;
16038
16051
  otp: string;
16039
- realm: "email" | "sms";
16052
+ realm: "sms" | "email";
16040
16053
  scope?: string | undefined;
16041
16054
  audience?: string | undefined;
16042
16055
  } | {
@@ -16085,7 +16098,7 @@ export declare function init(config: AuthHeroConfig): {
16085
16098
  client_id: string;
16086
16099
  username: string;
16087
16100
  otp: string;
16088
- realm: "email" | "sms";
16101
+ realm: "sms" | "email";
16089
16102
  scope?: string | undefined;
16090
16103
  audience?: string | undefined;
16091
16104
  } | {
@@ -16142,7 +16155,7 @@ export declare function init(config: AuthHeroConfig): {
16142
16155
  client_id: string;
16143
16156
  username: string;
16144
16157
  otp: string;
16145
- realm: "email" | "sms";
16158
+ realm: "sms" | "email";
16146
16159
  scope?: string | undefined;
16147
16160
  audience?: string | undefined;
16148
16161
  } | {
@@ -16191,7 +16204,7 @@ export declare function init(config: AuthHeroConfig): {
16191
16204
  client_id: string;
16192
16205
  username: string;
16193
16206
  otp: string;
16194
- realm: "email" | "sms";
16207
+ realm: "sms" | "email";
16195
16208
  scope?: string | undefined;
16196
16209
  audience?: string | undefined;
16197
16210
  } | {
@@ -16248,7 +16261,7 @@ export declare function init(config: AuthHeroConfig): {
16248
16261
  client_id: string;
16249
16262
  username: string;
16250
16263
  otp: string;
16251
- realm: "email" | "sms";
16264
+ realm: "sms" | "email";
16252
16265
  scope?: string | undefined;
16253
16266
  audience?: string | undefined;
16254
16267
  } | {
@@ -16297,7 +16310,7 @@ export declare function init(config: AuthHeroConfig): {
16297
16310
  client_id: string;
16298
16311
  username: string;
16299
16312
  otp: string;
16300
- realm: "email" | "sms";
16313
+ realm: "sms" | "email";
16301
16314
  scope?: string | undefined;
16302
16315
  audience?: string | undefined;
16303
16316
  } | {
@@ -17523,7 +17536,7 @@ export declare function init(config: AuthHeroConfig): {
17523
17536
  $get: {
17524
17537
  input: {
17525
17538
  param: {
17526
- 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";
17539
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17527
17540
  };
17528
17541
  } & {
17529
17542
  query: {
@@ -17539,7 +17552,7 @@ export declare function init(config: AuthHeroConfig): {
17539
17552
  } | {
17540
17553
  input: {
17541
17554
  param: {
17542
- 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";
17555
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17543
17556
  };
17544
17557
  } & {
17545
17558
  query: {
@@ -17555,7 +17568,7 @@ export declare function init(config: AuthHeroConfig): {
17555
17568
  } | {
17556
17569
  input: {
17557
17570
  param: {
17558
- 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";
17571
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17559
17572
  };
17560
17573
  } & {
17561
17574
  query: {
@@ -17575,7 +17588,7 @@ export declare function init(config: AuthHeroConfig): {
17575
17588
  $post: {
17576
17589
  input: {
17577
17590
  param: {
17578
- 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";
17591
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "enter-password" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17579
17592
  };
17580
17593
  } & {
17581
17594
  query: {
@@ -17593,7 +17606,7 @@ export declare function init(config: AuthHeroConfig): {
17593
17606
  } | {
17594
17607
  input: {
17595
17608
  param: {
17596
- 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";
17609
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "enter-password" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17597
17610
  };
17598
17611
  } & {
17599
17612
  query: {