authhero 8.17.4 → 8.18.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.
@@ -18,6 +18,8 @@ export { cleanupOutbox } from "./helpers/outbox-cleanup";
18
18
  export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
19
19
  export { createDefaultDestinations } from "./helpers/default-destinations";
20
20
  export type { CreateDefaultDestinationsConfig } from "./helpers/default-destinations";
21
+ export { provisionDefaultClients, isInteractiveClient, } from "./helpers/provision-tenant-clients";
22
+ export type { ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ManagementApiScope, } from "./helpers/provision-tenant-clients";
21
23
  export { runOutboxRelay } from "./helpers/run-outbox-relay";
22
24
  export type { RunOutboxRelayConfig } from "./helpers/run-outbox-relay";
23
25
  export { LogsDestination } from "./helpers/outbox-destinations/logs";
@@ -59,8 +61,8 @@ export declare function init(config: AuthHeroConfig): {
59
61
  $get: {
60
62
  input: {
61
63
  query: {
62
- include_password_hashes?: "true" | "false" | undefined;
63
- gzip?: "true" | "false" | undefined;
64
+ include_password_hashes?: "false" | "true" | undefined;
65
+ gzip?: "false" | "true" | undefined;
64
66
  };
65
67
  } & {
66
68
  header: {
@@ -73,8 +75,8 @@ export declare function init(config: AuthHeroConfig): {
73
75
  } | {
74
76
  input: {
75
77
  query: {
76
- include_password_hashes?: "true" | "false" | undefined;
77
- gzip?: "true" | "false" | undefined;
78
+ include_password_hashes?: "false" | "true" | undefined;
79
+ gzip?: "false" | "true" | undefined;
78
80
  };
79
81
  } & {
80
82
  header: {
@@ -93,7 +95,7 @@ export declare function init(config: AuthHeroConfig): {
93
95
  $post: {
94
96
  input: {
95
97
  query: {
96
- include_password_hashes?: "true" | "false" | undefined;
98
+ include_password_hashes?: "false" | "true" | undefined;
97
99
  };
98
100
  } & {
99
101
  header: {
@@ -147,7 +149,7 @@ export declare function init(config: AuthHeroConfig): {
147
149
  };
148
150
  } & {
149
151
  json: {
150
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
152
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
151
153
  phone_number?: string | undefined;
152
154
  totp_secret?: string | undefined;
153
155
  credential_id?: string | undefined;
@@ -287,7 +289,7 @@ export declare function init(config: AuthHeroConfig): {
287
289
  };
288
290
  };
289
291
  output: {
290
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
292
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
291
293
  enabled: boolean;
292
294
  trial_expired?: boolean | undefined;
293
295
  }[];
@@ -442,7 +444,7 @@ export declare function init(config: AuthHeroConfig): {
442
444
  $get: {
443
445
  input: {
444
446
  param: {
445
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
447
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
446
448
  };
447
449
  } & {
448
450
  header: {
@@ -450,7 +452,7 @@ export declare function init(config: AuthHeroConfig): {
450
452
  };
451
453
  };
452
454
  output: {
453
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
455
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
454
456
  enabled: boolean;
455
457
  trial_expired?: boolean | undefined;
456
458
  };
@@ -463,7 +465,7 @@ export declare function init(config: AuthHeroConfig): {
463
465
  $put: {
464
466
  input: {
465
467
  param: {
466
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
468
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
467
469
  };
468
470
  } & {
469
471
  header: {
@@ -475,7 +477,7 @@ export declare function init(config: AuthHeroConfig): {
475
477
  };
476
478
  };
477
479
  output: {
478
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
480
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
479
481
  enabled: boolean;
480
482
  trial_expired?: boolean | undefined;
481
483
  };
@@ -1408,8 +1410,8 @@ export declare function init(config: AuthHeroConfig): {
1408
1410
  };
1409
1411
  } & {
1410
1412
  json: {
1411
- show_as_button?: boolean | undefined;
1412
1413
  assign_membership_on_login?: boolean | undefined;
1414
+ show_as_button?: boolean | undefined;
1413
1415
  is_signup_enabled?: boolean | undefined;
1414
1416
  };
1415
1417
  };
@@ -6879,7 +6881,7 @@ export declare function init(config: AuthHeroConfig): {
6879
6881
  };
6880
6882
  };
6881
6883
  output: {
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";
6884
+ prompt: "status" | "organizations" | "signup" | "mfa" | "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
6885
  language: string;
6884
6886
  }[];
6885
6887
  outputFormat: "json";
@@ -6917,7 +6919,7 @@ export declare function init(config: AuthHeroConfig): {
6917
6919
  $get: {
6918
6920
  input: {
6919
6921
  param: {
6920
- 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";
6922
+ prompt: "status" | "organizations" | "signup" | "mfa" | "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";
6921
6923
  language: string;
6922
6924
  };
6923
6925
  } & {
@@ -6939,7 +6941,7 @@ export declare function init(config: AuthHeroConfig): {
6939
6941
  $put: {
6940
6942
  input: {
6941
6943
  param: {
6942
- 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";
6944
+ prompt: "status" | "organizations" | "signup" | "mfa" | "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";
6943
6945
  language: string;
6944
6946
  };
6945
6947
  } & {
@@ -6963,7 +6965,7 @@ export declare function init(config: AuthHeroConfig): {
6963
6965
  $delete: {
6964
6966
  input: {
6965
6967
  param: {
6966
- 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";
6968
+ prompt: "status" | "organizations" | "signup" | "mfa" | "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";
6967
6969
  language: string;
6968
6970
  };
6969
6971
  } & {
@@ -7055,7 +7057,7 @@ export declare function init(config: AuthHeroConfig): {
7055
7057
  active?: boolean | undefined;
7056
7058
  } | undefined;
7057
7059
  signup?: {
7058
- status?: "optional" | "required" | "disabled" | undefined;
7060
+ status?: "required" | "optional" | "disabled" | undefined;
7059
7061
  verification?: {
7060
7062
  active?: boolean | undefined;
7061
7063
  } | undefined;
@@ -7072,7 +7074,7 @@ export declare function init(config: AuthHeroConfig): {
7072
7074
  active?: boolean | undefined;
7073
7075
  } | undefined;
7074
7076
  signup?: {
7075
- status?: "optional" | "required" | "disabled" | undefined;
7077
+ status?: "required" | "optional" | "disabled" | undefined;
7076
7078
  } | undefined;
7077
7079
  validation?: {
7078
7080
  max_length?: number | undefined;
@@ -7089,7 +7091,7 @@ export declare function init(config: AuthHeroConfig): {
7089
7091
  active?: boolean | undefined;
7090
7092
  } | undefined;
7091
7093
  signup?: {
7092
- status?: "optional" | "required" | "disabled" | undefined;
7094
+ status?: "required" | "optional" | "disabled" | undefined;
7093
7095
  } | undefined;
7094
7096
  } | undefined;
7095
7097
  } | undefined;
@@ -7102,7 +7104,7 @@ export declare function init(config: AuthHeroConfig): {
7102
7104
  } | undefined;
7103
7105
  } | undefined;
7104
7106
  passkey_options?: {
7105
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7107
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7106
7108
  local_enrollment_enabled?: boolean | undefined;
7107
7109
  progressive_enrollment_enabled?: boolean | undefined;
7108
7110
  } | undefined;
@@ -7189,7 +7191,7 @@ export declare function init(config: AuthHeroConfig): {
7189
7191
  active?: boolean | undefined;
7190
7192
  } | undefined;
7191
7193
  signup?: {
7192
- status?: "optional" | "required" | "disabled" | undefined;
7194
+ status?: "required" | "optional" | "disabled" | undefined;
7193
7195
  verification?: {
7194
7196
  active?: boolean | undefined;
7195
7197
  } | undefined;
@@ -7206,7 +7208,7 @@ export declare function init(config: AuthHeroConfig): {
7206
7208
  active?: boolean | undefined;
7207
7209
  } | undefined;
7208
7210
  signup?: {
7209
- status?: "optional" | "required" | "disabled" | undefined;
7211
+ status?: "required" | "optional" | "disabled" | undefined;
7210
7212
  } | undefined;
7211
7213
  validation?: {
7212
7214
  max_length?: number | undefined;
@@ -7223,7 +7225,7 @@ export declare function init(config: AuthHeroConfig): {
7223
7225
  active?: boolean | undefined;
7224
7226
  } | undefined;
7225
7227
  signup?: {
7226
- status?: "optional" | "required" | "disabled" | undefined;
7228
+ status?: "required" | "optional" | "disabled" | undefined;
7227
7229
  } | undefined;
7228
7230
  } | undefined;
7229
7231
  } | undefined;
@@ -7236,7 +7238,7 @@ export declare function init(config: AuthHeroConfig): {
7236
7238
  } | undefined;
7237
7239
  } | undefined;
7238
7240
  passkey_options?: {
7239
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7241
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7240
7242
  local_enrollment_enabled?: boolean | undefined;
7241
7243
  progressive_enrollment_enabled?: boolean | undefined;
7242
7244
  } | undefined;
@@ -7338,7 +7340,7 @@ export declare function init(config: AuthHeroConfig): {
7338
7340
  active?: boolean | undefined;
7339
7341
  } | undefined;
7340
7342
  signup?: {
7341
- status?: "optional" | "required" | "disabled" | undefined;
7343
+ status?: "required" | "optional" | "disabled" | undefined;
7342
7344
  verification?: {
7343
7345
  active?: boolean | undefined;
7344
7346
  } | undefined;
@@ -7355,7 +7357,7 @@ export declare function init(config: AuthHeroConfig): {
7355
7357
  active?: boolean | undefined;
7356
7358
  } | undefined;
7357
7359
  signup?: {
7358
- status?: "optional" | "required" | "disabled" | undefined;
7360
+ status?: "required" | "optional" | "disabled" | undefined;
7359
7361
  } | undefined;
7360
7362
  validation?: {
7361
7363
  max_length?: number | undefined;
@@ -7372,7 +7374,7 @@ export declare function init(config: AuthHeroConfig): {
7372
7374
  active?: boolean | undefined;
7373
7375
  } | undefined;
7374
7376
  signup?: {
7375
- status?: "optional" | "required" | "disabled" | undefined;
7377
+ status?: "required" | "optional" | "disabled" | undefined;
7376
7378
  } | undefined;
7377
7379
  } | undefined;
7378
7380
  } | undefined;
@@ -7385,7 +7387,7 @@ export declare function init(config: AuthHeroConfig): {
7385
7387
  } | undefined;
7386
7388
  } | undefined;
7387
7389
  passkey_options?: {
7388
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7390
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7389
7391
  local_enrollment_enabled?: boolean | undefined;
7390
7392
  progressive_enrollment_enabled?: boolean | undefined;
7391
7393
  } | undefined;
@@ -7517,7 +7519,7 @@ export declare function init(config: AuthHeroConfig): {
7517
7519
  active?: boolean | undefined;
7518
7520
  } | undefined;
7519
7521
  signup?: {
7520
- status?: "optional" | "required" | "disabled" | undefined;
7522
+ status?: "required" | "optional" | "disabled" | undefined;
7521
7523
  verification?: {
7522
7524
  active?: boolean | undefined;
7523
7525
  } | undefined;
@@ -7534,7 +7536,7 @@ export declare function init(config: AuthHeroConfig): {
7534
7536
  active?: boolean | undefined;
7535
7537
  } | undefined;
7536
7538
  signup?: {
7537
- status?: "optional" | "required" | "disabled" | undefined;
7539
+ status?: "required" | "optional" | "disabled" | undefined;
7538
7540
  } | undefined;
7539
7541
  validation?: {
7540
7542
  max_length?: number | undefined;
@@ -7551,7 +7553,7 @@ export declare function init(config: AuthHeroConfig): {
7551
7553
  active?: boolean | undefined;
7552
7554
  } | undefined;
7553
7555
  signup?: {
7554
- status?: "optional" | "required" | "disabled" | undefined;
7556
+ status?: "required" | "optional" | "disabled" | undefined;
7555
7557
  } | undefined;
7556
7558
  } | undefined;
7557
7559
  } | undefined;
@@ -7564,7 +7566,7 @@ export declare function init(config: AuthHeroConfig): {
7564
7566
  } | undefined;
7565
7567
  } | undefined;
7566
7568
  passkey_options?: {
7567
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7569
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7568
7570
  local_enrollment_enabled?: boolean | undefined;
7569
7571
  progressive_enrollment_enabled?: boolean | undefined;
7570
7572
  } | undefined;
@@ -7675,7 +7677,7 @@ export declare function init(config: AuthHeroConfig): {
7675
7677
  active?: boolean | undefined;
7676
7678
  } | undefined;
7677
7679
  signup?: {
7678
- status?: "optional" | "required" | "disabled" | undefined;
7680
+ status?: "required" | "optional" | "disabled" | undefined;
7679
7681
  verification?: {
7680
7682
  active?: boolean | undefined;
7681
7683
  } | undefined;
@@ -7692,7 +7694,7 @@ export declare function init(config: AuthHeroConfig): {
7692
7694
  active?: boolean | undefined;
7693
7695
  } | undefined;
7694
7696
  signup?: {
7695
- status?: "optional" | "required" | "disabled" | undefined;
7697
+ status?: "required" | "optional" | "disabled" | undefined;
7696
7698
  } | undefined;
7697
7699
  validation?: {
7698
7700
  max_length?: number | undefined;
@@ -7709,7 +7711,7 @@ export declare function init(config: AuthHeroConfig): {
7709
7711
  active?: boolean | undefined;
7710
7712
  } | undefined;
7711
7713
  signup?: {
7712
- status?: "optional" | "required" | "disabled" | undefined;
7714
+ status?: "required" | "optional" | "disabled" | undefined;
7713
7715
  } | undefined;
7714
7716
  } | undefined;
7715
7717
  } | undefined;
@@ -7722,7 +7724,7 @@ export declare function init(config: AuthHeroConfig): {
7722
7724
  } | undefined;
7723
7725
  } | undefined;
7724
7726
  passkey_options?: {
7725
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7727
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7726
7728
  local_enrollment_enabled?: boolean | undefined;
7727
7729
  progressive_enrollment_enabled?: boolean | undefined;
7728
7730
  } | undefined;
@@ -8774,7 +8776,7 @@ export declare function init(config: AuthHeroConfig): {
8774
8776
  created_at: string;
8775
8777
  updated_at: string;
8776
8778
  name: string;
8777
- provider: "auth0" | "oidc" | "okta" | "cognito";
8779
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8778
8780
  connection: string;
8779
8781
  enabled: boolean;
8780
8782
  credentials: {
@@ -8806,7 +8808,7 @@ export declare function init(config: AuthHeroConfig): {
8806
8808
  created_at: string;
8807
8809
  updated_at: string;
8808
8810
  name: string;
8809
- provider: "auth0" | "oidc" | "okta" | "cognito";
8811
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8810
8812
  connection: string;
8811
8813
  enabled: boolean;
8812
8814
  credentials: {
@@ -8832,7 +8834,7 @@ export declare function init(config: AuthHeroConfig): {
8832
8834
  } & {
8833
8835
  json: {
8834
8836
  name: string;
8835
- provider: "auth0" | "oidc" | "okta" | "cognito";
8837
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8836
8838
  connection: string;
8837
8839
  credentials: {
8838
8840
  domain: string;
@@ -8849,7 +8851,7 @@ export declare function init(config: AuthHeroConfig): {
8849
8851
  created_at: string;
8850
8852
  updated_at: string;
8851
8853
  name: string;
8852
- provider: "auth0" | "oidc" | "okta" | "cognito";
8854
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8853
8855
  connection: string;
8854
8856
  enabled: boolean;
8855
8857
  credentials: {
@@ -8880,7 +8882,7 @@ export declare function init(config: AuthHeroConfig): {
8880
8882
  json: {
8881
8883
  id?: string | undefined;
8882
8884
  name?: string | undefined;
8883
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8885
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8884
8886
  connection?: string | undefined;
8885
8887
  enabled?: boolean | undefined;
8886
8888
  credentials?: {
@@ -8896,7 +8898,7 @@ export declare function init(config: AuthHeroConfig): {
8896
8898
  created_at: string;
8897
8899
  updated_at: string;
8898
8900
  name: string;
8899
- provider: "auth0" | "oidc" | "okta" | "cognito";
8901
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8900
8902
  connection: string;
8901
8903
  enabled: boolean;
8902
8904
  credentials: {
@@ -9114,7 +9116,7 @@ export declare function init(config: AuthHeroConfig): {
9114
9116
  };
9115
9117
  };
9116
9118
  output: {
9117
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
9119
+ type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9118
9120
  date: string;
9119
9121
  isMobile: boolean;
9120
9122
  log_id: string;
@@ -9153,7 +9155,7 @@ export declare function init(config: AuthHeroConfig): {
9153
9155
  limit: number;
9154
9156
  length: number;
9155
9157
  logs: {
9156
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
9158
+ type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9157
9159
  date: string;
9158
9160
  isMobile: boolean;
9159
9161
  log_id: string;
@@ -9207,7 +9209,7 @@ export declare function init(config: AuthHeroConfig): {
9207
9209
  };
9208
9210
  };
9209
9211
  output: {
9210
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
9212
+ type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9211
9213
  date: string;
9212
9214
  isMobile: boolean;
9213
9215
  log_id: string;
@@ -9595,7 +9597,7 @@ export declare function init(config: AuthHeroConfig): {
9595
9597
  addons?: {
9596
9598
  [x: string]: any;
9597
9599
  } | undefined;
9598
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9600
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9599
9601
  client_metadata?: {
9600
9602
  [x: string]: string;
9601
9603
  } | undefined;
@@ -9691,7 +9693,7 @@ export declare function init(config: AuthHeroConfig): {
9691
9693
  addons?: {
9692
9694
  [x: string]: any;
9693
9695
  } | undefined;
9694
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9696
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9695
9697
  client_metadata?: {
9696
9698
  [x: string]: string;
9697
9699
  } | undefined;
@@ -9802,7 +9804,7 @@ export declare function init(config: AuthHeroConfig): {
9802
9804
  addons?: {
9803
9805
  [x: string]: any;
9804
9806
  } | undefined;
9805
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9807
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9806
9808
  client_metadata?: {
9807
9809
  [x: string]: string;
9808
9810
  } | undefined;
@@ -9912,7 +9914,7 @@ export declare function init(config: AuthHeroConfig): {
9912
9914
  custom_login_page_preview?: string | undefined;
9913
9915
  form_template?: string | undefined;
9914
9916
  addons?: Record<string, any> | undefined;
9915
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9917
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9916
9918
  client_metadata?: Record<string, string> | undefined;
9917
9919
  hide_sign_up_disabled_error?: boolean | undefined;
9918
9920
  mobile?: Record<string, any> | undefined;
@@ -9992,7 +9994,7 @@ export declare function init(config: AuthHeroConfig): {
9992
9994
  addons?: {
9993
9995
  [x: string]: any;
9994
9996
  } | undefined;
9995
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9997
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9996
9998
  client_metadata?: {
9997
9999
  [x: string]: string;
9998
10000
  } | undefined;
@@ -10081,7 +10083,7 @@ export declare function init(config: AuthHeroConfig): {
10081
10083
  custom_login_page_preview?: string | undefined;
10082
10084
  form_template?: string | undefined;
10083
10085
  addons?: Record<string, any> | undefined;
10084
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10086
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10085
10087
  client_metadata?: Record<string, string> | undefined;
10086
10088
  hide_sign_up_disabled_error?: boolean | undefined;
10087
10089
  mobile?: Record<string, any> | undefined;
@@ -10161,7 +10163,7 @@ export declare function init(config: AuthHeroConfig): {
10161
10163
  addons?: {
10162
10164
  [x: string]: any;
10163
10165
  } | undefined;
10164
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10166
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10165
10167
  client_metadata?: {
10166
10168
  [x: string]: string;
10167
10169
  } | undefined;
@@ -10283,7 +10285,7 @@ export declare function init(config: AuthHeroConfig): {
10283
10285
  active?: boolean | undefined;
10284
10286
  } | undefined;
10285
10287
  signup?: {
10286
- status?: "optional" | "required" | "disabled" | undefined;
10288
+ status?: "required" | "optional" | "disabled" | undefined;
10287
10289
  verification?: {
10288
10290
  active?: boolean | undefined;
10289
10291
  } | undefined;
@@ -10300,7 +10302,7 @@ export declare function init(config: AuthHeroConfig): {
10300
10302
  active?: boolean | undefined;
10301
10303
  } | undefined;
10302
10304
  signup?: {
10303
- status?: "optional" | "required" | "disabled" | undefined;
10305
+ status?: "required" | "optional" | "disabled" | undefined;
10304
10306
  } | undefined;
10305
10307
  validation?: {
10306
10308
  max_length?: number | undefined;
@@ -10317,7 +10319,7 @@ export declare function init(config: AuthHeroConfig): {
10317
10319
  active?: boolean | undefined;
10318
10320
  } | undefined;
10319
10321
  signup?: {
10320
- status?: "optional" | "required" | "disabled" | undefined;
10322
+ status?: "required" | "optional" | "disabled" | undefined;
10321
10323
  } | undefined;
10322
10324
  } | undefined;
10323
10325
  } | undefined;
@@ -10330,7 +10332,7 @@ export declare function init(config: AuthHeroConfig): {
10330
10332
  } | undefined;
10331
10333
  } | undefined;
10332
10334
  passkey_options?: {
10333
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10335
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10334
10336
  local_enrollment_enabled?: boolean | undefined;
10335
10337
  progressive_enrollment_enabled?: boolean | undefined;
10336
10338
  } | undefined;
@@ -10437,7 +10439,7 @@ export declare function init(config: AuthHeroConfig): {
10437
10439
  active?: boolean | undefined;
10438
10440
  } | undefined;
10439
10441
  signup?: {
10440
- status?: "optional" | "required" | "disabled" | undefined;
10442
+ status?: "required" | "optional" | "disabled" | undefined;
10441
10443
  verification?: {
10442
10444
  active?: boolean | undefined;
10443
10445
  } | undefined;
@@ -10454,7 +10456,7 @@ export declare function init(config: AuthHeroConfig): {
10454
10456
  active?: boolean | undefined;
10455
10457
  } | undefined;
10456
10458
  signup?: {
10457
- status?: "optional" | "required" | "disabled" | undefined;
10459
+ status?: "required" | "optional" | "disabled" | undefined;
10458
10460
  } | undefined;
10459
10461
  validation?: {
10460
10462
  max_length?: number | undefined;
@@ -10471,7 +10473,7 @@ export declare function init(config: AuthHeroConfig): {
10471
10473
  active?: boolean | undefined;
10472
10474
  } | undefined;
10473
10475
  signup?: {
10474
- status?: "optional" | "required" | "disabled" | undefined;
10476
+ status?: "required" | "optional" | "disabled" | undefined;
10475
10477
  } | undefined;
10476
10478
  } | undefined;
10477
10479
  } | undefined;
@@ -10484,7 +10486,7 @@ export declare function init(config: AuthHeroConfig): {
10484
10486
  } | undefined;
10485
10487
  } | undefined;
10486
10488
  passkey_options?: {
10487
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10489
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10488
10490
  local_enrollment_enabled?: boolean | undefined;
10489
10491
  progressive_enrollment_enabled?: boolean | undefined;
10490
10492
  } | undefined;
@@ -11425,7 +11427,7 @@ export declare function init(config: AuthHeroConfig): {
11425
11427
  };
11426
11428
  };
11427
11429
  output: {
11428
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
11430
+ type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11429
11431
  date: string;
11430
11432
  isMobile: boolean;
11431
11433
  log_id: string;
@@ -11464,7 +11466,7 @@ export declare function init(config: AuthHeroConfig): {
11464
11466
  limit: number;
11465
11467
  length: number;
11466
11468
  logs: {
11467
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "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";
11469
+ type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11468
11470
  date: string;
11469
11471
  isMobile: boolean;
11470
11472
  log_id: string;
@@ -11558,6 +11560,7 @@ export declare function init(config: AuthHeroConfig): {
11558
11560
  permissions: {
11559
11561
  permission_name: string;
11560
11562
  resource_server_identifier: string;
11563
+ organization_id?: string | undefined;
11561
11564
  }[];
11562
11565
  };
11563
11566
  };
@@ -11582,6 +11585,7 @@ export declare function init(config: AuthHeroConfig): {
11582
11585
  permissions: {
11583
11586
  permission_name: string;
11584
11587
  resource_server_identifier: string;
11588
+ organization_id?: string | undefined;
11585
11589
  }[];
11586
11590
  };
11587
11591
  };
@@ -11779,7 +11783,7 @@ export declare function init(config: AuthHeroConfig): {
11779
11783
  };
11780
11784
  } & {
11781
11785
  json: {
11782
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11786
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11783
11787
  body: string;
11784
11788
  from: string;
11785
11789
  subject: string;
@@ -11800,7 +11804,7 @@ export declare function init(config: AuthHeroConfig): {
11800
11804
  };
11801
11805
  } & {
11802
11806
  json: {
11803
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11807
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11804
11808
  body: string;
11805
11809
  from: string;
11806
11810
  subject: string;
@@ -11812,7 +11816,7 @@ export declare function init(config: AuthHeroConfig): {
11812
11816
  };
11813
11817
  };
11814
11818
  output: {
11815
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11819
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11816
11820
  body: string;
11817
11821
  from: string;
11818
11822
  subject: string;
@@ -11835,7 +11839,7 @@ export declare function init(config: AuthHeroConfig): {
11835
11839
  };
11836
11840
  };
11837
11841
  output: {
11838
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11842
+ name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11839
11843
  body: string;
11840
11844
  subject: string;
11841
11845
  }[];
@@ -11848,7 +11852,7 @@ export declare function init(config: AuthHeroConfig): {
11848
11852
  $get: {
11849
11853
  input: {
11850
11854
  param: {
11851
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11855
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11852
11856
  };
11853
11857
  } & {
11854
11858
  header: {
@@ -11861,7 +11865,7 @@ export declare function init(config: AuthHeroConfig): {
11861
11865
  } | {
11862
11866
  input: {
11863
11867
  param: {
11864
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11868
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11865
11869
  };
11866
11870
  } & {
11867
11871
  header: {
@@ -11869,7 +11873,7 @@ export declare function init(config: AuthHeroConfig): {
11869
11873
  };
11870
11874
  };
11871
11875
  output: {
11872
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11876
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11873
11877
  body: string;
11874
11878
  from: string;
11875
11879
  subject: string;
@@ -11888,7 +11892,7 @@ export declare function init(config: AuthHeroConfig): {
11888
11892
  $put: {
11889
11893
  input: {
11890
11894
  param: {
11891
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11895
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11892
11896
  };
11893
11897
  } & {
11894
11898
  header: {
@@ -11896,7 +11900,7 @@ export declare function init(config: AuthHeroConfig): {
11896
11900
  };
11897
11901
  } & {
11898
11902
  json: {
11899
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11903
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11900
11904
  body: string;
11901
11905
  subject: string;
11902
11906
  syntax?: "liquid" | undefined;
@@ -11908,7 +11912,7 @@ export declare function init(config: AuthHeroConfig): {
11908
11912
  };
11909
11913
  };
11910
11914
  output: {
11911
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11915
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11912
11916
  body: string;
11913
11917
  from: string;
11914
11918
  subject: string;
@@ -11927,7 +11931,7 @@ export declare function init(config: AuthHeroConfig): {
11927
11931
  $patch: {
11928
11932
  input: {
11929
11933
  param: {
11930
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11934
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11931
11935
  };
11932
11936
  } & {
11933
11937
  header: {
@@ -11935,7 +11939,7 @@ export declare function init(config: AuthHeroConfig): {
11935
11939
  };
11936
11940
  } & {
11937
11941
  json: {
11938
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11942
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11939
11943
  body?: string | undefined;
11940
11944
  from?: string | undefined;
11941
11945
  subject?: string | undefined;
@@ -11952,7 +11956,7 @@ export declare function init(config: AuthHeroConfig): {
11952
11956
  } | {
11953
11957
  input: {
11954
11958
  param: {
11955
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11959
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11956
11960
  };
11957
11961
  } & {
11958
11962
  header: {
@@ -11960,7 +11964,7 @@ export declare function init(config: AuthHeroConfig): {
11960
11964
  };
11961
11965
  } & {
11962
11966
  json: {
11963
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11967
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11964
11968
  body?: string | undefined;
11965
11969
  from?: string | undefined;
11966
11970
  subject?: string | undefined;
@@ -11972,7 +11976,7 @@ export declare function init(config: AuthHeroConfig): {
11972
11976
  };
11973
11977
  };
11974
11978
  output: {
11975
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11979
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11976
11980
  body: string;
11977
11981
  from: string;
11978
11982
  subject: string;
@@ -11991,7 +11995,7 @@ export declare function init(config: AuthHeroConfig): {
11991
11995
  $delete: {
11992
11996
  input: {
11993
11997
  param: {
11994
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11998
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11995
11999
  };
11996
12000
  } & {
11997
12001
  header: {
@@ -12004,7 +12008,7 @@ export declare function init(config: AuthHeroConfig): {
12004
12008
  } | {
12005
12009
  input: {
12006
12010
  param: {
12007
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12011
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12008
12012
  };
12009
12013
  } & {
12010
12014
  header: {
@@ -12021,7 +12025,7 @@ export declare function init(config: AuthHeroConfig): {
12021
12025
  $post: {
12022
12026
  input: {
12023
12027
  param: {
12024
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12028
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12025
12029
  };
12026
12030
  } & {
12027
12031
  header: {
@@ -12304,7 +12308,7 @@ export declare function init(config: AuthHeroConfig): {
12304
12308
  type: "auth0_managed_certs" | "self_managed_certs";
12305
12309
  custom_domain_id: string;
12306
12310
  primary: boolean;
12307
- status: "pending" | "ready" | "disabled" | "pending_verification";
12311
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12308
12312
  verification_method?: "txt" | undefined;
12309
12313
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12310
12314
  domain_metadata?: {
@@ -12345,7 +12349,7 @@ export declare function init(config: AuthHeroConfig): {
12345
12349
  type: "auth0_managed_certs" | "self_managed_certs";
12346
12350
  custom_domain_id: string;
12347
12351
  primary: boolean;
12348
- status: "pending" | "ready" | "disabled" | "pending_verification";
12352
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12349
12353
  verification_method?: "txt" | undefined;
12350
12354
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12351
12355
  domain_metadata?: {
@@ -12409,7 +12413,7 @@ export declare function init(config: AuthHeroConfig): {
12409
12413
  type: "auth0_managed_certs" | "self_managed_certs";
12410
12414
  custom_domain_id: string;
12411
12415
  primary: boolean;
12412
- status: "pending" | "ready" | "disabled" | "pending_verification";
12416
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12413
12417
  verification_method?: "txt" | undefined;
12414
12418
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12415
12419
  domain_metadata?: {
@@ -12456,7 +12460,7 @@ export declare function init(config: AuthHeroConfig): {
12456
12460
  type: "auth0_managed_certs" | "self_managed_certs";
12457
12461
  custom_domain_id: string;
12458
12462
  primary: boolean;
12459
- status: "pending" | "ready" | "disabled" | "pending_verification";
12463
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12460
12464
  verification_method?: "txt" | undefined;
12461
12465
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12462
12466
  domain_metadata?: {
@@ -12502,7 +12506,7 @@ export declare function init(config: AuthHeroConfig): {
12502
12506
  type: "auth0_managed_certs" | "self_managed_certs";
12503
12507
  custom_domain_id: string;
12504
12508
  primary: boolean;
12505
- status: "pending" | "ready" | "disabled" | "pending_verification";
12509
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12506
12510
  verification_method?: "txt" | undefined;
12507
12511
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12508
12512
  domain_metadata?: {
@@ -12543,7 +12547,7 @@ export declare function init(config: AuthHeroConfig): {
12543
12547
  type: "auth0_managed_certs" | "self_managed_certs";
12544
12548
  custom_domain_id: string;
12545
12549
  primary: boolean;
12546
- status: "pending" | "ready" | "disabled" | "pending_verification";
12550
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12547
12551
  verification_method?: "txt" | undefined;
12548
12552
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12549
12553
  domain_metadata?: {
@@ -12973,7 +12977,7 @@ export declare function init(config: AuthHeroConfig): {
12973
12977
  } & {
12974
12978
  json: {
12975
12979
  body?: string | undefined;
12976
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
12980
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
12977
12981
  branding?: {
12978
12982
  colors?: {
12979
12983
  primary: string;
@@ -13264,7 +13268,7 @@ export declare function init(config: AuthHeroConfig): {
13264
13268
  logs: {
13265
13269
  action_name: string;
13266
13270
  lines: {
13267
- level: "log" | "error" | "info" | "warn" | "debug";
13271
+ level: "error" | "log" | "debug" | "info" | "warn";
13268
13272
  message: string;
13269
13273
  }[];
13270
13274
  }[];
@@ -13931,7 +13935,7 @@ export declare function init(config: AuthHeroConfig): {
13931
13935
  args: import("hono/utils/types").JSONValue[];
13932
13936
  }[];
13933
13937
  logs: {
13934
- level: "log" | "error" | "info" | "warn" | "debug";
13938
+ level: "error" | "log" | "debug" | "info" | "warn";
13935
13939
  message: string;
13936
13940
  }[];
13937
13941
  error?: string | undefined;
@@ -14242,7 +14246,7 @@ export declare function init(config: AuthHeroConfig): {
14242
14246
  scope?: string | undefined;
14243
14247
  grant_types?: string[] | undefined;
14244
14248
  response_types?: string[] | undefined;
14245
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14249
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14246
14250
  jwks_uri?: string | undefined;
14247
14251
  jwks?: Record<string, unknown> | undefined;
14248
14252
  software_id?: string | undefined;
@@ -14331,7 +14335,7 @@ export declare function init(config: AuthHeroConfig): {
14331
14335
  scope?: string | undefined;
14332
14336
  grant_types?: string[] | undefined;
14333
14337
  response_types?: string[] | undefined;
14334
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14338
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14335
14339
  jwks_uri?: string | undefined;
14336
14340
  jwks?: Record<string, unknown> | undefined;
14337
14341
  software_id?: string | undefined;
@@ -14678,15 +14682,15 @@ export declare function init(config: AuthHeroConfig): {
14678
14682
  send: "code" | "link";
14679
14683
  authParams: {
14680
14684
  username?: string | undefined;
14681
- state?: string | undefined;
14682
14685
  audience?: string | undefined;
14686
+ scope?: string | undefined;
14687
+ state?: string | undefined;
14683
14688
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14684
14689
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14685
- scope?: string | undefined;
14690
+ act_as?: string | undefined;
14691
+ redirect_uri?: string | undefined;
14686
14692
  organization?: string | undefined;
14687
14693
  nonce?: string | undefined;
14688
- redirect_uri?: string | undefined;
14689
- act_as?: string | undefined;
14690
14694
  prompt?: string | undefined;
14691
14695
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14692
14696
  code_challenge?: string | undefined;
@@ -14714,15 +14718,15 @@ export declare function init(config: AuthHeroConfig): {
14714
14718
  send: "code" | "link";
14715
14719
  authParams: {
14716
14720
  username?: string | undefined;
14717
- state?: string | undefined;
14718
14721
  audience?: string | undefined;
14722
+ scope?: string | undefined;
14723
+ state?: string | undefined;
14719
14724
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14720
14725
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14721
- scope?: string | undefined;
14726
+ act_as?: string | undefined;
14727
+ redirect_uri?: string | undefined;
14722
14728
  organization?: string | undefined;
14723
14729
  nonce?: string | undefined;
14724
- redirect_uri?: string | undefined;
14725
- act_as?: string | undefined;
14726
14730
  prompt?: string | undefined;
14727
14731
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14728
14732
  code_challenge?: string | undefined;
@@ -14857,14 +14861,14 @@ export declare function init(config: AuthHeroConfig): {
14857
14861
  input: {
14858
14862
  form: {
14859
14863
  token: string;
14860
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14864
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14861
14865
  client_id?: string | undefined;
14862
14866
  client_secret?: string | undefined;
14863
14867
  };
14864
14868
  } & {
14865
14869
  json: {
14866
14870
  token: string;
14867
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14871
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14868
14872
  client_id?: string | undefined;
14869
14873
  client_secret?: string | undefined;
14870
14874
  };
@@ -14876,14 +14880,14 @@ export declare function init(config: AuthHeroConfig): {
14876
14880
  input: {
14877
14881
  form: {
14878
14882
  token: string;
14879
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14883
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14880
14884
  client_id?: string | undefined;
14881
14885
  client_secret?: string | undefined;
14882
14886
  };
14883
14887
  } & {
14884
14888
  json: {
14885
14889
  token: string;
14886
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14890
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14887
14891
  client_id?: string | undefined;
14888
14892
  client_secret?: string | undefined;
14889
14893
  };
@@ -14898,14 +14902,14 @@ export declare function init(config: AuthHeroConfig): {
14898
14902
  input: {
14899
14903
  form: {
14900
14904
  token: string;
14901
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14905
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14902
14906
  client_id?: string | undefined;
14903
14907
  client_secret?: string | undefined;
14904
14908
  };
14905
14909
  } & {
14906
14910
  json: {
14907
14911
  token: string;
14908
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14912
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14909
14913
  client_id?: string | undefined;
14910
14914
  client_secret?: string | undefined;
14911
14915
  };
@@ -14955,7 +14959,7 @@ export declare function init(config: AuthHeroConfig): {
14955
14959
  client_id: string;
14956
14960
  username: string;
14957
14961
  otp: string;
14958
- realm: "sms" | "email";
14962
+ realm: "email" | "sms";
14959
14963
  } | {
14960
14964
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14961
14965
  subject_token: string;
@@ -15002,7 +15006,7 @@ export declare function init(config: AuthHeroConfig): {
15002
15006
  client_id: string;
15003
15007
  username: string;
15004
15008
  otp: string;
15005
- realm: "sms" | "email";
15009
+ realm: "email" | "sms";
15006
15010
  } | {
15007
15011
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15008
15012
  subject_token: string;
@@ -15054,7 +15058,7 @@ export declare function init(config: AuthHeroConfig): {
15054
15058
  client_id: string;
15055
15059
  username: string;
15056
15060
  otp: string;
15057
- realm: "sms" | "email";
15061
+ realm: "email" | "sms";
15058
15062
  } | {
15059
15063
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15060
15064
  subject_token: string;
@@ -15101,7 +15105,7 @@ export declare function init(config: AuthHeroConfig): {
15101
15105
  client_id: string;
15102
15106
  username: string;
15103
15107
  otp: string;
15104
- realm: "sms" | "email";
15108
+ realm: "email" | "sms";
15105
15109
  } | {
15106
15110
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15107
15111
  subject_token: string;
@@ -15161,7 +15165,7 @@ export declare function init(config: AuthHeroConfig): {
15161
15165
  client_id: string;
15162
15166
  username: string;
15163
15167
  otp: string;
15164
- realm: "sms" | "email";
15168
+ realm: "email" | "sms";
15165
15169
  } | {
15166
15170
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15167
15171
  subject_token: string;
@@ -15208,7 +15212,7 @@ export declare function init(config: AuthHeroConfig): {
15208
15212
  client_id: string;
15209
15213
  username: string;
15210
15214
  otp: string;
15211
- realm: "sms" | "email";
15215
+ realm: "email" | "sms";
15212
15216
  } | {
15213
15217
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15214
15218
  subject_token: string;
@@ -15263,7 +15267,7 @@ export declare function init(config: AuthHeroConfig): {
15263
15267
  client_id: string;
15264
15268
  username: string;
15265
15269
  otp: string;
15266
- realm: "sms" | "email";
15270
+ realm: "email" | "sms";
15267
15271
  } | {
15268
15272
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15269
15273
  subject_token: string;
@@ -15310,7 +15314,7 @@ export declare function init(config: AuthHeroConfig): {
15310
15314
  client_id: string;
15311
15315
  username: string;
15312
15316
  otp: string;
15313
- realm: "sms" | "email";
15317
+ realm: "email" | "sms";
15314
15318
  } | {
15315
15319
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15316
15320
  subject_token: string;
@@ -15365,7 +15369,7 @@ export declare function init(config: AuthHeroConfig): {
15365
15369
  client_id: string;
15366
15370
  username: string;
15367
15371
  otp: string;
15368
- realm: "sms" | "email";
15372
+ realm: "email" | "sms";
15369
15373
  } | {
15370
15374
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15371
15375
  subject_token: string;
@@ -15412,7 +15416,7 @@ export declare function init(config: AuthHeroConfig): {
15412
15416
  client_id: string;
15413
15417
  username: string;
15414
15418
  otp: string;
15415
- realm: "sms" | "email";
15419
+ realm: "email" | "sms";
15416
15420
  } | {
15417
15421
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15418
15422
  subject_token: string;
@@ -16253,7 +16257,7 @@ export declare function init(config: AuthHeroConfig): {
16253
16257
  } & {
16254
16258
  form: {
16255
16259
  username: string;
16256
- login_selection?: "code" | "password" | undefined;
16260
+ login_selection?: "password" | "code" | undefined;
16257
16261
  };
16258
16262
  };
16259
16263
  output: {};
@@ -16267,7 +16271,7 @@ export declare function init(config: AuthHeroConfig): {
16267
16271
  } & {
16268
16272
  form: {
16269
16273
  username: string;
16270
- login_selection?: "code" | "password" | undefined;
16274
+ login_selection?: "password" | "code" | undefined;
16271
16275
  };
16272
16276
  };
16273
16277
  output: {};
@@ -16632,7 +16636,7 @@ export declare function init(config: AuthHeroConfig): {
16632
16636
  $get: {
16633
16637
  input: {
16634
16638
  param: {
16635
- 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";
16639
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16636
16640
  };
16637
16641
  } & {
16638
16642
  query: {
@@ -16648,7 +16652,7 @@ export declare function init(config: AuthHeroConfig): {
16648
16652
  } | {
16649
16653
  input: {
16650
16654
  param: {
16651
- 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";
16655
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16652
16656
  };
16653
16657
  } & {
16654
16658
  query: {
@@ -16664,7 +16668,7 @@ export declare function init(config: AuthHeroConfig): {
16664
16668
  } | {
16665
16669
  input: {
16666
16670
  param: {
16667
- 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";
16671
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16668
16672
  };
16669
16673
  } & {
16670
16674
  query: {
@@ -16684,7 +16688,7 @@ export declare function init(config: AuthHeroConfig): {
16684
16688
  $post: {
16685
16689
  input: {
16686
16690
  param: {
16687
- 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";
16691
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16688
16692
  };
16689
16693
  } & {
16690
16694
  query: {
@@ -16702,7 +16706,7 @@ export declare function init(config: AuthHeroConfig): {
16702
16706
  } | {
16703
16707
  input: {
16704
16708
  param: {
16705
- 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";
16709
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16706
16710
  };
16707
16711
  } & {
16708
16712
  query: {