authhero 5.10.0 → 5.11.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/js/client.js +33 -1
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/p-FUW5zvoZ.js +2 -0
- package/dist/assets/u/widget/{p-e91b632f.entry.js → p-aa120307.entry.js} +1 -1
- package/dist/assets/u/widget/{p-f63fd386.entry.js → p-f0f9eca3.entry.js} +1 -1
- package/dist/authhero.cjs +229 -212
- package/dist/authhero.css +2 -1
- package/dist/authhero.d.ts +123 -86
- package/dist/authhero.mjs +80125 -82252
- package/dist/client.js +33 -1
- package/dist/passkey-enrollment-DKWsGt-K.js +1 -0
- package/dist/passkey-enrollment-Dw1ObR65.mjs +26 -0
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +2 -2
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/email-services/mailgun.d.ts +1 -0
- package/dist/types/helpers/service-token.d.ts +21 -0
- package/dist/types/hooks/helpers/token-api.d.ts +7 -0
- package/dist/types/index.d.ts +122 -86
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +30 -30
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- 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/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 +72 -36
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +40 -4
- 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/types/IdToken.d.ts +4 -4
- package/package.json +24 -24
- package/dist/assets/u/widget/p-BFP_5sHV.js +0 -2
- package/dist/passkey-enrollment-D0dl7raT.mjs +0 -42
- package/dist/passkey-enrollment-dbZd6Zqw.js +0 -1
|
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "
|
|
40
|
+
type: "email" | "push" | "passkey" | "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: "
|
|
180
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "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: "
|
|
335
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "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: "
|
|
343
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "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: "
|
|
356
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "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: "
|
|
368
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
369
369
|
enabled: boolean;
|
|
370
370
|
trial_expired?: boolean | undefined;
|
|
371
371
|
};
|
|
@@ -731,22 +731,58 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
731
731
|
};
|
|
732
732
|
output: {
|
|
733
733
|
user_id: string;
|
|
734
|
-
roles: {
|
|
734
|
+
roles: {
|
|
735
|
+
name: string;
|
|
736
|
+
id: string;
|
|
737
|
+
description?: string | undefined;
|
|
738
|
+
is_system?: boolean | undefined;
|
|
739
|
+
metadata?: {
|
|
740
|
+
[x: string]: any;
|
|
741
|
+
} | undefined;
|
|
742
|
+
created_at?: string | undefined;
|
|
743
|
+
updated_at?: string | undefined;
|
|
744
|
+
}[];
|
|
735
745
|
email?: string | undefined;
|
|
746
|
+
name?: string | undefined;
|
|
747
|
+
picture?: string | undefined;
|
|
736
748
|
}[] | {
|
|
737
749
|
start: number;
|
|
738
750
|
limit: number;
|
|
739
751
|
total: number;
|
|
740
752
|
members: {
|
|
741
753
|
user_id: string;
|
|
742
|
-
roles: {
|
|
754
|
+
roles: {
|
|
755
|
+
name: string;
|
|
756
|
+
id: string;
|
|
757
|
+
description?: string | undefined;
|
|
758
|
+
is_system?: boolean | undefined;
|
|
759
|
+
metadata?: {
|
|
760
|
+
[x: string]: any;
|
|
761
|
+
} | undefined;
|
|
762
|
+
created_at?: string | undefined;
|
|
763
|
+
updated_at?: string | undefined;
|
|
764
|
+
}[];
|
|
743
765
|
email?: string | undefined;
|
|
766
|
+
name?: string | undefined;
|
|
767
|
+
picture?: string | undefined;
|
|
744
768
|
}[];
|
|
745
769
|
} | {
|
|
746
770
|
members: {
|
|
747
771
|
user_id: string;
|
|
748
|
-
roles: {
|
|
772
|
+
roles: {
|
|
773
|
+
name: string;
|
|
774
|
+
id: string;
|
|
775
|
+
description?: string | undefined;
|
|
776
|
+
is_system?: boolean | undefined;
|
|
777
|
+
metadata?: {
|
|
778
|
+
[x: string]: any;
|
|
779
|
+
} | undefined;
|
|
780
|
+
created_at?: string | undefined;
|
|
781
|
+
updated_at?: string | undefined;
|
|
782
|
+
}[];
|
|
749
783
|
email?: string | undefined;
|
|
784
|
+
name?: string | undefined;
|
|
785
|
+
picture?: string | undefined;
|
|
750
786
|
}[];
|
|
751
787
|
next?: string | undefined;
|
|
752
788
|
};
|
|
@@ -1075,9 +1111,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1075
1111
|
email?: string | undefined;
|
|
1076
1112
|
};
|
|
1077
1113
|
id?: string | undefined;
|
|
1114
|
+
connection_id?: string | undefined;
|
|
1078
1115
|
app_metadata?: Record<string, any> | undefined;
|
|
1079
1116
|
user_metadata?: Record<string, any> | undefined;
|
|
1080
|
-
connection_id?: string | undefined;
|
|
1081
1117
|
roles?: string[] | undefined;
|
|
1082
1118
|
ttl_sec?: number | undefined;
|
|
1083
1119
|
send_invitation_email?: boolean | undefined;
|
|
@@ -6565,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6565
6601
|
};
|
|
6566
6602
|
};
|
|
6567
6603
|
output: {
|
|
6568
|
-
prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "
|
|
6604
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
|
|
6569
6605
|
language: string;
|
|
6570
6606
|
}[];
|
|
6571
6607
|
outputFormat: "json";
|
|
@@ -6603,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6603
6639
|
$get: {
|
|
6604
6640
|
input: {
|
|
6605
6641
|
param: {
|
|
6606
|
-
prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "
|
|
6642
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
|
|
6607
6643
|
language: string;
|
|
6608
6644
|
};
|
|
6609
6645
|
} & {
|
|
@@ -6625,7 +6661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6625
6661
|
$put: {
|
|
6626
6662
|
input: {
|
|
6627
6663
|
param: {
|
|
6628
|
-
prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "
|
|
6664
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
|
|
6629
6665
|
language: string;
|
|
6630
6666
|
};
|
|
6631
6667
|
} & {
|
|
@@ -6649,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6649
6685
|
$delete: {
|
|
6650
6686
|
input: {
|
|
6651
6687
|
param: {
|
|
6652
|
-
prompt: "mfa" | "organizations" | "signup" | "status" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "
|
|
6688
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
|
|
6653
6689
|
language: string;
|
|
6654
6690
|
};
|
|
6655
6691
|
} & {
|
|
@@ -8090,7 +8126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8090
8126
|
log_type: string;
|
|
8091
8127
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8092
8128
|
actor: {
|
|
8093
|
-
type: "client_credentials" | "user" | "
|
|
8129
|
+
type: "client_credentials" | "user" | "api_key" | "system" | "admin";
|
|
8094
8130
|
id?: string | undefined;
|
|
8095
8131
|
email?: string | undefined;
|
|
8096
8132
|
org_id?: string | undefined;
|
|
@@ -8738,7 +8774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8738
8774
|
};
|
|
8739
8775
|
};
|
|
8740
8776
|
output: {
|
|
8741
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "
|
|
8777
|
+
type: "gd_send_sms" | "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" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
8742
8778
|
date: string;
|
|
8743
8779
|
isMobile: boolean;
|
|
8744
8780
|
log_id: string;
|
|
@@ -8777,7 +8813,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8777
8813
|
limit: number;
|
|
8778
8814
|
length: number;
|
|
8779
8815
|
logs: {
|
|
8780
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "
|
|
8816
|
+
type: "gd_send_sms" | "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" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
8781
8817
|
date: string;
|
|
8782
8818
|
isMobile: boolean;
|
|
8783
8819
|
log_id: string;
|
|
@@ -8831,7 +8867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8831
8867
|
};
|
|
8832
8868
|
};
|
|
8833
8869
|
output: {
|
|
8834
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "
|
|
8870
|
+
type: "gd_send_sms" | "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" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
8835
8871
|
date: string;
|
|
8836
8872
|
isMobile: boolean;
|
|
8837
8873
|
log_id: string;
|
|
@@ -10975,7 +11011,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10975
11011
|
};
|
|
10976
11012
|
};
|
|
10977
11013
|
output: {
|
|
10978
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "
|
|
11014
|
+
type: "gd_send_sms" | "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" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
10979
11015
|
date: string;
|
|
10980
11016
|
isMobile: boolean;
|
|
10981
11017
|
log_id: string;
|
|
@@ -11014,7 +11050,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11014
11050
|
limit: number;
|
|
11015
11051
|
length: number;
|
|
11016
11052
|
logs: {
|
|
11017
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "
|
|
11053
|
+
type: "gd_send_sms" | "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" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11018
11054
|
date: string;
|
|
11019
11055
|
isMobile: boolean;
|
|
11020
11056
|
log_id: string;
|
|
@@ -11329,7 +11365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11329
11365
|
};
|
|
11330
11366
|
} & {
|
|
11331
11367
|
json: {
|
|
11332
|
-
template: "change_password" | "
|
|
11368
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11333
11369
|
body: string;
|
|
11334
11370
|
from: string;
|
|
11335
11371
|
subject: string;
|
|
@@ -11350,7 +11386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11350
11386
|
};
|
|
11351
11387
|
} & {
|
|
11352
11388
|
json: {
|
|
11353
|
-
template: "change_password" | "
|
|
11389
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11354
11390
|
body: string;
|
|
11355
11391
|
from: string;
|
|
11356
11392
|
subject: string;
|
|
@@ -11362,7 +11398,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11362
11398
|
};
|
|
11363
11399
|
};
|
|
11364
11400
|
output: {
|
|
11365
|
-
template: "change_password" | "
|
|
11401
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11366
11402
|
body: string;
|
|
11367
11403
|
from: string;
|
|
11368
11404
|
subject: string;
|
|
@@ -11381,7 +11417,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11381
11417
|
$get: {
|
|
11382
11418
|
input: {
|
|
11383
11419
|
param: {
|
|
11384
|
-
templateName: "change_password" | "
|
|
11420
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11385
11421
|
};
|
|
11386
11422
|
} & {
|
|
11387
11423
|
header: {
|
|
@@ -11394,7 +11430,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11394
11430
|
} | {
|
|
11395
11431
|
input: {
|
|
11396
11432
|
param: {
|
|
11397
|
-
templateName: "change_password" | "
|
|
11433
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11398
11434
|
};
|
|
11399
11435
|
} & {
|
|
11400
11436
|
header: {
|
|
@@ -11402,7 +11438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11402
11438
|
};
|
|
11403
11439
|
};
|
|
11404
11440
|
output: {
|
|
11405
|
-
template: "change_password" | "
|
|
11441
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11406
11442
|
body: string;
|
|
11407
11443
|
from: string;
|
|
11408
11444
|
subject: string;
|
|
@@ -11421,7 +11457,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11421
11457
|
$put: {
|
|
11422
11458
|
input: {
|
|
11423
11459
|
param: {
|
|
11424
|
-
templateName: "change_password" | "
|
|
11460
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11425
11461
|
};
|
|
11426
11462
|
} & {
|
|
11427
11463
|
header: {
|
|
@@ -11429,7 +11465,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11429
11465
|
};
|
|
11430
11466
|
} & {
|
|
11431
11467
|
json: {
|
|
11432
|
-
template: "change_password" | "
|
|
11468
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11433
11469
|
body: string;
|
|
11434
11470
|
from: string;
|
|
11435
11471
|
subject: string;
|
|
@@ -11441,7 +11477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11441
11477
|
};
|
|
11442
11478
|
};
|
|
11443
11479
|
output: {
|
|
11444
|
-
template: "change_password" | "
|
|
11480
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11445
11481
|
body: string;
|
|
11446
11482
|
from: string;
|
|
11447
11483
|
subject: string;
|
|
@@ -11460,7 +11496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11460
11496
|
$patch: {
|
|
11461
11497
|
input: {
|
|
11462
11498
|
param: {
|
|
11463
|
-
templateName: "change_password" | "
|
|
11499
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11464
11500
|
};
|
|
11465
11501
|
} & {
|
|
11466
11502
|
header: {
|
|
@@ -11468,7 +11504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11468
11504
|
};
|
|
11469
11505
|
} & {
|
|
11470
11506
|
json: {
|
|
11471
|
-
template?: "change_password" | "
|
|
11507
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11472
11508
|
body?: string | undefined;
|
|
11473
11509
|
from?: string | undefined;
|
|
11474
11510
|
subject?: string | undefined;
|
|
@@ -11485,7 +11521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11485
11521
|
} | {
|
|
11486
11522
|
input: {
|
|
11487
11523
|
param: {
|
|
11488
|
-
templateName: "change_password" | "
|
|
11524
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11489
11525
|
};
|
|
11490
11526
|
} & {
|
|
11491
11527
|
header: {
|
|
@@ -11493,7 +11529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11493
11529
|
};
|
|
11494
11530
|
} & {
|
|
11495
11531
|
json: {
|
|
11496
|
-
template?: "change_password" | "
|
|
11532
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11497
11533
|
body?: string | undefined;
|
|
11498
11534
|
from?: string | undefined;
|
|
11499
11535
|
subject?: string | undefined;
|
|
@@ -11505,7 +11541,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11505
11541
|
};
|
|
11506
11542
|
};
|
|
11507
11543
|
output: {
|
|
11508
|
-
template: "change_password" | "
|
|
11544
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11509
11545
|
body: string;
|
|
11510
11546
|
from: string;
|
|
11511
11547
|
subject: string;
|
|
@@ -12598,7 +12634,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12598
12634
|
logs: {
|
|
12599
12635
|
action_name: string;
|
|
12600
12636
|
lines: {
|
|
12601
|
-
level: "
|
|
12637
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
12602
12638
|
message: string;
|
|
12603
12639
|
}[];
|
|
12604
12640
|
}[];
|
|
@@ -13265,7 +13301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13265
13301
|
args: import("hono/utils/types").JSONValue[];
|
|
13266
13302
|
}[];
|
|
13267
13303
|
logs: {
|
|
13268
|
-
level: "
|
|
13304
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13269
13305
|
message: string;
|
|
13270
13306
|
}[];
|
|
13271
13307
|
error?: string | undefined;
|
|
@@ -24,7 +24,7 @@ export declare const logRoutes: OpenAPIHono<{
|
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
output: {
|
|
27
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "
|
|
27
|
+
type: "gd_send_sms" | "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" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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: "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" | "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" | "
|
|
66
|
+
type: "gd_send_sms" | "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" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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: "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" | "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" | "
|
|
120
|
+
type: "gd_send_sms" | "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" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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;
|
|
@@ -323,22 +323,58 @@ export declare const organizationRoutes: OpenAPIHono<{
|
|
|
323
323
|
};
|
|
324
324
|
output: {
|
|
325
325
|
user_id: string;
|
|
326
|
-
roles: {
|
|
326
|
+
roles: {
|
|
327
|
+
name: string;
|
|
328
|
+
id: string;
|
|
329
|
+
description?: string | undefined;
|
|
330
|
+
is_system?: boolean | undefined;
|
|
331
|
+
metadata?: {
|
|
332
|
+
[x: string]: any;
|
|
333
|
+
} | undefined;
|
|
334
|
+
created_at?: string | undefined;
|
|
335
|
+
updated_at?: string | undefined;
|
|
336
|
+
}[];
|
|
327
337
|
email?: string | undefined;
|
|
338
|
+
name?: string | undefined;
|
|
339
|
+
picture?: string | undefined;
|
|
328
340
|
}[] | {
|
|
329
341
|
start: number;
|
|
330
342
|
limit: number;
|
|
331
343
|
total: number;
|
|
332
344
|
members: {
|
|
333
345
|
user_id: string;
|
|
334
|
-
roles: {
|
|
346
|
+
roles: {
|
|
347
|
+
name: string;
|
|
348
|
+
id: string;
|
|
349
|
+
description?: string | undefined;
|
|
350
|
+
is_system?: boolean | undefined;
|
|
351
|
+
metadata?: {
|
|
352
|
+
[x: string]: any;
|
|
353
|
+
} | undefined;
|
|
354
|
+
created_at?: string | undefined;
|
|
355
|
+
updated_at?: string | undefined;
|
|
356
|
+
}[];
|
|
335
357
|
email?: string | undefined;
|
|
358
|
+
name?: string | undefined;
|
|
359
|
+
picture?: string | undefined;
|
|
336
360
|
}[];
|
|
337
361
|
} | {
|
|
338
362
|
members: {
|
|
339
363
|
user_id: string;
|
|
340
|
-
roles: {
|
|
364
|
+
roles: {
|
|
365
|
+
name: string;
|
|
366
|
+
id: string;
|
|
367
|
+
description?: string | undefined;
|
|
368
|
+
is_system?: boolean | undefined;
|
|
369
|
+
metadata?: {
|
|
370
|
+
[x: string]: any;
|
|
371
|
+
} | undefined;
|
|
372
|
+
created_at?: string | undefined;
|
|
373
|
+
updated_at?: string | undefined;
|
|
374
|
+
}[];
|
|
341
375
|
email?: string | undefined;
|
|
376
|
+
name?: string | undefined;
|
|
377
|
+
picture?: string | undefined;
|
|
342
378
|
}[];
|
|
343
379
|
next?: string | undefined;
|
|
344
380
|
};
|
|
@@ -667,9 +703,9 @@ export declare const organizationRoutes: OpenAPIHono<{
|
|
|
667
703
|
email?: string | undefined;
|
|
668
704
|
};
|
|
669
705
|
id?: string | undefined;
|
|
706
|
+
connection_id?: string | undefined;
|
|
670
707
|
app_metadata?: Record<string, any> | undefined;
|
|
671
708
|
user_metadata?: Record<string, any> | undefined;
|
|
672
|
-
connection_id?: string | undefined;
|
|
673
709
|
roles?: string[] | undefined;
|
|
674
710
|
ttl_sec?: number | undefined;
|
|
675
711
|
send_invitation_email?: boolean | undefined;
|