authhero 8.5.0 → 8.6.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 +3 -3
- package/dist/authhero.d.ts +118 -86
- package/dist/authhero.mjs +41 -19
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/index.d.ts +86 -86
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/custom-domains.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 +64 -64
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/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/AuthHeroConfig.d.ts +33 -1
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -226,7 +226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
226
226
|
};
|
|
227
227
|
};
|
|
228
228
|
output: {
|
|
229
|
-
name: "email" | "
|
|
229
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
230
230
|
enabled: boolean;
|
|
231
231
|
trial_expired?: boolean | undefined;
|
|
232
232
|
}[];
|
|
@@ -381,7 +381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
381
381
|
$get: {
|
|
382
382
|
input: {
|
|
383
383
|
param: {
|
|
384
|
-
factor_name: "email" | "
|
|
384
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
385
385
|
};
|
|
386
386
|
} & {
|
|
387
387
|
header: {
|
|
@@ -389,7 +389,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
389
389
|
};
|
|
390
390
|
};
|
|
391
391
|
output: {
|
|
392
|
-
name: "email" | "
|
|
392
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
393
393
|
enabled: boolean;
|
|
394
394
|
trial_expired?: boolean | undefined;
|
|
395
395
|
};
|
|
@@ -402,7 +402,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
402
402
|
$put: {
|
|
403
403
|
input: {
|
|
404
404
|
param: {
|
|
405
|
-
factor_name: "email" | "
|
|
405
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
406
406
|
};
|
|
407
407
|
} & {
|
|
408
408
|
header: {
|
|
@@ -414,7 +414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
414
414
|
};
|
|
415
415
|
};
|
|
416
416
|
output: {
|
|
417
|
-
name: "email" | "
|
|
417
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
418
418
|
enabled: boolean;
|
|
419
419
|
trial_expired?: boolean | undefined;
|
|
420
420
|
};
|
|
@@ -1163,8 +1163,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1163
1163
|
connection_id?: string | undefined;
|
|
1164
1164
|
app_metadata?: Record<string, any> | undefined;
|
|
1165
1165
|
user_metadata?: Record<string, any> | undefined;
|
|
1166
|
-
ttl_sec?: number | undefined;
|
|
1167
1166
|
roles?: string[] | undefined;
|
|
1167
|
+
ttl_sec?: number | undefined;
|
|
1168
1168
|
send_invitation_email?: boolean | undefined;
|
|
1169
1169
|
};
|
|
1170
1170
|
};
|
|
@@ -2014,7 +2014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2014
2014
|
type: "REDIRECT";
|
|
2015
2015
|
action: "REDIRECT_USER";
|
|
2016
2016
|
params: {
|
|
2017
|
-
target: "custom" | "
|
|
2017
|
+
target: "custom" | "change-email" | "account";
|
|
2018
2018
|
custom_url?: string | undefined;
|
|
2019
2019
|
};
|
|
2020
2020
|
alias?: string | undefined;
|
|
@@ -2067,7 +2067,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2067
2067
|
type: "REDIRECT";
|
|
2068
2068
|
action: "REDIRECT_USER";
|
|
2069
2069
|
params: {
|
|
2070
|
-
target: "custom" | "
|
|
2070
|
+
target: "custom" | "change-email" | "account";
|
|
2071
2071
|
custom_url?: string | undefined;
|
|
2072
2072
|
};
|
|
2073
2073
|
alias?: string | undefined;
|
|
@@ -2135,7 +2135,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2135
2135
|
type: "REDIRECT";
|
|
2136
2136
|
action: "REDIRECT_USER";
|
|
2137
2137
|
params: {
|
|
2138
|
-
target: "custom" | "
|
|
2138
|
+
target: "custom" | "change-email" | "account";
|
|
2139
2139
|
custom_url?: string | undefined;
|
|
2140
2140
|
};
|
|
2141
2141
|
alias?: string | undefined;
|
|
@@ -2216,7 +2216,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2216
2216
|
type: "REDIRECT";
|
|
2217
2217
|
action: "REDIRECT_USER";
|
|
2218
2218
|
params: {
|
|
2219
|
-
target: "custom" | "
|
|
2219
|
+
target: "custom" | "change-email" | "account";
|
|
2220
2220
|
custom_url?: string | undefined;
|
|
2221
2221
|
};
|
|
2222
2222
|
alias?: string | undefined;
|
|
@@ -2264,7 +2264,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2264
2264
|
type: "REDIRECT";
|
|
2265
2265
|
action: "REDIRECT_USER";
|
|
2266
2266
|
params: {
|
|
2267
|
-
target: "custom" | "
|
|
2267
|
+
target: "custom" | "change-email" | "account";
|
|
2268
2268
|
custom_url?: string | undefined;
|
|
2269
2269
|
};
|
|
2270
2270
|
alias?: string | undefined;
|
|
@@ -2324,7 +2324,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2324
2324
|
type: "REDIRECT";
|
|
2325
2325
|
action: "REDIRECT_USER";
|
|
2326
2326
|
params: {
|
|
2327
|
-
target: "custom" | "
|
|
2327
|
+
target: "custom" | "change-email" | "account";
|
|
2328
2328
|
custom_url?: string | undefined;
|
|
2329
2329
|
};
|
|
2330
2330
|
alias?: string | undefined;
|
|
@@ -2372,7 +2372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2372
2372
|
type: "REDIRECT";
|
|
2373
2373
|
action: "REDIRECT_USER";
|
|
2374
2374
|
params: {
|
|
2375
|
-
target: "custom" | "
|
|
2375
|
+
target: "custom" | "change-email" | "account";
|
|
2376
2376
|
custom_url?: string | undefined;
|
|
2377
2377
|
};
|
|
2378
2378
|
alias?: string | undefined;
|
|
@@ -6650,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6650
6650
|
};
|
|
6651
6651
|
};
|
|
6652
6652
|
output: {
|
|
6653
|
-
prompt: "signup" | "status" | "
|
|
6653
|
+
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";
|
|
6654
6654
|
language: string;
|
|
6655
6655
|
}[];
|
|
6656
6656
|
outputFormat: "json";
|
|
@@ -6688,7 +6688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6688
6688
|
$get: {
|
|
6689
6689
|
input: {
|
|
6690
6690
|
param: {
|
|
6691
|
-
prompt: "signup" | "status" | "
|
|
6691
|
+
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";
|
|
6692
6692
|
language: string;
|
|
6693
6693
|
};
|
|
6694
6694
|
} & {
|
|
@@ -6710,7 +6710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6710
6710
|
$put: {
|
|
6711
6711
|
input: {
|
|
6712
6712
|
param: {
|
|
6713
|
-
prompt: "signup" | "status" | "
|
|
6713
|
+
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";
|
|
6714
6714
|
language: string;
|
|
6715
6715
|
};
|
|
6716
6716
|
} & {
|
|
@@ -6734,7 +6734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6734
6734
|
$delete: {
|
|
6735
6735
|
input: {
|
|
6736
6736
|
param: {
|
|
6737
|
-
prompt: "signup" | "status" | "
|
|
6737
|
+
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";
|
|
6738
6738
|
language: string;
|
|
6739
6739
|
};
|
|
6740
6740
|
} & {
|
|
@@ -8235,7 +8235,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8235
8235
|
log_type: string;
|
|
8236
8236
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8237
8237
|
actor: {
|
|
8238
|
-
type: "
|
|
8238
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8239
8239
|
id?: string | undefined;
|
|
8240
8240
|
email?: string | undefined;
|
|
8241
8241
|
org_id?: string | undefined;
|
|
@@ -8543,7 +8543,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8543
8543
|
created_at: string;
|
|
8544
8544
|
updated_at: string;
|
|
8545
8545
|
name: string;
|
|
8546
|
-
provider: "auth0" | "
|
|
8546
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8547
8547
|
connection: string;
|
|
8548
8548
|
enabled: boolean;
|
|
8549
8549
|
credentials: {
|
|
@@ -8575,7 +8575,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8575
8575
|
created_at: string;
|
|
8576
8576
|
updated_at: string;
|
|
8577
8577
|
name: string;
|
|
8578
|
-
provider: "auth0" | "
|
|
8578
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8579
8579
|
connection: string;
|
|
8580
8580
|
enabled: boolean;
|
|
8581
8581
|
credentials: {
|
|
@@ -8601,7 +8601,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8601
8601
|
} & {
|
|
8602
8602
|
json: {
|
|
8603
8603
|
name: string;
|
|
8604
|
-
provider: "auth0" | "
|
|
8604
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8605
8605
|
connection: string;
|
|
8606
8606
|
credentials: {
|
|
8607
8607
|
domain: string;
|
|
@@ -8618,7 +8618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8618
8618
|
created_at: string;
|
|
8619
8619
|
updated_at: string;
|
|
8620
8620
|
name: string;
|
|
8621
|
-
provider: "auth0" | "
|
|
8621
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8622
8622
|
connection: string;
|
|
8623
8623
|
enabled: boolean;
|
|
8624
8624
|
credentials: {
|
|
@@ -8649,7 +8649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8649
8649
|
json: {
|
|
8650
8650
|
id?: string | undefined;
|
|
8651
8651
|
name?: string | undefined;
|
|
8652
|
-
provider?: "auth0" | "
|
|
8652
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8653
8653
|
connection?: string | undefined;
|
|
8654
8654
|
enabled?: boolean | undefined;
|
|
8655
8655
|
credentials?: {
|
|
@@ -8665,7 +8665,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8665
8665
|
created_at: string;
|
|
8666
8666
|
updated_at: string;
|
|
8667
8667
|
name: string;
|
|
8668
|
-
provider: "auth0" | "
|
|
8668
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8669
8669
|
connection: string;
|
|
8670
8670
|
enabled: boolean;
|
|
8671
8671
|
credentials: {
|
|
@@ -8883,7 +8883,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8883
8883
|
};
|
|
8884
8884
|
};
|
|
8885
8885
|
output: {
|
|
8886
|
-
type: "
|
|
8886
|
+
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" | "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" | "fh" | "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";
|
|
8887
8887
|
date: string;
|
|
8888
8888
|
isMobile: boolean;
|
|
8889
8889
|
log_id: string;
|
|
@@ -8922,7 +8922,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8922
8922
|
limit: number;
|
|
8923
8923
|
length: number;
|
|
8924
8924
|
logs: {
|
|
8925
|
-
type: "
|
|
8925
|
+
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" | "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" | "fh" | "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";
|
|
8926
8926
|
date: string;
|
|
8927
8927
|
isMobile: boolean;
|
|
8928
8928
|
log_id: string;
|
|
@@ -8976,7 +8976,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8976
8976
|
};
|
|
8977
8977
|
};
|
|
8978
8978
|
output: {
|
|
8979
|
-
type: "
|
|
8979
|
+
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" | "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" | "fh" | "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";
|
|
8980
8980
|
date: string;
|
|
8981
8981
|
isMobile: boolean;
|
|
8982
8982
|
log_id: string;
|
|
@@ -9332,7 +9332,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9332
9332
|
client_id: string;
|
|
9333
9333
|
description?: string | undefined;
|
|
9334
9334
|
client_secret?: string | undefined;
|
|
9335
|
-
app_type?: "
|
|
9335
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9336
9336
|
logo_uri?: string | undefined;
|
|
9337
9337
|
callbacks?: string[] | undefined;
|
|
9338
9338
|
allowed_origins?: string[] | undefined;
|
|
@@ -9428,7 +9428,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9428
9428
|
client_id: string;
|
|
9429
9429
|
description?: string | undefined;
|
|
9430
9430
|
client_secret?: string | undefined;
|
|
9431
|
-
app_type?: "
|
|
9431
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9432
9432
|
logo_uri?: string | undefined;
|
|
9433
9433
|
callbacks?: string[] | undefined;
|
|
9434
9434
|
allowed_origins?: string[] | undefined;
|
|
@@ -9539,7 +9539,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9539
9539
|
client_id: string;
|
|
9540
9540
|
description?: string | undefined;
|
|
9541
9541
|
client_secret?: string | undefined;
|
|
9542
|
-
app_type?: "
|
|
9542
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9543
9543
|
logo_uri?: string | undefined;
|
|
9544
9544
|
callbacks?: string[] | undefined;
|
|
9545
9545
|
allowed_origins?: string[] | undefined;
|
|
@@ -9654,7 +9654,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9654
9654
|
description?: string | undefined;
|
|
9655
9655
|
global?: boolean | undefined;
|
|
9656
9656
|
client_secret?: string | undefined;
|
|
9657
|
-
app_type?: "
|
|
9657
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9658
9658
|
logo_uri?: string | undefined;
|
|
9659
9659
|
is_first_party?: boolean | undefined;
|
|
9660
9660
|
oidc_conformant?: boolean | undefined;
|
|
@@ -9729,7 +9729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9729
9729
|
client_id: string;
|
|
9730
9730
|
description?: string | undefined;
|
|
9731
9731
|
client_secret?: string | undefined;
|
|
9732
|
-
app_type?: "
|
|
9732
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9733
9733
|
logo_uri?: string | undefined;
|
|
9734
9734
|
callbacks?: string[] | undefined;
|
|
9735
9735
|
allowed_origins?: string[] | undefined;
|
|
@@ -9823,7 +9823,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9823
9823
|
description?: string | undefined;
|
|
9824
9824
|
global?: boolean | undefined;
|
|
9825
9825
|
client_secret?: string | undefined;
|
|
9826
|
-
app_type?: "
|
|
9826
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9827
9827
|
logo_uri?: string | undefined;
|
|
9828
9828
|
is_first_party?: boolean | undefined;
|
|
9829
9829
|
oidc_conformant?: boolean | undefined;
|
|
@@ -9898,7 +9898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9898
9898
|
client_id: string;
|
|
9899
9899
|
description?: string | undefined;
|
|
9900
9900
|
client_secret?: string | undefined;
|
|
9901
|
-
app_type?: "
|
|
9901
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9902
9902
|
logo_uri?: string | undefined;
|
|
9903
9903
|
callbacks?: string[] | undefined;
|
|
9904
9904
|
allowed_origins?: string[] | undefined;
|
|
@@ -11194,7 +11194,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11194
11194
|
};
|
|
11195
11195
|
};
|
|
11196
11196
|
output: {
|
|
11197
|
-
type: "
|
|
11197
|
+
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" | "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" | "fh" | "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";
|
|
11198
11198
|
date: string;
|
|
11199
11199
|
isMobile: boolean;
|
|
11200
11200
|
log_id: string;
|
|
@@ -11233,7 +11233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11233
11233
|
limit: number;
|
|
11234
11234
|
length: number;
|
|
11235
11235
|
logs: {
|
|
11236
|
-
type: "
|
|
11236
|
+
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" | "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" | "fh" | "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";
|
|
11237
11237
|
date: string;
|
|
11238
11238
|
isMobile: boolean;
|
|
11239
11239
|
log_id: string;
|
|
@@ -11548,7 +11548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11548
11548
|
};
|
|
11549
11549
|
} & {
|
|
11550
11550
|
json: {
|
|
11551
|
-
template: "
|
|
11551
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11552
11552
|
body: string;
|
|
11553
11553
|
from: string;
|
|
11554
11554
|
subject: string;
|
|
@@ -11569,7 +11569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11569
11569
|
};
|
|
11570
11570
|
} & {
|
|
11571
11571
|
json: {
|
|
11572
|
-
template: "
|
|
11572
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11573
11573
|
body: string;
|
|
11574
11574
|
from: string;
|
|
11575
11575
|
subject: string;
|
|
@@ -11581,7 +11581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11581
11581
|
};
|
|
11582
11582
|
};
|
|
11583
11583
|
output: {
|
|
11584
|
-
template: "
|
|
11584
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11585
11585
|
body: string;
|
|
11586
11586
|
from: string;
|
|
11587
11587
|
subject: string;
|
|
@@ -11604,7 +11604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11604
11604
|
};
|
|
11605
11605
|
};
|
|
11606
11606
|
output: {
|
|
11607
|
-
name: "
|
|
11607
|
+
name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11608
11608
|
body: string;
|
|
11609
11609
|
subject: string;
|
|
11610
11610
|
}[];
|
|
@@ -11617,7 +11617,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11617
11617
|
$get: {
|
|
11618
11618
|
input: {
|
|
11619
11619
|
param: {
|
|
11620
|
-
templateName: "
|
|
11620
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11621
11621
|
};
|
|
11622
11622
|
} & {
|
|
11623
11623
|
header: {
|
|
@@ -11630,7 +11630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11630
11630
|
} | {
|
|
11631
11631
|
input: {
|
|
11632
11632
|
param: {
|
|
11633
|
-
templateName: "
|
|
11633
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11634
11634
|
};
|
|
11635
11635
|
} & {
|
|
11636
11636
|
header: {
|
|
@@ -11638,7 +11638,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11638
11638
|
};
|
|
11639
11639
|
};
|
|
11640
11640
|
output: {
|
|
11641
|
-
template: "
|
|
11641
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11642
11642
|
body: string;
|
|
11643
11643
|
from: string;
|
|
11644
11644
|
subject: string;
|
|
@@ -11657,7 +11657,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11657
11657
|
$put: {
|
|
11658
11658
|
input: {
|
|
11659
11659
|
param: {
|
|
11660
|
-
templateName: "
|
|
11660
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11661
11661
|
};
|
|
11662
11662
|
} & {
|
|
11663
11663
|
header: {
|
|
@@ -11665,7 +11665,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11665
11665
|
};
|
|
11666
11666
|
} & {
|
|
11667
11667
|
json: {
|
|
11668
|
-
template: "
|
|
11668
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11669
11669
|
body: string;
|
|
11670
11670
|
subject: string;
|
|
11671
11671
|
syntax?: "liquid" | undefined;
|
|
@@ -11677,7 +11677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11677
11677
|
};
|
|
11678
11678
|
};
|
|
11679
11679
|
output: {
|
|
11680
|
-
template: "
|
|
11680
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11681
11681
|
body: string;
|
|
11682
11682
|
from: string;
|
|
11683
11683
|
subject: string;
|
|
@@ -11696,7 +11696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11696
11696
|
$patch: {
|
|
11697
11697
|
input: {
|
|
11698
11698
|
param: {
|
|
11699
|
-
templateName: "
|
|
11699
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11700
11700
|
};
|
|
11701
11701
|
} & {
|
|
11702
11702
|
header: {
|
|
@@ -11704,7 +11704,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11704
11704
|
};
|
|
11705
11705
|
} & {
|
|
11706
11706
|
json: {
|
|
11707
|
-
template?: "
|
|
11707
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11708
11708
|
body?: string | undefined;
|
|
11709
11709
|
from?: string | undefined;
|
|
11710
11710
|
subject?: string | undefined;
|
|
@@ -11721,7 +11721,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11721
11721
|
} | {
|
|
11722
11722
|
input: {
|
|
11723
11723
|
param: {
|
|
11724
|
-
templateName: "
|
|
11724
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11725
11725
|
};
|
|
11726
11726
|
} & {
|
|
11727
11727
|
header: {
|
|
@@ -11729,7 +11729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11729
11729
|
};
|
|
11730
11730
|
} & {
|
|
11731
11731
|
json: {
|
|
11732
|
-
template?: "
|
|
11732
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11733
11733
|
body?: string | undefined;
|
|
11734
11734
|
from?: string | undefined;
|
|
11735
11735
|
subject?: string | undefined;
|
|
@@ -11741,7 +11741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11741
11741
|
};
|
|
11742
11742
|
};
|
|
11743
11743
|
output: {
|
|
11744
|
-
template: "
|
|
11744
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11745
11745
|
body: string;
|
|
11746
11746
|
from: string;
|
|
11747
11747
|
subject: string;
|
|
@@ -11760,7 +11760,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11760
11760
|
$delete: {
|
|
11761
11761
|
input: {
|
|
11762
11762
|
param: {
|
|
11763
|
-
templateName: "
|
|
11763
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11764
11764
|
};
|
|
11765
11765
|
} & {
|
|
11766
11766
|
header: {
|
|
@@ -11773,7 +11773,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11773
11773
|
} | {
|
|
11774
11774
|
input: {
|
|
11775
11775
|
param: {
|
|
11776
|
-
templateName: "
|
|
11776
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11777
11777
|
};
|
|
11778
11778
|
} & {
|
|
11779
11779
|
header: {
|
|
@@ -11790,7 +11790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11790
11790
|
$post: {
|
|
11791
11791
|
input: {
|
|
11792
11792
|
param: {
|
|
11793
|
-
templateName: "
|
|
11793
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11794
11794
|
};
|
|
11795
11795
|
} & {
|
|
11796
11796
|
header: {
|
|
@@ -12075,7 +12075,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12075
12075
|
primary: boolean;
|
|
12076
12076
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12077
12077
|
verification_method?: "txt" | undefined;
|
|
12078
|
-
custom_client_ip_header?: "null" | "
|
|
12078
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12079
12079
|
domain_metadata?: {
|
|
12080
12080
|
[x: string]: string;
|
|
12081
12081
|
} | undefined;
|
|
@@ -12116,7 +12116,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12116
12116
|
primary: boolean;
|
|
12117
12117
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12118
12118
|
verification_method?: "txt" | undefined;
|
|
12119
|
-
custom_client_ip_header?: "null" | "
|
|
12119
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12120
12120
|
domain_metadata?: {
|
|
12121
12121
|
[x: string]: string;
|
|
12122
12122
|
} | undefined;
|
|
@@ -12169,7 +12169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12169
12169
|
} & {
|
|
12170
12170
|
json: {
|
|
12171
12171
|
tls_policy?: "recommended" | undefined;
|
|
12172
|
-
custom_client_ip_header?: "null" | "
|
|
12172
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12173
12173
|
domain_metadata?: Record<string, string> | undefined;
|
|
12174
12174
|
};
|
|
12175
12175
|
};
|
|
@@ -12180,7 +12180,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12180
12180
|
primary: boolean;
|
|
12181
12181
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12182
12182
|
verification_method?: "txt" | undefined;
|
|
12183
|
-
custom_client_ip_header?: "null" | "
|
|
12183
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12184
12184
|
domain_metadata?: {
|
|
12185
12185
|
[x: string]: string;
|
|
12186
12186
|
} | undefined;
|
|
@@ -12216,7 +12216,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12216
12216
|
custom_domain_id?: string | undefined;
|
|
12217
12217
|
verification_method?: "txt" | undefined;
|
|
12218
12218
|
tls_policy?: "recommended" | undefined;
|
|
12219
|
-
custom_client_ip_header?: "null" | "
|
|
12219
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12220
12220
|
domain_metadata?: Record<string, string> | undefined;
|
|
12221
12221
|
};
|
|
12222
12222
|
};
|
|
@@ -12227,7 +12227,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12227
12227
|
primary: boolean;
|
|
12228
12228
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12229
12229
|
verification_method?: "txt" | undefined;
|
|
12230
|
-
custom_client_ip_header?: "null" | "
|
|
12230
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12231
12231
|
domain_metadata?: {
|
|
12232
12232
|
[x: string]: string;
|
|
12233
12233
|
} | undefined;
|
|
@@ -12273,7 +12273,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12273
12273
|
primary: boolean;
|
|
12274
12274
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12275
12275
|
verification_method?: "txt" | undefined;
|
|
12276
|
-
custom_client_ip_header?: "null" | "
|
|
12276
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12277
12277
|
domain_metadata?: {
|
|
12278
12278
|
[x: string]: string;
|
|
12279
12279
|
} | undefined;
|
|
@@ -12314,7 +12314,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12314
12314
|
primary: boolean;
|
|
12315
12315
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12316
12316
|
verification_method?: "txt" | undefined;
|
|
12317
|
-
custom_client_ip_header?: "null" | "
|
|
12317
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12318
12318
|
domain_metadata?: {
|
|
12319
12319
|
[x: string]: string;
|
|
12320
12320
|
} | undefined;
|
|
@@ -12919,7 +12919,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12919
12919
|
logs: {
|
|
12920
12920
|
action_name: string;
|
|
12921
12921
|
lines: {
|
|
12922
|
-
level: "log" | "error" | "info" | "
|
|
12922
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
12923
12923
|
message: string;
|
|
12924
12924
|
}[];
|
|
12925
12925
|
}[];
|
|
@@ -13586,7 +13586,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13586
13586
|
args: import("hono/utils/types").JSONValue[];
|
|
13587
13587
|
}[];
|
|
13588
13588
|
logs: {
|
|
13589
|
-
level: "log" | "error" | "info" | "
|
|
13589
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13590
13590
|
message: string;
|
|
13591
13591
|
}[];
|
|
13592
13592
|
error?: string | undefined;
|
|
@@ -14030,7 +14030,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14030
14030
|
client_id: string;
|
|
14031
14031
|
redirect_url?: string | undefined;
|
|
14032
14032
|
login_hint?: string | undefined;
|
|
14033
|
-
screen_hint?: "
|
|
14033
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14034
14034
|
};
|
|
14035
14035
|
};
|
|
14036
14036
|
output: {};
|
|
@@ -14042,7 +14042,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14042
14042
|
client_id: string;
|
|
14043
14043
|
redirect_url?: string | undefined;
|
|
14044
14044
|
login_hint?: string | undefined;
|
|
14045
|
-
screen_hint?: "
|
|
14045
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14046
14046
|
};
|
|
14047
14047
|
};
|
|
14048
14048
|
output: {
|
|
@@ -14319,18 +14319,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14319
14319
|
email: string;
|
|
14320
14320
|
send: "code" | "link";
|
|
14321
14321
|
authParams: {
|
|
14322
|
-
state?: string | undefined;
|
|
14323
14322
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14324
14323
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14325
14324
|
scope?: string | undefined;
|
|
14326
14325
|
username?: string | undefined;
|
|
14327
|
-
|
|
14328
|
-
organization?: string | undefined;
|
|
14326
|
+
audience?: string | undefined;
|
|
14329
14327
|
code_challenge?: string | undefined;
|
|
14330
14328
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14331
14329
|
redirect_uri?: string | undefined;
|
|
14330
|
+
nonce?: string | undefined;
|
|
14331
|
+
state?: string | undefined;
|
|
14332
14332
|
act_as?: string | undefined;
|
|
14333
|
-
|
|
14333
|
+
organization?: string | undefined;
|
|
14334
14334
|
prompt?: string | undefined;
|
|
14335
14335
|
ui_locales?: string | undefined;
|
|
14336
14336
|
max_age?: number | undefined;
|
|
@@ -14355,18 +14355,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14355
14355
|
phone_number: string;
|
|
14356
14356
|
send: "code" | "link";
|
|
14357
14357
|
authParams: {
|
|
14358
|
-
state?: string | undefined;
|
|
14359
14358
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14360
14359
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14361
14360
|
scope?: string | undefined;
|
|
14362
14361
|
username?: string | undefined;
|
|
14363
|
-
|
|
14364
|
-
organization?: string | undefined;
|
|
14362
|
+
audience?: string | undefined;
|
|
14365
14363
|
code_challenge?: string | undefined;
|
|
14366
14364
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14367
14365
|
redirect_uri?: string | undefined;
|
|
14366
|
+
nonce?: string | undefined;
|
|
14367
|
+
state?: string | undefined;
|
|
14368
14368
|
act_as?: string | undefined;
|
|
14369
|
-
|
|
14369
|
+
organization?: string | undefined;
|
|
14370
14370
|
prompt?: string | undefined;
|
|
14371
14371
|
ui_locales?: string | undefined;
|
|
14372
14372
|
max_age?: number | undefined;
|
|
@@ -14499,14 +14499,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14499
14499
|
input: {
|
|
14500
14500
|
form: {
|
|
14501
14501
|
token: string;
|
|
14502
|
-
token_type_hint?: "
|
|
14502
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14503
14503
|
client_id?: string | undefined;
|
|
14504
14504
|
client_secret?: string | undefined;
|
|
14505
14505
|
};
|
|
14506
14506
|
} & {
|
|
14507
14507
|
json: {
|
|
14508
14508
|
token: string;
|
|
14509
|
-
token_type_hint?: "
|
|
14509
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14510
14510
|
client_id?: string | undefined;
|
|
14511
14511
|
client_secret?: string | undefined;
|
|
14512
14512
|
};
|
|
@@ -14518,14 +14518,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14518
14518
|
input: {
|
|
14519
14519
|
form: {
|
|
14520
14520
|
token: string;
|
|
14521
|
-
token_type_hint?: "
|
|
14521
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14522
14522
|
client_id?: string | undefined;
|
|
14523
14523
|
client_secret?: string | undefined;
|
|
14524
14524
|
};
|
|
14525
14525
|
} & {
|
|
14526
14526
|
json: {
|
|
14527
14527
|
token: string;
|
|
14528
|
-
token_type_hint?: "
|
|
14528
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14529
14529
|
client_id?: string | undefined;
|
|
14530
14530
|
client_secret?: string | undefined;
|
|
14531
14531
|
};
|
|
@@ -14540,14 +14540,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14540
14540
|
input: {
|
|
14541
14541
|
form: {
|
|
14542
14542
|
token: string;
|
|
14543
|
-
token_type_hint?: "
|
|
14543
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14544
14544
|
client_id?: string | undefined;
|
|
14545
14545
|
client_secret?: string | undefined;
|
|
14546
14546
|
};
|
|
14547
14547
|
} & {
|
|
14548
14548
|
json: {
|
|
14549
14549
|
token: string;
|
|
14550
|
-
token_type_hint?: "
|
|
14550
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14551
14551
|
client_id?: string | undefined;
|
|
14552
14552
|
client_secret?: string | undefined;
|
|
14553
14553
|
};
|
|
@@ -16274,7 +16274,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16274
16274
|
$get: {
|
|
16275
16275
|
input: {
|
|
16276
16276
|
param: {
|
|
16277
|
-
screen: "signup" | "login" | "
|
|
16277
|
+
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";
|
|
16278
16278
|
};
|
|
16279
16279
|
} & {
|
|
16280
16280
|
query: {
|
|
@@ -16290,7 +16290,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16290
16290
|
} | {
|
|
16291
16291
|
input: {
|
|
16292
16292
|
param: {
|
|
16293
|
-
screen: "signup" | "login" | "
|
|
16293
|
+
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";
|
|
16294
16294
|
};
|
|
16295
16295
|
} & {
|
|
16296
16296
|
query: {
|
|
@@ -16306,7 +16306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16306
16306
|
} | {
|
|
16307
16307
|
input: {
|
|
16308
16308
|
param: {
|
|
16309
|
-
screen: "signup" | "login" | "
|
|
16309
|
+
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";
|
|
16310
16310
|
};
|
|
16311
16311
|
} & {
|
|
16312
16312
|
query: {
|
|
@@ -16326,7 +16326,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16326
16326
|
$post: {
|
|
16327
16327
|
input: {
|
|
16328
16328
|
param: {
|
|
16329
|
-
screen: "signup" | "login" | "
|
|
16329
|
+
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";
|
|
16330
16330
|
};
|
|
16331
16331
|
} & {
|
|
16332
16332
|
query: {
|
|
@@ -16344,7 +16344,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16344
16344
|
} | {
|
|
16345
16345
|
input: {
|
|
16346
16346
|
param: {
|
|
16347
|
-
screen: "signup" | "login" | "
|
|
16347
|
+
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";
|
|
16348
16348
|
};
|
|
16349
16349
|
} & {
|
|
16350
16350
|
query: {
|
|
@@ -16362,7 +16362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16362
16362
|
} | {
|
|
16363
16363
|
input: {
|
|
16364
16364
|
param: {
|
|
16365
|
-
screen: "signup" | "login" | "
|
|
16365
|
+
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";
|
|
16366
16366
|
};
|
|
16367
16367
|
} & {
|
|
16368
16368
|
query: {
|