authhero 8.2.0 → 8.2.1
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 +96 -96
- package/dist/authhero.d.ts +111 -86
- package/dist/authhero.mjs +9464 -9394
- 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/helpers/compose-auth-data.d.ts +9 -1
- package/dist/types/helpers/server-timing.d.ts +44 -2
- package/dist/types/index.d.ts +86 -86
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/management-api/actions.d.ts +3 -3
- 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/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +64 -64
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- 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 +2 -2
- 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/Bindings.d.ts +21 -0
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/types/Variables.d.ts +4 -0
- package/package.json +3 -3
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" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
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: "
|
|
227
|
+
name: "otp" | "email" | "sms" | "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: "
|
|
382
|
+
factor_name: "otp" | "email" | "sms" | "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: "
|
|
390
|
+
name: "otp" | "email" | "sms" | "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: "
|
|
403
|
+
factor_name: "otp" | "email" | "sms" | "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: "
|
|
415
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
enabled: boolean;
|
|
417
417
|
trial_expired?: boolean | undefined;
|
|
418
418
|
};
|
|
@@ -1158,9 +1158,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1158
1158
|
email?: string | undefined;
|
|
1159
1159
|
};
|
|
1160
1160
|
id?: string | undefined;
|
|
1161
|
+
connection_id?: string | undefined;
|
|
1161
1162
|
app_metadata?: Record<string, any> | undefined;
|
|
1162
1163
|
user_metadata?: Record<string, any> | undefined;
|
|
1163
|
-
connection_id?: string | undefined;
|
|
1164
1164
|
roles?: string[] | undefined;
|
|
1165
1165
|
ttl_sec?: number | undefined;
|
|
1166
1166
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1345,8 +1345,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1345
1345
|
};
|
|
1346
1346
|
} & {
|
|
1347
1347
|
json: {
|
|
1348
|
-
show_as_button?: boolean | undefined;
|
|
1349
1348
|
assign_membership_on_login?: boolean | undefined;
|
|
1349
|
+
show_as_button?: boolean | undefined;
|
|
1350
1350
|
is_signup_enabled?: boolean | undefined;
|
|
1351
1351
|
};
|
|
1352
1352
|
};
|
|
@@ -6648,7 +6648,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6648
6648
|
};
|
|
6649
6649
|
};
|
|
6650
6650
|
output: {
|
|
6651
|
-
prompt: "
|
|
6651
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "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: "login" | "mfa" | "organizations" | "status" | "signup" | "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: "login" | "mfa" | "organizations" | "status" | "signup" | "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: "login" | "mfa" | "organizations" | "status" | "signup" | "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: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8237
8237
|
id?: string | undefined;
|
|
8238
8238
|
email?: string | undefined;
|
|
8239
8239
|
org_id?: string | undefined;
|
|
@@ -8711,7 +8711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8711
8711
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8712
8712
|
};
|
|
8713
8713
|
id: string;
|
|
8714
|
-
status: "
|
|
8714
|
+
status: "suspended" | "active" | "paused";
|
|
8715
8715
|
filters?: {
|
|
8716
8716
|
type: string;
|
|
8717
8717
|
name: string;
|
|
@@ -8743,7 +8743,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8743
8743
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8744
8744
|
};
|
|
8745
8745
|
id: string;
|
|
8746
|
-
status: "
|
|
8746
|
+
status: "suspended" | "active" | "paused";
|
|
8747
8747
|
filters?: {
|
|
8748
8748
|
type: string;
|
|
8749
8749
|
name: string;
|
|
@@ -8768,7 +8768,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8768
8768
|
name: string;
|
|
8769
8769
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8770
8770
|
sink: Record<string, unknown>;
|
|
8771
|
-
status?: "
|
|
8771
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8772
8772
|
filters?: {
|
|
8773
8773
|
type: string;
|
|
8774
8774
|
name: string;
|
|
@@ -8783,7 +8783,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8783
8783
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8784
8784
|
};
|
|
8785
8785
|
id: string;
|
|
8786
|
-
status: "
|
|
8786
|
+
status: "suspended" | "active" | "paused";
|
|
8787
8787
|
filters?: {
|
|
8788
8788
|
type: string;
|
|
8789
8789
|
name: string;
|
|
@@ -8818,7 +8818,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8818
8818
|
}[] | undefined;
|
|
8819
8819
|
isPriority?: boolean | undefined;
|
|
8820
8820
|
id?: string | undefined;
|
|
8821
|
-
status?: "
|
|
8821
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8822
8822
|
created_at?: string | undefined;
|
|
8823
8823
|
updated_at?: string | undefined;
|
|
8824
8824
|
};
|
|
@@ -8830,7 +8830,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8830
8830
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8831
8831
|
};
|
|
8832
8832
|
id: string;
|
|
8833
|
-
status: "
|
|
8833
|
+
status: "suspended" | "active" | "paused";
|
|
8834
8834
|
filters?: {
|
|
8835
8835
|
type: string;
|
|
8836
8836
|
name: string;
|
|
@@ -8881,7 +8881,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8881
8881
|
};
|
|
8882
8882
|
};
|
|
8883
8883
|
output: {
|
|
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" | "
|
|
8884
|
+
type: "s" | "w" | "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" | "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" | "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: "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" | "
|
|
8923
|
+
type: "s" | "w" | "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" | "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" | "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: "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" | "
|
|
8977
|
+
type: "s" | "w" | "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" | "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" | "wn" | "wum";
|
|
8978
8978
|
date: string;
|
|
8979
8979
|
isMobile: boolean;
|
|
8980
8980
|
log_id: string;
|
|
@@ -9129,7 +9129,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9129
9129
|
audience?: string | undefined;
|
|
9130
9130
|
client_id?: string | undefined;
|
|
9131
9131
|
allow_any_organization?: string | undefined;
|
|
9132
|
-
subject_type?: "
|
|
9132
|
+
subject_type?: "client" | "user" | undefined;
|
|
9133
9133
|
};
|
|
9134
9134
|
} & {
|
|
9135
9135
|
header: {
|
|
@@ -9144,7 +9144,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9144
9144
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9145
9145
|
allow_any_organization?: boolean | undefined;
|
|
9146
9146
|
is_system?: boolean | undefined;
|
|
9147
|
-
subject_type?: "
|
|
9147
|
+
subject_type?: "client" | "user" | undefined;
|
|
9148
9148
|
authorization_details_types?: string[] | undefined;
|
|
9149
9149
|
created_at?: string | undefined;
|
|
9150
9150
|
updated_at?: string | undefined;
|
|
@@ -9160,7 +9160,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9160
9160
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9161
9161
|
allow_any_organization?: boolean | undefined;
|
|
9162
9162
|
is_system?: boolean | undefined;
|
|
9163
|
-
subject_type?: "
|
|
9163
|
+
subject_type?: "client" | "user" | undefined;
|
|
9164
9164
|
authorization_details_types?: string[] | undefined;
|
|
9165
9165
|
created_at?: string | undefined;
|
|
9166
9166
|
updated_at?: string | undefined;
|
|
@@ -9191,7 +9191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9191
9191
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9192
9192
|
allow_any_organization?: boolean | undefined;
|
|
9193
9193
|
is_system?: boolean | undefined;
|
|
9194
|
-
subject_type?: "
|
|
9194
|
+
subject_type?: "client" | "user" | undefined;
|
|
9195
9195
|
authorization_details_types?: string[] | undefined;
|
|
9196
9196
|
created_at?: string | undefined;
|
|
9197
9197
|
updated_at?: string | undefined;
|
|
@@ -9236,7 +9236,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9236
9236
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9237
9237
|
allow_any_organization?: boolean | undefined;
|
|
9238
9238
|
is_system?: boolean | undefined;
|
|
9239
|
-
subject_type?: "
|
|
9239
|
+
subject_type?: "client" | "user" | undefined;
|
|
9240
9240
|
authorization_details_types?: string[] | undefined;
|
|
9241
9241
|
};
|
|
9242
9242
|
};
|
|
@@ -9248,7 +9248,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9248
9248
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9249
9249
|
allow_any_organization?: boolean | undefined;
|
|
9250
9250
|
is_system?: boolean | undefined;
|
|
9251
|
-
subject_type?: "
|
|
9251
|
+
subject_type?: "client" | "user" | undefined;
|
|
9252
9252
|
authorization_details_types?: string[] | undefined;
|
|
9253
9253
|
created_at?: string | undefined;
|
|
9254
9254
|
updated_at?: string | undefined;
|
|
@@ -9272,7 +9272,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9272
9272
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9273
9273
|
allow_any_organization?: boolean | undefined;
|
|
9274
9274
|
is_system?: boolean | undefined;
|
|
9275
|
-
subject_type?: "
|
|
9275
|
+
subject_type?: "client" | "user" | undefined;
|
|
9276
9276
|
authorization_details_types?: string[] | undefined;
|
|
9277
9277
|
};
|
|
9278
9278
|
};
|
|
@@ -9284,7 +9284,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9284
9284
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9285
9285
|
allow_any_organization?: boolean | undefined;
|
|
9286
9286
|
is_system?: boolean | undefined;
|
|
9287
|
-
subject_type?: "
|
|
9287
|
+
subject_type?: "client" | "user" | undefined;
|
|
9288
9288
|
authorization_details_types?: string[] | undefined;
|
|
9289
9289
|
created_at?: string | undefined;
|
|
9290
9290
|
updated_at?: string | undefined;
|
|
@@ -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?: "none" | "client_secret_post" | "client_secret_basic" | "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?: "none" | "client_secret_post" | "client_secret_basic" | "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?: "none" | "client_secret_post" | "client_secret_basic" | "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?: "none" | "client_secret_post" | "client_secret_basic" | "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?: "none" | "client_secret_post" | "client_secret_basic" | "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?: "none" | "client_secret_post" | "client_secret_basic" | "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?: "none" | "client_secret_post" | "client_secret_basic" | "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: "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" | "
|
|
11195
|
+
type: "s" | "w" | "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" | "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" | "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: "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" | "
|
|
11234
|
+
type: "s" | "w" | "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" | "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" | "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: "
|
|
11549
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11570
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11582
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11605
|
+
name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11618
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11631
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11639
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11658
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11666
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11678
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11697
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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?: "
|
|
11705
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
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: "
|
|
11722
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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?: "
|
|
11730
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
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: "
|
|
11742
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11761
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11774
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
11791
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "pending" | "ready" | "disabled" | "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: "pending" | "ready" | "disabled" | "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: "pending" | "ready" | "disabled" | "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: "pending" | "ready" | "disabled" | "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: "pending" | "ready" | "disabled" | "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: "pending" | "ready" | "disabled" | "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?: {
|
|
@@ -12795,7 +12795,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12795
12795
|
json: {
|
|
12796
12796
|
bindings: {
|
|
12797
12797
|
ref: {
|
|
12798
|
-
type?: "
|
|
12798
|
+
type?: "action_id" | "action_name" | undefined;
|
|
12799
12799
|
value?: string | undefined;
|
|
12800
12800
|
id?: string | undefined;
|
|
12801
12801
|
name?: string | undefined;
|
|
@@ -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?: "none" | "client_secret_post" | "client_secret_basic" | "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?: "none" | "client_secret_post" | "client_secret_basic" | "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;
|
|
@@ -14318,18 +14318,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14318
14318
|
send: "code" | "link";
|
|
14319
14319
|
authParams: {
|
|
14320
14320
|
state?: string | undefined;
|
|
14321
|
-
|
|
14321
|
+
code_challenge?: string | undefined;
|
|
14322
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14323
|
+
redirect_uri?: string | undefined;
|
|
14324
|
+
nonce?: string | undefined;
|
|
14325
|
+
act_as?: string | undefined;
|
|
14322
14326
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14323
14327
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14324
|
-
scope?: string | undefined;
|
|
14325
|
-
act_as?: string | undefined;
|
|
14326
|
-
redirect_uri?: string | undefined;
|
|
14327
14328
|
audience?: string | undefined;
|
|
14328
14329
|
organization?: string | undefined;
|
|
14329
|
-
|
|
14330
|
+
scope?: string | undefined;
|
|
14330
14331
|
prompt?: string | undefined;
|
|
14331
|
-
|
|
14332
|
-
code_challenge?: string | undefined;
|
|
14332
|
+
username?: string | undefined;
|
|
14333
14333
|
ui_locales?: string | undefined;
|
|
14334
14334
|
max_age?: number | undefined;
|
|
14335
14335
|
acr_values?: string | undefined;
|
|
@@ -14354,18 +14354,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14354
14354
|
send: "code" | "link";
|
|
14355
14355
|
authParams: {
|
|
14356
14356
|
state?: string | undefined;
|
|
14357
|
-
|
|
14357
|
+
code_challenge?: string | undefined;
|
|
14358
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14359
|
+
redirect_uri?: string | undefined;
|
|
14360
|
+
nonce?: string | undefined;
|
|
14361
|
+
act_as?: string | undefined;
|
|
14358
14362
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14359
14363
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14360
|
-
scope?: string | undefined;
|
|
14361
|
-
act_as?: string | undefined;
|
|
14362
|
-
redirect_uri?: string | undefined;
|
|
14363
14364
|
audience?: string | undefined;
|
|
14364
14365
|
organization?: string | undefined;
|
|
14365
|
-
|
|
14366
|
+
scope?: string | undefined;
|
|
14366
14367
|
prompt?: string | undefined;
|
|
14367
|
-
|
|
14368
|
-
code_challenge?: string | undefined;
|
|
14368
|
+
username?: 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: "
|
|
16275
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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: "
|
|
16291
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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: "
|
|
16307
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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: "
|
|
16327
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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: "
|
|
16345
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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: "
|
|
16363
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16364
16364
|
};
|
|
16365
16365
|
} & {
|
|
16366
16366
|
query: {
|