authhero 8.1.0 → 8.2.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 +215 -215
- package/dist/authhero.d.ts +96 -89
- package/dist/authhero.mjs +9007 -8979
- package/dist/{passkey-enrollment-Dw1ObR65.mjs → passkey-enrollment-Ba_8I87G.mjs} +1 -5
- package/dist/passkey-enrollment-CB7HjMH_.js +1 -0
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +18 -10
- package/dist/types/authentication-flows/connection.d.ts +2 -2
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +85 -85
- package/dist/types/middlewares/tenant.d.ts +11 -4
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +3 -3
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +61 -61
- 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/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/IdToken.d.ts +1 -1
- package/package.json +3 -3
- package/dist/passkey-enrollment-DKWsGt-K.js +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -84,7 +84,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
84
84
|
};
|
|
85
85
|
} & {
|
|
86
86
|
json: {
|
|
87
|
-
type: "email" | "
|
|
87
|
+
type: "email" | "passkey" | "push" | "phone" | "webauthn-roaming" | "webauthn-platform" | "totp";
|
|
88
88
|
phone_number?: string | undefined;
|
|
89
89
|
totp_secret?: string | undefined;
|
|
90
90
|
credential_id?: string | undefined;
|
|
@@ -224,7 +224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
224
224
|
};
|
|
225
225
|
};
|
|
226
226
|
output: {
|
|
227
|
-
name: "email" | "
|
|
227
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
228
228
|
enabled: boolean;
|
|
229
229
|
trial_expired?: boolean | undefined;
|
|
230
230
|
}[];
|
|
@@ -379,7 +379,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
379
379
|
$get: {
|
|
380
380
|
input: {
|
|
381
381
|
param: {
|
|
382
|
-
factor_name: "email" | "
|
|
382
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
383
383
|
};
|
|
384
384
|
} & {
|
|
385
385
|
header: {
|
|
@@ -387,7 +387,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
387
387
|
};
|
|
388
388
|
};
|
|
389
389
|
output: {
|
|
390
|
-
name: "email" | "
|
|
390
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
391
391
|
enabled: boolean;
|
|
392
392
|
trial_expired?: boolean | undefined;
|
|
393
393
|
};
|
|
@@ -400,7 +400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
400
400
|
$put: {
|
|
401
401
|
input: {
|
|
402
402
|
param: {
|
|
403
|
-
factor_name: "email" | "
|
|
403
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
404
404
|
};
|
|
405
405
|
} & {
|
|
406
406
|
header: {
|
|
@@ -412,7 +412,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
412
412
|
};
|
|
413
413
|
};
|
|
414
414
|
output: {
|
|
415
|
-
name: "email" | "
|
|
415
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
enabled: boolean;
|
|
417
417
|
trial_expired?: boolean | undefined;
|
|
418
418
|
};
|
|
@@ -1157,9 +1157,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1157
1157
|
invitee: {
|
|
1158
1158
|
email?: string | undefined;
|
|
1159
1159
|
};
|
|
1160
|
+
id?: string | undefined;
|
|
1160
1161
|
app_metadata?: Record<string, any> | undefined;
|
|
1161
1162
|
user_metadata?: Record<string, any> | undefined;
|
|
1162
|
-
id?: string | undefined;
|
|
1163
1163
|
connection_id?: string | undefined;
|
|
1164
1164
|
roles?: string[] | undefined;
|
|
1165
1165
|
ttl_sec?: number | undefined;
|
|
@@ -2012,7 +2012,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2012
2012
|
type: "REDIRECT";
|
|
2013
2013
|
action: "REDIRECT_USER";
|
|
2014
2014
|
params: {
|
|
2015
|
-
target: "custom" | "
|
|
2015
|
+
target: "custom" | "change-email" | "account";
|
|
2016
2016
|
custom_url?: string | undefined;
|
|
2017
2017
|
};
|
|
2018
2018
|
alias?: string | undefined;
|
|
@@ -2065,7 +2065,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2065
2065
|
type: "REDIRECT";
|
|
2066
2066
|
action: "REDIRECT_USER";
|
|
2067
2067
|
params: {
|
|
2068
|
-
target: "custom" | "
|
|
2068
|
+
target: "custom" | "change-email" | "account";
|
|
2069
2069
|
custom_url?: string | undefined;
|
|
2070
2070
|
};
|
|
2071
2071
|
alias?: string | undefined;
|
|
@@ -2133,7 +2133,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2133
2133
|
type: "REDIRECT";
|
|
2134
2134
|
action: "REDIRECT_USER";
|
|
2135
2135
|
params: {
|
|
2136
|
-
target: "custom" | "
|
|
2136
|
+
target: "custom" | "change-email" | "account";
|
|
2137
2137
|
custom_url?: string | undefined;
|
|
2138
2138
|
};
|
|
2139
2139
|
alias?: string | undefined;
|
|
@@ -2214,7 +2214,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2214
2214
|
type: "REDIRECT";
|
|
2215
2215
|
action: "REDIRECT_USER";
|
|
2216
2216
|
params: {
|
|
2217
|
-
target: "custom" | "
|
|
2217
|
+
target: "custom" | "change-email" | "account";
|
|
2218
2218
|
custom_url?: string | undefined;
|
|
2219
2219
|
};
|
|
2220
2220
|
alias?: string | undefined;
|
|
@@ -2262,7 +2262,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2262
2262
|
type: "REDIRECT";
|
|
2263
2263
|
action: "REDIRECT_USER";
|
|
2264
2264
|
params: {
|
|
2265
|
-
target: "custom" | "
|
|
2265
|
+
target: "custom" | "change-email" | "account";
|
|
2266
2266
|
custom_url?: string | undefined;
|
|
2267
2267
|
};
|
|
2268
2268
|
alias?: string | undefined;
|
|
@@ -2322,7 +2322,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2322
2322
|
type: "REDIRECT";
|
|
2323
2323
|
action: "REDIRECT_USER";
|
|
2324
2324
|
params: {
|
|
2325
|
-
target: "custom" | "
|
|
2325
|
+
target: "custom" | "change-email" | "account";
|
|
2326
2326
|
custom_url?: string | undefined;
|
|
2327
2327
|
};
|
|
2328
2328
|
alias?: string | undefined;
|
|
@@ -2370,7 +2370,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2370
2370
|
type: "REDIRECT";
|
|
2371
2371
|
action: "REDIRECT_USER";
|
|
2372
2372
|
params: {
|
|
2373
|
-
target: "custom" | "
|
|
2373
|
+
target: "custom" | "change-email" | "account";
|
|
2374
2374
|
custom_url?: string | undefined;
|
|
2375
2375
|
};
|
|
2376
2376
|
alias?: string | undefined;
|
|
@@ -6648,7 +6648,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6648
6648
|
};
|
|
6649
6649
|
};
|
|
6650
6650
|
output: {
|
|
6651
|
-
prompt: "
|
|
6651
|
+
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";
|
|
6652
6652
|
language: string;
|
|
6653
6653
|
}[];
|
|
6654
6654
|
outputFormat: "json";
|
|
@@ -6686,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6686
6686
|
$get: {
|
|
6687
6687
|
input: {
|
|
6688
6688
|
param: {
|
|
6689
|
-
prompt: "
|
|
6689
|
+
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";
|
|
6690
6690
|
language: string;
|
|
6691
6691
|
};
|
|
6692
6692
|
} & {
|
|
@@ -6708,7 +6708,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6708
6708
|
$put: {
|
|
6709
6709
|
input: {
|
|
6710
6710
|
param: {
|
|
6711
|
-
prompt: "
|
|
6711
|
+
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";
|
|
6712
6712
|
language: string;
|
|
6713
6713
|
};
|
|
6714
6714
|
} & {
|
|
@@ -6732,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6732
6732
|
$delete: {
|
|
6733
6733
|
input: {
|
|
6734
6734
|
param: {
|
|
6735
|
-
prompt: "
|
|
6735
|
+
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";
|
|
6736
6736
|
language: string;
|
|
6737
6737
|
};
|
|
6738
6738
|
} & {
|
|
@@ -8233,7 +8233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8233
8233
|
log_type: string;
|
|
8234
8234
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8235
8235
|
actor: {
|
|
8236
|
-
type: "
|
|
8236
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8237
8237
|
id?: string | undefined;
|
|
8238
8238
|
email?: string | undefined;
|
|
8239
8239
|
org_id?: string | undefined;
|
|
@@ -8541,7 +8541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8541
8541
|
created_at: string;
|
|
8542
8542
|
updated_at: string;
|
|
8543
8543
|
name: string;
|
|
8544
|
-
provider: "auth0" | "
|
|
8544
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8545
8545
|
connection: string;
|
|
8546
8546
|
enabled: boolean;
|
|
8547
8547
|
credentials: {
|
|
@@ -8573,7 +8573,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8573
8573
|
created_at: string;
|
|
8574
8574
|
updated_at: string;
|
|
8575
8575
|
name: string;
|
|
8576
|
-
provider: "auth0" | "
|
|
8576
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8577
8577
|
connection: string;
|
|
8578
8578
|
enabled: boolean;
|
|
8579
8579
|
credentials: {
|
|
@@ -8599,7 +8599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8599
8599
|
} & {
|
|
8600
8600
|
json: {
|
|
8601
8601
|
name: string;
|
|
8602
|
-
provider: "auth0" | "
|
|
8602
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8603
8603
|
connection: string;
|
|
8604
8604
|
credentials: {
|
|
8605
8605
|
domain: string;
|
|
@@ -8616,7 +8616,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8616
8616
|
created_at: string;
|
|
8617
8617
|
updated_at: string;
|
|
8618
8618
|
name: string;
|
|
8619
|
-
provider: "auth0" | "
|
|
8619
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8620
8620
|
connection: string;
|
|
8621
8621
|
enabled: boolean;
|
|
8622
8622
|
credentials: {
|
|
@@ -8647,7 +8647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8647
8647
|
json: {
|
|
8648
8648
|
id?: string | undefined;
|
|
8649
8649
|
name?: string | undefined;
|
|
8650
|
-
provider?: "auth0" | "
|
|
8650
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8651
8651
|
connection?: string | undefined;
|
|
8652
8652
|
enabled?: boolean | undefined;
|
|
8653
8653
|
credentials?: {
|
|
@@ -8663,7 +8663,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8663
8663
|
created_at: string;
|
|
8664
8664
|
updated_at: string;
|
|
8665
8665
|
name: string;
|
|
8666
|
-
provider: "auth0" | "
|
|
8666
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8667
8667
|
connection: string;
|
|
8668
8668
|
enabled: boolean;
|
|
8669
8669
|
credentials: {
|
|
@@ -8881,7 +8881,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8881
8881
|
};
|
|
8882
8882
|
};
|
|
8883
8883
|
output: {
|
|
8884
|
-
type: "
|
|
8884
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8885
8885
|
date: string;
|
|
8886
8886
|
isMobile: boolean;
|
|
8887
8887
|
log_id: string;
|
|
@@ -8920,7 +8920,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8920
8920
|
limit: number;
|
|
8921
8921
|
length: number;
|
|
8922
8922
|
logs: {
|
|
8923
|
-
type: "
|
|
8923
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8924
8924
|
date: string;
|
|
8925
8925
|
isMobile: boolean;
|
|
8926
8926
|
log_id: string;
|
|
@@ -8974,7 +8974,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8974
8974
|
};
|
|
8975
8975
|
};
|
|
8976
8976
|
output: {
|
|
8977
|
-
type: "
|
|
8977
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8978
8978
|
date: string;
|
|
8979
8979
|
isMobile: boolean;
|
|
8980
8980
|
log_id: string;
|
|
@@ -9362,7 +9362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9362
9362
|
addons?: {
|
|
9363
9363
|
[x: string]: any;
|
|
9364
9364
|
} | undefined;
|
|
9365
|
-
token_endpoint_auth_method?: "
|
|
9365
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9366
9366
|
client_metadata?: {
|
|
9367
9367
|
[x: string]: string;
|
|
9368
9368
|
} | undefined;
|
|
@@ -9458,7 +9458,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9458
9458
|
addons?: {
|
|
9459
9459
|
[x: string]: any;
|
|
9460
9460
|
} | undefined;
|
|
9461
|
-
token_endpoint_auth_method?: "
|
|
9461
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9462
9462
|
client_metadata?: {
|
|
9463
9463
|
[x: string]: string;
|
|
9464
9464
|
} | undefined;
|
|
@@ -9569,7 +9569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9569
9569
|
addons?: {
|
|
9570
9570
|
[x: string]: any;
|
|
9571
9571
|
} | undefined;
|
|
9572
|
-
token_endpoint_auth_method?: "
|
|
9572
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9573
9573
|
client_metadata?: {
|
|
9574
9574
|
[x: string]: string;
|
|
9575
9575
|
} | undefined;
|
|
@@ -9679,7 +9679,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9679
9679
|
custom_login_page_preview?: string | undefined;
|
|
9680
9680
|
form_template?: string | undefined;
|
|
9681
9681
|
addons?: Record<string, any> | undefined;
|
|
9682
|
-
token_endpoint_auth_method?: "
|
|
9682
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9683
9683
|
client_metadata?: Record<string, string> | undefined;
|
|
9684
9684
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9685
9685
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9759,7 +9759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9759
9759
|
addons?: {
|
|
9760
9760
|
[x: string]: any;
|
|
9761
9761
|
} | undefined;
|
|
9762
|
-
token_endpoint_auth_method?: "
|
|
9762
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9763
9763
|
client_metadata?: {
|
|
9764
9764
|
[x: string]: string;
|
|
9765
9765
|
} | undefined;
|
|
@@ -9848,7 +9848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9848
9848
|
custom_login_page_preview?: string | undefined;
|
|
9849
9849
|
form_template?: string | undefined;
|
|
9850
9850
|
addons?: Record<string, any> | undefined;
|
|
9851
|
-
token_endpoint_auth_method?: "
|
|
9851
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9852
9852
|
client_metadata?: Record<string, string> | undefined;
|
|
9853
9853
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9854
9854
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9928,7 +9928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9928
9928
|
addons?: {
|
|
9929
9929
|
[x: string]: any;
|
|
9930
9930
|
} | undefined;
|
|
9931
|
-
token_endpoint_auth_method?: "
|
|
9931
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9932
9932
|
client_metadata?: {
|
|
9933
9933
|
[x: string]: string;
|
|
9934
9934
|
} | undefined;
|
|
@@ -11192,7 +11192,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11192
11192
|
};
|
|
11193
11193
|
};
|
|
11194
11194
|
output: {
|
|
11195
|
-
type: "
|
|
11195
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11196
11196
|
date: string;
|
|
11197
11197
|
isMobile: boolean;
|
|
11198
11198
|
log_id: string;
|
|
@@ -11231,7 +11231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11231
11231
|
limit: number;
|
|
11232
11232
|
length: number;
|
|
11233
11233
|
logs: {
|
|
11234
|
-
type: "
|
|
11234
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11235
11235
|
date: string;
|
|
11236
11236
|
isMobile: boolean;
|
|
11237
11237
|
log_id: string;
|
|
@@ -11546,7 +11546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11546
11546
|
};
|
|
11547
11547
|
} & {
|
|
11548
11548
|
json: {
|
|
11549
|
-
template: "verify_email" | "
|
|
11549
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11550
11550
|
body: string;
|
|
11551
11551
|
from: string;
|
|
11552
11552
|
subject: string;
|
|
@@ -11567,7 +11567,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11567
11567
|
};
|
|
11568
11568
|
} & {
|
|
11569
11569
|
json: {
|
|
11570
|
-
template: "verify_email" | "
|
|
11570
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11571
11571
|
body: string;
|
|
11572
11572
|
from: string;
|
|
11573
11573
|
subject: string;
|
|
@@ -11579,7 +11579,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11579
11579
|
};
|
|
11580
11580
|
};
|
|
11581
11581
|
output: {
|
|
11582
|
-
template: "verify_email" | "
|
|
11582
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11583
11583
|
body: string;
|
|
11584
11584
|
from: string;
|
|
11585
11585
|
subject: string;
|
|
@@ -11602,7 +11602,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11602
11602
|
};
|
|
11603
11603
|
};
|
|
11604
11604
|
output: {
|
|
11605
|
-
name: "verify_email" | "
|
|
11605
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11606
11606
|
body: string;
|
|
11607
11607
|
subject: string;
|
|
11608
11608
|
}[];
|
|
@@ -11615,7 +11615,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11615
11615
|
$get: {
|
|
11616
11616
|
input: {
|
|
11617
11617
|
param: {
|
|
11618
|
-
templateName: "verify_email" | "
|
|
11618
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11619
11619
|
};
|
|
11620
11620
|
} & {
|
|
11621
11621
|
header: {
|
|
@@ -11628,7 +11628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11628
11628
|
} | {
|
|
11629
11629
|
input: {
|
|
11630
11630
|
param: {
|
|
11631
|
-
templateName: "verify_email" | "
|
|
11631
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11632
11632
|
};
|
|
11633
11633
|
} & {
|
|
11634
11634
|
header: {
|
|
@@ -11636,7 +11636,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11636
11636
|
};
|
|
11637
11637
|
};
|
|
11638
11638
|
output: {
|
|
11639
|
-
template: "verify_email" | "
|
|
11639
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11640
11640
|
body: string;
|
|
11641
11641
|
from: string;
|
|
11642
11642
|
subject: string;
|
|
@@ -11655,7 +11655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11655
11655
|
$put: {
|
|
11656
11656
|
input: {
|
|
11657
11657
|
param: {
|
|
11658
|
-
templateName: "verify_email" | "
|
|
11658
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11659
11659
|
};
|
|
11660
11660
|
} & {
|
|
11661
11661
|
header: {
|
|
@@ -11663,7 +11663,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11663
11663
|
};
|
|
11664
11664
|
} & {
|
|
11665
11665
|
json: {
|
|
11666
|
-
template: "verify_email" | "
|
|
11666
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11667
11667
|
body: string;
|
|
11668
11668
|
subject: string;
|
|
11669
11669
|
syntax?: "liquid" | undefined;
|
|
@@ -11675,7 +11675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11675
11675
|
};
|
|
11676
11676
|
};
|
|
11677
11677
|
output: {
|
|
11678
|
-
template: "verify_email" | "
|
|
11678
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11679
11679
|
body: string;
|
|
11680
11680
|
from: string;
|
|
11681
11681
|
subject: string;
|
|
@@ -11694,7 +11694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11694
11694
|
$patch: {
|
|
11695
11695
|
input: {
|
|
11696
11696
|
param: {
|
|
11697
|
-
templateName: "verify_email" | "
|
|
11697
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11698
11698
|
};
|
|
11699
11699
|
} & {
|
|
11700
11700
|
header: {
|
|
@@ -11702,7 +11702,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11702
11702
|
};
|
|
11703
11703
|
} & {
|
|
11704
11704
|
json: {
|
|
11705
|
-
template?: "verify_email" | "
|
|
11705
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11706
11706
|
body?: string | undefined;
|
|
11707
11707
|
from?: string | undefined;
|
|
11708
11708
|
subject?: string | undefined;
|
|
@@ -11719,7 +11719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11719
11719
|
} | {
|
|
11720
11720
|
input: {
|
|
11721
11721
|
param: {
|
|
11722
|
-
templateName: "verify_email" | "
|
|
11722
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11723
11723
|
};
|
|
11724
11724
|
} & {
|
|
11725
11725
|
header: {
|
|
@@ -11727,7 +11727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11727
11727
|
};
|
|
11728
11728
|
} & {
|
|
11729
11729
|
json: {
|
|
11730
|
-
template?: "verify_email" | "
|
|
11730
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11731
11731
|
body?: string | undefined;
|
|
11732
11732
|
from?: string | undefined;
|
|
11733
11733
|
subject?: string | undefined;
|
|
@@ -11739,7 +11739,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11739
11739
|
};
|
|
11740
11740
|
};
|
|
11741
11741
|
output: {
|
|
11742
|
-
template: "verify_email" | "
|
|
11742
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11743
11743
|
body: string;
|
|
11744
11744
|
from: string;
|
|
11745
11745
|
subject: string;
|
|
@@ -11758,7 +11758,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11758
11758
|
$delete: {
|
|
11759
11759
|
input: {
|
|
11760
11760
|
param: {
|
|
11761
|
-
templateName: "verify_email" | "
|
|
11761
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11762
11762
|
};
|
|
11763
11763
|
} & {
|
|
11764
11764
|
header: {
|
|
@@ -11771,7 +11771,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11771
11771
|
} | {
|
|
11772
11772
|
input: {
|
|
11773
11773
|
param: {
|
|
11774
|
-
templateName: "verify_email" | "
|
|
11774
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11775
11775
|
};
|
|
11776
11776
|
} & {
|
|
11777
11777
|
header: {
|
|
@@ -11788,7 +11788,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11788
11788
|
$post: {
|
|
11789
11789
|
input: {
|
|
11790
11790
|
param: {
|
|
11791
|
-
templateName: "verify_email" | "
|
|
11791
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11792
11792
|
};
|
|
11793
11793
|
} & {
|
|
11794
11794
|
header: {
|
|
@@ -12071,7 +12071,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12071
12071
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12072
12072
|
custom_domain_id: string;
|
|
12073
12073
|
primary: boolean;
|
|
12074
|
-
status: "
|
|
12074
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12075
12075
|
verification_method?: "txt" | undefined;
|
|
12076
12076
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12077
12077
|
domain_metadata?: {
|
|
@@ -12112,7 +12112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12112
12112
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12113
12113
|
custom_domain_id: string;
|
|
12114
12114
|
primary: boolean;
|
|
12115
|
-
status: "
|
|
12115
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12116
12116
|
verification_method?: "txt" | undefined;
|
|
12117
12117
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12118
12118
|
domain_metadata?: {
|
|
@@ -12176,7 +12176,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12176
12176
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12177
12177
|
custom_domain_id: string;
|
|
12178
12178
|
primary: boolean;
|
|
12179
|
-
status: "
|
|
12179
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12180
12180
|
verification_method?: "txt" | undefined;
|
|
12181
12181
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12182
12182
|
domain_metadata?: {
|
|
@@ -12223,7 +12223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12223
12223
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12224
12224
|
custom_domain_id: string;
|
|
12225
12225
|
primary: boolean;
|
|
12226
|
-
status: "
|
|
12226
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12227
12227
|
verification_method?: "txt" | undefined;
|
|
12228
12228
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12229
12229
|
domain_metadata?: {
|
|
@@ -12269,7 +12269,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12269
12269
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12270
12270
|
custom_domain_id: string;
|
|
12271
12271
|
primary: boolean;
|
|
12272
|
-
status: "
|
|
12272
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12273
12273
|
verification_method?: "txt" | undefined;
|
|
12274
12274
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12275
12275
|
domain_metadata?: {
|
|
@@ -12310,7 +12310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12310
12310
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12311
12311
|
custom_domain_id: string;
|
|
12312
12312
|
primary: boolean;
|
|
12313
|
-
status: "
|
|
12313
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12314
12314
|
verification_method?: "txt" | undefined;
|
|
12315
12315
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12316
12316
|
domain_metadata?: {
|
|
@@ -13882,7 +13882,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13882
13882
|
scope?: string | undefined;
|
|
13883
13883
|
grant_types?: string[] | undefined;
|
|
13884
13884
|
response_types?: string[] | undefined;
|
|
13885
|
-
token_endpoint_auth_method?: "
|
|
13885
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13886
13886
|
jwks_uri?: string | undefined;
|
|
13887
13887
|
jwks?: Record<string, unknown> | undefined;
|
|
13888
13888
|
software_id?: string | undefined;
|
|
@@ -13971,7 +13971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13971
13971
|
scope?: string | undefined;
|
|
13972
13972
|
grant_types?: string[] | undefined;
|
|
13973
13973
|
response_types?: string[] | undefined;
|
|
13974
|
-
token_endpoint_auth_method?: "
|
|
13974
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13975
13975
|
jwks_uri?: string | undefined;
|
|
13976
13976
|
jwks?: Record<string, unknown> | undefined;
|
|
13977
13977
|
software_id?: string | undefined;
|
|
@@ -14028,7 +14028,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14028
14028
|
client_id: string;
|
|
14029
14029
|
redirect_url?: string | undefined;
|
|
14030
14030
|
login_hint?: string | undefined;
|
|
14031
|
-
screen_hint?: "
|
|
14031
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14032
14032
|
};
|
|
14033
14033
|
};
|
|
14034
14034
|
output: {};
|
|
@@ -14040,7 +14040,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14040
14040
|
client_id: string;
|
|
14041
14041
|
redirect_url?: string | undefined;
|
|
14042
14042
|
login_hint?: string | undefined;
|
|
14043
|
-
screen_hint?: "
|
|
14043
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14044
14044
|
};
|
|
14045
14045
|
};
|
|
14046
14046
|
output: {
|
|
@@ -14317,19 +14317,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14317
14317
|
email: string;
|
|
14318
14318
|
send: "code" | "link";
|
|
14319
14319
|
authParams: {
|
|
14320
|
-
username?: string | undefined;
|
|
14321
14320
|
state?: string | undefined;
|
|
14322
|
-
|
|
14323
|
-
code_challenge?: string | undefined;
|
|
14324
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14325
|
-
redirect_uri?: string | undefined;
|
|
14326
|
-
nonce?: string | undefined;
|
|
14327
|
-
act_as?: string | undefined;
|
|
14321
|
+
username?: string | undefined;
|
|
14328
14322
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14329
14323
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14324
|
+
scope?: string | undefined;
|
|
14325
|
+
act_as?: string | undefined;
|
|
14326
|
+
redirect_uri?: string | undefined;
|
|
14330
14327
|
audience?: string | undefined;
|
|
14331
14328
|
organization?: string | undefined;
|
|
14329
|
+
nonce?: string | undefined;
|
|
14332
14330
|
prompt?: string | undefined;
|
|
14331
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14332
|
+
code_challenge?: string | undefined;
|
|
14333
14333
|
ui_locales?: string | undefined;
|
|
14334
14334
|
max_age?: number | undefined;
|
|
14335
14335
|
acr_values?: string | undefined;
|
|
@@ -14353,19 +14353,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14353
14353
|
phone_number: string;
|
|
14354
14354
|
send: "code" | "link";
|
|
14355
14355
|
authParams: {
|
|
14356
|
-
username?: string | undefined;
|
|
14357
14356
|
state?: string | undefined;
|
|
14358
|
-
|
|
14359
|
-
code_challenge?: string | undefined;
|
|
14360
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14361
|
-
redirect_uri?: string | undefined;
|
|
14362
|
-
nonce?: string | undefined;
|
|
14363
|
-
act_as?: string | undefined;
|
|
14357
|
+
username?: string | undefined;
|
|
14364
14358
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14365
14359
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14360
|
+
scope?: string | undefined;
|
|
14361
|
+
act_as?: string | undefined;
|
|
14362
|
+
redirect_uri?: string | undefined;
|
|
14366
14363
|
audience?: string | undefined;
|
|
14367
14364
|
organization?: string | undefined;
|
|
14365
|
+
nonce?: string | undefined;
|
|
14368
14366
|
prompt?: string | undefined;
|
|
14367
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14368
|
+
code_challenge?: string | undefined;
|
|
14369
14369
|
ui_locales?: string | undefined;
|
|
14370
14370
|
max_age?: number | undefined;
|
|
14371
14371
|
acr_values?: string | undefined;
|
|
@@ -16272,7 +16272,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16272
16272
|
$get: {
|
|
16273
16273
|
input: {
|
|
16274
16274
|
param: {
|
|
16275
|
-
screen: "signup" | "
|
|
16275
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16276
16276
|
};
|
|
16277
16277
|
} & {
|
|
16278
16278
|
query: {
|
|
@@ -16288,7 +16288,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16288
16288
|
} | {
|
|
16289
16289
|
input: {
|
|
16290
16290
|
param: {
|
|
16291
|
-
screen: "signup" | "
|
|
16291
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16292
16292
|
};
|
|
16293
16293
|
} & {
|
|
16294
16294
|
query: {
|
|
@@ -16304,7 +16304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16304
16304
|
} | {
|
|
16305
16305
|
input: {
|
|
16306
16306
|
param: {
|
|
16307
|
-
screen: "signup" | "
|
|
16307
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16308
16308
|
};
|
|
16309
16309
|
} & {
|
|
16310
16310
|
query: {
|
|
@@ -16324,7 +16324,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16324
16324
|
$post: {
|
|
16325
16325
|
input: {
|
|
16326
16326
|
param: {
|
|
16327
|
-
screen: "signup" | "login" | "
|
|
16327
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16328
16328
|
};
|
|
16329
16329
|
} & {
|
|
16330
16330
|
query: {
|
|
@@ -16342,7 +16342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16342
16342
|
} | {
|
|
16343
16343
|
input: {
|
|
16344
16344
|
param: {
|
|
16345
|
-
screen: "signup" | "login" | "
|
|
16345
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16346
16346
|
};
|
|
16347
16347
|
} & {
|
|
16348
16348
|
query: {
|
|
@@ -16360,7 +16360,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16360
16360
|
} | {
|
|
16361
16361
|
input: {
|
|
16362
16362
|
param: {
|
|
16363
|
-
screen: "signup" | "login" | "
|
|
16363
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16364
16364
|
};
|
|
16365
16365
|
} & {
|
|
16366
16366
|
query: {
|