authhero 5.14.1 → 5.16.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.
- package/dist/assets/u/js/client.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +129 -129
- package/dist/authhero.d.ts +160 -109
- package/dist/authhero.mjs +5646 -5472
- package/dist/client.js +1 -1
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/createEncryptedDataAdapter.d.ts +4 -0
- package/dist/types/authentication-flows/passwordless.d.ts +3 -2
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/helpers/client.d.ts +1 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +155 -109
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/authorize.d.ts +12 -12
- package/dist/types/routes/auth-api/index.d.ts +43 -43
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +21 -21
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +8 -8
- package/dist/types/routes/management-api/custom-domains.d.ts +53 -7
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +94 -48
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +3 -0
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +8 -4
- package/dist/types/routes/universal-login/continue.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/impersonate.d.ts +4 -4
- package/dist/types/routes/universal-login/index.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +10 -10
- package/dist/types/routes/universal-login/u2-routes.d.ts +10 -10
- package/dist/types/types/IdToken.d.ts +1 -1
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -250,6 +250,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
250
250
|
trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
|
|
251
251
|
use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
|
|
252
252
|
inherit_global_permissions_in_organizations: z.ZodOptional<z.ZodBoolean>;
|
|
253
|
+
restrict_undefined_scopes: z.ZodOptional<z.ZodBoolean>;
|
|
253
254
|
}, z.core.$strip>>;
|
|
254
255
|
sandbox_version: z.ZodOptional<z.ZodString>;
|
|
255
256
|
legacy_sandbox_version: z.ZodOptional<z.ZodString>;
|
|
@@ -1632,6 +1633,10 @@ declare function createInMemoryCache(config?: InMemoryCacheConfig): CacheAdapter
|
|
|
1632
1633
|
* email_providers.credentials, authentication_methods.totp_secret,
|
|
1633
1634
|
* migration_sources.credentials.client_secret.
|
|
1634
1635
|
*
|
|
1636
|
+
* clientConnections.listByClient is also wrapped so its returned Connection
|
|
1637
|
+
* objects are decrypted — getEnrichedClient uses this path to load connections
|
|
1638
|
+
* for the OAuth strategies.
|
|
1639
|
+
*
|
|
1635
1640
|
* Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
|
|
1636
1641
|
*/
|
|
1637
1642
|
declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
|
|
@@ -2460,7 +2465,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2460
2465
|
};
|
|
2461
2466
|
} & {
|
|
2462
2467
|
json: {
|
|
2463
|
-
type: "
|
|
2468
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2464
2469
|
phone_number?: string | undefined;
|
|
2465
2470
|
totp_secret?: string | undefined;
|
|
2466
2471
|
credential_id?: string | undefined;
|
|
@@ -2600,7 +2605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2600
2605
|
};
|
|
2601
2606
|
};
|
|
2602
2607
|
output: {
|
|
2603
|
-
name: "
|
|
2608
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2604
2609
|
enabled: boolean;
|
|
2605
2610
|
trial_expired?: boolean | undefined;
|
|
2606
2611
|
}[];
|
|
@@ -2755,7 +2760,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2755
2760
|
$get: {
|
|
2756
2761
|
input: {
|
|
2757
2762
|
param: {
|
|
2758
|
-
factor_name: "
|
|
2763
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2759
2764
|
};
|
|
2760
2765
|
} & {
|
|
2761
2766
|
header: {
|
|
@@ -2763,7 +2768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2763
2768
|
};
|
|
2764
2769
|
};
|
|
2765
2770
|
output: {
|
|
2766
|
-
name: "
|
|
2771
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2767
2772
|
enabled: boolean;
|
|
2768
2773
|
trial_expired?: boolean | undefined;
|
|
2769
2774
|
};
|
|
@@ -2776,7 +2781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2776
2781
|
$put: {
|
|
2777
2782
|
input: {
|
|
2778
2783
|
param: {
|
|
2779
|
-
factor_name: "
|
|
2784
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2780
2785
|
};
|
|
2781
2786
|
} & {
|
|
2782
2787
|
header: {
|
|
@@ -2788,7 +2793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2788
2793
|
};
|
|
2789
2794
|
};
|
|
2790
2795
|
output: {
|
|
2791
|
-
name: "
|
|
2796
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2792
2797
|
enabled: boolean;
|
|
2793
2798
|
trial_expired?: boolean | undefined;
|
|
2794
2799
|
};
|
|
@@ -3534,9 +3539,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3534
3539
|
email?: string | undefined;
|
|
3535
3540
|
};
|
|
3536
3541
|
id?: string | undefined;
|
|
3542
|
+
connection_id?: string | undefined;
|
|
3537
3543
|
app_metadata?: Record<string, any> | undefined;
|
|
3538
3544
|
user_metadata?: Record<string, any> | undefined;
|
|
3539
|
-
connection_id?: string | undefined;
|
|
3540
3545
|
roles?: string[] | undefined;
|
|
3541
3546
|
ttl_sec?: number | undefined;
|
|
3542
3547
|
send_invitation_email?: boolean | undefined;
|
|
@@ -4388,7 +4393,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4388
4393
|
type: "REDIRECT";
|
|
4389
4394
|
action: "REDIRECT_USER";
|
|
4390
4395
|
params: {
|
|
4391
|
-
target: "custom" | "
|
|
4396
|
+
target: "custom" | "change-email" | "account";
|
|
4392
4397
|
custom_url?: string | undefined;
|
|
4393
4398
|
};
|
|
4394
4399
|
alias?: string | undefined;
|
|
@@ -4441,7 +4446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4441
4446
|
type: "REDIRECT";
|
|
4442
4447
|
action: "REDIRECT_USER";
|
|
4443
4448
|
params: {
|
|
4444
|
-
target: "custom" | "
|
|
4449
|
+
target: "custom" | "change-email" | "account";
|
|
4445
4450
|
custom_url?: string | undefined;
|
|
4446
4451
|
};
|
|
4447
4452
|
alias?: string | undefined;
|
|
@@ -4509,7 +4514,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4509
4514
|
type: "REDIRECT";
|
|
4510
4515
|
action: "REDIRECT_USER";
|
|
4511
4516
|
params: {
|
|
4512
|
-
target: "custom" | "
|
|
4517
|
+
target: "custom" | "change-email" | "account";
|
|
4513
4518
|
custom_url?: string | undefined;
|
|
4514
4519
|
};
|
|
4515
4520
|
alias?: string | undefined;
|
|
@@ -4590,7 +4595,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4590
4595
|
type: "REDIRECT";
|
|
4591
4596
|
action: "REDIRECT_USER";
|
|
4592
4597
|
params: {
|
|
4593
|
-
target: "custom" | "
|
|
4598
|
+
target: "custom" | "change-email" | "account";
|
|
4594
4599
|
custom_url?: string | undefined;
|
|
4595
4600
|
};
|
|
4596
4601
|
alias?: string | undefined;
|
|
@@ -4638,7 +4643,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4638
4643
|
type: "REDIRECT";
|
|
4639
4644
|
action: "REDIRECT_USER";
|
|
4640
4645
|
params: {
|
|
4641
|
-
target: "custom" | "
|
|
4646
|
+
target: "custom" | "change-email" | "account";
|
|
4642
4647
|
custom_url?: string | undefined;
|
|
4643
4648
|
};
|
|
4644
4649
|
alias?: string | undefined;
|
|
@@ -4698,7 +4703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4698
4703
|
type: "REDIRECT";
|
|
4699
4704
|
action: "REDIRECT_USER";
|
|
4700
4705
|
params: {
|
|
4701
|
-
target: "custom" | "
|
|
4706
|
+
target: "custom" | "change-email" | "account";
|
|
4702
4707
|
custom_url?: string | undefined;
|
|
4703
4708
|
};
|
|
4704
4709
|
alias?: string | undefined;
|
|
@@ -4746,7 +4751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4746
4751
|
type: "REDIRECT";
|
|
4747
4752
|
action: "REDIRECT_USER";
|
|
4748
4753
|
params: {
|
|
4749
|
-
target: "custom" | "
|
|
4754
|
+
target: "custom" | "change-email" | "account";
|
|
4750
4755
|
custom_url?: string | undefined;
|
|
4751
4756
|
};
|
|
4752
4757
|
alias?: string | undefined;
|
|
@@ -9024,7 +9029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9024
9029
|
};
|
|
9025
9030
|
};
|
|
9026
9031
|
output: {
|
|
9027
|
-
prompt: "
|
|
9032
|
+
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";
|
|
9028
9033
|
language: string;
|
|
9029
9034
|
}[];
|
|
9030
9035
|
outputFormat: "json";
|
|
@@ -9062,7 +9067,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9062
9067
|
$get: {
|
|
9063
9068
|
input: {
|
|
9064
9069
|
param: {
|
|
9065
|
-
prompt: "
|
|
9070
|
+
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";
|
|
9066
9071
|
language: string;
|
|
9067
9072
|
};
|
|
9068
9073
|
} & {
|
|
@@ -9084,7 +9089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9084
9089
|
$put: {
|
|
9085
9090
|
input: {
|
|
9086
9091
|
param: {
|
|
9087
|
-
prompt: "
|
|
9092
|
+
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";
|
|
9088
9093
|
language: string;
|
|
9089
9094
|
};
|
|
9090
9095
|
} & {
|
|
@@ -9108,7 +9113,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9108
9113
|
$delete: {
|
|
9109
9114
|
input: {
|
|
9110
9115
|
param: {
|
|
9111
|
-
prompt: "
|
|
9116
|
+
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";
|
|
9112
9117
|
language: string;
|
|
9113
9118
|
};
|
|
9114
9119
|
} & {
|
|
@@ -10549,7 +10554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10549
10554
|
log_type: string;
|
|
10550
10555
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10551
10556
|
actor: {
|
|
10552
|
-
type: "
|
|
10557
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
10553
10558
|
id?: string | undefined;
|
|
10554
10559
|
email?: string | undefined;
|
|
10555
10560
|
org_id?: string | undefined;
|
|
@@ -10857,7 +10862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10857
10862
|
created_at: string;
|
|
10858
10863
|
updated_at: string;
|
|
10859
10864
|
name: string;
|
|
10860
|
-
provider: "auth0" | "
|
|
10865
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10861
10866
|
connection: string;
|
|
10862
10867
|
enabled: boolean;
|
|
10863
10868
|
credentials: {
|
|
@@ -10889,7 +10894,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10889
10894
|
created_at: string;
|
|
10890
10895
|
updated_at: string;
|
|
10891
10896
|
name: string;
|
|
10892
|
-
provider: "auth0" | "
|
|
10897
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10893
10898
|
connection: string;
|
|
10894
10899
|
enabled: boolean;
|
|
10895
10900
|
credentials: {
|
|
@@ -10915,7 +10920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10915
10920
|
} & {
|
|
10916
10921
|
json: {
|
|
10917
10922
|
name: string;
|
|
10918
|
-
provider: "auth0" | "
|
|
10923
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10919
10924
|
connection: string;
|
|
10920
10925
|
credentials: {
|
|
10921
10926
|
domain: string;
|
|
@@ -10932,7 +10937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10932
10937
|
created_at: string;
|
|
10933
10938
|
updated_at: string;
|
|
10934
10939
|
name: string;
|
|
10935
|
-
provider: "auth0" | "
|
|
10940
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10936
10941
|
connection: string;
|
|
10937
10942
|
enabled: boolean;
|
|
10938
10943
|
credentials: {
|
|
@@ -10963,7 +10968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10963
10968
|
json: {
|
|
10964
10969
|
id?: string | undefined;
|
|
10965
10970
|
name?: string | undefined;
|
|
10966
|
-
provider?: "auth0" | "
|
|
10971
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
10967
10972
|
connection?: string | undefined;
|
|
10968
10973
|
enabled?: boolean | undefined;
|
|
10969
10974
|
credentials?: {
|
|
@@ -10979,7 +10984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10979
10984
|
created_at: string;
|
|
10980
10985
|
updated_at: string;
|
|
10981
10986
|
name: string;
|
|
10982
|
-
provider: "auth0" | "
|
|
10987
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
10983
10988
|
connection: string;
|
|
10984
10989
|
enabled: boolean;
|
|
10985
10990
|
credentials: {
|
|
@@ -11197,7 +11202,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11197
11202
|
};
|
|
11198
11203
|
};
|
|
11199
11204
|
output: {
|
|
11200
|
-
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" | "
|
|
11205
|
+
type: "fc" | "fd" | "i" | "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" | "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" | "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";
|
|
11201
11206
|
date: string;
|
|
11202
11207
|
isMobile: boolean;
|
|
11203
11208
|
log_id: string;
|
|
@@ -11236,7 +11241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11236
11241
|
limit: number;
|
|
11237
11242
|
length: number;
|
|
11238
11243
|
logs: {
|
|
11239
|
-
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" | "
|
|
11244
|
+
type: "fc" | "fd" | "i" | "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" | "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" | "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";
|
|
11240
11245
|
date: string;
|
|
11241
11246
|
isMobile: boolean;
|
|
11242
11247
|
log_id: string;
|
|
@@ -11290,7 +11295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11290
11295
|
};
|
|
11291
11296
|
};
|
|
11292
11297
|
output: {
|
|
11293
|
-
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" | "
|
|
11298
|
+
type: "fc" | "fd" | "i" | "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" | "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" | "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";
|
|
11294
11299
|
date: string;
|
|
11295
11300
|
isMobile: boolean;
|
|
11296
11301
|
log_id: string;
|
|
@@ -13434,7 +13439,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13434
13439
|
};
|
|
13435
13440
|
};
|
|
13436
13441
|
output: {
|
|
13437
|
-
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" | "
|
|
13442
|
+
type: "fc" | "fd" | "i" | "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" | "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" | "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";
|
|
13438
13443
|
date: string;
|
|
13439
13444
|
isMobile: boolean;
|
|
13440
13445
|
log_id: string;
|
|
@@ -13473,7 +13478,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13473
13478
|
limit: number;
|
|
13474
13479
|
length: number;
|
|
13475
13480
|
logs: {
|
|
13476
|
-
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" | "
|
|
13481
|
+
type: "fc" | "fd" | "i" | "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" | "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" | "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";
|
|
13477
13482
|
date: string;
|
|
13478
13483
|
isMobile: boolean;
|
|
13479
13484
|
log_id: string;
|
|
@@ -14241,7 +14246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14241
14246
|
primary: boolean;
|
|
14242
14247
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14243
14248
|
verification_method?: "txt" | undefined;
|
|
14244
|
-
custom_client_ip_header?: "null" | "
|
|
14249
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14245
14250
|
domain_metadata?: {
|
|
14246
14251
|
[x: string]: string;
|
|
14247
14252
|
} | undefined;
|
|
@@ -14282,7 +14287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14282
14287
|
primary: boolean;
|
|
14283
14288
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14284
14289
|
verification_method?: "txt" | undefined;
|
|
14285
|
-
custom_client_ip_header?: "null" | "
|
|
14290
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14286
14291
|
domain_metadata?: {
|
|
14287
14292
|
[x: string]: string;
|
|
14288
14293
|
} | undefined;
|
|
@@ -14337,7 +14342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14337
14342
|
domain?: string | undefined;
|
|
14338
14343
|
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
14339
14344
|
verification_method?: "txt" | undefined;
|
|
14340
|
-
custom_client_ip_header?: "null" | "
|
|
14345
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14341
14346
|
domain_metadata?: Record<string, string> | undefined;
|
|
14342
14347
|
custom_domain_id?: string | undefined;
|
|
14343
14348
|
primary?: boolean | undefined;
|
|
@@ -14364,7 +14369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14364
14369
|
primary: boolean;
|
|
14365
14370
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14366
14371
|
verification_method?: "txt" | undefined;
|
|
14367
|
-
custom_client_ip_header?: "null" | "
|
|
14372
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14368
14373
|
domain_metadata?: {
|
|
14369
14374
|
[x: string]: string;
|
|
14370
14375
|
} | undefined;
|
|
@@ -14400,7 +14405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14400
14405
|
custom_domain_id?: string | undefined;
|
|
14401
14406
|
verification_method?: "txt" | undefined;
|
|
14402
14407
|
tls_policy?: "recommended" | undefined;
|
|
14403
|
-
custom_client_ip_header?: "null" | "
|
|
14408
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14404
14409
|
domain_metadata?: Record<string, string> | undefined;
|
|
14405
14410
|
};
|
|
14406
14411
|
};
|
|
@@ -14411,7 +14416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14411
14416
|
primary: boolean;
|
|
14412
14417
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14413
14418
|
verification_method?: "txt" | undefined;
|
|
14414
|
-
custom_client_ip_header?: "null" | "
|
|
14419
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14415
14420
|
domain_metadata?: {
|
|
14416
14421
|
[x: string]: string;
|
|
14417
14422
|
} | undefined;
|
|
@@ -14433,6 +14438,52 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14433
14438
|
status: 201;
|
|
14434
14439
|
};
|
|
14435
14440
|
};
|
|
14441
|
+
} & {
|
|
14442
|
+
"/:id/certificate": {
|
|
14443
|
+
$put: {
|
|
14444
|
+
input: {
|
|
14445
|
+
param: {
|
|
14446
|
+
id: string;
|
|
14447
|
+
};
|
|
14448
|
+
} & {
|
|
14449
|
+
header: {
|
|
14450
|
+
"tenant-id"?: string | undefined;
|
|
14451
|
+
};
|
|
14452
|
+
} & {
|
|
14453
|
+
json: {
|
|
14454
|
+
certificate: string;
|
|
14455
|
+
private_key: string;
|
|
14456
|
+
};
|
|
14457
|
+
};
|
|
14458
|
+
output: {
|
|
14459
|
+
domain: string;
|
|
14460
|
+
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14461
|
+
custom_domain_id: string;
|
|
14462
|
+
primary: boolean;
|
|
14463
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14464
|
+
verification_method?: "txt" | undefined;
|
|
14465
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14466
|
+
domain_metadata?: {
|
|
14467
|
+
[x: string]: string;
|
|
14468
|
+
} | undefined;
|
|
14469
|
+
origin_domain_name?: string | undefined;
|
|
14470
|
+
verification?: {
|
|
14471
|
+
methods: ({
|
|
14472
|
+
name: "txt";
|
|
14473
|
+
record: string;
|
|
14474
|
+
domain: string;
|
|
14475
|
+
} | {
|
|
14476
|
+
name: "http";
|
|
14477
|
+
http_body: string;
|
|
14478
|
+
http_url: string;
|
|
14479
|
+
})[];
|
|
14480
|
+
} | undefined;
|
|
14481
|
+
tls_policy?: string | undefined;
|
|
14482
|
+
};
|
|
14483
|
+
outputFormat: "json";
|
|
14484
|
+
status: 200;
|
|
14485
|
+
};
|
|
14486
|
+
};
|
|
14436
14487
|
} & {
|
|
14437
14488
|
"/:id/verify": {
|
|
14438
14489
|
$post: {
|
|
@@ -14452,7 +14503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14452
14503
|
primary: boolean;
|
|
14453
14504
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14454
14505
|
verification_method?: "txt" | undefined;
|
|
14455
|
-
custom_client_ip_header?: "null" | "
|
|
14506
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14456
14507
|
domain_metadata?: {
|
|
14457
14508
|
[x: string]: string;
|
|
14458
14509
|
} | undefined;
|
|
@@ -14498,7 +14549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14498
14549
|
base_focus_color: string;
|
|
14499
14550
|
base_hover_color: string;
|
|
14500
14551
|
body_text: string;
|
|
14501
|
-
captcha_widget_theme: "
|
|
14552
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
14502
14553
|
error: string;
|
|
14503
14554
|
header: string;
|
|
14504
14555
|
icons: string;
|
|
@@ -14588,7 +14639,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14588
14639
|
base_focus_color: string;
|
|
14589
14640
|
base_hover_color: string;
|
|
14590
14641
|
body_text: string;
|
|
14591
|
-
captcha_widget_theme: "
|
|
14642
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
14592
14643
|
error: string;
|
|
14593
14644
|
header: string;
|
|
14594
14645
|
icons: string;
|
|
@@ -14667,7 +14718,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14667
14718
|
base_focus_color: string;
|
|
14668
14719
|
base_hover_color: string;
|
|
14669
14720
|
body_text: string;
|
|
14670
|
-
captcha_widget_theme: "
|
|
14721
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
14671
14722
|
error: string;
|
|
14672
14723
|
header: string;
|
|
14673
14724
|
icons: string;
|
|
@@ -14757,7 +14808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14757
14808
|
font?: {
|
|
14758
14809
|
url: string;
|
|
14759
14810
|
} | undefined;
|
|
14760
|
-
dark_mode?: "
|
|
14811
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
14761
14812
|
};
|
|
14762
14813
|
outputFormat: "json";
|
|
14763
14814
|
status: 200;
|
|
@@ -14787,7 +14838,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14787
14838
|
font?: {
|
|
14788
14839
|
url: string;
|
|
14789
14840
|
} | undefined;
|
|
14790
|
-
dark_mode?: "
|
|
14841
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
14791
14842
|
};
|
|
14792
14843
|
};
|
|
14793
14844
|
output: {
|
|
@@ -14806,7 +14857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14806
14857
|
font?: {
|
|
14807
14858
|
url: string;
|
|
14808
14859
|
} | undefined;
|
|
14809
|
-
dark_mode?: "
|
|
14860
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
14810
14861
|
};
|
|
14811
14862
|
outputFormat: "json";
|
|
14812
14863
|
status: 200;
|
|
@@ -14841,7 +14892,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14841
14892
|
};
|
|
14842
14893
|
output: {};
|
|
14843
14894
|
outputFormat: string;
|
|
14844
|
-
status:
|
|
14895
|
+
status: 400;
|
|
14845
14896
|
} | {
|
|
14846
14897
|
input: {
|
|
14847
14898
|
header: {
|
|
@@ -14854,7 +14905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14854
14905
|
};
|
|
14855
14906
|
output: {};
|
|
14856
14907
|
outputFormat: string;
|
|
14857
|
-
status:
|
|
14908
|
+
status: 204;
|
|
14858
14909
|
};
|
|
14859
14910
|
};
|
|
14860
14911
|
} & {
|
|
@@ -15010,7 +15061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15010
15061
|
output: {
|
|
15011
15062
|
id: string;
|
|
15012
15063
|
trigger_id: string;
|
|
15013
|
-
status: "
|
|
15064
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
15014
15065
|
results: {
|
|
15015
15066
|
action_name: string;
|
|
15016
15067
|
error: {
|
|
@@ -15057,7 +15108,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15057
15108
|
logs: {
|
|
15058
15109
|
action_name: string;
|
|
15059
15110
|
lines: {
|
|
15060
|
-
level: "
|
|
15111
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15061
15112
|
message: string;
|
|
15062
15113
|
}[];
|
|
15063
15114
|
}[];
|
|
@@ -15724,7 +15775,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15724
15775
|
args: hono_utils_types.JSONValue[];
|
|
15725
15776
|
}[];
|
|
15726
15777
|
logs: {
|
|
15727
|
-
level: "
|
|
15778
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15728
15779
|
message: string;
|
|
15729
15780
|
}[];
|
|
15730
15781
|
error?: string | undefined;
|
|
@@ -16168,7 +16219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16168
16219
|
client_id: string;
|
|
16169
16220
|
redirect_url?: string | undefined;
|
|
16170
16221
|
login_hint?: string | undefined;
|
|
16171
|
-
screen_hint?: "
|
|
16222
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16172
16223
|
};
|
|
16173
16224
|
};
|
|
16174
16225
|
output: {};
|
|
@@ -16180,7 +16231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16180
16231
|
client_id: string;
|
|
16181
16232
|
redirect_url?: string | undefined;
|
|
16182
16233
|
login_hint?: string | undefined;
|
|
16183
|
-
screen_hint?: "
|
|
16234
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16184
16235
|
};
|
|
16185
16236
|
};
|
|
16186
16237
|
output: {
|
|
@@ -16291,17 +16342,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16291
16342
|
request_uri?: string | undefined;
|
|
16292
16343
|
};
|
|
16293
16344
|
};
|
|
16294
|
-
output:
|
|
16295
|
-
|
|
16296
|
-
token_type: string;
|
|
16297
|
-
expires_in: number;
|
|
16298
|
-
id_token?: string | undefined;
|
|
16299
|
-
scope?: string | undefined;
|
|
16300
|
-
state?: string | undefined;
|
|
16301
|
-
refresh_token?: string | undefined;
|
|
16345
|
+
output: {
|
|
16346
|
+
message: string;
|
|
16302
16347
|
};
|
|
16303
16348
|
outputFormat: "json";
|
|
16304
|
-
status:
|
|
16349
|
+
status: 400;
|
|
16305
16350
|
} | {
|
|
16306
16351
|
input: {
|
|
16307
16352
|
query: {
|
|
@@ -16333,11 +16378,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16333
16378
|
request_uri?: string | undefined;
|
|
16334
16379
|
};
|
|
16335
16380
|
};
|
|
16336
|
-
output: {
|
|
16337
|
-
|
|
16381
|
+
output: string | {
|
|
16382
|
+
access_token: string;
|
|
16383
|
+
token_type: string;
|
|
16384
|
+
expires_in: number;
|
|
16385
|
+
id_token?: string | undefined;
|
|
16386
|
+
scope?: string | undefined;
|
|
16387
|
+
state?: string | undefined;
|
|
16388
|
+
refresh_token?: string | undefined;
|
|
16338
16389
|
};
|
|
16339
16390
|
outputFormat: "json";
|
|
16340
|
-
status:
|
|
16391
|
+
status: 200;
|
|
16341
16392
|
} | {
|
|
16342
16393
|
input: {
|
|
16343
16394
|
query: {
|
|
@@ -16457,12 +16508,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16457
16508
|
email: string;
|
|
16458
16509
|
send: "code" | "link";
|
|
16459
16510
|
authParams: {
|
|
16460
|
-
|
|
16461
|
-
username?: string | undefined;
|
|
16511
|
+
audience?: string | undefined;
|
|
16462
16512
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16463
16513
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16464
16514
|
scope?: string | undefined;
|
|
16465
|
-
|
|
16515
|
+
username?: string | undefined;
|
|
16516
|
+
state?: string | undefined;
|
|
16466
16517
|
act_as?: string | undefined;
|
|
16467
16518
|
redirect_uri?: string | undefined;
|
|
16468
16519
|
organization?: string | undefined;
|
|
@@ -16493,12 +16544,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16493
16544
|
phone_number: string;
|
|
16494
16545
|
send: "code" | "link";
|
|
16495
16546
|
authParams: {
|
|
16496
|
-
|
|
16497
|
-
username?: string | undefined;
|
|
16547
|
+
audience?: string | undefined;
|
|
16498
16548
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16499
16549
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16500
16550
|
scope?: string | undefined;
|
|
16501
|
-
|
|
16551
|
+
username?: string | undefined;
|
|
16552
|
+
state?: string | undefined;
|
|
16502
16553
|
act_as?: string | undefined;
|
|
16503
16554
|
redirect_uri?: string | undefined;
|
|
16504
16555
|
organization?: string | undefined;
|
|
@@ -16735,7 +16786,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16735
16786
|
client_id: string;
|
|
16736
16787
|
username: string;
|
|
16737
16788
|
otp: string;
|
|
16738
|
-
realm: "
|
|
16789
|
+
realm: "sms" | "email";
|
|
16739
16790
|
};
|
|
16740
16791
|
} & {
|
|
16741
16792
|
json: {
|
|
@@ -16771,7 +16822,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16771
16822
|
client_id: string;
|
|
16772
16823
|
username: string;
|
|
16773
16824
|
otp: string;
|
|
16774
|
-
realm: "
|
|
16825
|
+
realm: "sms" | "email";
|
|
16775
16826
|
};
|
|
16776
16827
|
};
|
|
16777
16828
|
output: {};
|
|
@@ -16812,7 +16863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16812
16863
|
client_id: string;
|
|
16813
16864
|
username: string;
|
|
16814
16865
|
otp: string;
|
|
16815
|
-
realm: "
|
|
16866
|
+
realm: "sms" | "email";
|
|
16816
16867
|
};
|
|
16817
16868
|
} & {
|
|
16818
16869
|
json: {
|
|
@@ -16848,20 +16899,15 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16848
16899
|
client_id: string;
|
|
16849
16900
|
username: string;
|
|
16850
16901
|
otp: string;
|
|
16851
|
-
realm: "
|
|
16902
|
+
realm: "sms" | "email";
|
|
16852
16903
|
};
|
|
16853
16904
|
};
|
|
16854
16905
|
output: {
|
|
16855
|
-
|
|
16856
|
-
|
|
16857
|
-
expires_in: number;
|
|
16858
|
-
id_token?: string | undefined;
|
|
16859
|
-
scope?: string | undefined;
|
|
16860
|
-
state?: string | undefined;
|
|
16861
|
-
refresh_token?: string | undefined;
|
|
16906
|
+
error: string;
|
|
16907
|
+
error_description?: string | undefined;
|
|
16862
16908
|
};
|
|
16863
16909
|
outputFormat: "json";
|
|
16864
|
-
status:
|
|
16910
|
+
status: 400;
|
|
16865
16911
|
} | {
|
|
16866
16912
|
input: {
|
|
16867
16913
|
form: {
|
|
@@ -16897,7 +16943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16897
16943
|
client_id: string;
|
|
16898
16944
|
username: string;
|
|
16899
16945
|
otp: string;
|
|
16900
|
-
realm: "
|
|
16946
|
+
realm: "sms" | "email";
|
|
16901
16947
|
};
|
|
16902
16948
|
} & {
|
|
16903
16949
|
json: {
|
|
@@ -16933,15 +16979,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16933
16979
|
client_id: string;
|
|
16934
16980
|
username: string;
|
|
16935
16981
|
otp: string;
|
|
16936
|
-
realm: "
|
|
16982
|
+
realm: "sms" | "email";
|
|
16937
16983
|
};
|
|
16938
16984
|
};
|
|
16939
16985
|
output: {
|
|
16940
|
-
|
|
16941
|
-
|
|
16986
|
+
access_token: string;
|
|
16987
|
+
token_type: string;
|
|
16988
|
+
expires_in: number;
|
|
16989
|
+
id_token?: string | undefined;
|
|
16990
|
+
scope?: string | undefined;
|
|
16991
|
+
state?: string | undefined;
|
|
16992
|
+
refresh_token?: string | undefined;
|
|
16942
16993
|
};
|
|
16943
16994
|
outputFormat: "json";
|
|
16944
|
-
status:
|
|
16995
|
+
status: 200;
|
|
16945
16996
|
} | {
|
|
16946
16997
|
input: {
|
|
16947
16998
|
form: {
|
|
@@ -16977,7 +17028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16977
17028
|
client_id: string;
|
|
16978
17029
|
username: string;
|
|
16979
17030
|
otp: string;
|
|
16980
|
-
realm: "
|
|
17031
|
+
realm: "sms" | "email";
|
|
16981
17032
|
};
|
|
16982
17033
|
} & {
|
|
16983
17034
|
json: {
|
|
@@ -17013,7 +17064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17013
17064
|
client_id: string;
|
|
17014
17065
|
username: string;
|
|
17015
17066
|
otp: string;
|
|
17016
|
-
realm: "
|
|
17067
|
+
realm: "sms" | "email";
|
|
17017
17068
|
};
|
|
17018
17069
|
};
|
|
17019
17070
|
output: {
|
|
@@ -17057,7 +17108,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17057
17108
|
client_id: string;
|
|
17058
17109
|
username: string;
|
|
17059
17110
|
otp: string;
|
|
17060
|
-
realm: "
|
|
17111
|
+
realm: "sms" | "email";
|
|
17061
17112
|
};
|
|
17062
17113
|
} & {
|
|
17063
17114
|
json: {
|
|
@@ -17093,7 +17144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17093
17144
|
client_id: string;
|
|
17094
17145
|
username: string;
|
|
17095
17146
|
otp: string;
|
|
17096
|
-
realm: "
|
|
17147
|
+
realm: "sms" | "email";
|
|
17097
17148
|
};
|
|
17098
17149
|
};
|
|
17099
17150
|
output: {
|
|
@@ -17300,7 +17351,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17300
17351
|
};
|
|
17301
17352
|
output: {};
|
|
17302
17353
|
outputFormat: string;
|
|
17303
|
-
status:
|
|
17354
|
+
status: 400;
|
|
17304
17355
|
} | {
|
|
17305
17356
|
input: {
|
|
17306
17357
|
query: {
|
|
@@ -17328,7 +17379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17328
17379
|
};
|
|
17329
17380
|
output: {};
|
|
17330
17381
|
outputFormat: string;
|
|
17331
|
-
status:
|
|
17382
|
+
status: 302;
|
|
17332
17383
|
};
|
|
17333
17384
|
};
|
|
17334
17385
|
}, "/oidc/logout"> & hono_types.MergeSchemaPath<{
|
|
@@ -17435,7 +17486,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17435
17486
|
};
|
|
17436
17487
|
output: {};
|
|
17437
17488
|
outputFormat: string;
|
|
17438
|
-
status:
|
|
17489
|
+
status: 400;
|
|
17439
17490
|
} | {
|
|
17440
17491
|
input: {
|
|
17441
17492
|
query: {
|
|
@@ -17444,7 +17495,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17444
17495
|
};
|
|
17445
17496
|
output: {};
|
|
17446
17497
|
outputFormat: string;
|
|
17447
|
-
status:
|
|
17498
|
+
status: 302;
|
|
17448
17499
|
} | {
|
|
17449
17500
|
input: {
|
|
17450
17501
|
query: {
|
|
@@ -17534,7 +17585,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17534
17585
|
};
|
|
17535
17586
|
output: {};
|
|
17536
17587
|
outputFormat: string;
|
|
17537
|
-
status:
|
|
17588
|
+
status: 400;
|
|
17538
17589
|
} | {
|
|
17539
17590
|
input: {
|
|
17540
17591
|
query: {
|
|
@@ -17543,7 +17594,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17543
17594
|
};
|
|
17544
17595
|
output: {};
|
|
17545
17596
|
outputFormat: string;
|
|
17546
|
-
status:
|
|
17597
|
+
status: 200;
|
|
17547
17598
|
};
|
|
17548
17599
|
};
|
|
17549
17600
|
} & {
|
|
@@ -17573,7 +17624,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17573
17624
|
};
|
|
17574
17625
|
output: {};
|
|
17575
17626
|
outputFormat: string;
|
|
17576
|
-
status:
|
|
17627
|
+
status: 400;
|
|
17577
17628
|
} | {
|
|
17578
17629
|
input: {
|
|
17579
17630
|
query: {
|
|
@@ -17586,7 +17637,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17586
17637
|
};
|
|
17587
17638
|
output: {};
|
|
17588
17639
|
outputFormat: string;
|
|
17589
|
-
status:
|
|
17640
|
+
status: 302;
|
|
17590
17641
|
};
|
|
17591
17642
|
};
|
|
17592
17643
|
}, "/impersonate"> & hono_types.MergeSchemaPath<{
|
|
@@ -17928,7 +17979,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17928
17979
|
};
|
|
17929
17980
|
output: {};
|
|
17930
17981
|
outputFormat: string;
|
|
17931
|
-
status:
|
|
17982
|
+
status: 400;
|
|
17932
17983
|
} | {
|
|
17933
17984
|
input: {
|
|
17934
17985
|
query: {
|
|
@@ -17942,7 +17993,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17942
17993
|
};
|
|
17943
17994
|
output: {};
|
|
17944
17995
|
outputFormat: string;
|
|
17945
|
-
status:
|
|
17996
|
+
status: 302;
|
|
17946
17997
|
};
|
|
17947
17998
|
};
|
|
17948
17999
|
}, "/login/identifier"> & hono_types.MergeSchemaPath<{
|
|
@@ -18302,7 +18353,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18302
18353
|
$get: {
|
|
18303
18354
|
input: {
|
|
18304
18355
|
param: {
|
|
18305
|
-
screen: "signup" | "reset-password" | "
|
|
18356
|
+
screen: "signup" | "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";
|
|
18306
18357
|
};
|
|
18307
18358
|
} & {
|
|
18308
18359
|
query: {
|
|
@@ -18318,7 +18369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18318
18369
|
} | {
|
|
18319
18370
|
input: {
|
|
18320
18371
|
param: {
|
|
18321
|
-
screen: "signup" | "reset-password" | "
|
|
18372
|
+
screen: "signup" | "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";
|
|
18322
18373
|
};
|
|
18323
18374
|
} & {
|
|
18324
18375
|
query: {
|
|
@@ -18330,11 +18381,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18330
18381
|
};
|
|
18331
18382
|
output: {};
|
|
18332
18383
|
outputFormat: string;
|
|
18333
|
-
status:
|
|
18384
|
+
status: 400;
|
|
18334
18385
|
} | {
|
|
18335
18386
|
input: {
|
|
18336
18387
|
param: {
|
|
18337
|
-
screen: "signup" | "reset-password" | "
|
|
18388
|
+
screen: "signup" | "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";
|
|
18338
18389
|
};
|
|
18339
18390
|
} & {
|
|
18340
18391
|
query: {
|
|
@@ -18346,7 +18397,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18346
18397
|
};
|
|
18347
18398
|
output: {};
|
|
18348
18399
|
outputFormat: string;
|
|
18349
|
-
status:
|
|
18400
|
+
status: 302;
|
|
18350
18401
|
};
|
|
18351
18402
|
};
|
|
18352
18403
|
} & {
|
|
@@ -18354,7 +18405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18354
18405
|
$post: {
|
|
18355
18406
|
input: {
|
|
18356
18407
|
param: {
|
|
18357
|
-
screen: "signup" | "reset-password" | "
|
|
18408
|
+
screen: "signup" | "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";
|
|
18358
18409
|
};
|
|
18359
18410
|
} & {
|
|
18360
18411
|
query: {
|
|
@@ -18372,7 +18423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18372
18423
|
} | {
|
|
18373
18424
|
input: {
|
|
18374
18425
|
param: {
|
|
18375
|
-
screen: "signup" | "reset-password" | "
|
|
18426
|
+
screen: "signup" | "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";
|
|
18376
18427
|
};
|
|
18377
18428
|
} & {
|
|
18378
18429
|
query: {
|
|
@@ -18386,11 +18437,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18386
18437
|
};
|
|
18387
18438
|
output: {};
|
|
18388
18439
|
outputFormat: string;
|
|
18389
|
-
status:
|
|
18440
|
+
status: 400;
|
|
18390
18441
|
} | {
|
|
18391
18442
|
input: {
|
|
18392
18443
|
param: {
|
|
18393
|
-
screen: "signup" | "reset-password" | "
|
|
18444
|
+
screen: "signup" | "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";
|
|
18394
18445
|
};
|
|
18395
18446
|
} & {
|
|
18396
18447
|
query: {
|
|
@@ -18404,7 +18455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18404
18455
|
};
|
|
18405
18456
|
output: {};
|
|
18406
18457
|
outputFormat: string;
|
|
18407
|
-
status:
|
|
18458
|
+
status: 302;
|
|
18408
18459
|
};
|
|
18409
18460
|
};
|
|
18410
18461
|
}, "/"> & hono_types.MergeSchemaPath<{
|