authhero 8.8.1 → 8.9.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 (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +109 -107
  3. package/dist/authhero.d.ts +121 -78
  4. package/dist/authhero.mjs +11213 -10636
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  9. package/dist/types/helpers/tenant-export-import/export.d.ts +21 -0
  10. package/dist/types/helpers/tenant-export-import/import.d.ts +12 -0
  11. package/dist/types/helpers/tenant-export-import/index.d.ts +4 -0
  12. package/dist/types/helpers/tenant-export-import/manifest.d.ts +12 -0
  13. package/dist/types/helpers/tenant-export-import/row-access.d.ts +20 -0
  14. package/dist/types/helpers/tenant-export-import/types.d.ts +53 -0
  15. package/dist/types/index.d.ts +120 -77
  16. package/dist/types/routes/auth-api/index.d.ts +8 -8
  17. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  18. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  19. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  20. package/dist/types/routes/management-api/actions.d.ts +1 -1
  21. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  22. package/dist/types/routes/management-api/branding.d.ts +5 -5
  23. package/dist/types/routes/management-api/clients.d.ts +13 -13
  24. package/dist/types/routes/management-api/connections.d.ts +15 -15
  25. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  26. package/dist/types/routes/management-api/index.d.ts +105 -62
  27. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  28. package/dist/types/routes/management-api/logs.d.ts +3 -3
  29. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  30. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  31. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  32. package/dist/types/routes/management-api/tenant-export-import.d.ts +49 -0
  33. package/dist/types/routes/management-api/tenants.d.ts +5 -5
  34. package/dist/types/routes/management-api/themes.d.ts +3 -3
  35. package/dist/types/routes/management-api/users.d.ts +2 -2
  36. package/dist/types/routes/universal-login/common.d.ts +10 -10
  37. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  38. package/dist/types/routes/universal-login/index.d.ts +2 -2
  39. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  40. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  41. package/dist/types/types/IdToken.d.ts +2 -2
  42. package/package.json +5 -5
@@ -1,9 +1,9 @@
1
- import * as hono_utils_http_status from 'hono/utils/http-status';
2
1
  import * as hono_utils_types from 'hono/utils/types';
3
2
  import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
4
3
  import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
5
4
  export * from '@authhero/adapter-interfaces';
6
5
  import * as hono_types from 'hono/types';
6
+ import * as hono_utils_http_status from 'hono/utils/http-status';
7
7
  import { z, OpenAPIHono } from '@hono/zod-openapi';
8
8
  import { CountryCode } from 'libphonenumber-js';
9
9
  import { SamlSigner } from '@authhero/saml/core';
@@ -2929,6 +2929,49 @@ declare function init(config: AuthHeroConfig): {
2929
2929
  Bindings: Bindings;
2930
2930
  Variables: Variables;
2931
2931
  }, hono_types.MergeSchemaPath<{
2932
+ "/export": {
2933
+ $get: {
2934
+ input: {
2935
+ query: {
2936
+ include_password_hashes?: "true" | "false" | undefined;
2937
+ gzip?: "true" | "false" | undefined;
2938
+ };
2939
+ } & {
2940
+ header: {
2941
+ "tenant-id"?: string | undefined;
2942
+ };
2943
+ };
2944
+ output: Response;
2945
+ outputFormat: "json";
2946
+ status: hono_utils_http_status.StatusCode;
2947
+ };
2948
+ };
2949
+ } & {
2950
+ "/import": {
2951
+ $post: {
2952
+ input: {
2953
+ query: {
2954
+ include_password_hashes?: "true" | "false" | undefined;
2955
+ };
2956
+ } & {
2957
+ header: {
2958
+ "tenant-id"?: string | undefined;
2959
+ };
2960
+ };
2961
+ output: {
2962
+ counts: {
2963
+ [x: string]: number;
2964
+ };
2965
+ errors: {
2966
+ entity: string;
2967
+ error: string;
2968
+ }[];
2969
+ };
2970
+ outputFormat: "json";
2971
+ status: 200;
2972
+ };
2973
+ };
2974
+ }, "/tenant-data"> & hono_types.MergeSchemaPath<{
2932
2975
  "/": {
2933
2976
  $get: {
2934
2977
  input: {
@@ -2962,7 +3005,7 @@ declare function init(config: AuthHeroConfig): {
2962
3005
  };
2963
3006
  } & {
2964
3007
  json: {
2965
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3008
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2966
3009
  phone_number?: string | undefined;
2967
3010
  totp_secret?: string | undefined;
2968
3011
  credential_id?: string | undefined;
@@ -4036,10 +4079,10 @@ declare function init(config: AuthHeroConfig): {
4036
4079
  email?: string | undefined;
4037
4080
  };
4038
4081
  id?: string | undefined;
4082
+ roles?: string[] | undefined;
4083
+ connection_id?: string | undefined;
4039
4084
  app_metadata?: Record<string, any> | undefined;
4040
4085
  user_metadata?: Record<string, any> | undefined;
4041
- connection_id?: string | undefined;
4042
- roles?: string[] | undefined;
4043
4086
  ttl_sec?: number | undefined;
4044
4087
  send_invitation_email?: boolean | undefined;
4045
4088
  };
@@ -4223,8 +4266,8 @@ declare function init(config: AuthHeroConfig): {
4223
4266
  };
4224
4267
  } & {
4225
4268
  json: {
4226
- show_as_button?: boolean | undefined;
4227
4269
  assign_membership_on_login?: boolean | undefined;
4270
+ show_as_button?: boolean | undefined;
4228
4271
  is_signup_enabled?: boolean | undefined;
4229
4272
  };
4230
4273
  };
@@ -9694,7 +9737,7 @@ declare function init(config: AuthHeroConfig): {
9694
9737
  };
9695
9738
  };
9696
9739
  output: {
9697
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9740
+ 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";
9698
9741
  language: string;
9699
9742
  }[];
9700
9743
  outputFormat: "json";
@@ -9732,7 +9775,7 @@ declare function init(config: AuthHeroConfig): {
9732
9775
  $get: {
9733
9776
  input: {
9734
9777
  param: {
9735
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9778
+ 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";
9736
9779
  language: string;
9737
9780
  };
9738
9781
  } & {
@@ -9754,7 +9797,7 @@ declare function init(config: AuthHeroConfig): {
9754
9797
  $put: {
9755
9798
  input: {
9756
9799
  param: {
9757
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9800
+ 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";
9758
9801
  language: string;
9759
9802
  };
9760
9803
  } & {
@@ -9778,7 +9821,7 @@ declare function init(config: AuthHeroConfig): {
9778
9821
  $delete: {
9779
9822
  input: {
9780
9823
  param: {
9781
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9824
+ 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";
9782
9825
  language: string;
9783
9826
  };
9784
9827
  } & {
@@ -9870,7 +9913,7 @@ declare function init(config: AuthHeroConfig): {
9870
9913
  active?: boolean | undefined;
9871
9914
  } | undefined;
9872
9915
  signup?: {
9873
- status?: "optional" | "required" | "disabled" | undefined;
9916
+ status?: "optional" | "disabled" | "required" | undefined;
9874
9917
  verification?: {
9875
9918
  active?: boolean | undefined;
9876
9919
  } | undefined;
@@ -9887,7 +9930,7 @@ declare function init(config: AuthHeroConfig): {
9887
9930
  active?: boolean | undefined;
9888
9931
  } | undefined;
9889
9932
  signup?: {
9890
- status?: "optional" | "required" | "disabled" | undefined;
9933
+ status?: "optional" | "disabled" | "required" | undefined;
9891
9934
  } | undefined;
9892
9935
  validation?: {
9893
9936
  max_length?: number | undefined;
@@ -9904,7 +9947,7 @@ declare function init(config: AuthHeroConfig): {
9904
9947
  active?: boolean | undefined;
9905
9948
  } | undefined;
9906
9949
  signup?: {
9907
- status?: "optional" | "required" | "disabled" | undefined;
9950
+ status?: "optional" | "disabled" | "required" | undefined;
9908
9951
  } | undefined;
9909
9952
  } | undefined;
9910
9953
  } | undefined;
@@ -10004,7 +10047,7 @@ declare function init(config: AuthHeroConfig): {
10004
10047
  active?: boolean | undefined;
10005
10048
  } | undefined;
10006
10049
  signup?: {
10007
- status?: "optional" | "required" | "disabled" | undefined;
10050
+ status?: "optional" | "disabled" | "required" | undefined;
10008
10051
  verification?: {
10009
10052
  active?: boolean | undefined;
10010
10053
  } | undefined;
@@ -10021,7 +10064,7 @@ declare function init(config: AuthHeroConfig): {
10021
10064
  active?: boolean | undefined;
10022
10065
  } | undefined;
10023
10066
  signup?: {
10024
- status?: "optional" | "required" | "disabled" | undefined;
10067
+ status?: "optional" | "disabled" | "required" | undefined;
10025
10068
  } | undefined;
10026
10069
  validation?: {
10027
10070
  max_length?: number | undefined;
@@ -10038,7 +10081,7 @@ declare function init(config: AuthHeroConfig): {
10038
10081
  active?: boolean | undefined;
10039
10082
  } | undefined;
10040
10083
  signup?: {
10041
- status?: "optional" | "required" | "disabled" | undefined;
10084
+ status?: "optional" | "disabled" | "required" | undefined;
10042
10085
  } | undefined;
10043
10086
  } | undefined;
10044
10087
  } | undefined;
@@ -10153,7 +10196,7 @@ declare function init(config: AuthHeroConfig): {
10153
10196
  active?: boolean | undefined;
10154
10197
  } | undefined;
10155
10198
  signup?: {
10156
- status?: "optional" | "required" | "disabled" | undefined;
10199
+ status?: "optional" | "disabled" | "required" | undefined;
10157
10200
  verification?: {
10158
10201
  active?: boolean | undefined;
10159
10202
  } | undefined;
@@ -10170,7 +10213,7 @@ declare function init(config: AuthHeroConfig): {
10170
10213
  active?: boolean | undefined;
10171
10214
  } | undefined;
10172
10215
  signup?: {
10173
- status?: "optional" | "required" | "disabled" | undefined;
10216
+ status?: "optional" | "disabled" | "required" | undefined;
10174
10217
  } | undefined;
10175
10218
  validation?: {
10176
10219
  max_length?: number | undefined;
@@ -10187,7 +10230,7 @@ declare function init(config: AuthHeroConfig): {
10187
10230
  active?: boolean | undefined;
10188
10231
  } | undefined;
10189
10232
  signup?: {
10190
- status?: "optional" | "required" | "disabled" | undefined;
10233
+ status?: "optional" | "disabled" | "required" | undefined;
10191
10234
  } | undefined;
10192
10235
  } | undefined;
10193
10236
  } | undefined;
@@ -10332,7 +10375,7 @@ declare function init(config: AuthHeroConfig): {
10332
10375
  active?: boolean | undefined;
10333
10376
  } | undefined;
10334
10377
  signup?: {
10335
- status?: "optional" | "required" | "disabled" | undefined;
10378
+ status?: "optional" | "disabled" | "required" | undefined;
10336
10379
  verification?: {
10337
10380
  active?: boolean | undefined;
10338
10381
  } | undefined;
@@ -10349,7 +10392,7 @@ declare function init(config: AuthHeroConfig): {
10349
10392
  active?: boolean | undefined;
10350
10393
  } | undefined;
10351
10394
  signup?: {
10352
- status?: "optional" | "required" | "disabled" | undefined;
10395
+ status?: "optional" | "disabled" | "required" | undefined;
10353
10396
  } | undefined;
10354
10397
  validation?: {
10355
10398
  max_length?: number | undefined;
@@ -10366,7 +10409,7 @@ declare function init(config: AuthHeroConfig): {
10366
10409
  active?: boolean | undefined;
10367
10410
  } | undefined;
10368
10411
  signup?: {
10369
- status?: "optional" | "required" | "disabled" | undefined;
10412
+ status?: "optional" | "disabled" | "required" | undefined;
10370
10413
  } | undefined;
10371
10414
  } | undefined;
10372
10415
  } | undefined;
@@ -10490,7 +10533,7 @@ declare function init(config: AuthHeroConfig): {
10490
10533
  active?: boolean | undefined;
10491
10534
  } | undefined;
10492
10535
  signup?: {
10493
- status?: "optional" | "required" | "disabled" | undefined;
10536
+ status?: "optional" | "disabled" | "required" | undefined;
10494
10537
  verification?: {
10495
10538
  active?: boolean | undefined;
10496
10539
  } | undefined;
@@ -10507,7 +10550,7 @@ declare function init(config: AuthHeroConfig): {
10507
10550
  active?: boolean | undefined;
10508
10551
  } | undefined;
10509
10552
  signup?: {
10510
- status?: "optional" | "required" | "disabled" | undefined;
10553
+ status?: "optional" | "disabled" | "required" | undefined;
10511
10554
  } | undefined;
10512
10555
  validation?: {
10513
10556
  max_length?: number | undefined;
@@ -10524,7 +10567,7 @@ declare function init(config: AuthHeroConfig): {
10524
10567
  active?: boolean | undefined;
10525
10568
  } | undefined;
10526
10569
  signup?: {
10527
- status?: "optional" | "required" | "disabled" | undefined;
10570
+ status?: "optional" | "disabled" | "required" | undefined;
10528
10571
  } | undefined;
10529
10572
  } | undefined;
10530
10573
  } | undefined;
@@ -11279,7 +11322,7 @@ declare function init(config: AuthHeroConfig): {
11279
11322
  log_type: string;
11280
11323
  category: "user_action" | "admin_action" | "system" | "api";
11281
11324
  actor: {
11282
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11325
+ type: "client_credentials" | "user" | "api_key" | "system" | "admin";
11283
11326
  id?: string | undefined;
11284
11327
  email?: string | undefined;
11285
11328
  org_id?: string | undefined;
@@ -11587,7 +11630,7 @@ declare function init(config: AuthHeroConfig): {
11587
11630
  created_at: string;
11588
11631
  updated_at: string;
11589
11632
  name: string;
11590
- provider: "auth0" | "oidc" | "okta" | "cognito";
11633
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11591
11634
  connection: string;
11592
11635
  enabled: boolean;
11593
11636
  credentials: {
@@ -11619,7 +11662,7 @@ declare function init(config: AuthHeroConfig): {
11619
11662
  created_at: string;
11620
11663
  updated_at: string;
11621
11664
  name: string;
11622
- provider: "auth0" | "oidc" | "okta" | "cognito";
11665
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11623
11666
  connection: string;
11624
11667
  enabled: boolean;
11625
11668
  credentials: {
@@ -11645,7 +11688,7 @@ declare function init(config: AuthHeroConfig): {
11645
11688
  } & {
11646
11689
  json: {
11647
11690
  name: string;
11648
- provider: "auth0" | "oidc" | "okta" | "cognito";
11691
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11649
11692
  connection: string;
11650
11693
  credentials: {
11651
11694
  domain: string;
@@ -11662,7 +11705,7 @@ declare function init(config: AuthHeroConfig): {
11662
11705
  created_at: string;
11663
11706
  updated_at: string;
11664
11707
  name: string;
11665
- provider: "auth0" | "oidc" | "okta" | "cognito";
11708
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11666
11709
  connection: string;
11667
11710
  enabled: boolean;
11668
11711
  credentials: {
@@ -11693,7 +11736,7 @@ declare function init(config: AuthHeroConfig): {
11693
11736
  json: {
11694
11737
  id?: string | undefined;
11695
11738
  name?: string | undefined;
11696
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
11739
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11697
11740
  connection?: string | undefined;
11698
11741
  enabled?: boolean | undefined;
11699
11742
  credentials?: {
@@ -11709,7 +11752,7 @@ declare function init(config: AuthHeroConfig): {
11709
11752
  created_at: string;
11710
11753
  updated_at: string;
11711
11754
  name: string;
11712
- provider: "auth0" | "oidc" | "okta" | "cognito";
11755
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11713
11756
  connection: string;
11714
11757
  enabled: boolean;
11715
11758
  credentials: {
@@ -11757,7 +11800,7 @@ declare function init(config: AuthHeroConfig): {
11757
11800
  [x: string]: hono_utils_types.JSONValue;
11758
11801
  };
11759
11802
  id: string;
11760
- status: "active" | "suspended" | "paused";
11803
+ status: "suspended" | "active" | "paused";
11761
11804
  filters?: {
11762
11805
  type: string;
11763
11806
  name: string;
@@ -11789,7 +11832,7 @@ declare function init(config: AuthHeroConfig): {
11789
11832
  [x: string]: hono_utils_types.JSONValue;
11790
11833
  };
11791
11834
  id: string;
11792
- status: "active" | "suspended" | "paused";
11835
+ status: "suspended" | "active" | "paused";
11793
11836
  filters?: {
11794
11837
  type: string;
11795
11838
  name: string;
@@ -11814,7 +11857,7 @@ declare function init(config: AuthHeroConfig): {
11814
11857
  name: string;
11815
11858
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
11816
11859
  sink: Record<string, unknown>;
11817
- status?: "active" | "suspended" | "paused" | undefined;
11860
+ status?: "suspended" | "active" | "paused" | undefined;
11818
11861
  filters?: {
11819
11862
  type: string;
11820
11863
  name: string;
@@ -11829,7 +11872,7 @@ declare function init(config: AuthHeroConfig): {
11829
11872
  [x: string]: hono_utils_types.JSONValue;
11830
11873
  };
11831
11874
  id: string;
11832
- status: "active" | "suspended" | "paused";
11875
+ status: "suspended" | "active" | "paused";
11833
11876
  filters?: {
11834
11877
  type: string;
11835
11878
  name: string;
@@ -11864,7 +11907,7 @@ declare function init(config: AuthHeroConfig): {
11864
11907
  }[] | undefined;
11865
11908
  isPriority?: boolean | undefined;
11866
11909
  id?: string | undefined;
11867
- status?: "active" | "suspended" | "paused" | undefined;
11910
+ status?: "suspended" | "active" | "paused" | undefined;
11868
11911
  created_at?: string | undefined;
11869
11912
  updated_at?: string | undefined;
11870
11913
  };
@@ -11876,7 +11919,7 @@ declare function init(config: AuthHeroConfig): {
11876
11919
  [x: string]: hono_utils_types.JSONValue;
11877
11920
  };
11878
11921
  id: string;
11879
- status: "active" | "suspended" | "paused";
11922
+ status: "suspended" | "active" | "paused";
11880
11923
  filters?: {
11881
11924
  type: string;
11882
11925
  name: string;
@@ -11927,7 +11970,7 @@ declare function init(config: AuthHeroConfig): {
11927
11970
  };
11928
11971
  };
11929
11972
  output: {
11930
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11973
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11931
11974
  date: string;
11932
11975
  isMobile: boolean;
11933
11976
  log_id: string;
@@ -11966,7 +12009,7 @@ declare function init(config: AuthHeroConfig): {
11966
12009
  limit: number;
11967
12010
  length: number;
11968
12011
  logs: {
11969
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12012
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11970
12013
  date: string;
11971
12014
  isMobile: boolean;
11972
12015
  log_id: string;
@@ -12020,7 +12063,7 @@ declare function init(config: AuthHeroConfig): {
12020
12063
  };
12021
12064
  };
12022
12065
  output: {
12023
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12066
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12024
12067
  date: string;
12025
12068
  isMobile: boolean;
12026
12069
  log_id: string;
@@ -12408,7 +12451,7 @@ declare function init(config: AuthHeroConfig): {
12408
12451
  addons?: {
12409
12452
  [x: string]: any;
12410
12453
  } | undefined;
12411
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12454
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12412
12455
  client_metadata?: {
12413
12456
  [x: string]: string;
12414
12457
  } | undefined;
@@ -12504,7 +12547,7 @@ declare function init(config: AuthHeroConfig): {
12504
12547
  addons?: {
12505
12548
  [x: string]: any;
12506
12549
  } | undefined;
12507
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12550
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12508
12551
  client_metadata?: {
12509
12552
  [x: string]: string;
12510
12553
  } | undefined;
@@ -12615,7 +12658,7 @@ declare function init(config: AuthHeroConfig): {
12615
12658
  addons?: {
12616
12659
  [x: string]: any;
12617
12660
  } | undefined;
12618
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12661
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12619
12662
  client_metadata?: {
12620
12663
  [x: string]: string;
12621
12664
  } | undefined;
@@ -12725,7 +12768,7 @@ declare function init(config: AuthHeroConfig): {
12725
12768
  custom_login_page_preview?: string | undefined;
12726
12769
  form_template?: string | undefined;
12727
12770
  addons?: Record<string, any> | undefined;
12728
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12771
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12729
12772
  client_metadata?: Record<string, string> | undefined;
12730
12773
  hide_sign_up_disabled_error?: boolean | undefined;
12731
12774
  mobile?: Record<string, any> | undefined;
@@ -12805,7 +12848,7 @@ declare function init(config: AuthHeroConfig): {
12805
12848
  addons?: {
12806
12849
  [x: string]: any;
12807
12850
  } | undefined;
12808
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12851
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12809
12852
  client_metadata?: {
12810
12853
  [x: string]: string;
12811
12854
  } | undefined;
@@ -12894,7 +12937,7 @@ declare function init(config: AuthHeroConfig): {
12894
12937
  custom_login_page_preview?: string | undefined;
12895
12938
  form_template?: string | undefined;
12896
12939
  addons?: Record<string, any> | undefined;
12897
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12940
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12898
12941
  client_metadata?: Record<string, string> | undefined;
12899
12942
  hide_sign_up_disabled_error?: boolean | undefined;
12900
12943
  mobile?: Record<string, any> | undefined;
@@ -12974,7 +13017,7 @@ declare function init(config: AuthHeroConfig): {
12974
13017
  addons?: {
12975
13018
  [x: string]: any;
12976
13019
  } | undefined;
12977
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13020
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12978
13021
  client_metadata?: {
12979
13022
  [x: string]: string;
12980
13023
  } | undefined;
@@ -13096,7 +13139,7 @@ declare function init(config: AuthHeroConfig): {
13096
13139
  active?: boolean | undefined;
13097
13140
  } | undefined;
13098
13141
  signup?: {
13099
- status?: "optional" | "required" | "disabled" | undefined;
13142
+ status?: "optional" | "disabled" | "required" | undefined;
13100
13143
  verification?: {
13101
13144
  active?: boolean | undefined;
13102
13145
  } | undefined;
@@ -13113,7 +13156,7 @@ declare function init(config: AuthHeroConfig): {
13113
13156
  active?: boolean | undefined;
13114
13157
  } | undefined;
13115
13158
  signup?: {
13116
- status?: "optional" | "required" | "disabled" | undefined;
13159
+ status?: "optional" | "disabled" | "required" | undefined;
13117
13160
  } | undefined;
13118
13161
  validation?: {
13119
13162
  max_length?: number | undefined;
@@ -13130,7 +13173,7 @@ declare function init(config: AuthHeroConfig): {
13130
13173
  active?: boolean | undefined;
13131
13174
  } | undefined;
13132
13175
  signup?: {
13133
- status?: "optional" | "required" | "disabled" | undefined;
13176
+ status?: "optional" | "disabled" | "required" | undefined;
13134
13177
  } | undefined;
13135
13178
  } | undefined;
13136
13179
  } | undefined;
@@ -13250,7 +13293,7 @@ declare function init(config: AuthHeroConfig): {
13250
13293
  active?: boolean | undefined;
13251
13294
  } | undefined;
13252
13295
  signup?: {
13253
- status?: "optional" | "required" | "disabled" | undefined;
13296
+ status?: "optional" | "disabled" | "required" | undefined;
13254
13297
  verification?: {
13255
13298
  active?: boolean | undefined;
13256
13299
  } | undefined;
@@ -13267,7 +13310,7 @@ declare function init(config: AuthHeroConfig): {
13267
13310
  active?: boolean | undefined;
13268
13311
  } | undefined;
13269
13312
  signup?: {
13270
- status?: "optional" | "required" | "disabled" | undefined;
13313
+ status?: "optional" | "disabled" | "required" | undefined;
13271
13314
  } | undefined;
13272
13315
  validation?: {
13273
13316
  max_length?: number | undefined;
@@ -13284,7 +13327,7 @@ declare function init(config: AuthHeroConfig): {
13284
13327
  active?: boolean | undefined;
13285
13328
  } | undefined;
13286
13329
  signup?: {
13287
- status?: "optional" | "required" | "disabled" | undefined;
13330
+ status?: "optional" | "disabled" | "required" | undefined;
13288
13331
  } | undefined;
13289
13332
  } | undefined;
13290
13333
  } | undefined;
@@ -14238,7 +14281,7 @@ declare function init(config: AuthHeroConfig): {
14238
14281
  };
14239
14282
  };
14240
14283
  output: {
14241
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14284
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14242
14285
  date: string;
14243
14286
  isMobile: boolean;
14244
14287
  log_id: string;
@@ -14277,7 +14320,7 @@ declare function init(config: AuthHeroConfig): {
14277
14320
  limit: number;
14278
14321
  length: number;
14279
14322
  logs: {
14280
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14323
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14281
14324
  date: string;
14282
14325
  isMobile: boolean;
14283
14326
  log_id: string;
@@ -15455,7 +15498,7 @@ declare function init(config: AuthHeroConfig): {
15455
15498
  background_color: string;
15456
15499
  background_image_url: string;
15457
15500
  page_layout: "center" | "left" | "right";
15458
- logo_placement?: "none" | "widget" | "chip" | undefined;
15501
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15459
15502
  };
15460
15503
  widget: {
15461
15504
  header_text_alignment: "center" | "left" | "right";
@@ -15545,7 +15588,7 @@ declare function init(config: AuthHeroConfig): {
15545
15588
  background_color: string;
15546
15589
  background_image_url: string;
15547
15590
  page_layout: "center" | "left" | "right";
15548
- logo_placement?: "none" | "widget" | "chip" | undefined;
15591
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15549
15592
  };
15550
15593
  widget: {
15551
15594
  header_text_alignment: "center" | "left" | "right";
@@ -15624,7 +15667,7 @@ declare function init(config: AuthHeroConfig): {
15624
15667
  background_color: string;
15625
15668
  background_image_url: string;
15626
15669
  page_layout: "center" | "left" | "right";
15627
- logo_placement?: "none" | "widget" | "chip" | undefined;
15670
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15628
15671
  };
15629
15672
  widget: {
15630
15673
  header_text_alignment: "center" | "left" | "right";
@@ -15786,7 +15829,7 @@ declare function init(config: AuthHeroConfig): {
15786
15829
  } & {
15787
15830
  json: {
15788
15831
  body?: string | undefined;
15789
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
15832
+ screen?: "password" | "signup" | "login" | "identifier" | undefined;
15790
15833
  branding?: {
15791
15834
  colors?: {
15792
15835
  primary: string;
@@ -15872,7 +15915,7 @@ declare function init(config: AuthHeroConfig): {
15872
15915
  background_color: string;
15873
15916
  background_image_url: string;
15874
15917
  page_layout: "center" | "left" | "right";
15875
- logo_placement?: "none" | "widget" | "chip" | undefined;
15918
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15876
15919
  } | undefined;
15877
15920
  widget?: {
15878
15921
  header_text_alignment: "center" | "left" | "right";
@@ -16030,7 +16073,7 @@ declare function init(config: AuthHeroConfig): {
16030
16073
  output: {
16031
16074
  id: string;
16032
16075
  trigger_id: string;
16033
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
16076
+ status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
16034
16077
  results: {
16035
16078
  action_name: string;
16036
16079
  error: {
@@ -16077,7 +16120,7 @@ declare function init(config: AuthHeroConfig): {
16077
16120
  logs: {
16078
16121
  action_name: string;
16079
16122
  lines: {
16080
- level: "log" | "error" | "info" | "warn" | "debug";
16123
+ level: "error" | "info" | "log" | "warn" | "debug";
16081
16124
  message: string;
16082
16125
  }[];
16083
16126
  }[];
@@ -16744,7 +16787,7 @@ declare function init(config: AuthHeroConfig): {
16744
16787
  args: hono_utils_types.JSONValue[];
16745
16788
  }[];
16746
16789
  logs: {
16747
- level: "log" | "error" | "info" | "warn" | "debug";
16790
+ level: "error" | "info" | "log" | "warn" | "debug";
16748
16791
  message: string;
16749
16792
  }[];
16750
16793
  error?: string | undefined;
@@ -17042,7 +17085,7 @@ declare function init(config: AuthHeroConfig): {
17042
17085
  scope?: string | undefined;
17043
17086
  grant_types?: string[] | undefined;
17044
17087
  response_types?: string[] | undefined;
17045
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17088
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17046
17089
  jwks_uri?: string | undefined;
17047
17090
  jwks?: Record<string, unknown> | undefined;
17048
17091
  software_id?: string | undefined;
@@ -17131,7 +17174,7 @@ declare function init(config: AuthHeroConfig): {
17131
17174
  scope?: string | undefined;
17132
17175
  grant_types?: string[] | undefined;
17133
17176
  response_types?: string[] | undefined;
17134
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17177
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17135
17178
  jwks_uri?: string | undefined;
17136
17179
  jwks?: Record<string, unknown> | undefined;
17137
17180
  software_id?: string | undefined;
@@ -17477,17 +17520,17 @@ declare function init(config: AuthHeroConfig): {
17477
17520
  email: string;
17478
17521
  send: "code" | "link";
17479
17522
  authParams: {
17480
- username?: string | undefined;
17481
- state?: string | undefined;
17482
17523
  audience?: string | undefined;
17483
17524
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17484
17525
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17485
17526
  scope?: string | undefined;
17527
+ username?: string | undefined;
17528
+ prompt?: string | undefined;
17529
+ state?: string | undefined;
17486
17530
  organization?: string | undefined;
17487
17531
  nonce?: string | undefined;
17488
17532
  redirect_uri?: string | undefined;
17489
17533
  act_as?: string | undefined;
17490
- prompt?: string | undefined;
17491
17534
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17492
17535
  code_challenge?: string | undefined;
17493
17536
  ui_locales?: string | undefined;
@@ -17513,17 +17556,17 @@ declare function init(config: AuthHeroConfig): {
17513
17556
  phone_number: string;
17514
17557
  send: "code" | "link";
17515
17558
  authParams: {
17516
- username?: string | undefined;
17517
- state?: string | undefined;
17518
17559
  audience?: string | undefined;
17519
17560
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17520
17561
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17521
17562
  scope?: string | undefined;
17563
+ username?: string | undefined;
17564
+ prompt?: string | undefined;
17565
+ state?: string | undefined;
17522
17566
  organization?: string | undefined;
17523
17567
  nonce?: string | undefined;
17524
17568
  redirect_uri?: string | undefined;
17525
17569
  act_as?: string | undefined;
17526
- prompt?: string | undefined;
17527
17570
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17528
17571
  code_challenge?: string | undefined;
17529
17572
  ui_locales?: string | undefined;
@@ -19053,7 +19096,7 @@ declare function init(config: AuthHeroConfig): {
19053
19096
  } & {
19054
19097
  form: {
19055
19098
  username: string;
19056
- login_selection?: "code" | "password" | undefined;
19099
+ login_selection?: "password" | "code" | undefined;
19057
19100
  };
19058
19101
  };
19059
19102
  output: {};
@@ -19067,7 +19110,7 @@ declare function init(config: AuthHeroConfig): {
19067
19110
  } & {
19068
19111
  form: {
19069
19112
  username: string;
19070
- login_selection?: "code" | "password" | undefined;
19113
+ login_selection?: "password" | "code" | undefined;
19071
19114
  };
19072
19115
  };
19073
19116
  output: {};
@@ -19432,7 +19475,7 @@ declare function init(config: AuthHeroConfig): {
19432
19475
  $get: {
19433
19476
  input: {
19434
19477
  param: {
19435
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19478
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19436
19479
  };
19437
19480
  } & {
19438
19481
  query: {
@@ -19448,7 +19491,7 @@ declare function init(config: AuthHeroConfig): {
19448
19491
  } | {
19449
19492
  input: {
19450
19493
  param: {
19451
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19494
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19452
19495
  };
19453
19496
  } & {
19454
19497
  query: {
@@ -19464,7 +19507,7 @@ declare function init(config: AuthHeroConfig): {
19464
19507
  } | {
19465
19508
  input: {
19466
19509
  param: {
19467
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19510
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19468
19511
  };
19469
19512
  } & {
19470
19513
  query: {
@@ -19484,7 +19527,7 @@ declare function init(config: AuthHeroConfig): {
19484
19527
  $post: {
19485
19528
  input: {
19486
19529
  param: {
19487
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19530
+ 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";
19488
19531
  };
19489
19532
  } & {
19490
19533
  query: {
@@ -19502,7 +19545,7 @@ declare function init(config: AuthHeroConfig): {
19502
19545
  } | {
19503
19546
  input: {
19504
19547
  param: {
19505
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19548
+ 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";
19506
19549
  };
19507
19550
  } & {
19508
19551
  query: {