authhero 5.11.0 → 5.12.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/index.esm.js +1 -1
- package/dist/authhero.cjs +126 -126
- package/dist/authhero.d.ts +81 -66
- package/dist/authhero.mjs +9177 -8949
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/users.d.ts +28 -0
- package/dist/types/index.d.ts +66 -66
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- 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/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +48 -48
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- 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/proxy-routes.d.ts +221 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +22 -0
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/types/AuthHeroConfig.d.ts +14 -0
- package/dist/types/types/IdToken.d.ts +3 -3
- package/package.json +5 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
79
79
|
};
|
|
80
80
|
} & {
|
|
81
81
|
json: {
|
|
82
|
-
type: "email" | "
|
|
82
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
83
83
|
phone_number?: string | undefined;
|
|
84
84
|
totp_secret?: string | undefined;
|
|
85
85
|
credential_id?: string | undefined;
|
|
@@ -219,7 +219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
219
219
|
};
|
|
220
220
|
};
|
|
221
221
|
output: {
|
|
222
|
-
name: "email" | "
|
|
222
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
223
223
|
enabled: boolean;
|
|
224
224
|
trial_expired?: boolean | undefined;
|
|
225
225
|
}[];
|
|
@@ -374,7 +374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
374
374
|
$get: {
|
|
375
375
|
input: {
|
|
376
376
|
param: {
|
|
377
|
-
factor_name: "email" | "
|
|
377
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
378
378
|
};
|
|
379
379
|
} & {
|
|
380
380
|
header: {
|
|
@@ -382,7 +382,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
382
382
|
};
|
|
383
383
|
};
|
|
384
384
|
output: {
|
|
385
|
-
name: "email" | "
|
|
385
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
386
386
|
enabled: boolean;
|
|
387
387
|
trial_expired?: boolean | undefined;
|
|
388
388
|
};
|
|
@@ -395,7 +395,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
395
395
|
$put: {
|
|
396
396
|
input: {
|
|
397
397
|
param: {
|
|
398
|
-
factor_name: "email" | "
|
|
398
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
399
399
|
};
|
|
400
400
|
} & {
|
|
401
401
|
header: {
|
|
@@ -407,7 +407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
407
407
|
};
|
|
408
408
|
};
|
|
409
409
|
output: {
|
|
410
|
-
name: "email" | "
|
|
410
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
411
411
|
enabled: boolean;
|
|
412
412
|
trial_expired?: boolean | undefined;
|
|
413
413
|
};
|
|
@@ -1153,10 +1153,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1153
1153
|
email?: string | undefined;
|
|
1154
1154
|
};
|
|
1155
1155
|
id?: string | undefined;
|
|
1156
|
-
connection_id?: string | undefined;
|
|
1157
1156
|
app_metadata?: Record<string, any> | undefined;
|
|
1158
1157
|
user_metadata?: Record<string, any> | undefined;
|
|
1159
1158
|
roles?: string[] | undefined;
|
|
1159
|
+
connection_id?: string | undefined;
|
|
1160
1160
|
ttl_sec?: number | undefined;
|
|
1161
1161
|
send_invitation_email?: boolean | undefined;
|
|
1162
1162
|
};
|
|
@@ -6643,7 +6643,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6643
6643
|
};
|
|
6644
6644
|
};
|
|
6645
6645
|
output: {
|
|
6646
|
-
prompt: "
|
|
6646
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "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";
|
|
6647
6647
|
language: string;
|
|
6648
6648
|
}[];
|
|
6649
6649
|
outputFormat: "json";
|
|
@@ -6681,7 +6681,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6681
6681
|
$get: {
|
|
6682
6682
|
input: {
|
|
6683
6683
|
param: {
|
|
6684
|
-
prompt: "
|
|
6684
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "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";
|
|
6685
6685
|
language: string;
|
|
6686
6686
|
};
|
|
6687
6687
|
} & {
|
|
@@ -6703,7 +6703,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6703
6703
|
$put: {
|
|
6704
6704
|
input: {
|
|
6705
6705
|
param: {
|
|
6706
|
-
prompt: "
|
|
6706
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "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";
|
|
6707
6707
|
language: string;
|
|
6708
6708
|
};
|
|
6709
6709
|
} & {
|
|
@@ -6727,7 +6727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6727
6727
|
$delete: {
|
|
6728
6728
|
input: {
|
|
6729
6729
|
param: {
|
|
6730
|
-
prompt: "
|
|
6730
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "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";
|
|
6731
6731
|
language: string;
|
|
6732
6732
|
};
|
|
6733
6733
|
} & {
|
|
@@ -8168,7 +8168,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8168
8168
|
log_type: string;
|
|
8169
8169
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8170
8170
|
actor: {
|
|
8171
|
-
type: "client_credentials" | "user" | "
|
|
8171
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8172
8172
|
id?: string | undefined;
|
|
8173
8173
|
email?: string | undefined;
|
|
8174
8174
|
org_id?: string | undefined;
|
|
@@ -8816,7 +8816,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8816
8816
|
};
|
|
8817
8817
|
};
|
|
8818
8818
|
output: {
|
|
8819
|
-
type: "
|
|
8819
|
+
type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
8820
8820
|
date: string;
|
|
8821
8821
|
isMobile: boolean;
|
|
8822
8822
|
log_id: string;
|
|
@@ -8855,7 +8855,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8855
8855
|
limit: number;
|
|
8856
8856
|
length: number;
|
|
8857
8857
|
logs: {
|
|
8858
|
-
type: "
|
|
8858
|
+
type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
8859
8859
|
date: string;
|
|
8860
8860
|
isMobile: boolean;
|
|
8861
8861
|
log_id: string;
|
|
@@ -8909,7 +8909,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8909
8909
|
};
|
|
8910
8910
|
};
|
|
8911
8911
|
output: {
|
|
8912
|
-
type: "
|
|
8912
|
+
type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
8913
8913
|
date: string;
|
|
8914
8914
|
isMobile: boolean;
|
|
8915
8915
|
log_id: string;
|
|
@@ -8990,7 +8990,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8990
8990
|
audience?: string | undefined;
|
|
8991
8991
|
client_id?: string | undefined;
|
|
8992
8992
|
allow_any_organization?: string | undefined;
|
|
8993
|
-
subject_type?: "
|
|
8993
|
+
subject_type?: "client" | "user" | undefined;
|
|
8994
8994
|
};
|
|
8995
8995
|
} & {
|
|
8996
8996
|
header: {
|
|
@@ -9005,7 +9005,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9005
9005
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9006
9006
|
allow_any_organization?: boolean | undefined;
|
|
9007
9007
|
is_system?: boolean | undefined;
|
|
9008
|
-
subject_type?: "
|
|
9008
|
+
subject_type?: "client" | "user" | undefined;
|
|
9009
9009
|
authorization_details_types?: string[] | undefined;
|
|
9010
9010
|
created_at?: string | undefined;
|
|
9011
9011
|
updated_at?: string | undefined;
|
|
@@ -9021,7 +9021,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9021
9021
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9022
9022
|
allow_any_organization?: boolean | undefined;
|
|
9023
9023
|
is_system?: boolean | undefined;
|
|
9024
|
-
subject_type?: "
|
|
9024
|
+
subject_type?: "client" | "user" | undefined;
|
|
9025
9025
|
authorization_details_types?: string[] | undefined;
|
|
9026
9026
|
created_at?: string | undefined;
|
|
9027
9027
|
updated_at?: string | undefined;
|
|
@@ -9052,7 +9052,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9052
9052
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9053
9053
|
allow_any_organization?: boolean | undefined;
|
|
9054
9054
|
is_system?: boolean | undefined;
|
|
9055
|
-
subject_type?: "
|
|
9055
|
+
subject_type?: "client" | "user" | undefined;
|
|
9056
9056
|
authorization_details_types?: string[] | undefined;
|
|
9057
9057
|
created_at?: string | undefined;
|
|
9058
9058
|
updated_at?: string | undefined;
|
|
@@ -9097,7 +9097,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9097
9097
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9098
9098
|
allow_any_organization?: boolean | undefined;
|
|
9099
9099
|
is_system?: boolean | undefined;
|
|
9100
|
-
subject_type?: "
|
|
9100
|
+
subject_type?: "client" | "user" | undefined;
|
|
9101
9101
|
authorization_details_types?: string[] | undefined;
|
|
9102
9102
|
};
|
|
9103
9103
|
};
|
|
@@ -9109,7 +9109,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9109
9109
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9110
9110
|
allow_any_organization?: boolean | undefined;
|
|
9111
9111
|
is_system?: boolean | undefined;
|
|
9112
|
-
subject_type?: "
|
|
9112
|
+
subject_type?: "client" | "user" | undefined;
|
|
9113
9113
|
authorization_details_types?: string[] | undefined;
|
|
9114
9114
|
created_at?: string | undefined;
|
|
9115
9115
|
updated_at?: string | undefined;
|
|
@@ -9133,7 +9133,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9133
9133
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9134
9134
|
allow_any_organization?: boolean | undefined;
|
|
9135
9135
|
is_system?: boolean | undefined;
|
|
9136
|
-
subject_type?: "
|
|
9136
|
+
subject_type?: "client" | "user" | undefined;
|
|
9137
9137
|
authorization_details_types?: string[] | undefined;
|
|
9138
9138
|
};
|
|
9139
9139
|
};
|
|
@@ -9145,7 +9145,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9145
9145
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9146
9146
|
allow_any_organization?: boolean | undefined;
|
|
9147
9147
|
is_system?: boolean | undefined;
|
|
9148
|
-
subject_type?: "
|
|
9148
|
+
subject_type?: "client" | "user" | undefined;
|
|
9149
9149
|
authorization_details_types?: string[] | undefined;
|
|
9150
9150
|
created_at?: string | undefined;
|
|
9151
9151
|
updated_at?: string | undefined;
|
|
@@ -9223,7 +9223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9223
9223
|
addons?: {
|
|
9224
9224
|
[x: string]: any;
|
|
9225
9225
|
} | undefined;
|
|
9226
|
-
token_endpoint_auth_method?: "
|
|
9226
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9227
9227
|
client_metadata?: {
|
|
9228
9228
|
[x: string]: string;
|
|
9229
9229
|
} | undefined;
|
|
@@ -9319,7 +9319,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9319
9319
|
addons?: {
|
|
9320
9320
|
[x: string]: any;
|
|
9321
9321
|
} | undefined;
|
|
9322
|
-
token_endpoint_auth_method?: "
|
|
9322
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9323
9323
|
client_metadata?: {
|
|
9324
9324
|
[x: string]: string;
|
|
9325
9325
|
} | undefined;
|
|
@@ -9430,7 +9430,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9430
9430
|
addons?: {
|
|
9431
9431
|
[x: string]: any;
|
|
9432
9432
|
} | undefined;
|
|
9433
|
-
token_endpoint_auth_method?: "
|
|
9433
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9434
9434
|
client_metadata?: {
|
|
9435
9435
|
[x: string]: string;
|
|
9436
9436
|
} | undefined;
|
|
@@ -9540,7 +9540,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9540
9540
|
custom_login_page_preview?: string | undefined;
|
|
9541
9541
|
form_template?: string | undefined;
|
|
9542
9542
|
addons?: Record<string, any> | undefined;
|
|
9543
|
-
token_endpoint_auth_method?: "
|
|
9543
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9544
9544
|
client_metadata?: Record<string, string> | undefined;
|
|
9545
9545
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9546
9546
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9620,7 +9620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9620
9620
|
addons?: {
|
|
9621
9621
|
[x: string]: any;
|
|
9622
9622
|
} | undefined;
|
|
9623
|
-
token_endpoint_auth_method?: "
|
|
9623
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9624
9624
|
client_metadata?: {
|
|
9625
9625
|
[x: string]: string;
|
|
9626
9626
|
} | undefined;
|
|
@@ -9709,7 +9709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9709
9709
|
custom_login_page_preview?: string | undefined;
|
|
9710
9710
|
form_template?: string | undefined;
|
|
9711
9711
|
addons?: Record<string, any> | undefined;
|
|
9712
|
-
token_endpoint_auth_method?: "
|
|
9712
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9713
9713
|
client_metadata?: Record<string, string> | undefined;
|
|
9714
9714
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9715
9715
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9789,7 +9789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9789
9789
|
addons?: {
|
|
9790
9790
|
[x: string]: any;
|
|
9791
9791
|
} | undefined;
|
|
9792
|
-
token_endpoint_auth_method?: "
|
|
9792
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9793
9793
|
client_metadata?: {
|
|
9794
9794
|
[x: string]: string;
|
|
9795
9795
|
} | undefined;
|
|
@@ -11053,7 +11053,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11053
11053
|
};
|
|
11054
11054
|
};
|
|
11055
11055
|
output: {
|
|
11056
|
-
type: "
|
|
11056
|
+
type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
11057
11057
|
date: string;
|
|
11058
11058
|
isMobile: boolean;
|
|
11059
11059
|
log_id: string;
|
|
@@ -11092,7 +11092,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11092
11092
|
limit: number;
|
|
11093
11093
|
length: number;
|
|
11094
11094
|
logs: {
|
|
11095
|
-
type: "
|
|
11095
|
+
type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
11096
11096
|
date: string;
|
|
11097
11097
|
isMobile: boolean;
|
|
11098
11098
|
log_id: string;
|
|
@@ -11407,7 +11407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11407
11407
|
};
|
|
11408
11408
|
} & {
|
|
11409
11409
|
json: {
|
|
11410
|
-
template: "change_password" | "
|
|
11410
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11411
11411
|
body: string;
|
|
11412
11412
|
from: string;
|
|
11413
11413
|
subject: string;
|
|
@@ -11428,7 +11428,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11428
11428
|
};
|
|
11429
11429
|
} & {
|
|
11430
11430
|
json: {
|
|
11431
|
-
template: "change_password" | "
|
|
11431
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11432
11432
|
body: string;
|
|
11433
11433
|
from: string;
|
|
11434
11434
|
subject: string;
|
|
@@ -11440,7 +11440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11440
11440
|
};
|
|
11441
11441
|
};
|
|
11442
11442
|
output: {
|
|
11443
|
-
template: "change_password" | "
|
|
11443
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11444
11444
|
body: string;
|
|
11445
11445
|
from: string;
|
|
11446
11446
|
subject: string;
|
|
@@ -11459,7 +11459,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11459
11459
|
$get: {
|
|
11460
11460
|
input: {
|
|
11461
11461
|
param: {
|
|
11462
|
-
templateName: "change_password" | "
|
|
11462
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11463
11463
|
};
|
|
11464
11464
|
} & {
|
|
11465
11465
|
header: {
|
|
@@ -11472,7 +11472,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11472
11472
|
} | {
|
|
11473
11473
|
input: {
|
|
11474
11474
|
param: {
|
|
11475
|
-
templateName: "change_password" | "
|
|
11475
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11476
11476
|
};
|
|
11477
11477
|
} & {
|
|
11478
11478
|
header: {
|
|
@@ -11480,7 +11480,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11480
11480
|
};
|
|
11481
11481
|
};
|
|
11482
11482
|
output: {
|
|
11483
|
-
template: "change_password" | "
|
|
11483
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11484
11484
|
body: string;
|
|
11485
11485
|
from: string;
|
|
11486
11486
|
subject: string;
|
|
@@ -11499,7 +11499,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11499
11499
|
$put: {
|
|
11500
11500
|
input: {
|
|
11501
11501
|
param: {
|
|
11502
|
-
templateName: "change_password" | "
|
|
11502
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11503
11503
|
};
|
|
11504
11504
|
} & {
|
|
11505
11505
|
header: {
|
|
@@ -11507,7 +11507,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11507
11507
|
};
|
|
11508
11508
|
} & {
|
|
11509
11509
|
json: {
|
|
11510
|
-
template: "change_password" | "
|
|
11510
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11511
11511
|
body: string;
|
|
11512
11512
|
from: string;
|
|
11513
11513
|
subject: string;
|
|
@@ -11519,7 +11519,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11519
11519
|
};
|
|
11520
11520
|
};
|
|
11521
11521
|
output: {
|
|
11522
|
-
template: "change_password" | "
|
|
11522
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11523
11523
|
body: string;
|
|
11524
11524
|
from: string;
|
|
11525
11525
|
subject: string;
|
|
@@ -11538,7 +11538,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11538
11538
|
$patch: {
|
|
11539
11539
|
input: {
|
|
11540
11540
|
param: {
|
|
11541
|
-
templateName: "change_password" | "
|
|
11541
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11542
11542
|
};
|
|
11543
11543
|
} & {
|
|
11544
11544
|
header: {
|
|
@@ -11546,7 +11546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11546
11546
|
};
|
|
11547
11547
|
} & {
|
|
11548
11548
|
json: {
|
|
11549
|
-
template?: "change_password" | "
|
|
11549
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11550
11550
|
body?: string | undefined;
|
|
11551
11551
|
from?: string | undefined;
|
|
11552
11552
|
subject?: string | undefined;
|
|
@@ -11563,7 +11563,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11563
11563
|
} | {
|
|
11564
11564
|
input: {
|
|
11565
11565
|
param: {
|
|
11566
|
-
templateName: "change_password" | "
|
|
11566
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11567
11567
|
};
|
|
11568
11568
|
} & {
|
|
11569
11569
|
header: {
|
|
@@ -11571,7 +11571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11571
11571
|
};
|
|
11572
11572
|
} & {
|
|
11573
11573
|
json: {
|
|
11574
|
-
template?: "change_password" | "
|
|
11574
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11575
11575
|
body?: string | undefined;
|
|
11576
11576
|
from?: string | undefined;
|
|
11577
11577
|
subject?: string | undefined;
|
|
@@ -11583,7 +11583,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11583
11583
|
};
|
|
11584
11584
|
};
|
|
11585
11585
|
output: {
|
|
11586
|
-
template: "change_password" | "
|
|
11586
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11587
11587
|
body: string;
|
|
11588
11588
|
from: string;
|
|
11589
11589
|
subject: string;
|
|
@@ -12676,7 +12676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12676
12676
|
logs: {
|
|
12677
12677
|
action_name: string;
|
|
12678
12678
|
lines: {
|
|
12679
|
-
level: "
|
|
12679
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
12680
12680
|
message: string;
|
|
12681
12681
|
}[];
|
|
12682
12682
|
}[];
|
|
@@ -13343,7 +13343,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13343
13343
|
args: import("hono/utils/types").JSONValue[];
|
|
13344
13344
|
}[];
|
|
13345
13345
|
logs: {
|
|
13346
|
-
level: "
|
|
13346
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13347
13347
|
message: string;
|
|
13348
13348
|
}[];
|
|
13349
13349
|
error?: string | undefined;
|
|
@@ -13641,7 +13641,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13641
13641
|
scope?: string | undefined;
|
|
13642
13642
|
grant_types?: string[] | undefined;
|
|
13643
13643
|
response_types?: string[] | undefined;
|
|
13644
|
-
token_endpoint_auth_method?: "
|
|
13644
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13645
13645
|
jwks_uri?: string | undefined;
|
|
13646
13646
|
jwks?: Record<string, unknown> | undefined;
|
|
13647
13647
|
software_id?: string | undefined;
|
|
@@ -13730,7 +13730,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13730
13730
|
scope?: string | undefined;
|
|
13731
13731
|
grant_types?: string[] | undefined;
|
|
13732
13732
|
response_types?: string[] | undefined;
|
|
13733
|
-
token_endpoint_auth_method?: "
|
|
13733
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13734
13734
|
jwks_uri?: string | undefined;
|
|
13735
13735
|
jwks?: Record<string, unknown> | undefined;
|
|
13736
13736
|
software_id?: string | undefined;
|
|
@@ -14076,19 +14076,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14076
14076
|
email: string;
|
|
14077
14077
|
send: "code" | "link";
|
|
14078
14078
|
authParams: {
|
|
14079
|
-
scope?: string | undefined;
|
|
14080
|
-
state?: string | undefined;
|
|
14081
|
-
audience?: string | undefined;
|
|
14082
|
-
code_challenge?: string | undefined;
|
|
14083
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14084
|
-
redirect_uri?: string | undefined;
|
|
14085
|
-
nonce?: string | undefined;
|
|
14086
14079
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14087
14080
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14081
|
+
scope?: string | undefined;
|
|
14088
14082
|
username?: string | undefined;
|
|
14089
|
-
|
|
14083
|
+
audience?: string | undefined;
|
|
14084
|
+
state?: string | undefined;
|
|
14090
14085
|
organization?: string | undefined;
|
|
14086
|
+
nonce?: string | undefined;
|
|
14087
|
+
redirect_uri?: string | undefined;
|
|
14088
|
+
act_as?: string | undefined;
|
|
14091
14089
|
prompt?: string | undefined;
|
|
14090
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14091
|
+
code_challenge?: string | undefined;
|
|
14092
14092
|
ui_locales?: string | undefined;
|
|
14093
14093
|
max_age?: number | undefined;
|
|
14094
14094
|
acr_values?: string | undefined;
|
|
@@ -14112,19 +14112,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14112
14112
|
phone_number: string;
|
|
14113
14113
|
send: "code" | "link";
|
|
14114
14114
|
authParams: {
|
|
14115
|
-
scope?: string | undefined;
|
|
14116
|
-
state?: string | undefined;
|
|
14117
|
-
audience?: string | undefined;
|
|
14118
|
-
code_challenge?: string | undefined;
|
|
14119
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14120
|
-
redirect_uri?: string | undefined;
|
|
14121
|
-
nonce?: string | undefined;
|
|
14122
14115
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14123
14116
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14117
|
+
scope?: string | undefined;
|
|
14124
14118
|
username?: string | undefined;
|
|
14125
|
-
|
|
14119
|
+
audience?: string | undefined;
|
|
14120
|
+
state?: string | undefined;
|
|
14126
14121
|
organization?: string | undefined;
|
|
14122
|
+
nonce?: string | undefined;
|
|
14123
|
+
redirect_uri?: string | undefined;
|
|
14124
|
+
act_as?: string | undefined;
|
|
14127
14125
|
prompt?: string | undefined;
|
|
14126
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14127
|
+
code_challenge?: string | undefined;
|
|
14128
14128
|
ui_locales?: string | undefined;
|
|
14129
14129
|
max_age?: number | undefined;
|
|
14130
14130
|
acr_values?: string | undefined;
|