authhero 9.0.0 → 9.1.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/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/{p-52a70476.entry.js → p-cdfc4555.entry.js} +1 -1
- package/dist/assets/u/widget/{p-f6babd26.entry.js → p-eca60302.entry.js} +1 -1
- package/dist/authhero.cjs +143 -140
- package/dist/authhero.d.ts +88 -59
- package/dist/authhero.mjs +14326 -13074
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -2
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/generated/locale-types.d.ts +2 -0
- package/dist/types/helpers/client.d.ts +2 -2
- package/dist/types/helpers/revoke-user-sessions.d.ts +15 -0
- package/dist/types/helpers/scim/default-mapping.d.ts +10 -0
- package/dist/types/helpers/scim/discovery.d.ts +49 -0
- package/dist/types/helpers/scim/filter.d.ts +58 -0
- package/dist/types/helpers/scim/mint-token.d.ts +11 -0
- package/dist/types/helpers/scim/patch.d.ts +23 -0
- package/dist/types/helpers/scim/responses.d.ts +36 -0
- package/dist/types/helpers/scim/user-mapping.d.ts +76 -0
- package/dist/types/helpers/users.d.ts +73 -1
- package/dist/types/hooks/user-registration.d.ts +1 -0
- package/dist/types/index.d.ts +86 -57
- package/dist/types/middlewares/scim-auth.d.ts +19 -0
- package/dist/types/routes/auth-api/index.d.ts +14 -14
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +14 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +63 -38
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +6 -4
- package/dist/types/routes/management-api/scim.d.ts +187 -0
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users-by-email.d.ts +1 -0
- package/dist/types/routes/management-api/users.d.ts +10 -2
- package/dist/types/routes/scim/index.d.ts +6 -0
- package/dist/types/routes/universal-login/common.d.ts +1 -0
- package/dist/types/routes/universal-login/screens/types.d.ts +9 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/AuthError.d.ts +1 -1
- package/dist/types/utils/cookies.d.ts +11 -0
- package/package.json +6 -6
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "email" | "
|
|
99
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1202,10 +1202,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1202
1202
|
inviter: {
|
|
1203
1203
|
name?: string | undefined;
|
|
1204
1204
|
};
|
|
1205
|
+
connection_id?: string | undefined;
|
|
1205
1206
|
id?: string | undefined;
|
|
1206
1207
|
app_metadata?: Record<string, any> | undefined;
|
|
1207
1208
|
user_metadata?: Record<string, any> | undefined;
|
|
1208
|
-
connection_id?: string | undefined;
|
|
1209
1209
|
roles?: string[] | undefined;
|
|
1210
1210
|
send_invitation_email?: boolean | undefined;
|
|
1211
1211
|
ttl_sec?: number | undefined;
|
|
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1391
1391
|
};
|
|
1392
1392
|
} & {
|
|
1393
1393
|
json: {
|
|
1394
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1395
1394
|
show_as_button?: boolean | undefined;
|
|
1395
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1396
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1397
1397
|
};
|
|
1398
1398
|
};
|
|
@@ -3002,6 +3002,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3002
3002
|
display_name?: string | undefined;
|
|
3003
3003
|
icon_url?: string | undefined;
|
|
3004
3004
|
href?: string | undefined;
|
|
3005
|
+
last_used?: boolean | undefined;
|
|
3006
|
+
last_used_label?: string | undefined;
|
|
3005
3007
|
}[] | undefined;
|
|
3006
3008
|
} | undefined;
|
|
3007
3009
|
} | {
|
|
@@ -3603,6 +3605,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3603
3605
|
display_name?: string | undefined;
|
|
3604
3606
|
icon_url?: string | undefined;
|
|
3605
3607
|
href?: string | undefined;
|
|
3608
|
+
last_used?: boolean | undefined;
|
|
3609
|
+
last_used_label?: string | undefined;
|
|
3606
3610
|
}[] | undefined;
|
|
3607
3611
|
} | undefined;
|
|
3608
3612
|
} | {
|
|
@@ -4220,6 +4224,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4220
4224
|
display_name?: string | undefined;
|
|
4221
4225
|
icon_url?: string | undefined;
|
|
4222
4226
|
href?: string | undefined;
|
|
4227
|
+
last_used?: boolean | undefined;
|
|
4228
|
+
last_used_label?: string | undefined;
|
|
4223
4229
|
}[] | undefined;
|
|
4224
4230
|
} | undefined;
|
|
4225
4231
|
} | {
|
|
@@ -4838,6 +4844,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4838
4844
|
display_name?: string | undefined;
|
|
4839
4845
|
icon_url?: string | undefined;
|
|
4840
4846
|
href?: string | undefined;
|
|
4847
|
+
last_used?: boolean | undefined;
|
|
4848
|
+
last_used_label?: string | undefined;
|
|
4841
4849
|
}[] | undefined;
|
|
4842
4850
|
} | undefined;
|
|
4843
4851
|
} | {
|
|
@@ -5437,6 +5445,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5437
5445
|
display_name?: string | undefined;
|
|
5438
5446
|
icon_url?: string | undefined;
|
|
5439
5447
|
href?: string | undefined;
|
|
5448
|
+
last_used?: boolean | undefined;
|
|
5449
|
+
last_used_label?: string | undefined;
|
|
5440
5450
|
}[] | undefined;
|
|
5441
5451
|
} | undefined;
|
|
5442
5452
|
} | {
|
|
@@ -6034,6 +6044,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6034
6044
|
display_name?: string | undefined;
|
|
6035
6045
|
icon_url?: string | undefined;
|
|
6036
6046
|
href?: string | undefined;
|
|
6047
|
+
last_used?: boolean | undefined;
|
|
6048
|
+
last_used_label?: string | undefined;
|
|
6037
6049
|
}[] | undefined;
|
|
6038
6050
|
} | undefined;
|
|
6039
6051
|
} | {
|
|
@@ -6633,6 +6645,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6633
6645
|
display_name?: string | undefined;
|
|
6634
6646
|
icon_url?: string | undefined;
|
|
6635
6647
|
href?: string | undefined;
|
|
6648
|
+
last_used?: boolean | undefined;
|
|
6649
|
+
last_used_label?: string | undefined;
|
|
6636
6650
|
}[] | undefined;
|
|
6637
6651
|
} | undefined;
|
|
6638
6652
|
} | {
|
|
@@ -6882,6 +6896,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6882
6896
|
universal_login_experience: "new" | "classic";
|
|
6883
6897
|
identifier_first: boolean;
|
|
6884
6898
|
password_first: boolean;
|
|
6899
|
+
show_last_used_connection: boolean;
|
|
6885
6900
|
webauthn_platform_first_factor: boolean;
|
|
6886
6901
|
};
|
|
6887
6902
|
outputFormat: "json";
|
|
@@ -6900,6 +6915,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6900
6915
|
universal_login_experience?: "new" | "classic" | undefined;
|
|
6901
6916
|
identifier_first?: boolean | undefined;
|
|
6902
6917
|
password_first?: boolean | undefined;
|
|
6918
|
+
show_last_used_connection?: boolean | undefined;
|
|
6903
6919
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
6904
6920
|
};
|
|
6905
6921
|
};
|
|
@@ -6917,7 +6933,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6917
6933
|
};
|
|
6918
6934
|
};
|
|
6919
6935
|
output: {
|
|
6920
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
6936
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
|
|
6921
6937
|
language: string;
|
|
6922
6938
|
}[];
|
|
6923
6939
|
outputFormat: "json";
|
|
@@ -6955,7 +6971,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6955
6971
|
$get: {
|
|
6956
6972
|
input: {
|
|
6957
6973
|
param: {
|
|
6958
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
6974
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
|
|
6959
6975
|
language: string;
|
|
6960
6976
|
};
|
|
6961
6977
|
} & {
|
|
@@ -6977,7 +6993,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6977
6993
|
$put: {
|
|
6978
6994
|
input: {
|
|
6979
6995
|
param: {
|
|
6980
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
6996
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
|
|
6981
6997
|
language: string;
|
|
6982
6998
|
};
|
|
6983
6999
|
} & {
|
|
@@ -7001,7 +7017,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7001
7017
|
$delete: {
|
|
7002
7018
|
input: {
|
|
7003
7019
|
param: {
|
|
7004
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
7020
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
|
|
7005
7021
|
language: string;
|
|
7006
7022
|
};
|
|
7007
7023
|
} & {
|
|
@@ -8504,7 +8520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8504
8520
|
log_type: string;
|
|
8505
8521
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8506
8522
|
actor: {
|
|
8507
|
-
type: "
|
|
8523
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
8508
8524
|
id?: string | undefined;
|
|
8509
8525
|
email?: string | undefined;
|
|
8510
8526
|
org_id?: string | undefined;
|
|
@@ -9155,7 +9171,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9155
9171
|
};
|
|
9156
9172
|
};
|
|
9157
9173
|
output: {
|
|
9158
|
-
type: "
|
|
9174
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9159
9175
|
date: string;
|
|
9160
9176
|
isMobile: boolean;
|
|
9161
9177
|
log_id: string;
|
|
@@ -9194,7 +9210,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9194
9210
|
limit: number;
|
|
9195
9211
|
length: number;
|
|
9196
9212
|
logs: {
|
|
9197
|
-
type: "
|
|
9213
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9198
9214
|
date: string;
|
|
9199
9215
|
isMobile: boolean;
|
|
9200
9216
|
log_id: string;
|
|
@@ -9233,7 +9249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9233
9249
|
next?: string | undefined;
|
|
9234
9250
|
} | {
|
|
9235
9251
|
logs: {
|
|
9236
|
-
type: "
|
|
9252
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9237
9253
|
date: string;
|
|
9238
9254
|
isMobile: boolean;
|
|
9239
9255
|
log_id: string;
|
|
@@ -9287,7 +9303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9287
9303
|
};
|
|
9288
9304
|
};
|
|
9289
9305
|
output: {
|
|
9290
|
-
type: "
|
|
9306
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9291
9307
|
date: string;
|
|
9292
9308
|
isMobile: boolean;
|
|
9293
9309
|
log_id: string;
|
|
@@ -10812,6 +10828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10812
10828
|
verify_email?: boolean | undefined;
|
|
10813
10829
|
last_ip?: string | undefined;
|
|
10814
10830
|
last_login?: string | undefined;
|
|
10831
|
+
blocked?: boolean | undefined;
|
|
10815
10832
|
registration_completed_at?: string | undefined;
|
|
10816
10833
|
email?: string | undefined;
|
|
10817
10834
|
identities?: {
|
|
@@ -10997,6 +11014,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10997
11014
|
verify_email?: boolean | undefined;
|
|
10998
11015
|
last_ip?: string | undefined;
|
|
10999
11016
|
last_login?: string | undefined;
|
|
11017
|
+
blocked?: boolean | undefined;
|
|
11000
11018
|
identities?: {
|
|
11001
11019
|
connection: string;
|
|
11002
11020
|
user_id: string;
|
|
@@ -11067,6 +11085,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11067
11085
|
verify_email?: boolean | undefined;
|
|
11068
11086
|
last_ip?: string | undefined;
|
|
11069
11087
|
last_login?: string | undefined;
|
|
11088
|
+
blocked?: boolean | undefined;
|
|
11070
11089
|
identities?: {
|
|
11071
11090
|
connection: string;
|
|
11072
11091
|
user_id: string;
|
|
@@ -11137,6 +11156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11137
11156
|
verify_email?: boolean | undefined;
|
|
11138
11157
|
last_ip?: string | undefined;
|
|
11139
11158
|
last_login?: string | undefined;
|
|
11159
|
+
blocked?: boolean | undefined;
|
|
11140
11160
|
identities?: {
|
|
11141
11161
|
connection: string;
|
|
11142
11162
|
user_id: string;
|
|
@@ -11222,6 +11242,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11222
11242
|
verify_email?: boolean | undefined;
|
|
11223
11243
|
last_ip?: string | undefined;
|
|
11224
11244
|
last_login?: string | undefined;
|
|
11245
|
+
blocked?: boolean | undefined;
|
|
11225
11246
|
identities?: {
|
|
11226
11247
|
connection: string;
|
|
11227
11248
|
user_id: string;
|
|
@@ -11315,6 +11336,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11315
11336
|
user_id?: string | undefined;
|
|
11316
11337
|
provider?: string | undefined;
|
|
11317
11338
|
is_social?: boolean | undefined;
|
|
11339
|
+
blocked?: boolean | undefined;
|
|
11318
11340
|
registration_completed_at?: string | undefined;
|
|
11319
11341
|
password?: string | undefined;
|
|
11320
11342
|
};
|
|
@@ -11360,6 +11382,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11360
11382
|
verify_email?: boolean | undefined;
|
|
11361
11383
|
last_ip?: string | undefined;
|
|
11362
11384
|
last_login?: string | undefined;
|
|
11385
|
+
blocked?: boolean | undefined;
|
|
11363
11386
|
identities?: {
|
|
11364
11387
|
connection: string;
|
|
11365
11388
|
user_id: string;
|
|
@@ -11436,6 +11459,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11436
11459
|
provider?: string | undefined;
|
|
11437
11460
|
connection?: string | undefined;
|
|
11438
11461
|
is_social?: boolean | undefined;
|
|
11462
|
+
blocked?: boolean | undefined;
|
|
11439
11463
|
registration_completed_at?: string | undefined;
|
|
11440
11464
|
verify_email?: boolean | undefined;
|
|
11441
11465
|
password?: string | undefined;
|
|
@@ -11553,6 +11577,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11553
11577
|
verify_email?: boolean | undefined;
|
|
11554
11578
|
last_ip?: string | undefined;
|
|
11555
11579
|
last_login?: string | undefined;
|
|
11580
|
+
blocked?: boolean | undefined;
|
|
11556
11581
|
identities?: {
|
|
11557
11582
|
connection: string;
|
|
11558
11583
|
user_id: string;
|
|
@@ -11742,7 +11767,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11742
11767
|
};
|
|
11743
11768
|
};
|
|
11744
11769
|
output: {
|
|
11745
|
-
type: "
|
|
11770
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11746
11771
|
date: string;
|
|
11747
11772
|
isMobile: boolean;
|
|
11748
11773
|
log_id: string;
|
|
@@ -11781,7 +11806,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11781
11806
|
limit: number;
|
|
11782
11807
|
length: number;
|
|
11783
11808
|
logs: {
|
|
11784
|
-
type: "
|
|
11809
|
+
type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11785
11810
|
date: string;
|
|
11786
11811
|
isMobile: boolean;
|
|
11787
11812
|
log_id: string;
|
|
@@ -12100,7 +12125,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12100
12125
|
};
|
|
12101
12126
|
} & {
|
|
12102
12127
|
json: {
|
|
12103
|
-
template: "
|
|
12128
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12104
12129
|
body: string;
|
|
12105
12130
|
from: string;
|
|
12106
12131
|
subject: string;
|
|
@@ -12121,7 +12146,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12121
12146
|
};
|
|
12122
12147
|
} & {
|
|
12123
12148
|
json: {
|
|
12124
|
-
template: "
|
|
12149
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12125
12150
|
body: string;
|
|
12126
12151
|
from: string;
|
|
12127
12152
|
subject: string;
|
|
@@ -12133,7 +12158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12133
12158
|
};
|
|
12134
12159
|
};
|
|
12135
12160
|
output: {
|
|
12136
|
-
template: "
|
|
12161
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12137
12162
|
body: string;
|
|
12138
12163
|
from: string;
|
|
12139
12164
|
subject: string;
|
|
@@ -12156,7 +12181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12156
12181
|
};
|
|
12157
12182
|
};
|
|
12158
12183
|
output: {
|
|
12159
|
-
name: "
|
|
12184
|
+
name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12160
12185
|
body: string;
|
|
12161
12186
|
subject: string;
|
|
12162
12187
|
}[];
|
|
@@ -12169,7 +12194,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12169
12194
|
$get: {
|
|
12170
12195
|
input: {
|
|
12171
12196
|
param: {
|
|
12172
|
-
templateName: "
|
|
12197
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12173
12198
|
};
|
|
12174
12199
|
} & {
|
|
12175
12200
|
header: {
|
|
@@ -12182,7 +12207,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12182
12207
|
} | {
|
|
12183
12208
|
input: {
|
|
12184
12209
|
param: {
|
|
12185
|
-
templateName: "
|
|
12210
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12186
12211
|
};
|
|
12187
12212
|
} & {
|
|
12188
12213
|
header: {
|
|
@@ -12190,7 +12215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12190
12215
|
};
|
|
12191
12216
|
};
|
|
12192
12217
|
output: {
|
|
12193
|
-
template: "
|
|
12218
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12194
12219
|
body: string;
|
|
12195
12220
|
from: string;
|
|
12196
12221
|
subject: string;
|
|
@@ -12209,7 +12234,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12209
12234
|
$put: {
|
|
12210
12235
|
input: {
|
|
12211
12236
|
param: {
|
|
12212
|
-
templateName: "
|
|
12237
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12213
12238
|
};
|
|
12214
12239
|
} & {
|
|
12215
12240
|
header: {
|
|
@@ -12217,7 +12242,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12217
12242
|
};
|
|
12218
12243
|
} & {
|
|
12219
12244
|
json: {
|
|
12220
|
-
template: "
|
|
12245
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12221
12246
|
body: string;
|
|
12222
12247
|
subject: string;
|
|
12223
12248
|
syntax?: "liquid" | undefined;
|
|
@@ -12229,7 +12254,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12229
12254
|
};
|
|
12230
12255
|
};
|
|
12231
12256
|
output: {
|
|
12232
|
-
template: "
|
|
12257
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12233
12258
|
body: string;
|
|
12234
12259
|
from: string;
|
|
12235
12260
|
subject: string;
|
|
@@ -12248,7 +12273,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12248
12273
|
$patch: {
|
|
12249
12274
|
input: {
|
|
12250
12275
|
param: {
|
|
12251
|
-
templateName: "
|
|
12276
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12252
12277
|
};
|
|
12253
12278
|
} & {
|
|
12254
12279
|
header: {
|
|
@@ -12256,7 +12281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12256
12281
|
};
|
|
12257
12282
|
} & {
|
|
12258
12283
|
json: {
|
|
12259
|
-
template?: "
|
|
12284
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12260
12285
|
body?: string | undefined;
|
|
12261
12286
|
from?: string | undefined;
|
|
12262
12287
|
subject?: string | undefined;
|
|
@@ -12273,7 +12298,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12273
12298
|
} | {
|
|
12274
12299
|
input: {
|
|
12275
12300
|
param: {
|
|
12276
|
-
templateName: "
|
|
12301
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12277
12302
|
};
|
|
12278
12303
|
} & {
|
|
12279
12304
|
header: {
|
|
@@ -12281,7 +12306,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12281
12306
|
};
|
|
12282
12307
|
} & {
|
|
12283
12308
|
json: {
|
|
12284
|
-
template?: "
|
|
12309
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12285
12310
|
body?: string | undefined;
|
|
12286
12311
|
from?: string | undefined;
|
|
12287
12312
|
subject?: string | undefined;
|
|
@@ -12293,7 +12318,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12293
12318
|
};
|
|
12294
12319
|
};
|
|
12295
12320
|
output: {
|
|
12296
|
-
template: "
|
|
12321
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12297
12322
|
body: string;
|
|
12298
12323
|
from: string;
|
|
12299
12324
|
subject: string;
|
|
@@ -12312,7 +12337,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12312
12337
|
$delete: {
|
|
12313
12338
|
input: {
|
|
12314
12339
|
param: {
|
|
12315
|
-
templateName: "
|
|
12340
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12316
12341
|
};
|
|
12317
12342
|
} & {
|
|
12318
12343
|
header: {
|
|
@@ -12325,7 +12350,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12325
12350
|
} | {
|
|
12326
12351
|
input: {
|
|
12327
12352
|
param: {
|
|
12328
|
-
templateName: "
|
|
12353
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12329
12354
|
};
|
|
12330
12355
|
} & {
|
|
12331
12356
|
header: {
|
|
@@ -12342,7 +12367,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12342
12367
|
$post: {
|
|
12343
12368
|
input: {
|
|
12344
12369
|
param: {
|
|
12345
|
-
templateName: "
|
|
12370
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12346
12371
|
};
|
|
12347
12372
|
} & {
|
|
12348
12373
|
header: {
|
|
@@ -13294,7 +13319,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13294
13319
|
} & {
|
|
13295
13320
|
json: {
|
|
13296
13321
|
body?: string | undefined;
|
|
13297
|
-
screen?: "
|
|
13322
|
+
screen?: "login" | "identifier" | "signup" | "password" | undefined;
|
|
13298
13323
|
branding?: {
|
|
13299
13324
|
colors?: {
|
|
13300
13325
|
primary: string;
|