authhero 5.9.1 → 5.10.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/authhero.cjs +89 -89
- package/dist/authhero.d.ts +104 -104
- package/dist/authhero.mjs +4551 -4526
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +104 -104
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +52 -52
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/package.json +5 -5
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: "
|
|
82
|
+
type: "email" | "push" | "passkey" | "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: "
|
|
222
|
+
name: "otp" | "email" | "sms" | "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: "
|
|
377
|
+
factor_name: "otp" | "email" | "sms" | "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: "
|
|
385
|
+
name: "otp" | "email" | "sms" | "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: "
|
|
398
|
+
factor_name: "otp" | "email" | "sms" | "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: "
|
|
410
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
411
411
|
enabled: boolean;
|
|
412
412
|
trial_expired?: boolean | undefined;
|
|
413
413
|
};
|
|
@@ -1116,10 +1116,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1116
1116
|
invitee: {
|
|
1117
1117
|
email?: string | undefined;
|
|
1118
1118
|
};
|
|
1119
|
+
connection_id?: string | undefined;
|
|
1119
1120
|
id?: string | undefined;
|
|
1120
1121
|
app_metadata?: Record<string, any> | undefined;
|
|
1121
1122
|
user_metadata?: Record<string, any> | undefined;
|
|
1122
|
-
connection_id?: string | undefined;
|
|
1123
1123
|
roles?: string[] | undefined;
|
|
1124
1124
|
ttl_sec?: number | undefined;
|
|
1125
1125
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1971,7 +1971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1971
1971
|
type: "REDIRECT";
|
|
1972
1972
|
action: "REDIRECT_USER";
|
|
1973
1973
|
params: {
|
|
1974
|
-
target: "custom" | "
|
|
1974
|
+
target: "custom" | "account" | "change-email";
|
|
1975
1975
|
custom_url?: string | undefined;
|
|
1976
1976
|
};
|
|
1977
1977
|
alias?: string | undefined;
|
|
@@ -2024,7 +2024,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2024
2024
|
type: "REDIRECT";
|
|
2025
2025
|
action: "REDIRECT_USER";
|
|
2026
2026
|
params: {
|
|
2027
|
-
target: "custom" | "
|
|
2027
|
+
target: "custom" | "account" | "change-email";
|
|
2028
2028
|
custom_url?: string | undefined;
|
|
2029
2029
|
};
|
|
2030
2030
|
alias?: string | undefined;
|
|
@@ -2092,7 +2092,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2092
2092
|
type: "REDIRECT";
|
|
2093
2093
|
action: "REDIRECT_USER";
|
|
2094
2094
|
params: {
|
|
2095
|
-
target: "custom" | "
|
|
2095
|
+
target: "custom" | "account" | "change-email";
|
|
2096
2096
|
custom_url?: string | undefined;
|
|
2097
2097
|
};
|
|
2098
2098
|
alias?: string | undefined;
|
|
@@ -2173,7 +2173,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2173
2173
|
type: "REDIRECT";
|
|
2174
2174
|
action: "REDIRECT_USER";
|
|
2175
2175
|
params: {
|
|
2176
|
-
target: "custom" | "
|
|
2176
|
+
target: "custom" | "account" | "change-email";
|
|
2177
2177
|
custom_url?: string | undefined;
|
|
2178
2178
|
};
|
|
2179
2179
|
alias?: string | undefined;
|
|
@@ -2221,7 +2221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2221
2221
|
type: "REDIRECT";
|
|
2222
2222
|
action: "REDIRECT_USER";
|
|
2223
2223
|
params: {
|
|
2224
|
-
target: "custom" | "
|
|
2224
|
+
target: "custom" | "account" | "change-email";
|
|
2225
2225
|
custom_url?: string | undefined;
|
|
2226
2226
|
};
|
|
2227
2227
|
alias?: string | undefined;
|
|
@@ -2281,7 +2281,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2281
2281
|
type: "REDIRECT";
|
|
2282
2282
|
action: "REDIRECT_USER";
|
|
2283
2283
|
params: {
|
|
2284
|
-
target: "custom" | "
|
|
2284
|
+
target: "custom" | "account" | "change-email";
|
|
2285
2285
|
custom_url?: string | undefined;
|
|
2286
2286
|
};
|
|
2287
2287
|
alias?: string | undefined;
|
|
@@ -2329,7 +2329,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2329
2329
|
type: "REDIRECT";
|
|
2330
2330
|
action: "REDIRECT_USER";
|
|
2331
2331
|
params: {
|
|
2332
|
-
target: "custom" | "
|
|
2332
|
+
target: "custom" | "account" | "change-email";
|
|
2333
2333
|
custom_url?: string | undefined;
|
|
2334
2334
|
};
|
|
2335
2335
|
alias?: string | undefined;
|
|
@@ -6607,7 +6607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6607
6607
|
};
|
|
6608
6608
|
};
|
|
6609
6609
|
output: {
|
|
6610
|
-
prompt: "
|
|
6610
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6611
6611
|
language: string;
|
|
6612
6612
|
}[];
|
|
6613
6613
|
outputFormat: "json";
|
|
@@ -6645,7 +6645,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6645
6645
|
$get: {
|
|
6646
6646
|
input: {
|
|
6647
6647
|
param: {
|
|
6648
|
-
prompt: "
|
|
6648
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6649
6649
|
language: string;
|
|
6650
6650
|
};
|
|
6651
6651
|
} & {
|
|
@@ -6667,7 +6667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6667
6667
|
$put: {
|
|
6668
6668
|
input: {
|
|
6669
6669
|
param: {
|
|
6670
|
-
prompt: "
|
|
6670
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6671
6671
|
language: string;
|
|
6672
6672
|
};
|
|
6673
6673
|
} & {
|
|
@@ -6691,7 +6691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6691
6691
|
$delete: {
|
|
6692
6692
|
input: {
|
|
6693
6693
|
param: {
|
|
6694
|
-
prompt: "
|
|
6694
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6695
6695
|
language: string;
|
|
6696
6696
|
};
|
|
6697
6697
|
} & {
|
|
@@ -8132,7 +8132,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8132
8132
|
log_type: string;
|
|
8133
8133
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8134
8134
|
actor: {
|
|
8135
|
-
type: "
|
|
8135
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8136
8136
|
id?: string | undefined;
|
|
8137
8137
|
email?: string | undefined;
|
|
8138
8138
|
org_id?: string | undefined;
|
|
@@ -8780,7 +8780,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8780
8780
|
};
|
|
8781
8781
|
};
|
|
8782
8782
|
output: {
|
|
8783
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
8783
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
|
|
8784
8784
|
date: string;
|
|
8785
8785
|
isMobile: boolean;
|
|
8786
8786
|
log_id: string;
|
|
@@ -8819,7 +8819,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8819
8819
|
limit: number;
|
|
8820
8820
|
length: number;
|
|
8821
8821
|
logs: {
|
|
8822
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
8822
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
|
|
8823
8823
|
date: string;
|
|
8824
8824
|
isMobile: boolean;
|
|
8825
8825
|
log_id: string;
|
|
@@ -8873,7 +8873,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8873
8873
|
};
|
|
8874
8874
|
};
|
|
8875
8875
|
output: {
|
|
8876
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
8876
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
|
|
8877
8877
|
date: string;
|
|
8878
8878
|
isMobile: boolean;
|
|
8879
8879
|
log_id: string;
|
|
@@ -9187,7 +9187,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9187
9187
|
addons?: {
|
|
9188
9188
|
[x: string]: any;
|
|
9189
9189
|
} | undefined;
|
|
9190
|
-
token_endpoint_auth_method?: "
|
|
9190
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9191
9191
|
client_metadata?: {
|
|
9192
9192
|
[x: string]: string;
|
|
9193
9193
|
} | undefined;
|
|
@@ -9283,7 +9283,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9283
9283
|
addons?: {
|
|
9284
9284
|
[x: string]: any;
|
|
9285
9285
|
} | undefined;
|
|
9286
|
-
token_endpoint_auth_method?: "
|
|
9286
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9287
9287
|
client_metadata?: {
|
|
9288
9288
|
[x: string]: string;
|
|
9289
9289
|
} | undefined;
|
|
@@ -9394,7 +9394,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9394
9394
|
addons?: {
|
|
9395
9395
|
[x: string]: any;
|
|
9396
9396
|
} | undefined;
|
|
9397
|
-
token_endpoint_auth_method?: "
|
|
9397
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9398
9398
|
client_metadata?: {
|
|
9399
9399
|
[x: string]: string;
|
|
9400
9400
|
} | undefined;
|
|
@@ -9504,7 +9504,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9504
9504
|
custom_login_page_preview?: string | undefined;
|
|
9505
9505
|
form_template?: string | undefined;
|
|
9506
9506
|
addons?: Record<string, any> | undefined;
|
|
9507
|
-
token_endpoint_auth_method?: "
|
|
9507
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9508
9508
|
client_metadata?: Record<string, string> | undefined;
|
|
9509
9509
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9510
9510
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9584,7 +9584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9584
9584
|
addons?: {
|
|
9585
9585
|
[x: string]: any;
|
|
9586
9586
|
} | undefined;
|
|
9587
|
-
token_endpoint_auth_method?: "
|
|
9587
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9588
9588
|
client_metadata?: {
|
|
9589
9589
|
[x: string]: string;
|
|
9590
9590
|
} | undefined;
|
|
@@ -9673,7 +9673,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9673
9673
|
custom_login_page_preview?: string | undefined;
|
|
9674
9674
|
form_template?: string | undefined;
|
|
9675
9675
|
addons?: Record<string, any> | undefined;
|
|
9676
|
-
token_endpoint_auth_method?: "
|
|
9676
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9677
9677
|
client_metadata?: Record<string, string> | undefined;
|
|
9678
9678
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9679
9679
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9753,7 +9753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9753
9753
|
addons?: {
|
|
9754
9754
|
[x: string]: any;
|
|
9755
9755
|
} | undefined;
|
|
9756
|
-
token_endpoint_auth_method?: "
|
|
9756
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9757
9757
|
client_metadata?: {
|
|
9758
9758
|
[x: string]: string;
|
|
9759
9759
|
} | undefined;
|
|
@@ -11017,7 +11017,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11017
11017
|
};
|
|
11018
11018
|
};
|
|
11019
11019
|
output: {
|
|
11020
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
11020
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
|
|
11021
11021
|
date: string;
|
|
11022
11022
|
isMobile: boolean;
|
|
11023
11023
|
log_id: string;
|
|
@@ -11056,7 +11056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11056
11056
|
limit: number;
|
|
11057
11057
|
length: number;
|
|
11058
11058
|
logs: {
|
|
11059
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
11059
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "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" | "wn" | "wum";
|
|
11060
11060
|
date: string;
|
|
11061
11061
|
isMobile: boolean;
|
|
11062
11062
|
log_id: string;
|
|
@@ -11371,7 +11371,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11371
11371
|
};
|
|
11372
11372
|
} & {
|
|
11373
11373
|
json: {
|
|
11374
|
-
template: "
|
|
11374
|
+
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";
|
|
11375
11375
|
body: string;
|
|
11376
11376
|
from: string;
|
|
11377
11377
|
subject: string;
|
|
@@ -11392,7 +11392,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11392
11392
|
};
|
|
11393
11393
|
} & {
|
|
11394
11394
|
json: {
|
|
11395
|
-
template: "
|
|
11395
|
+
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";
|
|
11396
11396
|
body: string;
|
|
11397
11397
|
from: string;
|
|
11398
11398
|
subject: string;
|
|
@@ -11404,7 +11404,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11404
11404
|
};
|
|
11405
11405
|
};
|
|
11406
11406
|
output: {
|
|
11407
|
-
template: "
|
|
11407
|
+
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";
|
|
11408
11408
|
body: string;
|
|
11409
11409
|
from: string;
|
|
11410
11410
|
subject: string;
|
|
@@ -11423,7 +11423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11423
11423
|
$get: {
|
|
11424
11424
|
input: {
|
|
11425
11425
|
param: {
|
|
11426
|
-
templateName: "
|
|
11426
|
+
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";
|
|
11427
11427
|
};
|
|
11428
11428
|
} & {
|
|
11429
11429
|
header: {
|
|
@@ -11436,7 +11436,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11436
11436
|
} | {
|
|
11437
11437
|
input: {
|
|
11438
11438
|
param: {
|
|
11439
|
-
templateName: "
|
|
11439
|
+
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";
|
|
11440
11440
|
};
|
|
11441
11441
|
} & {
|
|
11442
11442
|
header: {
|
|
@@ -11444,7 +11444,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11444
11444
|
};
|
|
11445
11445
|
};
|
|
11446
11446
|
output: {
|
|
11447
|
-
template: "
|
|
11447
|
+
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";
|
|
11448
11448
|
body: string;
|
|
11449
11449
|
from: string;
|
|
11450
11450
|
subject: string;
|
|
@@ -11463,7 +11463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11463
11463
|
$put: {
|
|
11464
11464
|
input: {
|
|
11465
11465
|
param: {
|
|
11466
|
-
templateName: "
|
|
11466
|
+
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";
|
|
11467
11467
|
};
|
|
11468
11468
|
} & {
|
|
11469
11469
|
header: {
|
|
@@ -11471,7 +11471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11471
11471
|
};
|
|
11472
11472
|
} & {
|
|
11473
11473
|
json: {
|
|
11474
|
-
template: "
|
|
11474
|
+
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";
|
|
11475
11475
|
body: string;
|
|
11476
11476
|
from: string;
|
|
11477
11477
|
subject: string;
|
|
@@ -11483,7 +11483,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11483
11483
|
};
|
|
11484
11484
|
};
|
|
11485
11485
|
output: {
|
|
11486
|
-
template: "
|
|
11486
|
+
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";
|
|
11487
11487
|
body: string;
|
|
11488
11488
|
from: string;
|
|
11489
11489
|
subject: string;
|
|
@@ -11502,7 +11502,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11502
11502
|
$patch: {
|
|
11503
11503
|
input: {
|
|
11504
11504
|
param: {
|
|
11505
|
-
templateName: "
|
|
11505
|
+
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";
|
|
11506
11506
|
};
|
|
11507
11507
|
} & {
|
|
11508
11508
|
header: {
|
|
@@ -11510,7 +11510,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11510
11510
|
};
|
|
11511
11511
|
} & {
|
|
11512
11512
|
json: {
|
|
11513
|
-
template?: "
|
|
11513
|
+
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;
|
|
11514
11514
|
body?: string | undefined;
|
|
11515
11515
|
from?: string | undefined;
|
|
11516
11516
|
subject?: string | undefined;
|
|
@@ -11527,7 +11527,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11527
11527
|
} | {
|
|
11528
11528
|
input: {
|
|
11529
11529
|
param: {
|
|
11530
|
-
templateName: "
|
|
11530
|
+
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";
|
|
11531
11531
|
};
|
|
11532
11532
|
} & {
|
|
11533
11533
|
header: {
|
|
@@ -11535,7 +11535,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11535
11535
|
};
|
|
11536
11536
|
} & {
|
|
11537
11537
|
json: {
|
|
11538
|
-
template?: "
|
|
11538
|
+
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;
|
|
11539
11539
|
body?: string | undefined;
|
|
11540
11540
|
from?: string | undefined;
|
|
11541
11541
|
subject?: string | undefined;
|
|
@@ -11547,7 +11547,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11547
11547
|
};
|
|
11548
11548
|
};
|
|
11549
11549
|
output: {
|
|
11550
|
-
template: "
|
|
11550
|
+
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";
|
|
11551
11551
|
body: string;
|
|
11552
11552
|
from: string;
|
|
11553
11553
|
subject: string;
|
|
@@ -12593,7 +12593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12593
12593
|
output: {
|
|
12594
12594
|
id: string;
|
|
12595
12595
|
trigger_id: string;
|
|
12596
|
-
status: "
|
|
12596
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
12597
12597
|
results: {
|
|
12598
12598
|
action_name: string;
|
|
12599
12599
|
error: {
|
|
@@ -13605,7 +13605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13605
13605
|
scope?: string | undefined;
|
|
13606
13606
|
grant_types?: string[] | undefined;
|
|
13607
13607
|
response_types?: string[] | undefined;
|
|
13608
|
-
token_endpoint_auth_method?: "
|
|
13608
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13609
13609
|
jwks_uri?: string | undefined;
|
|
13610
13610
|
jwks?: Record<string, unknown> | undefined;
|
|
13611
13611
|
software_id?: string | undefined;
|
|
@@ -13694,7 +13694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13694
13694
|
scope?: string | undefined;
|
|
13695
13695
|
grant_types?: string[] | undefined;
|
|
13696
13696
|
response_types?: string[] | undefined;
|
|
13697
|
-
token_endpoint_auth_method?: "
|
|
13697
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13698
13698
|
jwks_uri?: string | undefined;
|
|
13699
13699
|
jwks?: Record<string, unknown> | undefined;
|
|
13700
13700
|
software_id?: string | undefined;
|
|
@@ -13751,7 +13751,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13751
13751
|
client_id: string;
|
|
13752
13752
|
redirect_url?: string | undefined;
|
|
13753
13753
|
login_hint?: string | undefined;
|
|
13754
|
-
screen_hint?: "
|
|
13754
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
13755
13755
|
};
|
|
13756
13756
|
};
|
|
13757
13757
|
output: {};
|
|
@@ -13763,7 +13763,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13763
13763
|
client_id: string;
|
|
13764
13764
|
redirect_url?: string | undefined;
|
|
13765
13765
|
login_hint?: string | undefined;
|
|
13766
|
-
screen_hint?: "
|
|
13766
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
13767
13767
|
};
|
|
13768
13768
|
};
|
|
13769
13769
|
output: {
|
|
@@ -13840,9 +13840,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13840
13840
|
request_uri?: string | undefined;
|
|
13841
13841
|
};
|
|
13842
13842
|
};
|
|
13843
|
-
output: {
|
|
13844
|
-
|
|
13845
|
-
|
|
13843
|
+
output: string | {
|
|
13844
|
+
access_token: string;
|
|
13845
|
+
token_type: string;
|
|
13846
|
+
expires_in: number;
|
|
13847
|
+
id_token?: string | undefined;
|
|
13848
|
+
scope?: string | undefined;
|
|
13849
|
+
state?: string | undefined;
|
|
13850
|
+
refresh_token?: string | undefined;
|
|
13851
|
+
};
|
|
13852
|
+
outputFormat: "json";
|
|
13853
|
+
status: 200;
|
|
13846
13854
|
} | {
|
|
13847
13855
|
input: {
|
|
13848
13856
|
query: {
|
|
@@ -13874,17 +13882,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13874
13882
|
request_uri?: string | undefined;
|
|
13875
13883
|
};
|
|
13876
13884
|
};
|
|
13877
|
-
output:
|
|
13878
|
-
|
|
13879
|
-
|
|
13880
|
-
expires_in: number;
|
|
13881
|
-
id_token?: string | undefined;
|
|
13882
|
-
scope?: string | undefined;
|
|
13883
|
-
state?: string | undefined;
|
|
13884
|
-
refresh_token?: string | undefined;
|
|
13885
|
-
};
|
|
13886
|
-
outputFormat: "json";
|
|
13887
|
-
status: 200;
|
|
13885
|
+
output: {};
|
|
13886
|
+
outputFormat: string;
|
|
13887
|
+
status: 302;
|
|
13888
13888
|
} | {
|
|
13889
13889
|
input: {
|
|
13890
13890
|
query: {
|
|
@@ -14040,19 +14040,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14040
14040
|
email: string;
|
|
14041
14041
|
send: "code" | "link";
|
|
14042
14042
|
authParams: {
|
|
14043
|
+
code_challenge?: string | undefined;
|
|
14044
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14045
|
+
redirect_uri?: string | undefined;
|
|
14046
|
+
nonce?: string | undefined;
|
|
14043
14047
|
state?: string | undefined;
|
|
14044
|
-
|
|
14048
|
+
act_as?: string | undefined;
|
|
14045
14049
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14046
14050
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14047
|
-
|
|
14048
|
-
username?: string | undefined;
|
|
14051
|
+
audience?: string | undefined;
|
|
14049
14052
|
organization?: string | undefined;
|
|
14050
|
-
|
|
14051
|
-
redirect_uri?: string | undefined;
|
|
14052
|
-
act_as?: string | undefined;
|
|
14053
|
+
scope?: string | undefined;
|
|
14053
14054
|
prompt?: string | undefined;
|
|
14054
|
-
|
|
14055
|
-
code_challenge?: string | undefined;
|
|
14055
|
+
username?: string | undefined;
|
|
14056
14056
|
ui_locales?: string | undefined;
|
|
14057
14057
|
max_age?: number | undefined;
|
|
14058
14058
|
acr_values?: string | undefined;
|
|
@@ -14076,19 +14076,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14076
14076
|
phone_number: string;
|
|
14077
14077
|
send: "code" | "link";
|
|
14078
14078
|
authParams: {
|
|
14079
|
+
code_challenge?: string | undefined;
|
|
14080
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14081
|
+
redirect_uri?: string | undefined;
|
|
14082
|
+
nonce?: string | undefined;
|
|
14079
14083
|
state?: string | undefined;
|
|
14080
|
-
|
|
14084
|
+
act_as?: string | undefined;
|
|
14081
14085
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14082
14086
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14083
|
-
|
|
14084
|
-
username?: string | undefined;
|
|
14087
|
+
audience?: string | undefined;
|
|
14085
14088
|
organization?: string | undefined;
|
|
14086
|
-
|
|
14087
|
-
redirect_uri?: string | undefined;
|
|
14088
|
-
act_as?: string | undefined;
|
|
14089
|
+
scope?: string | undefined;
|
|
14089
14090
|
prompt?: string | undefined;
|
|
14090
|
-
|
|
14091
|
-
code_challenge?: string | undefined;
|
|
14091
|
+
username?: string | undefined;
|
|
14092
14092
|
ui_locales?: string | undefined;
|
|
14093
14093
|
max_age?: number | undefined;
|
|
14094
14094
|
acr_values?: string | undefined;
|
|
@@ -14220,14 +14220,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14220
14220
|
input: {
|
|
14221
14221
|
form: {
|
|
14222
14222
|
token: string;
|
|
14223
|
-
token_type_hint?: "
|
|
14223
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14224
14224
|
client_id?: string | undefined;
|
|
14225
14225
|
client_secret?: string | undefined;
|
|
14226
14226
|
};
|
|
14227
14227
|
} & {
|
|
14228
14228
|
json: {
|
|
14229
14229
|
token: string;
|
|
14230
|
-
token_type_hint?: "
|
|
14230
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14231
14231
|
client_id?: string | undefined;
|
|
14232
14232
|
client_secret?: string | undefined;
|
|
14233
14233
|
};
|
|
@@ -14239,14 +14239,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14239
14239
|
input: {
|
|
14240
14240
|
form: {
|
|
14241
14241
|
token: string;
|
|
14242
|
-
token_type_hint?: "
|
|
14242
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14243
14243
|
client_id?: string | undefined;
|
|
14244
14244
|
client_secret?: string | undefined;
|
|
14245
14245
|
};
|
|
14246
14246
|
} & {
|
|
14247
14247
|
json: {
|
|
14248
14248
|
token: string;
|
|
14249
|
-
token_type_hint?: "
|
|
14249
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14250
14250
|
client_id?: string | undefined;
|
|
14251
14251
|
client_secret?: string | undefined;
|
|
14252
14252
|
};
|
|
@@ -14261,14 +14261,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14261
14261
|
input: {
|
|
14262
14262
|
form: {
|
|
14263
14263
|
token: string;
|
|
14264
|
-
token_type_hint?: "
|
|
14264
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14265
14265
|
client_id?: string | undefined;
|
|
14266
14266
|
client_secret?: string | undefined;
|
|
14267
14267
|
};
|
|
14268
14268
|
} & {
|
|
14269
14269
|
json: {
|
|
14270
14270
|
token: string;
|
|
14271
|
-
token_type_hint?: "
|
|
14271
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14272
14272
|
client_id?: string | undefined;
|
|
14273
14273
|
client_secret?: string | undefined;
|
|
14274
14274
|
};
|
|
@@ -14318,7 +14318,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14318
14318
|
client_id: string;
|
|
14319
14319
|
username: string;
|
|
14320
14320
|
otp: string;
|
|
14321
|
-
realm: "
|
|
14321
|
+
realm: "email" | "sms";
|
|
14322
14322
|
};
|
|
14323
14323
|
} & {
|
|
14324
14324
|
json: {
|
|
@@ -14354,7 +14354,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14354
14354
|
client_id: string;
|
|
14355
14355
|
username: string;
|
|
14356
14356
|
otp: string;
|
|
14357
|
-
realm: "
|
|
14357
|
+
realm: "email" | "sms";
|
|
14358
14358
|
};
|
|
14359
14359
|
};
|
|
14360
14360
|
output: {};
|
|
@@ -14395,7 +14395,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14395
14395
|
client_id: string;
|
|
14396
14396
|
username: string;
|
|
14397
14397
|
otp: string;
|
|
14398
|
-
realm: "
|
|
14398
|
+
realm: "email" | "sms";
|
|
14399
14399
|
};
|
|
14400
14400
|
} & {
|
|
14401
14401
|
json: {
|
|
@@ -14431,7 +14431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14431
14431
|
client_id: string;
|
|
14432
14432
|
username: string;
|
|
14433
14433
|
otp: string;
|
|
14434
|
-
realm: "
|
|
14434
|
+
realm: "email" | "sms";
|
|
14435
14435
|
};
|
|
14436
14436
|
};
|
|
14437
14437
|
output: {
|
|
@@ -14480,7 +14480,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14480
14480
|
client_id: string;
|
|
14481
14481
|
username: string;
|
|
14482
14482
|
otp: string;
|
|
14483
|
-
realm: "
|
|
14483
|
+
realm: "email" | "sms";
|
|
14484
14484
|
};
|
|
14485
14485
|
} & {
|
|
14486
14486
|
json: {
|
|
@@ -14516,7 +14516,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14516
14516
|
client_id: string;
|
|
14517
14517
|
username: string;
|
|
14518
14518
|
otp: string;
|
|
14519
|
-
realm: "
|
|
14519
|
+
realm: "email" | "sms";
|
|
14520
14520
|
};
|
|
14521
14521
|
};
|
|
14522
14522
|
output: {
|
|
@@ -14560,7 +14560,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14560
14560
|
client_id: string;
|
|
14561
14561
|
username: string;
|
|
14562
14562
|
otp: string;
|
|
14563
|
-
realm: "
|
|
14563
|
+
realm: "email" | "sms";
|
|
14564
14564
|
};
|
|
14565
14565
|
} & {
|
|
14566
14566
|
json: {
|
|
@@ -14596,7 +14596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14596
14596
|
client_id: string;
|
|
14597
14597
|
username: string;
|
|
14598
14598
|
otp: string;
|
|
14599
|
-
realm: "
|
|
14599
|
+
realm: "email" | "sms";
|
|
14600
14600
|
};
|
|
14601
14601
|
};
|
|
14602
14602
|
output: {
|
|
@@ -14640,7 +14640,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14640
14640
|
client_id: string;
|
|
14641
14641
|
username: string;
|
|
14642
14642
|
otp: string;
|
|
14643
|
-
realm: "
|
|
14643
|
+
realm: "email" | "sms";
|
|
14644
14644
|
};
|
|
14645
14645
|
} & {
|
|
14646
14646
|
json: {
|
|
@@ -14676,7 +14676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14676
14676
|
client_id: string;
|
|
14677
14677
|
username: string;
|
|
14678
14678
|
otp: string;
|
|
14679
|
-
realm: "
|
|
14679
|
+
realm: "email" | "sms";
|
|
14680
14680
|
};
|
|
14681
14681
|
};
|
|
14682
14682
|
output: {
|
|
@@ -14849,7 +14849,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14849
14849
|
};
|
|
14850
14850
|
output: {};
|
|
14851
14851
|
outputFormat: string;
|
|
14852
|
-
status:
|
|
14852
|
+
status: 302;
|
|
14853
14853
|
} | {
|
|
14854
14854
|
input: {
|
|
14855
14855
|
query: {
|
|
@@ -14863,7 +14863,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14863
14863
|
};
|
|
14864
14864
|
output: {};
|
|
14865
14865
|
outputFormat: string;
|
|
14866
|
-
status:
|
|
14866
|
+
status: 200;
|
|
14867
14867
|
} | {
|
|
14868
14868
|
input: {
|
|
14869
14869
|
query: {
|
|
@@ -15835,7 +15835,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15835
15835
|
$get: {
|
|
15836
15836
|
input: {
|
|
15837
15837
|
param: {
|
|
15838
|
-
screen: "signup" | "
|
|
15838
|
+
screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15839
15839
|
};
|
|
15840
15840
|
} & {
|
|
15841
15841
|
query: {
|
|
@@ -15851,7 +15851,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15851
15851
|
} | {
|
|
15852
15852
|
input: {
|
|
15853
15853
|
param: {
|
|
15854
|
-
screen: "signup" | "
|
|
15854
|
+
screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15855
15855
|
};
|
|
15856
15856
|
} & {
|
|
15857
15857
|
query: {
|
|
@@ -15867,7 +15867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15867
15867
|
} | {
|
|
15868
15868
|
input: {
|
|
15869
15869
|
param: {
|
|
15870
|
-
screen: "signup" | "
|
|
15870
|
+
screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15871
15871
|
};
|
|
15872
15872
|
} & {
|
|
15873
15873
|
query: {
|
|
@@ -15887,7 +15887,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15887
15887
|
$post: {
|
|
15888
15888
|
input: {
|
|
15889
15889
|
param: {
|
|
15890
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
15890
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15891
15891
|
};
|
|
15892
15892
|
} & {
|
|
15893
15893
|
query: {
|
|
@@ -15905,7 +15905,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15905
15905
|
} | {
|
|
15906
15906
|
input: {
|
|
15907
15907
|
param: {
|
|
15908
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
15908
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15909
15909
|
};
|
|
15910
15910
|
} & {
|
|
15911
15911
|
query: {
|
|
@@ -15923,7 +15923,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15923
15923
|
} | {
|
|
15924
15924
|
input: {
|
|
15925
15925
|
param: {
|
|
15926
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
15926
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
15927
15927
|
};
|
|
15928
15928
|
} & {
|
|
15929
15929
|
query: {
|