authhero 5.11.0 → 5.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +126 -126
- package/dist/authhero.d.ts +81 -66
- package/dist/authhero.mjs +9177 -8949
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/users.d.ts +28 -0
- package/dist/types/index.d.ts +66 -66
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +48 -48
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/proxy-routes.d.ts +221 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +22 -0
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/types/AuthHeroConfig.d.ts +14 -0
- package/dist/types/types/IdToken.d.ts +3 -3
- package/package.json +5 -4
|
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "email" | "
|
|
40
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
41
41
|
phone_number?: string | undefined;
|
|
42
42
|
totp_secret?: string | undefined;
|
|
43
43
|
credential_id?: string | undefined;
|
|
@@ -177,7 +177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
177
177
|
};
|
|
178
178
|
};
|
|
179
179
|
output: {
|
|
180
|
-
name: "email" | "
|
|
180
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
181
181
|
enabled: boolean;
|
|
182
182
|
trial_expired?: boolean | undefined;
|
|
183
183
|
}[];
|
|
@@ -332,7 +332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
332
332
|
$get: {
|
|
333
333
|
input: {
|
|
334
334
|
param: {
|
|
335
|
-
factor_name: "email" | "
|
|
335
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
336
336
|
};
|
|
337
337
|
} & {
|
|
338
338
|
header: {
|
|
@@ -340,7 +340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
340
340
|
};
|
|
341
341
|
};
|
|
342
342
|
output: {
|
|
343
|
-
name: "email" | "
|
|
343
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
344
344
|
enabled: boolean;
|
|
345
345
|
trial_expired?: boolean | undefined;
|
|
346
346
|
};
|
|
@@ -353,7 +353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
353
353
|
$put: {
|
|
354
354
|
input: {
|
|
355
355
|
param: {
|
|
356
|
-
factor_name: "email" | "
|
|
356
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
357
357
|
};
|
|
358
358
|
} & {
|
|
359
359
|
header: {
|
|
@@ -365,7 +365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
365
365
|
};
|
|
366
366
|
};
|
|
367
367
|
output: {
|
|
368
|
-
name: "email" | "
|
|
368
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
369
369
|
enabled: boolean;
|
|
370
370
|
trial_expired?: boolean | undefined;
|
|
371
371
|
};
|
|
@@ -1111,10 +1111,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1111
1111
|
email?: string | undefined;
|
|
1112
1112
|
};
|
|
1113
1113
|
id?: string | undefined;
|
|
1114
|
-
connection_id?: string | undefined;
|
|
1115
1114
|
app_metadata?: Record<string, any> | undefined;
|
|
1116
1115
|
user_metadata?: Record<string, any> | undefined;
|
|
1117
1116
|
roles?: string[] | undefined;
|
|
1117
|
+
connection_id?: string | undefined;
|
|
1118
1118
|
ttl_sec?: number | undefined;
|
|
1119
1119
|
send_invitation_email?: boolean | undefined;
|
|
1120
1120
|
};
|
|
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6601
6601
|
};
|
|
6602
6602
|
};
|
|
6603
6603
|
output: {
|
|
6604
|
-
prompt: "
|
|
6604
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6605
6605
|
language: string;
|
|
6606
6606
|
}[];
|
|
6607
6607
|
outputFormat: "json";
|
|
@@ -6639,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6639
6639
|
$get: {
|
|
6640
6640
|
input: {
|
|
6641
6641
|
param: {
|
|
6642
|
-
prompt: "
|
|
6642
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6643
6643
|
language: string;
|
|
6644
6644
|
};
|
|
6645
6645
|
} & {
|
|
@@ -6661,7 +6661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6661
6661
|
$put: {
|
|
6662
6662
|
input: {
|
|
6663
6663
|
param: {
|
|
6664
|
-
prompt: "
|
|
6664
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6665
6665
|
language: string;
|
|
6666
6666
|
};
|
|
6667
6667
|
} & {
|
|
@@ -6685,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6685
6685
|
$delete: {
|
|
6686
6686
|
input: {
|
|
6687
6687
|
param: {
|
|
6688
|
-
prompt: "
|
|
6688
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6689
6689
|
language: string;
|
|
6690
6690
|
};
|
|
6691
6691
|
} & {
|
|
@@ -8126,7 +8126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8126
8126
|
log_type: string;
|
|
8127
8127
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8128
8128
|
actor: {
|
|
8129
|
-
type: "client_credentials" | "user" | "
|
|
8129
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8130
8130
|
id?: string | undefined;
|
|
8131
8131
|
email?: string | undefined;
|
|
8132
8132
|
org_id?: string | undefined;
|
|
@@ -8774,7 +8774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8774
8774
|
};
|
|
8775
8775
|
};
|
|
8776
8776
|
output: {
|
|
8777
|
-
type: "
|
|
8777
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8778
8778
|
date: string;
|
|
8779
8779
|
isMobile: boolean;
|
|
8780
8780
|
log_id: string;
|
|
@@ -8813,7 +8813,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8813
8813
|
limit: number;
|
|
8814
8814
|
length: number;
|
|
8815
8815
|
logs: {
|
|
8816
|
-
type: "
|
|
8816
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8817
8817
|
date: string;
|
|
8818
8818
|
isMobile: boolean;
|
|
8819
8819
|
log_id: string;
|
|
@@ -8867,7 +8867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8867
8867
|
};
|
|
8868
8868
|
};
|
|
8869
8869
|
output: {
|
|
8870
|
-
type: "
|
|
8870
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8871
8871
|
date: string;
|
|
8872
8872
|
isMobile: boolean;
|
|
8873
8873
|
log_id: string;
|
|
@@ -8948,7 +8948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8948
8948
|
audience?: string | undefined;
|
|
8949
8949
|
client_id?: string | undefined;
|
|
8950
8950
|
allow_any_organization?: string | undefined;
|
|
8951
|
-
subject_type?: "
|
|
8951
|
+
subject_type?: "client" | "user" | undefined;
|
|
8952
8952
|
};
|
|
8953
8953
|
} & {
|
|
8954
8954
|
header: {
|
|
@@ -8963,7 +8963,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8963
8963
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
8964
8964
|
allow_any_organization?: boolean | undefined;
|
|
8965
8965
|
is_system?: boolean | undefined;
|
|
8966
|
-
subject_type?: "
|
|
8966
|
+
subject_type?: "client" | "user" | undefined;
|
|
8967
8967
|
authorization_details_types?: string[] | undefined;
|
|
8968
8968
|
created_at?: string | undefined;
|
|
8969
8969
|
updated_at?: string | undefined;
|
|
@@ -8979,7 +8979,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8979
8979
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
8980
8980
|
allow_any_organization?: boolean | undefined;
|
|
8981
8981
|
is_system?: boolean | undefined;
|
|
8982
|
-
subject_type?: "
|
|
8982
|
+
subject_type?: "client" | "user" | undefined;
|
|
8983
8983
|
authorization_details_types?: string[] | undefined;
|
|
8984
8984
|
created_at?: string | undefined;
|
|
8985
8985
|
updated_at?: string | undefined;
|
|
@@ -9010,7 +9010,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9010
9010
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9011
9011
|
allow_any_organization?: boolean | undefined;
|
|
9012
9012
|
is_system?: boolean | undefined;
|
|
9013
|
-
subject_type?: "
|
|
9013
|
+
subject_type?: "client" | "user" | undefined;
|
|
9014
9014
|
authorization_details_types?: string[] | undefined;
|
|
9015
9015
|
created_at?: string | undefined;
|
|
9016
9016
|
updated_at?: string | undefined;
|
|
@@ -9055,7 +9055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9055
9055
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9056
9056
|
allow_any_organization?: boolean | undefined;
|
|
9057
9057
|
is_system?: boolean | undefined;
|
|
9058
|
-
subject_type?: "
|
|
9058
|
+
subject_type?: "client" | "user" | undefined;
|
|
9059
9059
|
authorization_details_types?: string[] | undefined;
|
|
9060
9060
|
};
|
|
9061
9061
|
};
|
|
@@ -9067,7 +9067,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9067
9067
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9068
9068
|
allow_any_organization?: boolean | undefined;
|
|
9069
9069
|
is_system?: boolean | undefined;
|
|
9070
|
-
subject_type?: "
|
|
9070
|
+
subject_type?: "client" | "user" | undefined;
|
|
9071
9071
|
authorization_details_types?: string[] | undefined;
|
|
9072
9072
|
created_at?: string | undefined;
|
|
9073
9073
|
updated_at?: string | undefined;
|
|
@@ -9091,7 +9091,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9091
9091
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9092
9092
|
allow_any_organization?: boolean | undefined;
|
|
9093
9093
|
is_system?: boolean | undefined;
|
|
9094
|
-
subject_type?: "
|
|
9094
|
+
subject_type?: "client" | "user" | undefined;
|
|
9095
9095
|
authorization_details_types?: string[] | undefined;
|
|
9096
9096
|
};
|
|
9097
9097
|
};
|
|
@@ -9103,7 +9103,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9103
9103
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9104
9104
|
allow_any_organization?: boolean | undefined;
|
|
9105
9105
|
is_system?: boolean | undefined;
|
|
9106
|
-
subject_type?: "
|
|
9106
|
+
subject_type?: "client" | "user" | undefined;
|
|
9107
9107
|
authorization_details_types?: string[] | undefined;
|
|
9108
9108
|
created_at?: string | undefined;
|
|
9109
9109
|
updated_at?: string | undefined;
|
|
@@ -9181,7 +9181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9181
9181
|
addons?: {
|
|
9182
9182
|
[x: string]: any;
|
|
9183
9183
|
} | undefined;
|
|
9184
|
-
token_endpoint_auth_method?: "
|
|
9184
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9185
9185
|
client_metadata?: {
|
|
9186
9186
|
[x: string]: string;
|
|
9187
9187
|
} | undefined;
|
|
@@ -9277,7 +9277,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9277
9277
|
addons?: {
|
|
9278
9278
|
[x: string]: any;
|
|
9279
9279
|
} | undefined;
|
|
9280
|
-
token_endpoint_auth_method?: "
|
|
9280
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9281
9281
|
client_metadata?: {
|
|
9282
9282
|
[x: string]: string;
|
|
9283
9283
|
} | undefined;
|
|
@@ -9388,7 +9388,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9388
9388
|
addons?: {
|
|
9389
9389
|
[x: string]: any;
|
|
9390
9390
|
} | undefined;
|
|
9391
|
-
token_endpoint_auth_method?: "
|
|
9391
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9392
9392
|
client_metadata?: {
|
|
9393
9393
|
[x: string]: string;
|
|
9394
9394
|
} | undefined;
|
|
@@ -9498,7 +9498,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9498
9498
|
custom_login_page_preview?: string | undefined;
|
|
9499
9499
|
form_template?: string | undefined;
|
|
9500
9500
|
addons?: Record<string, any> | undefined;
|
|
9501
|
-
token_endpoint_auth_method?: "
|
|
9501
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9502
9502
|
client_metadata?: Record<string, string> | undefined;
|
|
9503
9503
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9504
9504
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9578,7 +9578,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9578
9578
|
addons?: {
|
|
9579
9579
|
[x: string]: any;
|
|
9580
9580
|
} | undefined;
|
|
9581
|
-
token_endpoint_auth_method?: "
|
|
9581
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9582
9582
|
client_metadata?: {
|
|
9583
9583
|
[x: string]: string;
|
|
9584
9584
|
} | undefined;
|
|
@@ -9667,7 +9667,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9667
9667
|
custom_login_page_preview?: string | undefined;
|
|
9668
9668
|
form_template?: string | undefined;
|
|
9669
9669
|
addons?: Record<string, any> | undefined;
|
|
9670
|
-
token_endpoint_auth_method?: "
|
|
9670
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9671
9671
|
client_metadata?: Record<string, string> | undefined;
|
|
9672
9672
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9673
9673
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9747,7 +9747,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9747
9747
|
addons?: {
|
|
9748
9748
|
[x: string]: any;
|
|
9749
9749
|
} | undefined;
|
|
9750
|
-
token_endpoint_auth_method?: "
|
|
9750
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9751
9751
|
client_metadata?: {
|
|
9752
9752
|
[x: string]: string;
|
|
9753
9753
|
} | undefined;
|
|
@@ -11011,7 +11011,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11011
11011
|
};
|
|
11012
11012
|
};
|
|
11013
11013
|
output: {
|
|
11014
|
-
type: "
|
|
11014
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11015
11015
|
date: string;
|
|
11016
11016
|
isMobile: boolean;
|
|
11017
11017
|
log_id: string;
|
|
@@ -11050,7 +11050,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11050
11050
|
limit: number;
|
|
11051
11051
|
length: number;
|
|
11052
11052
|
logs: {
|
|
11053
|
-
type: "
|
|
11053
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11054
11054
|
date: string;
|
|
11055
11055
|
isMobile: boolean;
|
|
11056
11056
|
log_id: string;
|
|
@@ -11365,7 +11365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11365
11365
|
};
|
|
11366
11366
|
} & {
|
|
11367
11367
|
json: {
|
|
11368
|
-
template: "change_password" | "
|
|
11368
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11369
11369
|
body: string;
|
|
11370
11370
|
from: string;
|
|
11371
11371
|
subject: string;
|
|
@@ -11386,7 +11386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11386
11386
|
};
|
|
11387
11387
|
} & {
|
|
11388
11388
|
json: {
|
|
11389
|
-
template: "change_password" | "
|
|
11389
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11390
11390
|
body: string;
|
|
11391
11391
|
from: string;
|
|
11392
11392
|
subject: string;
|
|
@@ -11398,7 +11398,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11398
11398
|
};
|
|
11399
11399
|
};
|
|
11400
11400
|
output: {
|
|
11401
|
-
template: "change_password" | "
|
|
11401
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11402
11402
|
body: string;
|
|
11403
11403
|
from: string;
|
|
11404
11404
|
subject: string;
|
|
@@ -11417,7 +11417,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11417
11417
|
$get: {
|
|
11418
11418
|
input: {
|
|
11419
11419
|
param: {
|
|
11420
|
-
templateName: "change_password" | "
|
|
11420
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11421
11421
|
};
|
|
11422
11422
|
} & {
|
|
11423
11423
|
header: {
|
|
@@ -11430,7 +11430,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11430
11430
|
} | {
|
|
11431
11431
|
input: {
|
|
11432
11432
|
param: {
|
|
11433
|
-
templateName: "change_password" | "
|
|
11433
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11434
11434
|
};
|
|
11435
11435
|
} & {
|
|
11436
11436
|
header: {
|
|
@@ -11438,7 +11438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11438
11438
|
};
|
|
11439
11439
|
};
|
|
11440
11440
|
output: {
|
|
11441
|
-
template: "change_password" | "
|
|
11441
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11442
11442
|
body: string;
|
|
11443
11443
|
from: string;
|
|
11444
11444
|
subject: string;
|
|
@@ -11457,7 +11457,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11457
11457
|
$put: {
|
|
11458
11458
|
input: {
|
|
11459
11459
|
param: {
|
|
11460
|
-
templateName: "change_password" | "
|
|
11460
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11461
11461
|
};
|
|
11462
11462
|
} & {
|
|
11463
11463
|
header: {
|
|
@@ -11465,7 +11465,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11465
11465
|
};
|
|
11466
11466
|
} & {
|
|
11467
11467
|
json: {
|
|
11468
|
-
template: "change_password" | "
|
|
11468
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11469
11469
|
body: string;
|
|
11470
11470
|
from: string;
|
|
11471
11471
|
subject: string;
|
|
@@ -11477,7 +11477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11477
11477
|
};
|
|
11478
11478
|
};
|
|
11479
11479
|
output: {
|
|
11480
|
-
template: "change_password" | "
|
|
11480
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11481
11481
|
body: string;
|
|
11482
11482
|
from: string;
|
|
11483
11483
|
subject: string;
|
|
@@ -11496,7 +11496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11496
11496
|
$patch: {
|
|
11497
11497
|
input: {
|
|
11498
11498
|
param: {
|
|
11499
|
-
templateName: "change_password" | "
|
|
11499
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11500
11500
|
};
|
|
11501
11501
|
} & {
|
|
11502
11502
|
header: {
|
|
@@ -11504,7 +11504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11504
11504
|
};
|
|
11505
11505
|
} & {
|
|
11506
11506
|
json: {
|
|
11507
|
-
template?: "change_password" | "
|
|
11507
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11508
11508
|
body?: string | undefined;
|
|
11509
11509
|
from?: string | undefined;
|
|
11510
11510
|
subject?: string | undefined;
|
|
@@ -11521,7 +11521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11521
11521
|
} | {
|
|
11522
11522
|
input: {
|
|
11523
11523
|
param: {
|
|
11524
|
-
templateName: "change_password" | "
|
|
11524
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11525
11525
|
};
|
|
11526
11526
|
} & {
|
|
11527
11527
|
header: {
|
|
@@ -11529,7 +11529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11529
11529
|
};
|
|
11530
11530
|
} & {
|
|
11531
11531
|
json: {
|
|
11532
|
-
template?: "change_password" | "
|
|
11532
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11533
11533
|
body?: string | undefined;
|
|
11534
11534
|
from?: string | undefined;
|
|
11535
11535
|
subject?: string | undefined;
|
|
@@ -11541,7 +11541,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11541
11541
|
};
|
|
11542
11542
|
};
|
|
11543
11543
|
output: {
|
|
11544
|
-
template: "change_password" | "
|
|
11544
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11545
11545
|
body: string;
|
|
11546
11546
|
from: string;
|
|
11547
11547
|
subject: string;
|
|
@@ -12634,7 +12634,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12634
12634
|
logs: {
|
|
12635
12635
|
action_name: string;
|
|
12636
12636
|
lines: {
|
|
12637
|
-
level: "
|
|
12637
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
12638
12638
|
message: string;
|
|
12639
12639
|
}[];
|
|
12640
12640
|
}[];
|
|
@@ -13301,7 +13301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13301
13301
|
args: import("hono/utils/types").JSONValue[];
|
|
13302
13302
|
}[];
|
|
13303
13303
|
logs: {
|
|
13304
|
-
level: "
|
|
13304
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13305
13305
|
message: string;
|
|
13306
13306
|
}[];
|
|
13307
13307
|
error?: string | undefined;
|
|
@@ -24,7 +24,7 @@ export declare const logRoutes: OpenAPIHono<{
|
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
output: {
|
|
27
|
-
type: "
|
|
27
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
28
28
|
date: string;
|
|
29
29
|
isMobile: boolean;
|
|
30
30
|
log_id: string;
|
|
@@ -63,7 +63,7 @@ export declare const logRoutes: OpenAPIHono<{
|
|
|
63
63
|
limit: number;
|
|
64
64
|
length: number;
|
|
65
65
|
logs: {
|
|
66
|
-
type: "
|
|
66
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
67
67
|
date: string;
|
|
68
68
|
isMobile: boolean;
|
|
69
69
|
log_id: string;
|
|
@@ -117,7 +117,7 @@ export declare const logRoutes: OpenAPIHono<{
|
|
|
117
117
|
};
|
|
118
118
|
};
|
|
119
119
|
output: {
|
|
120
|
-
type: "
|
|
120
|
+
type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
121
121
|
date: string;
|
|
122
122
|
isMobile: boolean;
|
|
123
123
|
log_id: string;
|