authhero 5.21.1 → 7.0.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 (45) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +105 -105
  3. package/dist/authhero.d.ts +173 -122
  4. package/dist/authhero.mjs +13563 -10885
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  9. package/dist/types/index.d.ts +116 -115
  10. package/dist/types/routes/auth-api/index.d.ts +21 -21
  11. package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/actions.d.ts +3 -3
  16. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  17. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  18. package/dist/types/routes/management-api/clients.d.ts +7 -7
  19. package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
  20. package/dist/types/routes/management-api/email-templates.d.ts +20 -20
  21. package/dist/types/routes/management-api/emails.d.ts +2 -2
  22. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  23. package/dist/types/routes/management-api/forms.d.ts +7 -7
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/index.d.ts +82 -82
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  28. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  29. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  30. package/dist/types/routes/management-api/users.d.ts +2 -2
  31. package/dist/types/routes/proxy-control-plane/index.d.ts +21 -7
  32. package/dist/types/routes/proxy-control-plane/verify.d.ts +39 -0
  33. package/dist/types/routes/universal-login/common.d.ts +2 -2
  34. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  35. package/dist/types/routes/universal-login/form-node.d.ts +4 -4
  36. package/dist/types/routes/universal-login/index.d.ts +4 -4
  37. package/dist/types/routes/universal-login/u2-form-node.d.ts +2 -2
  38. package/dist/types/routes/universal-login/u2-index.d.ts +8 -8
  39. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  40. package/dist/types/strategies/microsoft-entra.d.ts +23 -0
  41. package/dist/types/strategies/waad.d.ts +24 -0
  42. package/dist/types/strategies/windowslive.d.ts +24 -0
  43. package/dist/types/types/AuthHeroConfig.d.ts +17 -5
  44. package/dist/types/utils/jwks.d.ts +2 -2
  45. package/package.json +5 -5
@@ -10,6 +10,7 @@ import { SamlSigner } from '@authhero/saml/core';
10
10
  export { HttpSamlSigner, SamlSigner } from '@authhero/saml/core';
11
11
  import { Context, Next, Handler, MiddlewareHandler } from 'hono';
12
12
  import * as _authhero_proxy from '@authhero/proxy';
13
+ export { PROXY_RESOLVE_HOST_SCOPE } from '@authhero/proxy';
13
14
  import { FC, PropsWithChildren, JSXNode } from 'hono/jsx';
14
15
  import * as hono_jsx_jsx_dev_runtime from 'hono/jsx/jsx-dev-runtime';
15
16
 
@@ -1194,14 +1195,26 @@ interface AuthHeroConfig {
1194
1195
  * data plane. When set, mounts `GET /api/v2/proxy/control-plane/hosts/:host`
1195
1196
  * which returns the cross-tenant `ResolvedHost` for the given hostname.
1196
1197
  *
1197
- * This endpoint is read by remote proxy deployments via
1198
- * `createHttpProxyAdapter`. It is **cross-tenant** gate it with a
1199
- * dedicated credential (shared secret, mTLS, or a JWT scoped to
1200
- * `proxy:resolve_host`), never with a tenant token.
1198
+ * Authentication is opinionated and built in: incoming requests must
1199
+ * carry a `Bearer` JWT signed by a key in `jwksUrl`, with `iss` matching
1200
+ * the runtime `env.ISSUER` (strict URL equality after trailing-slash
1201
+ * normalization) and the `proxy:resolve_host` scope. The matching
1202
+ * client-side helper is `createHttpProxyAdapter` in `@authhero/proxy`.
1201
1203
  */
1202
1204
  proxyControlPlane?: {
1203
1205
  resolveHost: (host: string) => Promise<_authhero_proxy.ResolvedHost | null>;
1204
- authenticate: (request: Request) => Promise<boolean> | boolean;
1206
+ /**
1207
+ * JWKS document URL used to verify the bearer token. On a single-shard
1208
+ * deployment this is typically `${env.ISSUER}/.well-known/jwks.json`.
1209
+ */
1210
+ jwksUrl: string;
1211
+ /**
1212
+ * Optional fetch override for `jwksUrl`. Defaults to global `fetch`.
1213
+ * Hosts on Cloudflare Workers can pass
1214
+ * `(url) => env.JWKS_SERVICE.fetch(url)` to route through a service
1215
+ * binding instead of the public network.
1216
+ */
1217
+ jwksFetch?: (url: string) => Promise<Response>;
1205
1218
  /**
1206
1219
  * Optional receiver for `POST /sync` events emitted by tenant shards via
1207
1220
  * the `ControlPlaneSyncDestination`. Mount on the control-plane authhero
@@ -2265,6 +2278,44 @@ interface CreateApplySyncEventsOptions {
2265
2278
  */
2266
2279
  declare function createApplySyncEvents(options: CreateApplySyncEventsOptions): (events: SyncEvent[]) => Promise<void>;
2267
2280
 
2281
+ /**
2282
+ * Strict issuer equality: parse both `iss` and `expected` as URLs and compare
2283
+ * the resulting hrefs after stripping any single trailing slash. No host-only
2284
+ * match, no subdomain match — a token issued by `https://a.example.com/` and
2285
+ * an expected `https://b.example.com/` (or `https://example.com/x/`) must NOT
2286
+ * be treated as equivalent.
2287
+ */
2288
+ declare function isAllowedIssuer(iss: string, expected: string): boolean;
2289
+ type VerifyControlPlaneTokenResult = {
2290
+ ok: true;
2291
+ } | {
2292
+ ok: false;
2293
+ reason: string;
2294
+ };
2295
+ interface VerifyControlPlaneTokenOptions {
2296
+ /** Compact JWS to verify. */
2297
+ token: string;
2298
+ /** JWKS document URL. */
2299
+ jwksUrl: string;
2300
+ /** Optional fetch override — defaults to global `fetch`. */
2301
+ jwksFetch?: (url: string) => Promise<Response>;
2302
+ /** Expected `iss` claim (compared via {@link isAllowedIssuer}). */
2303
+ expectedIssuer: string;
2304
+ /** Required `scope` (space-separated). Defaults to `proxy:resolve_host`. */
2305
+ requiredScope?: string;
2306
+ }
2307
+ /**
2308
+ * Verify a bearer token for the proxy control plane. Returns `{ ok: true }`
2309
+ * on success, `{ ok: false, reason }` on any failure — the reason is for
2310
+ * logs only and must not be surfaced to the caller.
2311
+ *
2312
+ * Accepted algs: RS256/384/512, ES256/384/512. The JWK's `alg` must match
2313
+ * the token header's `alg`. The token must carry the configured required
2314
+ * scope (`proxy:resolve_host` by default) and an `iss` that strictly equals
2315
+ * `expectedIssuer` after URL normalization.
2316
+ */
2317
+ declare function verifyControlPlaneToken(options: VerifyControlPlaneTokenOptions): Promise<VerifyControlPlaneTokenResult>;
2318
+
2268
2319
  /**
2269
2320
  * Options for the entity hooks wrapper
2270
2321
  */
@@ -2721,7 +2772,7 @@ declare function init(config: AuthHeroConfig): {
2721
2772
  };
2722
2773
  } & {
2723
2774
  json: {
2724
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2775
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
2725
2776
  phone_number?: string | undefined;
2726
2777
  totp_secret?: string | undefined;
2727
2778
  credential_id?: string | undefined;
@@ -2861,7 +2912,7 @@ declare function init(config: AuthHeroConfig): {
2861
2912
  };
2862
2913
  };
2863
2914
  output: {
2864
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2915
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2865
2916
  enabled: boolean;
2866
2917
  trial_expired?: boolean | undefined;
2867
2918
  }[];
@@ -3016,7 +3067,7 @@ declare function init(config: AuthHeroConfig): {
3016
3067
  $get: {
3017
3068
  input: {
3018
3069
  param: {
3019
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3070
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3020
3071
  };
3021
3072
  } & {
3022
3073
  header: {
@@ -3024,7 +3075,7 @@ declare function init(config: AuthHeroConfig): {
3024
3075
  };
3025
3076
  };
3026
3077
  output: {
3027
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3078
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3028
3079
  enabled: boolean;
3029
3080
  trial_expired?: boolean | undefined;
3030
3081
  };
@@ -3037,7 +3088,7 @@ declare function init(config: AuthHeroConfig): {
3037
3088
  $put: {
3038
3089
  input: {
3039
3090
  param: {
3040
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3091
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3041
3092
  };
3042
3093
  } & {
3043
3094
  header: {
@@ -3049,7 +3100,7 @@ declare function init(config: AuthHeroConfig): {
3049
3100
  };
3050
3101
  };
3051
3102
  output: {
3052
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3103
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3053
3104
  enabled: boolean;
3054
3105
  trial_expired?: boolean | undefined;
3055
3106
  };
@@ -3794,10 +3845,10 @@ declare function init(config: AuthHeroConfig): {
3794
3845
  invitee: {
3795
3846
  email?: string | undefined;
3796
3847
  };
3797
- connection_id?: string | undefined;
3798
3848
  id?: string | undefined;
3799
3849
  app_metadata?: Record<string, any> | undefined;
3800
3850
  user_metadata?: Record<string, any> | undefined;
3851
+ connection_id?: string | undefined;
3801
3852
  roles?: string[] | undefined;
3802
3853
  ttl_sec?: number | undefined;
3803
3854
  send_invitation_email?: boolean | undefined;
@@ -3847,7 +3898,7 @@ declare function init(config: AuthHeroConfig): {
3847
3898
  };
3848
3899
  output: {};
3849
3900
  outputFormat: string;
3850
- status: 404;
3901
+ status: 204;
3851
3902
  } | {
3852
3903
  input: {
3853
3904
  param: {
@@ -3861,7 +3912,7 @@ declare function init(config: AuthHeroConfig): {
3861
3912
  };
3862
3913
  output: {};
3863
3914
  outputFormat: string;
3864
- status: 204;
3915
+ status: 404;
3865
3916
  };
3866
3917
  };
3867
3918
  } & {
@@ -5277,7 +5328,7 @@ declare function init(config: AuthHeroConfig): {
5277
5328
  value: string;
5278
5329
  label: string;
5279
5330
  }[] | undefined;
5280
- display?: "checkbox" | "radio" | undefined;
5331
+ display?: "radio" | "checkbox" | undefined;
5281
5332
  multiple?: boolean | undefined;
5282
5333
  default_value?: string | string[] | undefined;
5283
5334
  } | undefined;
@@ -5854,7 +5905,7 @@ declare function init(config: AuthHeroConfig): {
5854
5905
  value: string;
5855
5906
  label: string;
5856
5907
  }[] | undefined;
5857
- display?: "checkbox" | "radio" | undefined;
5908
+ display?: "radio" | "checkbox" | undefined;
5858
5909
  multiple?: boolean | undefined;
5859
5910
  default_value?: string | string[] | undefined;
5860
5911
  } | undefined;
@@ -6446,7 +6497,7 @@ declare function init(config: AuthHeroConfig): {
6446
6497
  value: string;
6447
6498
  label: string;
6448
6499
  }[] | undefined;
6449
- display?: "checkbox" | "radio" | undefined;
6500
+ display?: "radio" | "checkbox" | undefined;
6450
6501
  multiple?: boolean | undefined;
6451
6502
  default_value?: string | string[] | undefined;
6452
6503
  } | undefined;
@@ -7044,7 +7095,7 @@ declare function init(config: AuthHeroConfig): {
7044
7095
  value: string;
7045
7096
  label: string;
7046
7097
  }[] | undefined;
7047
- display?: "checkbox" | "radio" | undefined;
7098
+ display?: "radio" | "checkbox" | undefined;
7048
7099
  multiple?: boolean | undefined;
7049
7100
  default_value?: string | string[] | undefined;
7050
7101
  } | undefined;
@@ -7615,7 +7666,7 @@ declare function init(config: AuthHeroConfig): {
7615
7666
  value: string;
7616
7667
  label: string;
7617
7668
  }[] | undefined;
7618
- display?: "checkbox" | "radio" | undefined;
7669
+ display?: "radio" | "checkbox" | undefined;
7619
7670
  multiple?: boolean | undefined;
7620
7671
  default_value?: string | string[] | undefined;
7621
7672
  } | undefined;
@@ -8192,7 +8243,7 @@ declare function init(config: AuthHeroConfig): {
8192
8243
  value: string;
8193
8244
  label: string;
8194
8245
  }[] | undefined;
8195
- display?: "checkbox" | "radio" | undefined;
8246
+ display?: "radio" | "checkbox" | undefined;
8196
8247
  multiple?: boolean | undefined;
8197
8248
  default_value?: string | string[] | undefined;
8198
8249
  } | undefined;
@@ -8763,7 +8814,7 @@ declare function init(config: AuthHeroConfig): {
8763
8814
  value: string;
8764
8815
  label: string;
8765
8816
  }[] | undefined;
8766
- display?: "checkbox" | "radio" | undefined;
8817
+ display?: "radio" | "checkbox" | undefined;
8767
8818
  multiple?: boolean | undefined;
8768
8819
  default_value?: string | string[] | undefined;
8769
8820
  } | undefined;
@@ -9285,7 +9336,7 @@ declare function init(config: AuthHeroConfig): {
9285
9336
  };
9286
9337
  };
9287
9338
  output: {
9288
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "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";
9339
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "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";
9289
9340
  language: string;
9290
9341
  }[];
9291
9342
  outputFormat: "json";
@@ -9323,7 +9374,7 @@ declare function init(config: AuthHeroConfig): {
9323
9374
  $get: {
9324
9375
  input: {
9325
9376
  param: {
9326
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "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";
9377
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "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";
9327
9378
  language: string;
9328
9379
  };
9329
9380
  } & {
@@ -9345,7 +9396,7 @@ declare function init(config: AuthHeroConfig): {
9345
9396
  $put: {
9346
9397
  input: {
9347
9398
  param: {
9348
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "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";
9399
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "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";
9349
9400
  language: string;
9350
9401
  };
9351
9402
  } & {
@@ -9369,7 +9420,7 @@ declare function init(config: AuthHeroConfig): {
9369
9420
  $delete: {
9370
9421
  input: {
9371
9422
  param: {
9372
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "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";
9423
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "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";
9373
9424
  language: string;
9374
9425
  };
9375
9426
  } & {
@@ -10810,7 +10861,7 @@ declare function init(config: AuthHeroConfig): {
10810
10861
  log_type: string;
10811
10862
  category: "user_action" | "admin_action" | "system" | "api";
10812
10863
  actor: {
10813
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10864
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
10814
10865
  id?: string | undefined;
10815
10866
  email?: string | undefined;
10816
10867
  org_id?: string | undefined;
@@ -11118,7 +11169,7 @@ declare function init(config: AuthHeroConfig): {
11118
11169
  created_at: string;
11119
11170
  updated_at: string;
11120
11171
  name: string;
11121
- provider: "auth0" | "oidc" | "cognito" | "okta";
11172
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11122
11173
  connection: string;
11123
11174
  enabled: boolean;
11124
11175
  credentials: {
@@ -11150,7 +11201,7 @@ declare function init(config: AuthHeroConfig): {
11150
11201
  created_at: string;
11151
11202
  updated_at: string;
11152
11203
  name: string;
11153
- provider: "auth0" | "oidc" | "cognito" | "okta";
11204
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11154
11205
  connection: string;
11155
11206
  enabled: boolean;
11156
11207
  credentials: {
@@ -11176,7 +11227,7 @@ declare function init(config: AuthHeroConfig): {
11176
11227
  } & {
11177
11228
  json: {
11178
11229
  name: string;
11179
- provider: "auth0" | "oidc" | "cognito" | "okta";
11230
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11180
11231
  connection: string;
11181
11232
  credentials: {
11182
11233
  domain: string;
@@ -11193,7 +11244,7 @@ declare function init(config: AuthHeroConfig): {
11193
11244
  created_at: string;
11194
11245
  updated_at: string;
11195
11246
  name: string;
11196
- provider: "auth0" | "oidc" | "cognito" | "okta";
11247
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11197
11248
  connection: string;
11198
11249
  enabled: boolean;
11199
11250
  credentials: {
@@ -11224,7 +11275,7 @@ declare function init(config: AuthHeroConfig): {
11224
11275
  json: {
11225
11276
  id?: string | undefined;
11226
11277
  name?: string | undefined;
11227
- provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
11278
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11228
11279
  connection?: string | undefined;
11229
11280
  enabled?: boolean | undefined;
11230
11281
  credentials?: {
@@ -11240,7 +11291,7 @@ declare function init(config: AuthHeroConfig): {
11240
11291
  created_at: string;
11241
11292
  updated_at: string;
11242
11293
  name: string;
11243
- provider: "auth0" | "oidc" | "cognito" | "okta";
11294
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11244
11295
  connection: string;
11245
11296
  enabled: boolean;
11246
11297
  credentials: {
@@ -11458,7 +11509,7 @@ declare function init(config: AuthHeroConfig): {
11458
11509
  };
11459
11510
  };
11460
11511
  output: {
11461
- type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "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" | "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" | "wn" | "wum";
11512
+ type: "fn" | "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" | "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";
11462
11513
  date: string;
11463
11514
  isMobile: boolean;
11464
11515
  log_id: string;
@@ -11497,7 +11548,7 @@ declare function init(config: AuthHeroConfig): {
11497
11548
  limit: number;
11498
11549
  length: number;
11499
11550
  logs: {
11500
- type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "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" | "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" | "wn" | "wum";
11551
+ type: "fn" | "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" | "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";
11501
11552
  date: string;
11502
11553
  isMobile: boolean;
11503
11554
  log_id: string;
@@ -11551,7 +11602,7 @@ declare function init(config: AuthHeroConfig): {
11551
11602
  };
11552
11603
  };
11553
11604
  output: {
11554
- type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "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" | "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" | "wn" | "wum";
11605
+ type: "fn" | "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" | "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";
11555
11606
  date: string;
11556
11607
  isMobile: boolean;
11557
11608
  log_id: string;
@@ -11706,7 +11757,7 @@ declare function init(config: AuthHeroConfig): {
11706
11757
  audience?: string | undefined;
11707
11758
  client_id?: string | undefined;
11708
11759
  allow_any_organization?: string | undefined;
11709
- subject_type?: "user" | "client" | undefined;
11760
+ subject_type?: "client" | "user" | undefined;
11710
11761
  };
11711
11762
  } & {
11712
11763
  header: {
@@ -11721,7 +11772,7 @@ declare function init(config: AuthHeroConfig): {
11721
11772
  organization_usage?: "deny" | "allow" | "require" | undefined;
11722
11773
  allow_any_organization?: boolean | undefined;
11723
11774
  is_system?: boolean | undefined;
11724
- subject_type?: "user" | "client" | undefined;
11775
+ subject_type?: "client" | "user" | undefined;
11725
11776
  authorization_details_types?: string[] | undefined;
11726
11777
  created_at?: string | undefined;
11727
11778
  updated_at?: string | undefined;
@@ -11737,7 +11788,7 @@ declare function init(config: AuthHeroConfig): {
11737
11788
  organization_usage?: "deny" | "allow" | "require" | undefined;
11738
11789
  allow_any_organization?: boolean | undefined;
11739
11790
  is_system?: boolean | undefined;
11740
- subject_type?: "user" | "client" | undefined;
11791
+ subject_type?: "client" | "user" | undefined;
11741
11792
  authorization_details_types?: string[] | undefined;
11742
11793
  created_at?: string | undefined;
11743
11794
  updated_at?: string | undefined;
@@ -11768,7 +11819,7 @@ declare function init(config: AuthHeroConfig): {
11768
11819
  organization_usage?: "deny" | "allow" | "require" | undefined;
11769
11820
  allow_any_organization?: boolean | undefined;
11770
11821
  is_system?: boolean | undefined;
11771
- subject_type?: "user" | "client" | undefined;
11822
+ subject_type?: "client" | "user" | undefined;
11772
11823
  authorization_details_types?: string[] | undefined;
11773
11824
  created_at?: string | undefined;
11774
11825
  updated_at?: string | undefined;
@@ -11813,7 +11864,7 @@ declare function init(config: AuthHeroConfig): {
11813
11864
  organization_usage?: "deny" | "allow" | "require" | undefined;
11814
11865
  allow_any_organization?: boolean | undefined;
11815
11866
  is_system?: boolean | undefined;
11816
- subject_type?: "user" | "client" | undefined;
11867
+ subject_type?: "client" | "user" | undefined;
11817
11868
  authorization_details_types?: string[] | undefined;
11818
11869
  };
11819
11870
  };
@@ -11825,7 +11876,7 @@ declare function init(config: AuthHeroConfig): {
11825
11876
  organization_usage?: "deny" | "allow" | "require" | undefined;
11826
11877
  allow_any_organization?: boolean | undefined;
11827
11878
  is_system?: boolean | undefined;
11828
- subject_type?: "user" | "client" | undefined;
11879
+ subject_type?: "client" | "user" | undefined;
11829
11880
  authorization_details_types?: string[] | undefined;
11830
11881
  created_at?: string | undefined;
11831
11882
  updated_at?: string | undefined;
@@ -11849,7 +11900,7 @@ declare function init(config: AuthHeroConfig): {
11849
11900
  organization_usage?: "deny" | "allow" | "require" | undefined;
11850
11901
  allow_any_organization?: boolean | undefined;
11851
11902
  is_system?: boolean | undefined;
11852
- subject_type?: "user" | "client" | undefined;
11903
+ subject_type?: "client" | "user" | undefined;
11853
11904
  authorization_details_types?: string[] | undefined;
11854
11905
  };
11855
11906
  };
@@ -11861,7 +11912,7 @@ declare function init(config: AuthHeroConfig): {
11861
11912
  organization_usage?: "deny" | "allow" | "require" | undefined;
11862
11913
  allow_any_organization?: boolean | undefined;
11863
11914
  is_system?: boolean | undefined;
11864
- subject_type?: "user" | "client" | undefined;
11915
+ subject_type?: "client" | "user" | undefined;
11865
11916
  authorization_details_types?: string[] | undefined;
11866
11917
  created_at?: string | undefined;
11867
11918
  updated_at?: string | undefined;
@@ -11939,7 +11990,7 @@ declare function init(config: AuthHeroConfig): {
11939
11990
  addons?: {
11940
11991
  [x: string]: any;
11941
11992
  } | undefined;
11942
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11993
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
11943
11994
  client_metadata?: {
11944
11995
  [x: string]: string;
11945
11996
  } | undefined;
@@ -12035,7 +12086,7 @@ declare function init(config: AuthHeroConfig): {
12035
12086
  addons?: {
12036
12087
  [x: string]: any;
12037
12088
  } | undefined;
12038
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12089
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12039
12090
  client_metadata?: {
12040
12091
  [x: string]: string;
12041
12092
  } | undefined;
@@ -12146,7 +12197,7 @@ declare function init(config: AuthHeroConfig): {
12146
12197
  addons?: {
12147
12198
  [x: string]: any;
12148
12199
  } | undefined;
12149
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12200
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12150
12201
  client_metadata?: {
12151
12202
  [x: string]: string;
12152
12203
  } | undefined;
@@ -12256,7 +12307,7 @@ declare function init(config: AuthHeroConfig): {
12256
12307
  custom_login_page_preview?: string | undefined;
12257
12308
  form_template?: string | undefined;
12258
12309
  addons?: Record<string, any> | undefined;
12259
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12310
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12260
12311
  client_metadata?: Record<string, string> | undefined;
12261
12312
  hide_sign_up_disabled_error?: boolean | undefined;
12262
12313
  mobile?: Record<string, any> | undefined;
@@ -12336,7 +12387,7 @@ declare function init(config: AuthHeroConfig): {
12336
12387
  addons?: {
12337
12388
  [x: string]: any;
12338
12389
  } | undefined;
12339
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12390
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12340
12391
  client_metadata?: {
12341
12392
  [x: string]: string;
12342
12393
  } | undefined;
@@ -12425,7 +12476,7 @@ declare function init(config: AuthHeroConfig): {
12425
12476
  custom_login_page_preview?: string | undefined;
12426
12477
  form_template?: string | undefined;
12427
12478
  addons?: Record<string, any> | undefined;
12428
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12479
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12429
12480
  client_metadata?: Record<string, string> | undefined;
12430
12481
  hide_sign_up_disabled_error?: boolean | undefined;
12431
12482
  mobile?: Record<string, any> | undefined;
@@ -12505,7 +12556,7 @@ declare function init(config: AuthHeroConfig): {
12505
12556
  addons?: {
12506
12557
  [x: string]: any;
12507
12558
  } | undefined;
12508
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12559
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12509
12560
  client_metadata?: {
12510
12561
  [x: string]: string;
12511
12562
  } | undefined;
@@ -13769,7 +13820,7 @@ declare function init(config: AuthHeroConfig): {
13769
13820
  };
13770
13821
  };
13771
13822
  output: {
13772
- type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "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" | "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" | "wn" | "wum";
13823
+ type: "fn" | "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" | "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";
13773
13824
  date: string;
13774
13825
  isMobile: boolean;
13775
13826
  log_id: string;
@@ -13808,7 +13859,7 @@ declare function init(config: AuthHeroConfig): {
13808
13859
  limit: number;
13809
13860
  length: number;
13810
13861
  logs: {
13811
- type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "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" | "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" | "wn" | "wum";
13862
+ type: "fn" | "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" | "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";
13812
13863
  date: string;
13813
13864
  isMobile: boolean;
13814
13865
  log_id: string;
@@ -14123,7 +14174,7 @@ declare function init(config: AuthHeroConfig): {
14123
14174
  };
14124
14175
  } & {
14125
14176
  json: {
14126
- template: "password_reset" | "verify_email" | "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";
14177
+ 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";
14127
14178
  body: string;
14128
14179
  from: string;
14129
14180
  subject: string;
@@ -14144,7 +14195,7 @@ declare function init(config: AuthHeroConfig): {
14144
14195
  };
14145
14196
  } & {
14146
14197
  json: {
14147
- template: "password_reset" | "verify_email" | "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";
14198
+ 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";
14148
14199
  body: string;
14149
14200
  from: string;
14150
14201
  subject: string;
@@ -14156,7 +14207,7 @@ declare function init(config: AuthHeroConfig): {
14156
14207
  };
14157
14208
  };
14158
14209
  output: {
14159
- template: "password_reset" | "verify_email" | "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";
14210
+ 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";
14160
14211
  body: string;
14161
14212
  from: string;
14162
14213
  subject: string;
@@ -14179,7 +14230,7 @@ declare function init(config: AuthHeroConfig): {
14179
14230
  };
14180
14231
  };
14181
14232
  output: {
14182
- name: "password_reset" | "verify_email" | "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";
14233
+ 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";
14183
14234
  body: string;
14184
14235
  subject: string;
14185
14236
  }[];
@@ -14192,7 +14243,7 @@ declare function init(config: AuthHeroConfig): {
14192
14243
  $get: {
14193
14244
  input: {
14194
14245
  param: {
14195
- templateName: "password_reset" | "verify_email" | "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";
14246
+ 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";
14196
14247
  };
14197
14248
  } & {
14198
14249
  header: {
@@ -14205,7 +14256,7 @@ declare function init(config: AuthHeroConfig): {
14205
14256
  } | {
14206
14257
  input: {
14207
14258
  param: {
14208
- templateName: "password_reset" | "verify_email" | "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";
14259
+ 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";
14209
14260
  };
14210
14261
  } & {
14211
14262
  header: {
@@ -14213,7 +14264,7 @@ declare function init(config: AuthHeroConfig): {
14213
14264
  };
14214
14265
  };
14215
14266
  output: {
14216
- template: "password_reset" | "verify_email" | "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";
14267
+ 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";
14217
14268
  body: string;
14218
14269
  from: string;
14219
14270
  subject: string;
@@ -14232,7 +14283,7 @@ declare function init(config: AuthHeroConfig): {
14232
14283
  $put: {
14233
14284
  input: {
14234
14285
  param: {
14235
- templateName: "password_reset" | "verify_email" | "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";
14286
+ 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";
14236
14287
  };
14237
14288
  } & {
14238
14289
  header: {
@@ -14240,7 +14291,7 @@ declare function init(config: AuthHeroConfig): {
14240
14291
  };
14241
14292
  } & {
14242
14293
  json: {
14243
- template: "password_reset" | "verify_email" | "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";
14294
+ 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";
14244
14295
  body: string;
14245
14296
  subject: string;
14246
14297
  syntax?: "liquid" | undefined;
@@ -14252,7 +14303,7 @@ declare function init(config: AuthHeroConfig): {
14252
14303
  };
14253
14304
  };
14254
14305
  output: {
14255
- template: "password_reset" | "verify_email" | "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";
14306
+ 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";
14256
14307
  body: string;
14257
14308
  from: string;
14258
14309
  subject: string;
@@ -14271,7 +14322,7 @@ declare function init(config: AuthHeroConfig): {
14271
14322
  $patch: {
14272
14323
  input: {
14273
14324
  param: {
14274
- templateName: "password_reset" | "verify_email" | "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";
14325
+ 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";
14275
14326
  };
14276
14327
  } & {
14277
14328
  header: {
@@ -14279,7 +14330,7 @@ declare function init(config: AuthHeroConfig): {
14279
14330
  };
14280
14331
  } & {
14281
14332
  json: {
14282
- template?: "password_reset" | "verify_email" | "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;
14333
+ 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;
14283
14334
  body?: string | undefined;
14284
14335
  from?: string | undefined;
14285
14336
  subject?: string | undefined;
@@ -14296,7 +14347,7 @@ declare function init(config: AuthHeroConfig): {
14296
14347
  } | {
14297
14348
  input: {
14298
14349
  param: {
14299
- templateName: "password_reset" | "verify_email" | "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";
14350
+ 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";
14300
14351
  };
14301
14352
  } & {
14302
14353
  header: {
@@ -14304,7 +14355,7 @@ declare function init(config: AuthHeroConfig): {
14304
14355
  };
14305
14356
  } & {
14306
14357
  json: {
14307
- template?: "password_reset" | "verify_email" | "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;
14358
+ 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;
14308
14359
  body?: string | undefined;
14309
14360
  from?: string | undefined;
14310
14361
  subject?: string | undefined;
@@ -14316,7 +14367,7 @@ declare function init(config: AuthHeroConfig): {
14316
14367
  };
14317
14368
  };
14318
14369
  output: {
14319
- template: "password_reset" | "verify_email" | "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";
14370
+ 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";
14320
14371
  body: string;
14321
14372
  from: string;
14322
14373
  subject: string;
@@ -14335,7 +14386,7 @@ declare function init(config: AuthHeroConfig): {
14335
14386
  $delete: {
14336
14387
  input: {
14337
14388
  param: {
14338
- templateName: "password_reset" | "verify_email" | "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";
14389
+ 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";
14339
14390
  };
14340
14391
  } & {
14341
14392
  header: {
@@ -14344,11 +14395,11 @@ declare function init(config: AuthHeroConfig): {
14344
14395
  };
14345
14396
  output: {};
14346
14397
  outputFormat: string;
14347
- status: 404;
14398
+ status: 204;
14348
14399
  } | {
14349
14400
  input: {
14350
14401
  param: {
14351
- templateName: "password_reset" | "verify_email" | "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";
14402
+ 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";
14352
14403
  };
14353
14404
  } & {
14354
14405
  header: {
@@ -14357,7 +14408,7 @@ declare function init(config: AuthHeroConfig): {
14357
14408
  };
14358
14409
  output: {};
14359
14410
  outputFormat: string;
14360
- status: 204;
14411
+ status: 404;
14361
14412
  };
14362
14413
  };
14363
14414
  } & {
@@ -14365,7 +14416,7 @@ declare function init(config: AuthHeroConfig): {
14365
14416
  $post: {
14366
14417
  input: {
14367
14418
  param: {
14368
- templateName: "password_reset" | "verify_email" | "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";
14419
+ 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";
14369
14420
  };
14370
14421
  } & {
14371
14422
  header: {
@@ -14493,7 +14544,7 @@ declare function init(config: AuthHeroConfig): {
14493
14544
  };
14494
14545
  output: {};
14495
14546
  outputFormat: string;
14496
- status: 404;
14547
+ status: 204;
14497
14548
  } | {
14498
14549
  input: {
14499
14550
  header: {
@@ -14502,7 +14553,7 @@ declare function init(config: AuthHeroConfig): {
14502
14553
  };
14503
14554
  output: {};
14504
14555
  outputFormat: string;
14505
- status: 204;
14556
+ status: 404;
14506
14557
  };
14507
14558
  };
14508
14559
  }, "/emails/provider"> & hono_types.MergeSchemaPath<{
@@ -14611,7 +14662,7 @@ declare function init(config: AuthHeroConfig): {
14611
14662
  };
14612
14663
  output: {};
14613
14664
  outputFormat: string;
14614
- status: 404;
14665
+ status: 204;
14615
14666
  } | {
14616
14667
  input: {
14617
14668
  header: {
@@ -14620,7 +14671,7 @@ declare function init(config: AuthHeroConfig): {
14620
14671
  };
14621
14672
  output: {};
14622
14673
  outputFormat: string;
14623
- status: 204;
14674
+ status: 404;
14624
14675
  };
14625
14676
  };
14626
14677
  }, "/email/providers"> & hono_types.MergeSchemaPath<{
@@ -14648,7 +14699,7 @@ declare function init(config: AuthHeroConfig): {
14648
14699
  type: "auth0_managed_certs" | "self_managed_certs";
14649
14700
  custom_domain_id: string;
14650
14701
  primary: boolean;
14651
- status: "pending" | "ready" | "disabled" | "pending_verification";
14702
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14652
14703
  verification_method?: "txt" | undefined;
14653
14704
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14654
14705
  domain_metadata?: {
@@ -14689,7 +14740,7 @@ declare function init(config: AuthHeroConfig): {
14689
14740
  type: "auth0_managed_certs" | "self_managed_certs";
14690
14741
  custom_domain_id: string;
14691
14742
  primary: boolean;
14692
- status: "pending" | "ready" | "disabled" | "pending_verification";
14743
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14693
14744
  verification_method?: "txt" | undefined;
14694
14745
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14695
14746
  domain_metadata?: {
@@ -14750,7 +14801,7 @@ declare function init(config: AuthHeroConfig): {
14750
14801
  domain_metadata?: Record<string, string> | undefined;
14751
14802
  custom_domain_id?: string | undefined;
14752
14803
  primary?: boolean | undefined;
14753
- status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
14804
+ status?: "disabled" | "pending" | "ready" | "pending_verification" | undefined;
14754
14805
  origin_domain_name?: string | undefined;
14755
14806
  verification?: {
14756
14807
  methods: ({
@@ -14771,7 +14822,7 @@ declare function init(config: AuthHeroConfig): {
14771
14822
  type: "auth0_managed_certs" | "self_managed_certs";
14772
14823
  custom_domain_id: string;
14773
14824
  primary: boolean;
14774
- status: "pending" | "ready" | "disabled" | "pending_verification";
14825
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14775
14826
  verification_method?: "txt" | undefined;
14776
14827
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14777
14828
  domain_metadata?: {
@@ -14818,7 +14869,7 @@ declare function init(config: AuthHeroConfig): {
14818
14869
  type: "auth0_managed_certs" | "self_managed_certs";
14819
14870
  custom_domain_id: string;
14820
14871
  primary: boolean;
14821
- status: "pending" | "ready" | "disabled" | "pending_verification";
14872
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14822
14873
  verification_method?: "txt" | undefined;
14823
14874
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14824
14875
  domain_metadata?: {
@@ -14864,7 +14915,7 @@ declare function init(config: AuthHeroConfig): {
14864
14915
  type: "auth0_managed_certs" | "self_managed_certs";
14865
14916
  custom_domain_id: string;
14866
14917
  primary: boolean;
14867
- status: "pending" | "ready" | "disabled" | "pending_verification";
14918
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14868
14919
  verification_method?: "txt" | undefined;
14869
14920
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14870
14921
  domain_metadata?: {
@@ -14905,7 +14956,7 @@ declare function init(config: AuthHeroConfig): {
14905
14956
  type: "auth0_managed_certs" | "self_managed_certs";
14906
14957
  custom_domain_id: string;
14907
14958
  primary: boolean;
14908
- status: "pending" | "ready" | "disabled" | "pending_verification";
14959
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14909
14960
  verification_method?: "txt" | undefined;
14910
14961
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14911
14962
  domain_metadata?: {
@@ -15512,7 +15563,7 @@ declare function init(config: AuthHeroConfig): {
15512
15563
  logs: {
15513
15564
  action_name: string;
15514
15565
  lines: {
15515
- level: "log" | "error" | "info" | "warn" | "debug";
15566
+ level: "error" | "log" | "info" | "warn" | "debug";
15516
15567
  message: string;
15517
15568
  }[];
15518
15569
  }[];
@@ -15819,7 +15870,7 @@ declare function init(config: AuthHeroConfig): {
15819
15870
  };
15820
15871
  output: {};
15821
15872
  outputFormat: string;
15822
- status: 404;
15873
+ status: 200;
15823
15874
  } | {
15824
15875
  input: {
15825
15876
  param: {
@@ -15832,7 +15883,7 @@ declare function init(config: AuthHeroConfig): {
15832
15883
  };
15833
15884
  output: {};
15834
15885
  outputFormat: string;
15835
- status: 200;
15886
+ status: 404;
15836
15887
  } | {
15837
15888
  input: {
15838
15889
  param: {
@@ -16179,7 +16230,7 @@ declare function init(config: AuthHeroConfig): {
16179
16230
  args: hono_utils_types.JSONValue[];
16180
16231
  }[];
16181
16232
  logs: {
16182
- level: "log" | "error" | "info" | "warn" | "debug";
16233
+ level: "error" | "log" | "info" | "warn" | "debug";
16183
16234
  message: string;
16184
16235
  }[];
16185
16236
  error?: string | undefined;
@@ -16477,7 +16528,7 @@ declare function init(config: AuthHeroConfig): {
16477
16528
  scope?: string | undefined;
16478
16529
  grant_types?: string[] | undefined;
16479
16530
  response_types?: string[] | undefined;
16480
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16531
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16481
16532
  jwks_uri?: string | undefined;
16482
16533
  jwks?: Record<string, unknown> | undefined;
16483
16534
  software_id?: string | undefined;
@@ -16566,7 +16617,7 @@ declare function init(config: AuthHeroConfig): {
16566
16617
  scope?: string | undefined;
16567
16618
  grant_types?: string[] | undefined;
16568
16619
  response_types?: string[] | undefined;
16569
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16620
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16570
16621
  jwks_uri?: string | undefined;
16571
16622
  jwks?: Record<string, unknown> | undefined;
16572
16623
  software_id?: string | undefined;
@@ -16912,20 +16963,20 @@ declare function init(config: AuthHeroConfig): {
16912
16963
  email: string;
16913
16964
  send: "code" | "link";
16914
16965
  authParams: {
16915
- code_challenge?: string | undefined;
16916
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16917
- redirect_uri?: string | undefined;
16918
- nonce?: string | undefined;
16919
- state?: string | undefined;
16920
- act_as?: string | undefined;
16921
16966
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16922
16967
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16923
- audience?: string | undefined;
16924
- organization?: string | undefined;
16925
16968
  scope?: string | undefined;
16926
- prompt?: string | undefined;
16927
16969
  username?: string | undefined;
16970
+ audience?: string | undefined;
16971
+ state?: string | undefined;
16972
+ prompt?: string | undefined;
16928
16973
  ui_locales?: string | undefined;
16974
+ organization?: string | undefined;
16975
+ redirect_uri?: string | undefined;
16976
+ act_as?: string | undefined;
16977
+ nonce?: string | undefined;
16978
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16979
+ code_challenge?: string | undefined;
16929
16980
  max_age?: number | undefined;
16930
16981
  acr_values?: string | undefined;
16931
16982
  claims?: {
@@ -16948,20 +16999,20 @@ declare function init(config: AuthHeroConfig): {
16948
16999
  phone_number: string;
16949
17000
  send: "code" | "link";
16950
17001
  authParams: {
16951
- code_challenge?: string | undefined;
16952
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16953
- redirect_uri?: string | undefined;
16954
- nonce?: string | undefined;
16955
- state?: string | undefined;
16956
- act_as?: string | undefined;
16957
17002
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16958
17003
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16959
- audience?: string | undefined;
16960
- organization?: string | undefined;
16961
17004
  scope?: string | undefined;
16962
- prompt?: string | undefined;
16963
17005
  username?: string | undefined;
17006
+ audience?: string | undefined;
17007
+ state?: string | undefined;
17008
+ prompt?: string | undefined;
16964
17009
  ui_locales?: string | undefined;
17010
+ organization?: string | undefined;
17011
+ redirect_uri?: string | undefined;
17012
+ act_as?: string | undefined;
17013
+ nonce?: string | undefined;
17014
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17015
+ code_challenge?: string | undefined;
16965
17016
  max_age?: number | undefined;
16966
17017
  acr_values?: string | undefined;
16967
17018
  claims?: {
@@ -17676,7 +17727,7 @@ declare function init(config: AuthHeroConfig): {
17676
17727
  output: {
17677
17728
  keys: {
17678
17729
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
17679
- kty: "EC" | "RSA" | "oct";
17730
+ kty: "RSA" | "EC" | "oct";
17680
17731
  kid?: string | undefined;
17681
17732
  use?: "sig" | "enc" | undefined;
17682
17733
  n?: string | undefined;
@@ -18036,7 +18087,7 @@ declare function init(config: AuthHeroConfig): {
18036
18087
  };
18037
18088
  output: {};
18038
18089
  outputFormat: string;
18039
- status: 404;
18090
+ status: 200;
18040
18091
  } | {
18041
18092
  input: {
18042
18093
  param: {
@@ -18050,7 +18101,7 @@ declare function init(config: AuthHeroConfig): {
18050
18101
  };
18051
18102
  output: {};
18052
18103
  outputFormat: string;
18053
- status: 200;
18104
+ status: 404;
18054
18105
  };
18055
18106
  };
18056
18107
  } & {
@@ -18070,7 +18121,7 @@ declare function init(config: AuthHeroConfig): {
18070
18121
  };
18071
18122
  output: {};
18072
18123
  outputFormat: string;
18073
- status: 404;
18124
+ status: 200;
18074
18125
  } | {
18075
18126
  input: {
18076
18127
  param: {
@@ -18086,7 +18137,7 @@ declare function init(config: AuthHeroConfig): {
18086
18137
  };
18087
18138
  output: {};
18088
18139
  outputFormat: string;
18089
- status: 200;
18140
+ status: 404;
18090
18141
  };
18091
18142
  };
18092
18143
  }, "/forms"> & hono_types.MergeSchemaPath<{
@@ -18867,7 +18918,7 @@ declare function init(config: AuthHeroConfig): {
18867
18918
  $get: {
18868
18919
  input: {
18869
18920
  param: {
18870
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "account" | "try-connection-result" | "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";
18921
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18871
18922
  };
18872
18923
  } & {
18873
18924
  query: {
@@ -18883,7 +18934,7 @@ declare function init(config: AuthHeroConfig): {
18883
18934
  } | {
18884
18935
  input: {
18885
18936
  param: {
18886
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "account" | "try-connection-result" | "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";
18937
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18887
18938
  };
18888
18939
  } & {
18889
18940
  query: {
@@ -18899,7 +18950,7 @@ declare function init(config: AuthHeroConfig): {
18899
18950
  } | {
18900
18951
  input: {
18901
18952
  param: {
18902
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "account" | "try-connection-result" | "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";
18953
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18903
18954
  };
18904
18955
  } & {
18905
18956
  query: {
@@ -18919,7 +18970,7 @@ declare function init(config: AuthHeroConfig): {
18919
18970
  $post: {
18920
18971
  input: {
18921
18972
  param: {
18922
- screen: "signup" | "login" | "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";
18973
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18923
18974
  };
18924
18975
  } & {
18925
18976
  query: {
@@ -18937,7 +18988,7 @@ declare function init(config: AuthHeroConfig): {
18937
18988
  } | {
18938
18989
  input: {
18939
18990
  param: {
18940
- screen: "signup" | "login" | "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";
18991
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18941
18992
  };
18942
18993
  } & {
18943
18994
  query: {
@@ -18955,7 +19006,7 @@ declare function init(config: AuthHeroConfig): {
18955
19006
  } | {
18956
19007
  input: {
18957
19008
  param: {
18958
- screen: "signup" | "login" | "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";
19009
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18959
19010
  };
18960
19011
  } & {
18961
19012
  query: {
@@ -18987,7 +19038,7 @@ declare function init(config: AuthHeroConfig): {
18987
19038
  };
18988
19039
  output: {};
18989
19040
  outputFormat: string;
18990
- status: 404;
19041
+ status: 200;
18991
19042
  } | {
18992
19043
  input: {
18993
19044
  param: {
@@ -19001,7 +19052,7 @@ declare function init(config: AuthHeroConfig): {
19001
19052
  };
19002
19053
  output: {};
19003
19054
  outputFormat: string;
19004
- status: 200;
19055
+ status: 404;
19005
19056
  };
19006
19057
  };
19007
19058
  } & {
@@ -19053,5 +19104,5 @@ declare function init(config: AuthHeroConfig): {
19053
19104
  createX509Certificate: typeof createX509Certificate;
19054
19105
  };
19055
19106
 
19056
- export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, 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, NoopTenantProvisioner, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
19057
- export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantProvisioner, TenantProvisionerContext, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
19107
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, 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, NoopTenantProvisioner, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19108
+ export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantProvisioner, TenantProvisionerContext, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };