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
@@ -54,6 +54,49 @@ export declare function init(config: AuthHeroConfig): {
54
54
  Bindings: Bindings;
55
55
  Variables: Variables;
56
56
  }, import("hono/types").MergeSchemaPath<{
57
+ "/export": {
58
+ $get: {
59
+ input: {
60
+ query: {
61
+ include_password_hashes?: "true" | "false" | undefined;
62
+ gzip?: "true" | "false" | undefined;
63
+ };
64
+ } & {
65
+ header: {
66
+ "tenant-id"?: string | undefined;
67
+ };
68
+ };
69
+ output: Response;
70
+ outputFormat: "json";
71
+ status: import("hono/utils/http-status").StatusCode;
72
+ };
73
+ };
74
+ } & {
75
+ "/import": {
76
+ $post: {
77
+ input: {
78
+ query: {
79
+ include_password_hashes?: "true" | "false" | undefined;
80
+ };
81
+ } & {
82
+ header: {
83
+ "tenant-id"?: string | undefined;
84
+ };
85
+ };
86
+ output: {
87
+ counts: {
88
+ [x: string]: number;
89
+ };
90
+ errors: {
91
+ entity: string;
92
+ error: string;
93
+ }[];
94
+ };
95
+ outputFormat: "json";
96
+ status: 200;
97
+ };
98
+ };
99
+ }, "/tenant-data"> & import("hono/types").MergeSchemaPath<{
57
100
  "/": {
58
101
  $get: {
59
102
  input: {
@@ -87,7 +130,7 @@ export declare function init(config: AuthHeroConfig): {
87
130
  };
88
131
  } & {
89
132
  json: {
90
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
133
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
91
134
  phone_number?: string | undefined;
92
135
  totp_secret?: string | undefined;
93
136
  credential_id?: string | undefined;
@@ -1161,10 +1204,10 @@ export declare function init(config: AuthHeroConfig): {
1161
1204
  email?: string | undefined;
1162
1205
  };
1163
1206
  id?: string | undefined;
1207
+ roles?: string[] | undefined;
1208
+ connection_id?: string | undefined;
1164
1209
  app_metadata?: Record<string, any> | undefined;
1165
1210
  user_metadata?: Record<string, any> | undefined;
1166
- connection_id?: string | undefined;
1167
- roles?: string[] | undefined;
1168
1211
  ttl_sec?: number | undefined;
1169
1212
  send_invitation_email?: boolean | undefined;
1170
1213
  };
@@ -1348,8 +1391,8 @@ export declare function init(config: AuthHeroConfig): {
1348
1391
  };
1349
1392
  } & {
1350
1393
  json: {
1351
- show_as_button?: boolean | undefined;
1352
1394
  assign_membership_on_login?: boolean | undefined;
1395
+ show_as_button?: boolean | undefined;
1353
1396
  is_signup_enabled?: boolean | undefined;
1354
1397
  };
1355
1398
  };
@@ -6819,7 +6862,7 @@ export declare function init(config: AuthHeroConfig): {
6819
6862
  };
6820
6863
  };
6821
6864
  output: {
6822
- 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";
6865
+ 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";
6823
6866
  language: string;
6824
6867
  }[];
6825
6868
  outputFormat: "json";
@@ -6857,7 +6900,7 @@ export declare function init(config: AuthHeroConfig): {
6857
6900
  $get: {
6858
6901
  input: {
6859
6902
  param: {
6860
- 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";
6903
+ 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";
6861
6904
  language: string;
6862
6905
  };
6863
6906
  } & {
@@ -6879,7 +6922,7 @@ export declare function init(config: AuthHeroConfig): {
6879
6922
  $put: {
6880
6923
  input: {
6881
6924
  param: {
6882
- 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";
6925
+ 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";
6883
6926
  language: string;
6884
6927
  };
6885
6928
  } & {
@@ -6903,7 +6946,7 @@ export declare function init(config: AuthHeroConfig): {
6903
6946
  $delete: {
6904
6947
  input: {
6905
6948
  param: {
6906
- 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";
6949
+ 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";
6907
6950
  language: string;
6908
6951
  };
6909
6952
  } & {
@@ -6995,7 +7038,7 @@ export declare function init(config: AuthHeroConfig): {
6995
7038
  active?: boolean | undefined;
6996
7039
  } | undefined;
6997
7040
  signup?: {
6998
- status?: "optional" | "required" | "disabled" | undefined;
7041
+ status?: "optional" | "disabled" | "required" | undefined;
6999
7042
  verification?: {
7000
7043
  active?: boolean | undefined;
7001
7044
  } | undefined;
@@ -7012,7 +7055,7 @@ export declare function init(config: AuthHeroConfig): {
7012
7055
  active?: boolean | undefined;
7013
7056
  } | undefined;
7014
7057
  signup?: {
7015
- status?: "optional" | "required" | "disabled" | undefined;
7058
+ status?: "optional" | "disabled" | "required" | undefined;
7016
7059
  } | undefined;
7017
7060
  validation?: {
7018
7061
  max_length?: number | undefined;
@@ -7029,7 +7072,7 @@ export declare function init(config: AuthHeroConfig): {
7029
7072
  active?: boolean | undefined;
7030
7073
  } | undefined;
7031
7074
  signup?: {
7032
- status?: "optional" | "required" | "disabled" | undefined;
7075
+ status?: "optional" | "disabled" | "required" | undefined;
7033
7076
  } | undefined;
7034
7077
  } | undefined;
7035
7078
  } | undefined;
@@ -7129,7 +7172,7 @@ export declare function init(config: AuthHeroConfig): {
7129
7172
  active?: boolean | undefined;
7130
7173
  } | undefined;
7131
7174
  signup?: {
7132
- status?: "optional" | "required" | "disabled" | undefined;
7175
+ status?: "optional" | "disabled" | "required" | undefined;
7133
7176
  verification?: {
7134
7177
  active?: boolean | undefined;
7135
7178
  } | undefined;
@@ -7146,7 +7189,7 @@ export declare function init(config: AuthHeroConfig): {
7146
7189
  active?: boolean | undefined;
7147
7190
  } | undefined;
7148
7191
  signup?: {
7149
- status?: "optional" | "required" | "disabled" | undefined;
7192
+ status?: "optional" | "disabled" | "required" | undefined;
7150
7193
  } | undefined;
7151
7194
  validation?: {
7152
7195
  max_length?: number | undefined;
@@ -7163,7 +7206,7 @@ export declare function init(config: AuthHeroConfig): {
7163
7206
  active?: boolean | undefined;
7164
7207
  } | undefined;
7165
7208
  signup?: {
7166
- status?: "optional" | "required" | "disabled" | undefined;
7209
+ status?: "optional" | "disabled" | "required" | undefined;
7167
7210
  } | undefined;
7168
7211
  } | undefined;
7169
7212
  } | undefined;
@@ -7278,7 +7321,7 @@ export declare function init(config: AuthHeroConfig): {
7278
7321
  active?: boolean | undefined;
7279
7322
  } | undefined;
7280
7323
  signup?: {
7281
- status?: "optional" | "required" | "disabled" | undefined;
7324
+ status?: "optional" | "disabled" | "required" | undefined;
7282
7325
  verification?: {
7283
7326
  active?: boolean | undefined;
7284
7327
  } | undefined;
@@ -7295,7 +7338,7 @@ export declare function init(config: AuthHeroConfig): {
7295
7338
  active?: boolean | undefined;
7296
7339
  } | undefined;
7297
7340
  signup?: {
7298
- status?: "optional" | "required" | "disabled" | undefined;
7341
+ status?: "optional" | "disabled" | "required" | undefined;
7299
7342
  } | undefined;
7300
7343
  validation?: {
7301
7344
  max_length?: number | undefined;
@@ -7312,7 +7355,7 @@ export declare function init(config: AuthHeroConfig): {
7312
7355
  active?: boolean | undefined;
7313
7356
  } | undefined;
7314
7357
  signup?: {
7315
- status?: "optional" | "required" | "disabled" | undefined;
7358
+ status?: "optional" | "disabled" | "required" | undefined;
7316
7359
  } | undefined;
7317
7360
  } | undefined;
7318
7361
  } | undefined;
@@ -7457,7 +7500,7 @@ export declare function init(config: AuthHeroConfig): {
7457
7500
  active?: boolean | undefined;
7458
7501
  } | undefined;
7459
7502
  signup?: {
7460
- status?: "optional" | "required" | "disabled" | undefined;
7503
+ status?: "optional" | "disabled" | "required" | undefined;
7461
7504
  verification?: {
7462
7505
  active?: boolean | undefined;
7463
7506
  } | undefined;
@@ -7474,7 +7517,7 @@ export declare function init(config: AuthHeroConfig): {
7474
7517
  active?: boolean | undefined;
7475
7518
  } | undefined;
7476
7519
  signup?: {
7477
- status?: "optional" | "required" | "disabled" | undefined;
7520
+ status?: "optional" | "disabled" | "required" | undefined;
7478
7521
  } | undefined;
7479
7522
  validation?: {
7480
7523
  max_length?: number | undefined;
@@ -7491,7 +7534,7 @@ export declare function init(config: AuthHeroConfig): {
7491
7534
  active?: boolean | undefined;
7492
7535
  } | undefined;
7493
7536
  signup?: {
7494
- status?: "optional" | "required" | "disabled" | undefined;
7537
+ status?: "optional" | "disabled" | "required" | undefined;
7495
7538
  } | undefined;
7496
7539
  } | undefined;
7497
7540
  } | undefined;
@@ -7615,7 +7658,7 @@ export declare function init(config: AuthHeroConfig): {
7615
7658
  active?: boolean | undefined;
7616
7659
  } | undefined;
7617
7660
  signup?: {
7618
- status?: "optional" | "required" | "disabled" | undefined;
7661
+ status?: "optional" | "disabled" | "required" | undefined;
7619
7662
  verification?: {
7620
7663
  active?: boolean | undefined;
7621
7664
  } | undefined;
@@ -7632,7 +7675,7 @@ export declare function init(config: AuthHeroConfig): {
7632
7675
  active?: boolean | undefined;
7633
7676
  } | undefined;
7634
7677
  signup?: {
7635
- status?: "optional" | "required" | "disabled" | undefined;
7678
+ status?: "optional" | "disabled" | "required" | undefined;
7636
7679
  } | undefined;
7637
7680
  validation?: {
7638
7681
  max_length?: number | undefined;
@@ -7649,7 +7692,7 @@ export declare function init(config: AuthHeroConfig): {
7649
7692
  active?: boolean | undefined;
7650
7693
  } | undefined;
7651
7694
  signup?: {
7652
- status?: "optional" | "required" | "disabled" | undefined;
7695
+ status?: "optional" | "disabled" | "required" | undefined;
7653
7696
  } | undefined;
7654
7697
  } | undefined;
7655
7698
  } | undefined;
@@ -8404,7 +8447,7 @@ export declare function init(config: AuthHeroConfig): {
8404
8447
  log_type: string;
8405
8448
  category: "user_action" | "admin_action" | "system" | "api";
8406
8449
  actor: {
8407
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8450
+ type: "client_credentials" | "user" | "api_key" | "system" | "admin";
8408
8451
  id?: string | undefined;
8409
8452
  email?: string | undefined;
8410
8453
  org_id?: string | undefined;
@@ -8712,7 +8755,7 @@ export declare function init(config: AuthHeroConfig): {
8712
8755
  created_at: string;
8713
8756
  updated_at: string;
8714
8757
  name: string;
8715
- provider: "auth0" | "oidc" | "okta" | "cognito";
8758
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8716
8759
  connection: string;
8717
8760
  enabled: boolean;
8718
8761
  credentials: {
@@ -8744,7 +8787,7 @@ export declare function init(config: AuthHeroConfig): {
8744
8787
  created_at: string;
8745
8788
  updated_at: string;
8746
8789
  name: string;
8747
- provider: "auth0" | "oidc" | "okta" | "cognito";
8790
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8748
8791
  connection: string;
8749
8792
  enabled: boolean;
8750
8793
  credentials: {
@@ -8770,7 +8813,7 @@ export declare function init(config: AuthHeroConfig): {
8770
8813
  } & {
8771
8814
  json: {
8772
8815
  name: string;
8773
- provider: "auth0" | "oidc" | "okta" | "cognito";
8816
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8774
8817
  connection: string;
8775
8818
  credentials: {
8776
8819
  domain: string;
@@ -8787,7 +8830,7 @@ export declare function init(config: AuthHeroConfig): {
8787
8830
  created_at: string;
8788
8831
  updated_at: string;
8789
8832
  name: string;
8790
- provider: "auth0" | "oidc" | "okta" | "cognito";
8833
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8791
8834
  connection: string;
8792
8835
  enabled: boolean;
8793
8836
  credentials: {
@@ -8818,7 +8861,7 @@ export declare function init(config: AuthHeroConfig): {
8818
8861
  json: {
8819
8862
  id?: string | undefined;
8820
8863
  name?: string | undefined;
8821
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8864
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8822
8865
  connection?: string | undefined;
8823
8866
  enabled?: boolean | undefined;
8824
8867
  credentials?: {
@@ -8834,7 +8877,7 @@ export declare function init(config: AuthHeroConfig): {
8834
8877
  created_at: string;
8835
8878
  updated_at: string;
8836
8879
  name: string;
8837
- provider: "auth0" | "oidc" | "okta" | "cognito";
8880
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8838
8881
  connection: string;
8839
8882
  enabled: boolean;
8840
8883
  credentials: {
@@ -8882,7 +8925,7 @@ export declare function init(config: AuthHeroConfig): {
8882
8925
  [x: string]: import("hono/utils/types").JSONValue;
8883
8926
  };
8884
8927
  id: string;
8885
- status: "active" | "suspended" | "paused";
8928
+ status: "suspended" | "active" | "paused";
8886
8929
  filters?: {
8887
8930
  type: string;
8888
8931
  name: string;
@@ -8914,7 +8957,7 @@ export declare function init(config: AuthHeroConfig): {
8914
8957
  [x: string]: import("hono/utils/types").JSONValue;
8915
8958
  };
8916
8959
  id: string;
8917
- status: "active" | "suspended" | "paused";
8960
+ status: "suspended" | "active" | "paused";
8918
8961
  filters?: {
8919
8962
  type: string;
8920
8963
  name: string;
@@ -8939,7 +8982,7 @@ export declare function init(config: AuthHeroConfig): {
8939
8982
  name: string;
8940
8983
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8941
8984
  sink: Record<string, unknown>;
8942
- status?: "active" | "suspended" | "paused" | undefined;
8985
+ status?: "suspended" | "active" | "paused" | undefined;
8943
8986
  filters?: {
8944
8987
  type: string;
8945
8988
  name: string;
@@ -8954,7 +8997,7 @@ export declare function init(config: AuthHeroConfig): {
8954
8997
  [x: string]: import("hono/utils/types").JSONValue;
8955
8998
  };
8956
8999
  id: string;
8957
- status: "active" | "suspended" | "paused";
9000
+ status: "suspended" | "active" | "paused";
8958
9001
  filters?: {
8959
9002
  type: string;
8960
9003
  name: string;
@@ -8989,7 +9032,7 @@ export declare function init(config: AuthHeroConfig): {
8989
9032
  }[] | undefined;
8990
9033
  isPriority?: boolean | undefined;
8991
9034
  id?: string | undefined;
8992
- status?: "active" | "suspended" | "paused" | undefined;
9035
+ status?: "suspended" | "active" | "paused" | undefined;
8993
9036
  created_at?: string | undefined;
8994
9037
  updated_at?: string | undefined;
8995
9038
  };
@@ -9001,7 +9044,7 @@ export declare function init(config: AuthHeroConfig): {
9001
9044
  [x: string]: import("hono/utils/types").JSONValue;
9002
9045
  };
9003
9046
  id: string;
9004
- status: "active" | "suspended" | "paused";
9047
+ status: "suspended" | "active" | "paused";
9005
9048
  filters?: {
9006
9049
  type: string;
9007
9050
  name: string;
@@ -9052,7 +9095,7 @@ export declare function init(config: AuthHeroConfig): {
9052
9095
  };
9053
9096
  };
9054
9097
  output: {
9055
- 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";
9098
+ 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";
9056
9099
  date: string;
9057
9100
  isMobile: boolean;
9058
9101
  log_id: string;
@@ -9091,7 +9134,7 @@ export declare function init(config: AuthHeroConfig): {
9091
9134
  limit: number;
9092
9135
  length: number;
9093
9136
  logs: {
9094
- 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";
9137
+ 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";
9095
9138
  date: string;
9096
9139
  isMobile: boolean;
9097
9140
  log_id: string;
@@ -9145,7 +9188,7 @@ export declare function init(config: AuthHeroConfig): {
9145
9188
  };
9146
9189
  };
9147
9190
  output: {
9148
- 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";
9191
+ 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";
9149
9192
  date: string;
9150
9193
  isMobile: boolean;
9151
9194
  log_id: string;
@@ -9533,7 +9576,7 @@ export declare function init(config: AuthHeroConfig): {
9533
9576
  addons?: {
9534
9577
  [x: string]: any;
9535
9578
  } | undefined;
9536
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9579
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9537
9580
  client_metadata?: {
9538
9581
  [x: string]: string;
9539
9582
  } | undefined;
@@ -9629,7 +9672,7 @@ export declare function init(config: AuthHeroConfig): {
9629
9672
  addons?: {
9630
9673
  [x: string]: any;
9631
9674
  } | undefined;
9632
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9675
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9633
9676
  client_metadata?: {
9634
9677
  [x: string]: string;
9635
9678
  } | undefined;
@@ -9740,7 +9783,7 @@ export declare function init(config: AuthHeroConfig): {
9740
9783
  addons?: {
9741
9784
  [x: string]: any;
9742
9785
  } | undefined;
9743
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9786
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9744
9787
  client_metadata?: {
9745
9788
  [x: string]: string;
9746
9789
  } | undefined;
@@ -9850,7 +9893,7 @@ export declare function init(config: AuthHeroConfig): {
9850
9893
  custom_login_page_preview?: string | undefined;
9851
9894
  form_template?: string | undefined;
9852
9895
  addons?: Record<string, any> | undefined;
9853
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9896
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9854
9897
  client_metadata?: Record<string, string> | undefined;
9855
9898
  hide_sign_up_disabled_error?: boolean | undefined;
9856
9899
  mobile?: Record<string, any> | undefined;
@@ -9930,7 +9973,7 @@ export declare function init(config: AuthHeroConfig): {
9930
9973
  addons?: {
9931
9974
  [x: string]: any;
9932
9975
  } | undefined;
9933
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9976
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9934
9977
  client_metadata?: {
9935
9978
  [x: string]: string;
9936
9979
  } | undefined;
@@ -10019,7 +10062,7 @@ export declare function init(config: AuthHeroConfig): {
10019
10062
  custom_login_page_preview?: string | undefined;
10020
10063
  form_template?: string | undefined;
10021
10064
  addons?: Record<string, any> | undefined;
10022
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10065
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10023
10066
  client_metadata?: Record<string, string> | undefined;
10024
10067
  hide_sign_up_disabled_error?: boolean | undefined;
10025
10068
  mobile?: Record<string, any> | undefined;
@@ -10099,7 +10142,7 @@ export declare function init(config: AuthHeroConfig): {
10099
10142
  addons?: {
10100
10143
  [x: string]: any;
10101
10144
  } | undefined;
10102
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10145
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10103
10146
  client_metadata?: {
10104
10147
  [x: string]: string;
10105
10148
  } | undefined;
@@ -10221,7 +10264,7 @@ export declare function init(config: AuthHeroConfig): {
10221
10264
  active?: boolean | undefined;
10222
10265
  } | undefined;
10223
10266
  signup?: {
10224
- status?: "optional" | "required" | "disabled" | undefined;
10267
+ status?: "optional" | "disabled" | "required" | undefined;
10225
10268
  verification?: {
10226
10269
  active?: boolean | undefined;
10227
10270
  } | undefined;
@@ -10238,7 +10281,7 @@ export declare function init(config: AuthHeroConfig): {
10238
10281
  active?: boolean | undefined;
10239
10282
  } | undefined;
10240
10283
  signup?: {
10241
- status?: "optional" | "required" | "disabled" | undefined;
10284
+ status?: "optional" | "disabled" | "required" | undefined;
10242
10285
  } | undefined;
10243
10286
  validation?: {
10244
10287
  max_length?: number | undefined;
@@ -10255,7 +10298,7 @@ export declare function init(config: AuthHeroConfig): {
10255
10298
  active?: boolean | undefined;
10256
10299
  } | undefined;
10257
10300
  signup?: {
10258
- status?: "optional" | "required" | "disabled" | undefined;
10301
+ status?: "optional" | "disabled" | "required" | undefined;
10259
10302
  } | undefined;
10260
10303
  } | undefined;
10261
10304
  } | undefined;
@@ -10375,7 +10418,7 @@ export declare function init(config: AuthHeroConfig): {
10375
10418
  active?: boolean | undefined;
10376
10419
  } | undefined;
10377
10420
  signup?: {
10378
- status?: "optional" | "required" | "disabled" | undefined;
10421
+ status?: "optional" | "disabled" | "required" | undefined;
10379
10422
  verification?: {
10380
10423
  active?: boolean | undefined;
10381
10424
  } | undefined;
@@ -10392,7 +10435,7 @@ export declare function init(config: AuthHeroConfig): {
10392
10435
  active?: boolean | undefined;
10393
10436
  } | undefined;
10394
10437
  signup?: {
10395
- status?: "optional" | "required" | "disabled" | undefined;
10438
+ status?: "optional" | "disabled" | "required" | undefined;
10396
10439
  } | undefined;
10397
10440
  validation?: {
10398
10441
  max_length?: number | undefined;
@@ -10409,7 +10452,7 @@ export declare function init(config: AuthHeroConfig): {
10409
10452
  active?: boolean | undefined;
10410
10453
  } | undefined;
10411
10454
  signup?: {
10412
- status?: "optional" | "required" | "disabled" | undefined;
10455
+ status?: "optional" | "disabled" | "required" | undefined;
10413
10456
  } | undefined;
10414
10457
  } | undefined;
10415
10458
  } | undefined;
@@ -11363,7 +11406,7 @@ export declare function init(config: AuthHeroConfig): {
11363
11406
  };
11364
11407
  };
11365
11408
  output: {
11366
- 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";
11409
+ 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";
11367
11410
  date: string;
11368
11411
  isMobile: boolean;
11369
11412
  log_id: string;
@@ -11402,7 +11445,7 @@ export declare function init(config: AuthHeroConfig): {
11402
11445
  limit: number;
11403
11446
  length: number;
11404
11447
  logs: {
11405
- 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";
11448
+ 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";
11406
11449
  date: string;
11407
11450
  isMobile: boolean;
11408
11451
  log_id: string;
@@ -12580,7 +12623,7 @@ export declare function init(config: AuthHeroConfig): {
12580
12623
  background_color: string;
12581
12624
  background_image_url: string;
12582
12625
  page_layout: "center" | "left" | "right";
12583
- logo_placement?: "none" | "widget" | "chip" | undefined;
12626
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12584
12627
  };
12585
12628
  widget: {
12586
12629
  header_text_alignment: "center" | "left" | "right";
@@ -12670,7 +12713,7 @@ export declare function init(config: AuthHeroConfig): {
12670
12713
  background_color: string;
12671
12714
  background_image_url: string;
12672
12715
  page_layout: "center" | "left" | "right";
12673
- logo_placement?: "none" | "widget" | "chip" | undefined;
12716
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12674
12717
  };
12675
12718
  widget: {
12676
12719
  header_text_alignment: "center" | "left" | "right";
@@ -12749,7 +12792,7 @@ export declare function init(config: AuthHeroConfig): {
12749
12792
  background_color: string;
12750
12793
  background_image_url: string;
12751
12794
  page_layout: "center" | "left" | "right";
12752
- logo_placement?: "none" | "widget" | "chip" | undefined;
12795
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12753
12796
  };
12754
12797
  widget: {
12755
12798
  header_text_alignment: "center" | "left" | "right";
@@ -12911,7 +12954,7 @@ export declare function init(config: AuthHeroConfig): {
12911
12954
  } & {
12912
12955
  json: {
12913
12956
  body?: string | undefined;
12914
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
12957
+ screen?: "password" | "signup" | "login" | "identifier" | undefined;
12915
12958
  branding?: {
12916
12959
  colors?: {
12917
12960
  primary: string;
@@ -12997,7 +13040,7 @@ export declare function init(config: AuthHeroConfig): {
12997
13040
  background_color: string;
12998
13041
  background_image_url: string;
12999
13042
  page_layout: "center" | "left" | "right";
13000
- logo_placement?: "none" | "widget" | "chip" | undefined;
13043
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13001
13044
  } | undefined;
13002
13045
  widget?: {
13003
13046
  header_text_alignment: "center" | "left" | "right";
@@ -13155,7 +13198,7 @@ export declare function init(config: AuthHeroConfig): {
13155
13198
  output: {
13156
13199
  id: string;
13157
13200
  trigger_id: string;
13158
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13201
+ status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
13159
13202
  results: {
13160
13203
  action_name: string;
13161
13204
  error: {
@@ -13202,7 +13245,7 @@ export declare function init(config: AuthHeroConfig): {
13202
13245
  logs: {
13203
13246
  action_name: string;
13204
13247
  lines: {
13205
- level: "log" | "error" | "info" | "warn" | "debug";
13248
+ level: "error" | "info" | "log" | "warn" | "debug";
13206
13249
  message: string;
13207
13250
  }[];
13208
13251
  }[];
@@ -13869,7 +13912,7 @@ export declare function init(config: AuthHeroConfig): {
13869
13912
  args: import("hono/utils/types").JSONValue[];
13870
13913
  }[];
13871
13914
  logs: {
13872
- level: "log" | "error" | "info" | "warn" | "debug";
13915
+ level: "error" | "info" | "log" | "warn" | "debug";
13873
13916
  message: string;
13874
13917
  }[];
13875
13918
  error?: string | undefined;
@@ -14167,7 +14210,7 @@ export declare function init(config: AuthHeroConfig): {
14167
14210
  scope?: string | undefined;
14168
14211
  grant_types?: string[] | undefined;
14169
14212
  response_types?: string[] | undefined;
14170
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14213
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14171
14214
  jwks_uri?: string | undefined;
14172
14215
  jwks?: Record<string, unknown> | undefined;
14173
14216
  software_id?: string | undefined;
@@ -14256,7 +14299,7 @@ export declare function init(config: AuthHeroConfig): {
14256
14299
  scope?: string | undefined;
14257
14300
  grant_types?: string[] | undefined;
14258
14301
  response_types?: string[] | undefined;
14259
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14302
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14260
14303
  jwks_uri?: string | undefined;
14261
14304
  jwks?: Record<string, unknown> | undefined;
14262
14305
  software_id?: string | undefined;
@@ -14602,17 +14645,17 @@ export declare function init(config: AuthHeroConfig): {
14602
14645
  email: string;
14603
14646
  send: "code" | "link";
14604
14647
  authParams: {
14605
- username?: string | undefined;
14606
- state?: string | undefined;
14607
14648
  audience?: string | undefined;
14608
14649
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14609
14650
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14610
14651
  scope?: string | undefined;
14652
+ username?: string | undefined;
14653
+ prompt?: string | undefined;
14654
+ state?: string | undefined;
14611
14655
  organization?: string | undefined;
14612
14656
  nonce?: string | undefined;
14613
14657
  redirect_uri?: string | undefined;
14614
14658
  act_as?: string | undefined;
14615
- prompt?: string | undefined;
14616
14659
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14617
14660
  code_challenge?: string | undefined;
14618
14661
  ui_locales?: string | undefined;
@@ -14638,17 +14681,17 @@ export declare function init(config: AuthHeroConfig): {
14638
14681
  phone_number: string;
14639
14682
  send: "code" | "link";
14640
14683
  authParams: {
14641
- username?: string | undefined;
14642
- state?: string | undefined;
14643
14684
  audience?: string | undefined;
14644
14685
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14645
14686
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14646
14687
  scope?: string | undefined;
14688
+ username?: string | undefined;
14689
+ prompt?: string | undefined;
14690
+ state?: string | undefined;
14647
14691
  organization?: string | undefined;
14648
14692
  nonce?: string | undefined;
14649
14693
  redirect_uri?: string | undefined;
14650
14694
  act_as?: string | undefined;
14651
- prompt?: string | undefined;
14652
14695
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14653
14696
  code_challenge?: string | undefined;
14654
14697
  ui_locales?: string | undefined;
@@ -16178,7 +16221,7 @@ export declare function init(config: AuthHeroConfig): {
16178
16221
  } & {
16179
16222
  form: {
16180
16223
  username: string;
16181
- login_selection?: "code" | "password" | undefined;
16224
+ login_selection?: "password" | "code" | undefined;
16182
16225
  };
16183
16226
  };
16184
16227
  output: {};
@@ -16192,7 +16235,7 @@ export declare function init(config: AuthHeroConfig): {
16192
16235
  } & {
16193
16236
  form: {
16194
16237
  username: string;
16195
- login_selection?: "code" | "password" | undefined;
16238
+ login_selection?: "password" | "code" | undefined;
16196
16239
  };
16197
16240
  };
16198
16241
  output: {};
@@ -16557,7 +16600,7 @@ export declare function init(config: AuthHeroConfig): {
16557
16600
  $get: {
16558
16601
  input: {
16559
16602
  param: {
16560
- 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";
16603
+ 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";
16561
16604
  };
16562
16605
  } & {
16563
16606
  query: {
@@ -16573,7 +16616,7 @@ export declare function init(config: AuthHeroConfig): {
16573
16616
  } | {
16574
16617
  input: {
16575
16618
  param: {
16576
- 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";
16619
+ 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";
16577
16620
  };
16578
16621
  } & {
16579
16622
  query: {
@@ -16589,7 +16632,7 @@ export declare function init(config: AuthHeroConfig): {
16589
16632
  } | {
16590
16633
  input: {
16591
16634
  param: {
16592
- 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";
16635
+ 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";
16593
16636
  };
16594
16637
  } & {
16595
16638
  query: {
@@ -16609,7 +16652,7 @@ export declare function init(config: AuthHeroConfig): {
16609
16652
  $post: {
16610
16653
  input: {
16611
16654
  param: {
16612
- 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";
16655
+ 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";
16613
16656
  };
16614
16657
  } & {
16615
16658
  query: {
@@ -16627,7 +16670,7 @@ export declare function init(config: AuthHeroConfig): {
16627
16670
  } | {
16628
16671
  input: {
16629
16672
  param: {
16630
- 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";
16673
+ 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";
16631
16674
  };
16632
16675
  } & {
16633
16676
  query: {