authhero 9.0.0 → 9.1.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/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/{p-52a70476.entry.js → p-cdfc4555.entry.js} +1 -1
- package/dist/assets/u/widget/{p-f6babd26.entry.js → p-eca60302.entry.js} +1 -1
- package/dist/authhero.cjs +143 -140
- package/dist/authhero.d.ts +88 -59
- package/dist/authhero.mjs +14326 -13074
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -2
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/generated/locale-types.d.ts +2 -0
- package/dist/types/helpers/client.d.ts +2 -2
- package/dist/types/helpers/revoke-user-sessions.d.ts +15 -0
- package/dist/types/helpers/scim/default-mapping.d.ts +10 -0
- package/dist/types/helpers/scim/discovery.d.ts +49 -0
- package/dist/types/helpers/scim/filter.d.ts +58 -0
- package/dist/types/helpers/scim/mint-token.d.ts +11 -0
- package/dist/types/helpers/scim/patch.d.ts +23 -0
- package/dist/types/helpers/scim/responses.d.ts +36 -0
- package/dist/types/helpers/scim/user-mapping.d.ts +76 -0
- package/dist/types/helpers/users.d.ts +73 -1
- package/dist/types/hooks/user-registration.d.ts +1 -0
- package/dist/types/index.d.ts +86 -57
- package/dist/types/middlewares/scim-auth.d.ts +19 -0
- package/dist/types/routes/auth-api/index.d.ts +14 -14
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +14 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +63 -38
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +6 -4
- package/dist/types/routes/management-api/scim.d.ts +187 -0
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users-by-email.d.ts +1 -0
- package/dist/types/routes/management-api/users.d.ts +10 -2
- package/dist/types/routes/scim/index.d.ts +6 -0
- package/dist/types/routes/universal-login/common.d.ts +1 -0
- package/dist/types/routes/universal-login/screens/types.d.ts +9 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/AuthError.d.ts +1 -1
- package/dist/types/utils/cookies.d.ts +11 -0
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -166,7 +166,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
166
166
|
};
|
|
167
167
|
} & {
|
|
168
168
|
json: {
|
|
169
|
-
type: "email" | "
|
|
169
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
170
170
|
phone_number?: string | undefined;
|
|
171
171
|
totp_secret?: string | undefined;
|
|
172
172
|
credential_id?: string | undefined;
|
|
@@ -306,7 +306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
306
306
|
};
|
|
307
307
|
};
|
|
308
308
|
output: {
|
|
309
|
-
name: "
|
|
309
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
310
310
|
enabled: boolean;
|
|
311
311
|
trial_expired?: boolean | undefined;
|
|
312
312
|
}[];
|
|
@@ -461,7 +461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
461
461
|
$get: {
|
|
462
462
|
input: {
|
|
463
463
|
param: {
|
|
464
|
-
factor_name: "
|
|
464
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
465
465
|
};
|
|
466
466
|
} & {
|
|
467
467
|
header: {
|
|
@@ -469,7 +469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
469
469
|
};
|
|
470
470
|
};
|
|
471
471
|
output: {
|
|
472
|
-
name: "
|
|
472
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
473
473
|
enabled: boolean;
|
|
474
474
|
trial_expired?: boolean | undefined;
|
|
475
475
|
};
|
|
@@ -482,7 +482,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
482
482
|
$put: {
|
|
483
483
|
input: {
|
|
484
484
|
param: {
|
|
485
|
-
factor_name: "
|
|
485
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
486
486
|
};
|
|
487
487
|
} & {
|
|
488
488
|
header: {
|
|
@@ -494,7 +494,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
494
494
|
};
|
|
495
495
|
};
|
|
496
496
|
output: {
|
|
497
|
-
name: "
|
|
497
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
498
498
|
enabled: boolean;
|
|
499
499
|
trial_expired?: boolean | undefined;
|
|
500
500
|
};
|
|
@@ -1272,10 +1272,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1272
1272
|
inviter: {
|
|
1273
1273
|
name?: string | undefined;
|
|
1274
1274
|
};
|
|
1275
|
+
connection_id?: string | undefined;
|
|
1275
1276
|
id?: string | undefined;
|
|
1276
1277
|
app_metadata?: Record<string, any> | undefined;
|
|
1277
1278
|
user_metadata?: Record<string, any> | undefined;
|
|
1278
|
-
connection_id?: string | undefined;
|
|
1279
1279
|
roles?: string[] | undefined;
|
|
1280
1280
|
send_invitation_email?: boolean | undefined;
|
|
1281
1281
|
ttl_sec?: number | undefined;
|
|
@@ -1461,8 +1461,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1461
1461
|
};
|
|
1462
1462
|
} & {
|
|
1463
1463
|
json: {
|
|
1464
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1465
1464
|
show_as_button?: boolean | undefined;
|
|
1465
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1466
1466
|
is_signup_enabled?: boolean | undefined;
|
|
1467
1467
|
};
|
|
1468
1468
|
};
|
|
@@ -3072,6 +3072,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3072
3072
|
display_name?: string | undefined;
|
|
3073
3073
|
icon_url?: string | undefined;
|
|
3074
3074
|
href?: string | undefined;
|
|
3075
|
+
last_used?: boolean | undefined;
|
|
3076
|
+
last_used_label?: string | undefined;
|
|
3075
3077
|
}[] | undefined;
|
|
3076
3078
|
} | undefined;
|
|
3077
3079
|
} | {
|
|
@@ -3673,6 +3675,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3673
3675
|
display_name?: string | undefined;
|
|
3674
3676
|
icon_url?: string | undefined;
|
|
3675
3677
|
href?: string | undefined;
|
|
3678
|
+
last_used?: boolean | undefined;
|
|
3679
|
+
last_used_label?: string | undefined;
|
|
3676
3680
|
}[] | undefined;
|
|
3677
3681
|
} | undefined;
|
|
3678
3682
|
} | {
|
|
@@ -4290,6 +4294,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4290
4294
|
display_name?: string | undefined;
|
|
4291
4295
|
icon_url?: string | undefined;
|
|
4292
4296
|
href?: string | undefined;
|
|
4297
|
+
last_used?: boolean | undefined;
|
|
4298
|
+
last_used_label?: string | undefined;
|
|
4293
4299
|
}[] | undefined;
|
|
4294
4300
|
} | undefined;
|
|
4295
4301
|
} | {
|
|
@@ -4908,6 +4914,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4908
4914
|
display_name?: string | undefined;
|
|
4909
4915
|
icon_url?: string | undefined;
|
|
4910
4916
|
href?: string | undefined;
|
|
4917
|
+
last_used?: boolean | undefined;
|
|
4918
|
+
last_used_label?: string | undefined;
|
|
4911
4919
|
}[] | undefined;
|
|
4912
4920
|
} | undefined;
|
|
4913
4921
|
} | {
|
|
@@ -5507,6 +5515,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5507
5515
|
display_name?: string | undefined;
|
|
5508
5516
|
icon_url?: string | undefined;
|
|
5509
5517
|
href?: string | undefined;
|
|
5518
|
+
last_used?: boolean | undefined;
|
|
5519
|
+
last_used_label?: string | undefined;
|
|
5510
5520
|
}[] | undefined;
|
|
5511
5521
|
} | undefined;
|
|
5512
5522
|
} | {
|
|
@@ -6104,6 +6114,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6104
6114
|
display_name?: string | undefined;
|
|
6105
6115
|
icon_url?: string | undefined;
|
|
6106
6116
|
href?: string | undefined;
|
|
6117
|
+
last_used?: boolean | undefined;
|
|
6118
|
+
last_used_label?: string | undefined;
|
|
6107
6119
|
}[] | undefined;
|
|
6108
6120
|
} | undefined;
|
|
6109
6121
|
} | {
|
|
@@ -6703,6 +6715,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6703
6715
|
display_name?: string | undefined;
|
|
6704
6716
|
icon_url?: string | undefined;
|
|
6705
6717
|
href?: string | undefined;
|
|
6718
|
+
last_used?: boolean | undefined;
|
|
6719
|
+
last_used_label?: string | undefined;
|
|
6706
6720
|
}[] | undefined;
|
|
6707
6721
|
} | undefined;
|
|
6708
6722
|
} | {
|
|
@@ -6952,6 +6966,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6952
6966
|
universal_login_experience: "new" | "classic";
|
|
6953
6967
|
identifier_first: boolean;
|
|
6954
6968
|
password_first: boolean;
|
|
6969
|
+
show_last_used_connection: boolean;
|
|
6955
6970
|
webauthn_platform_first_factor: boolean;
|
|
6956
6971
|
};
|
|
6957
6972
|
outputFormat: "json";
|
|
@@ -6970,6 +6985,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6970
6985
|
universal_login_experience?: "new" | "classic" | undefined;
|
|
6971
6986
|
identifier_first?: boolean | undefined;
|
|
6972
6987
|
password_first?: boolean | undefined;
|
|
6988
|
+
show_last_used_connection?: boolean | undefined;
|
|
6973
6989
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
6974
6990
|
};
|
|
6975
6991
|
};
|
|
@@ -6987,7 +7003,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6987
7003
|
};
|
|
6988
7004
|
};
|
|
6989
7005
|
output: {
|
|
6990
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
7006
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
|
|
6991
7007
|
language: string;
|
|
6992
7008
|
}[];
|
|
6993
7009
|
outputFormat: "json";
|
|
@@ -7025,7 +7041,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7025
7041
|
$get: {
|
|
7026
7042
|
input: {
|
|
7027
7043
|
param: {
|
|
7028
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
7044
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
|
|
7029
7045
|
language: string;
|
|
7030
7046
|
};
|
|
7031
7047
|
} & {
|
|
@@ -7047,7 +7063,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7047
7063
|
$put: {
|
|
7048
7064
|
input: {
|
|
7049
7065
|
param: {
|
|
7050
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
7066
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
|
|
7051
7067
|
language: string;
|
|
7052
7068
|
};
|
|
7053
7069
|
} & {
|
|
@@ -7071,7 +7087,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7071
7087
|
$delete: {
|
|
7072
7088
|
input: {
|
|
7073
7089
|
param: {
|
|
7074
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
7090
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
|
|
7075
7091
|
language: string;
|
|
7076
7092
|
};
|
|
7077
7093
|
} & {
|
|
@@ -8574,7 +8590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8574
8590
|
log_type: string;
|
|
8575
8591
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8576
8592
|
actor: {
|
|
8577
|
-
type: "
|
|
8593
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
8578
8594
|
id?: string | undefined;
|
|
8579
8595
|
email?: string | undefined;
|
|
8580
8596
|
org_id?: string | undefined;
|
|
@@ -9225,7 +9241,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9225
9241
|
};
|
|
9226
9242
|
};
|
|
9227
9243
|
output: {
|
|
9228
|
-
type: "
|
|
9244
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9229
9245
|
date: string;
|
|
9230
9246
|
isMobile: boolean;
|
|
9231
9247
|
log_id: string;
|
|
@@ -9264,7 +9280,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9264
9280
|
limit: number;
|
|
9265
9281
|
length: number;
|
|
9266
9282
|
logs: {
|
|
9267
|
-
type: "
|
|
9283
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9268
9284
|
date: string;
|
|
9269
9285
|
isMobile: boolean;
|
|
9270
9286
|
log_id: string;
|
|
@@ -9303,7 +9319,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9303
9319
|
next?: string | undefined;
|
|
9304
9320
|
} | {
|
|
9305
9321
|
logs: {
|
|
9306
|
-
type: "
|
|
9322
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9307
9323
|
date: string;
|
|
9308
9324
|
isMobile: boolean;
|
|
9309
9325
|
log_id: string;
|
|
@@ -9357,7 +9373,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9357
9373
|
};
|
|
9358
9374
|
};
|
|
9359
9375
|
output: {
|
|
9360
|
-
type: "
|
|
9376
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9361
9377
|
date: string;
|
|
9362
9378
|
isMobile: boolean;
|
|
9363
9379
|
log_id: string;
|
|
@@ -10882,6 +10898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10882
10898
|
verify_email?: boolean | undefined;
|
|
10883
10899
|
last_ip?: string | undefined;
|
|
10884
10900
|
last_login?: string | undefined;
|
|
10901
|
+
blocked?: boolean | undefined;
|
|
10885
10902
|
registration_completed_at?: string | undefined;
|
|
10886
10903
|
email?: string | undefined;
|
|
10887
10904
|
identities?: {
|
|
@@ -11067,6 +11084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11067
11084
|
verify_email?: boolean | undefined;
|
|
11068
11085
|
last_ip?: string | undefined;
|
|
11069
11086
|
last_login?: string | undefined;
|
|
11087
|
+
blocked?: boolean | undefined;
|
|
11070
11088
|
identities?: {
|
|
11071
11089
|
connection: string;
|
|
11072
11090
|
user_id: string;
|
|
@@ -11137,6 +11155,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11137
11155
|
verify_email?: boolean | undefined;
|
|
11138
11156
|
last_ip?: string | undefined;
|
|
11139
11157
|
last_login?: string | undefined;
|
|
11158
|
+
blocked?: boolean | undefined;
|
|
11140
11159
|
identities?: {
|
|
11141
11160
|
connection: string;
|
|
11142
11161
|
user_id: string;
|
|
@@ -11207,6 +11226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11207
11226
|
verify_email?: boolean | undefined;
|
|
11208
11227
|
last_ip?: string | undefined;
|
|
11209
11228
|
last_login?: string | undefined;
|
|
11229
|
+
blocked?: boolean | undefined;
|
|
11210
11230
|
identities?: {
|
|
11211
11231
|
connection: string;
|
|
11212
11232
|
user_id: string;
|
|
@@ -11292,6 +11312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11292
11312
|
verify_email?: boolean | undefined;
|
|
11293
11313
|
last_ip?: string | undefined;
|
|
11294
11314
|
last_login?: string | undefined;
|
|
11315
|
+
blocked?: boolean | undefined;
|
|
11295
11316
|
identities?: {
|
|
11296
11317
|
connection: string;
|
|
11297
11318
|
user_id: string;
|
|
@@ -11385,6 +11406,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11385
11406
|
user_id?: string | undefined;
|
|
11386
11407
|
provider?: string | undefined;
|
|
11387
11408
|
is_social?: boolean | undefined;
|
|
11409
|
+
blocked?: boolean | undefined;
|
|
11388
11410
|
registration_completed_at?: string | undefined;
|
|
11389
11411
|
password?: string | undefined;
|
|
11390
11412
|
};
|
|
@@ -11430,6 +11452,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11430
11452
|
verify_email?: boolean | undefined;
|
|
11431
11453
|
last_ip?: string | undefined;
|
|
11432
11454
|
last_login?: string | undefined;
|
|
11455
|
+
blocked?: boolean | undefined;
|
|
11433
11456
|
identities?: {
|
|
11434
11457
|
connection: string;
|
|
11435
11458
|
user_id: string;
|
|
@@ -11506,6 +11529,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11506
11529
|
provider?: string | undefined;
|
|
11507
11530
|
connection?: string | undefined;
|
|
11508
11531
|
is_social?: boolean | undefined;
|
|
11532
|
+
blocked?: boolean | undefined;
|
|
11509
11533
|
registration_completed_at?: string | undefined;
|
|
11510
11534
|
verify_email?: boolean | undefined;
|
|
11511
11535
|
password?: string | undefined;
|
|
@@ -11623,6 +11647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11623
11647
|
verify_email?: boolean | undefined;
|
|
11624
11648
|
last_ip?: string | undefined;
|
|
11625
11649
|
last_login?: string | undefined;
|
|
11650
|
+
blocked?: boolean | undefined;
|
|
11626
11651
|
identities?: {
|
|
11627
11652
|
connection: string;
|
|
11628
11653
|
user_id: string;
|
|
@@ -11812,7 +11837,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11812
11837
|
};
|
|
11813
11838
|
};
|
|
11814
11839
|
output: {
|
|
11815
|
-
type: "
|
|
11840
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11816
11841
|
date: string;
|
|
11817
11842
|
isMobile: boolean;
|
|
11818
11843
|
log_id: string;
|
|
@@ -11851,7 +11876,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11851
11876
|
limit: number;
|
|
11852
11877
|
length: number;
|
|
11853
11878
|
logs: {
|
|
11854
|
-
type: "
|
|
11879
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11855
11880
|
date: string;
|
|
11856
11881
|
isMobile: boolean;
|
|
11857
11882
|
log_id: string;
|
|
@@ -12170,7 +12195,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12170
12195
|
};
|
|
12171
12196
|
} & {
|
|
12172
12197
|
json: {
|
|
12173
|
-
template: "
|
|
12198
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12174
12199
|
body: string;
|
|
12175
12200
|
from: string;
|
|
12176
12201
|
subject: string;
|
|
@@ -12191,7 +12216,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12191
12216
|
};
|
|
12192
12217
|
} & {
|
|
12193
12218
|
json: {
|
|
12194
|
-
template: "
|
|
12219
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12195
12220
|
body: string;
|
|
12196
12221
|
from: string;
|
|
12197
12222
|
subject: string;
|
|
@@ -12203,7 +12228,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12203
12228
|
};
|
|
12204
12229
|
};
|
|
12205
12230
|
output: {
|
|
12206
|
-
template: "
|
|
12231
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12207
12232
|
body: string;
|
|
12208
12233
|
from: string;
|
|
12209
12234
|
subject: string;
|
|
@@ -12226,7 +12251,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12226
12251
|
};
|
|
12227
12252
|
};
|
|
12228
12253
|
output: {
|
|
12229
|
-
name: "
|
|
12254
|
+
name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12230
12255
|
body: string;
|
|
12231
12256
|
subject: string;
|
|
12232
12257
|
}[];
|
|
@@ -12239,7 +12264,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12239
12264
|
$get: {
|
|
12240
12265
|
input: {
|
|
12241
12266
|
param: {
|
|
12242
|
-
templateName: "
|
|
12267
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12243
12268
|
};
|
|
12244
12269
|
} & {
|
|
12245
12270
|
header: {
|
|
@@ -12252,7 +12277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12252
12277
|
} | {
|
|
12253
12278
|
input: {
|
|
12254
12279
|
param: {
|
|
12255
|
-
templateName: "
|
|
12280
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12256
12281
|
};
|
|
12257
12282
|
} & {
|
|
12258
12283
|
header: {
|
|
@@ -12260,7 +12285,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12260
12285
|
};
|
|
12261
12286
|
};
|
|
12262
12287
|
output: {
|
|
12263
|
-
template: "
|
|
12288
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12264
12289
|
body: string;
|
|
12265
12290
|
from: string;
|
|
12266
12291
|
subject: string;
|
|
@@ -12279,7 +12304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12279
12304
|
$put: {
|
|
12280
12305
|
input: {
|
|
12281
12306
|
param: {
|
|
12282
|
-
templateName: "
|
|
12307
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12283
12308
|
};
|
|
12284
12309
|
} & {
|
|
12285
12310
|
header: {
|
|
@@ -12287,7 +12312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12287
12312
|
};
|
|
12288
12313
|
} & {
|
|
12289
12314
|
json: {
|
|
12290
|
-
template: "
|
|
12315
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12291
12316
|
body: string;
|
|
12292
12317
|
subject: string;
|
|
12293
12318
|
syntax?: "liquid" | undefined;
|
|
@@ -12299,7 +12324,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12299
12324
|
};
|
|
12300
12325
|
};
|
|
12301
12326
|
output: {
|
|
12302
|
-
template: "
|
|
12327
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12303
12328
|
body: string;
|
|
12304
12329
|
from: string;
|
|
12305
12330
|
subject: string;
|
|
@@ -12318,7 +12343,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12318
12343
|
$patch: {
|
|
12319
12344
|
input: {
|
|
12320
12345
|
param: {
|
|
12321
|
-
templateName: "
|
|
12346
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12322
12347
|
};
|
|
12323
12348
|
} & {
|
|
12324
12349
|
header: {
|
|
@@ -12326,7 +12351,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12326
12351
|
};
|
|
12327
12352
|
} & {
|
|
12328
12353
|
json: {
|
|
12329
|
-
template?: "
|
|
12354
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12330
12355
|
body?: string | undefined;
|
|
12331
12356
|
from?: string | undefined;
|
|
12332
12357
|
subject?: string | undefined;
|
|
@@ -12343,7 +12368,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12343
12368
|
} | {
|
|
12344
12369
|
input: {
|
|
12345
12370
|
param: {
|
|
12346
|
-
templateName: "
|
|
12371
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12347
12372
|
};
|
|
12348
12373
|
} & {
|
|
12349
12374
|
header: {
|
|
@@ -12351,7 +12376,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12351
12376
|
};
|
|
12352
12377
|
} & {
|
|
12353
12378
|
json: {
|
|
12354
|
-
template?: "
|
|
12379
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12355
12380
|
body?: string | undefined;
|
|
12356
12381
|
from?: string | undefined;
|
|
12357
12382
|
subject?: string | undefined;
|
|
@@ -12363,7 +12388,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12363
12388
|
};
|
|
12364
12389
|
};
|
|
12365
12390
|
output: {
|
|
12366
|
-
template: "
|
|
12391
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12367
12392
|
body: string;
|
|
12368
12393
|
from: string;
|
|
12369
12394
|
subject: string;
|
|
@@ -12382,7 +12407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12382
12407
|
$delete: {
|
|
12383
12408
|
input: {
|
|
12384
12409
|
param: {
|
|
12385
|
-
templateName: "
|
|
12410
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12386
12411
|
};
|
|
12387
12412
|
} & {
|
|
12388
12413
|
header: {
|
|
@@ -12395,7 +12420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12395
12420
|
} | {
|
|
12396
12421
|
input: {
|
|
12397
12422
|
param: {
|
|
12398
|
-
templateName: "
|
|
12423
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12399
12424
|
};
|
|
12400
12425
|
} & {
|
|
12401
12426
|
header: {
|
|
@@ -12412,7 +12437,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12412
12437
|
$post: {
|
|
12413
12438
|
input: {
|
|
12414
12439
|
param: {
|
|
12415
|
-
templateName: "
|
|
12440
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12416
12441
|
};
|
|
12417
12442
|
} & {
|
|
12418
12443
|
header: {
|
|
@@ -13364,7 +13389,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13364
13389
|
} & {
|
|
13365
13390
|
json: {
|
|
13366
13391
|
body?: string | undefined;
|
|
13367
|
-
screen?: "
|
|
13392
|
+
screen?: "login" | "identifier" | "signup" | "password" | undefined;
|
|
13368
13393
|
branding?: {
|
|
13369
13394
|
colors?: {
|
|
13370
13395
|
primary: string;
|
|
@@ -15070,19 +15095,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15070
15095
|
email: string;
|
|
15071
15096
|
send: "code" | "link";
|
|
15072
15097
|
authParams: {
|
|
15073
|
-
|
|
15074
|
-
|
|
15098
|
+
code_challenge?: string | undefined;
|
|
15099
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15075
15100
|
redirect_uri?: string | undefined;
|
|
15076
|
-
|
|
15077
|
-
username?: string | undefined;
|
|
15101
|
+
nonce?: string | undefined;
|
|
15078
15102
|
state?: string | undefined;
|
|
15079
15103
|
act_as?: string | undefined;
|
|
15080
15104
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15081
15105
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15082
|
-
|
|
15106
|
+
audience?: string | undefined;
|
|
15107
|
+
organization?: string | undefined;
|
|
15108
|
+
scope?: string | undefined;
|
|
15083
15109
|
prompt?: string | undefined;
|
|
15084
|
-
|
|
15085
|
-
code_challenge?: string | undefined;
|
|
15110
|
+
username?: string | undefined;
|
|
15086
15111
|
ui_locales?: string | undefined;
|
|
15087
15112
|
max_age?: number | undefined;
|
|
15088
15113
|
acr_values?: string | undefined;
|
|
@@ -15106,19 +15131,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15106
15131
|
phone_number: string;
|
|
15107
15132
|
send: "code" | "link";
|
|
15108
15133
|
authParams: {
|
|
15109
|
-
|
|
15110
|
-
|
|
15134
|
+
code_challenge?: string | undefined;
|
|
15135
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15111
15136
|
redirect_uri?: string | undefined;
|
|
15112
|
-
|
|
15113
|
-
username?: string | undefined;
|
|
15137
|
+
nonce?: string | undefined;
|
|
15114
15138
|
state?: string | undefined;
|
|
15115
15139
|
act_as?: string | undefined;
|
|
15116
15140
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15117
15141
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15118
|
-
|
|
15142
|
+
audience?: string | undefined;
|
|
15143
|
+
organization?: string | undefined;
|
|
15144
|
+
scope?: string | undefined;
|
|
15119
15145
|
prompt?: string | undefined;
|
|
15120
|
-
|
|
15121
|
-
code_challenge?: string | undefined;
|
|
15146
|
+
username?: string | undefined;
|
|
15122
15147
|
ui_locales?: string | undefined;
|
|
15123
15148
|
max_age?: number | undefined;
|
|
15124
15149
|
acr_values?: string | undefined;
|
|
@@ -17029,7 +17054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17029
17054
|
$get: {
|
|
17030
17055
|
input: {
|
|
17031
17056
|
param: {
|
|
17032
|
-
screen: "
|
|
17057
|
+
screen: "login" | "signup" | "consent" | "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";
|
|
17033
17058
|
};
|
|
17034
17059
|
} & {
|
|
17035
17060
|
query: {
|
|
@@ -17045,7 +17070,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17045
17070
|
} | {
|
|
17046
17071
|
input: {
|
|
17047
17072
|
param: {
|
|
17048
|
-
screen: "
|
|
17073
|
+
screen: "login" | "signup" | "consent" | "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";
|
|
17049
17074
|
};
|
|
17050
17075
|
} & {
|
|
17051
17076
|
query: {
|
|
@@ -17061,7 +17086,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17061
17086
|
} | {
|
|
17062
17087
|
input: {
|
|
17063
17088
|
param: {
|
|
17064
|
-
screen: "
|
|
17089
|
+
screen: "login" | "signup" | "consent" | "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";
|
|
17065
17090
|
};
|
|
17066
17091
|
} & {
|
|
17067
17092
|
query: {
|
|
@@ -17081,7 +17106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17081
17106
|
$post: {
|
|
17082
17107
|
input: {
|
|
17083
17108
|
param: {
|
|
17084
|
-
screen: "
|
|
17109
|
+
screen: "login" | "signup" | "consent" | "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";
|
|
17085
17110
|
};
|
|
17086
17111
|
} & {
|
|
17087
17112
|
query: {
|
|
@@ -17099,7 +17124,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17099
17124
|
} | {
|
|
17100
17125
|
input: {
|
|
17101
17126
|
param: {
|
|
17102
|
-
screen: "
|
|
17127
|
+
screen: "login" | "signup" | "consent" | "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";
|
|
17103
17128
|
};
|
|
17104
17129
|
} & {
|
|
17105
17130
|
query: {
|
|
@@ -17194,5 +17219,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17194
17219
|
};
|
|
17195
17220
|
};
|
|
17196
17221
|
}, "/forms"> & import("hono/types").MergeSchemaPath<{}, "/screen">, "/">;
|
|
17222
|
+
scimApp: OpenAPIHono<{
|
|
17223
|
+
Bindings: Bindings;
|
|
17224
|
+
Variables: Variables;
|
|
17225
|
+
}, {}, "/"> | undefined;
|
|
17197
17226
|
createX509Certificate: typeof createX509Certificate;
|
|
17198
17227
|
};
|