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
package/dist/authhero.d.ts
CHANGED
|
@@ -568,8 +568,8 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
568
568
|
}>>;
|
|
569
569
|
}, z.core.$strip>>>;
|
|
570
570
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
571
|
-
response_type: z.ZodOptional<z.
|
|
572
|
-
response_mode: z.ZodOptional<z.
|
|
571
|
+
response_type: z.ZodOptional<z.ZodEnum<typeof _authhero_adapter_interfaces.AuthorizationResponseType>>;
|
|
572
|
+
response_mode: z.ZodOptional<z.ZodEnum<typeof _authhero_adapter_interfaces.AuthorizationResponseMode>>;
|
|
573
573
|
is_domain_connection: z.ZodOptional<z.ZodBoolean>;
|
|
574
574
|
show_as_button: z.ZodOptional<z.ZodBoolean>;
|
|
575
575
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -4306,7 +4306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4306
4306
|
};
|
|
4307
4307
|
} & {
|
|
4308
4308
|
json: {
|
|
4309
|
-
type: "email" | "
|
|
4309
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4310
4310
|
phone_number?: string | undefined;
|
|
4311
4311
|
totp_secret?: string | undefined;
|
|
4312
4312
|
credential_id?: string | undefined;
|
|
@@ -4446,7 +4446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4446
4446
|
};
|
|
4447
4447
|
};
|
|
4448
4448
|
output: {
|
|
4449
|
-
name: "
|
|
4449
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4450
4450
|
enabled: boolean;
|
|
4451
4451
|
trial_expired?: boolean | undefined;
|
|
4452
4452
|
}[];
|
|
@@ -4601,7 +4601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4601
4601
|
$get: {
|
|
4602
4602
|
input: {
|
|
4603
4603
|
param: {
|
|
4604
|
-
factor_name: "
|
|
4604
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4605
4605
|
};
|
|
4606
4606
|
} & {
|
|
4607
4607
|
header: {
|
|
@@ -4609,7 +4609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4609
4609
|
};
|
|
4610
4610
|
};
|
|
4611
4611
|
output: {
|
|
4612
|
-
name: "
|
|
4612
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4613
4613
|
enabled: boolean;
|
|
4614
4614
|
trial_expired?: boolean | undefined;
|
|
4615
4615
|
};
|
|
@@ -4622,7 +4622,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4622
4622
|
$put: {
|
|
4623
4623
|
input: {
|
|
4624
4624
|
param: {
|
|
4625
|
-
factor_name: "
|
|
4625
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4626
4626
|
};
|
|
4627
4627
|
} & {
|
|
4628
4628
|
header: {
|
|
@@ -4634,7 +4634,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4634
4634
|
};
|
|
4635
4635
|
};
|
|
4636
4636
|
output: {
|
|
4637
|
-
name: "
|
|
4637
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4638
4638
|
enabled: boolean;
|
|
4639
4639
|
trial_expired?: boolean | undefined;
|
|
4640
4640
|
};
|
|
@@ -5412,10 +5412,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5412
5412
|
inviter: {
|
|
5413
5413
|
name?: string | undefined;
|
|
5414
5414
|
};
|
|
5415
|
+
connection_id?: string | undefined;
|
|
5415
5416
|
id?: string | undefined;
|
|
5416
5417
|
app_metadata?: Record<string, any> | undefined;
|
|
5417
5418
|
user_metadata?: Record<string, any> | undefined;
|
|
5418
|
-
connection_id?: string | undefined;
|
|
5419
5419
|
roles?: string[] | undefined;
|
|
5420
5420
|
send_invitation_email?: boolean | undefined;
|
|
5421
5421
|
ttl_sec?: number | undefined;
|
|
@@ -5601,8 +5601,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5601
5601
|
};
|
|
5602
5602
|
} & {
|
|
5603
5603
|
json: {
|
|
5604
|
-
assign_membership_on_login?: boolean | undefined;
|
|
5605
5604
|
show_as_button?: boolean | undefined;
|
|
5605
|
+
assign_membership_on_login?: boolean | undefined;
|
|
5606
5606
|
is_signup_enabled?: boolean | undefined;
|
|
5607
5607
|
};
|
|
5608
5608
|
};
|
|
@@ -7212,6 +7212,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7212
7212
|
display_name?: string | undefined;
|
|
7213
7213
|
icon_url?: string | undefined;
|
|
7214
7214
|
href?: string | undefined;
|
|
7215
|
+
last_used?: boolean | undefined;
|
|
7216
|
+
last_used_label?: string | undefined;
|
|
7215
7217
|
}[] | undefined;
|
|
7216
7218
|
} | undefined;
|
|
7217
7219
|
} | {
|
|
@@ -7813,6 +7815,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7813
7815
|
display_name?: string | undefined;
|
|
7814
7816
|
icon_url?: string | undefined;
|
|
7815
7817
|
href?: string | undefined;
|
|
7818
|
+
last_used?: boolean | undefined;
|
|
7819
|
+
last_used_label?: string | undefined;
|
|
7816
7820
|
}[] | undefined;
|
|
7817
7821
|
} | undefined;
|
|
7818
7822
|
} | {
|
|
@@ -8430,6 +8434,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8430
8434
|
display_name?: string | undefined;
|
|
8431
8435
|
icon_url?: string | undefined;
|
|
8432
8436
|
href?: string | undefined;
|
|
8437
|
+
last_used?: boolean | undefined;
|
|
8438
|
+
last_used_label?: string | undefined;
|
|
8433
8439
|
}[] | undefined;
|
|
8434
8440
|
} | undefined;
|
|
8435
8441
|
} | {
|
|
@@ -9048,6 +9054,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9048
9054
|
display_name?: string | undefined;
|
|
9049
9055
|
icon_url?: string | undefined;
|
|
9050
9056
|
href?: string | undefined;
|
|
9057
|
+
last_used?: boolean | undefined;
|
|
9058
|
+
last_used_label?: string | undefined;
|
|
9051
9059
|
}[] | undefined;
|
|
9052
9060
|
} | undefined;
|
|
9053
9061
|
} | {
|
|
@@ -9647,6 +9655,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9647
9655
|
display_name?: string | undefined;
|
|
9648
9656
|
icon_url?: string | undefined;
|
|
9649
9657
|
href?: string | undefined;
|
|
9658
|
+
last_used?: boolean | undefined;
|
|
9659
|
+
last_used_label?: string | undefined;
|
|
9650
9660
|
}[] | undefined;
|
|
9651
9661
|
} | undefined;
|
|
9652
9662
|
} | {
|
|
@@ -10244,6 +10254,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10244
10254
|
display_name?: string | undefined;
|
|
10245
10255
|
icon_url?: string | undefined;
|
|
10246
10256
|
href?: string | undefined;
|
|
10257
|
+
last_used?: boolean | undefined;
|
|
10258
|
+
last_used_label?: string | undefined;
|
|
10247
10259
|
}[] | undefined;
|
|
10248
10260
|
} | undefined;
|
|
10249
10261
|
} | {
|
|
@@ -10843,6 +10855,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10843
10855
|
display_name?: string | undefined;
|
|
10844
10856
|
icon_url?: string | undefined;
|
|
10845
10857
|
href?: string | undefined;
|
|
10858
|
+
last_used?: boolean | undefined;
|
|
10859
|
+
last_used_label?: string | undefined;
|
|
10846
10860
|
}[] | undefined;
|
|
10847
10861
|
} | undefined;
|
|
10848
10862
|
} | {
|
|
@@ -11092,6 +11106,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11092
11106
|
universal_login_experience: "new" | "classic";
|
|
11093
11107
|
identifier_first: boolean;
|
|
11094
11108
|
password_first: boolean;
|
|
11109
|
+
show_last_used_connection: boolean;
|
|
11095
11110
|
webauthn_platform_first_factor: boolean;
|
|
11096
11111
|
};
|
|
11097
11112
|
outputFormat: "json";
|
|
@@ -11110,6 +11125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11110
11125
|
universal_login_experience?: "new" | "classic" | undefined;
|
|
11111
11126
|
identifier_first?: boolean | undefined;
|
|
11112
11127
|
password_first?: boolean | undefined;
|
|
11128
|
+
show_last_used_connection?: boolean | undefined;
|
|
11113
11129
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
11114
11130
|
};
|
|
11115
11131
|
};
|
|
@@ -11127,7 +11143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11127
11143
|
};
|
|
11128
11144
|
};
|
|
11129
11145
|
output: {
|
|
11130
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
11146
|
+
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";
|
|
11131
11147
|
language: string;
|
|
11132
11148
|
}[];
|
|
11133
11149
|
outputFormat: "json";
|
|
@@ -11165,7 +11181,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11165
11181
|
$get: {
|
|
11166
11182
|
input: {
|
|
11167
11183
|
param: {
|
|
11168
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
11184
|
+
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";
|
|
11169
11185
|
language: string;
|
|
11170
11186
|
};
|
|
11171
11187
|
} & {
|
|
@@ -11187,7 +11203,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11187
11203
|
$put: {
|
|
11188
11204
|
input: {
|
|
11189
11205
|
param: {
|
|
11190
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
11206
|
+
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";
|
|
11191
11207
|
language: string;
|
|
11192
11208
|
};
|
|
11193
11209
|
} & {
|
|
@@ -11211,7 +11227,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11211
11227
|
$delete: {
|
|
11212
11228
|
input: {
|
|
11213
11229
|
param: {
|
|
11214
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
11230
|
+
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";
|
|
11215
11231
|
language: string;
|
|
11216
11232
|
};
|
|
11217
11233
|
} & {
|
|
@@ -12714,7 +12730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12714
12730
|
log_type: string;
|
|
12715
12731
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
12716
12732
|
actor: {
|
|
12717
|
-
type: "
|
|
12733
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
12718
12734
|
id?: string | undefined;
|
|
12719
12735
|
email?: string | undefined;
|
|
12720
12736
|
org_id?: string | undefined;
|
|
@@ -13365,7 +13381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13365
13381
|
};
|
|
13366
13382
|
};
|
|
13367
13383
|
output: {
|
|
13368
|
-
type: "
|
|
13384
|
+
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";
|
|
13369
13385
|
date: string;
|
|
13370
13386
|
isMobile: boolean;
|
|
13371
13387
|
log_id: string;
|
|
@@ -13404,7 +13420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13404
13420
|
limit: number;
|
|
13405
13421
|
length: number;
|
|
13406
13422
|
logs: {
|
|
13407
|
-
type: "
|
|
13423
|
+
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";
|
|
13408
13424
|
date: string;
|
|
13409
13425
|
isMobile: boolean;
|
|
13410
13426
|
log_id: string;
|
|
@@ -13443,7 +13459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13443
13459
|
next?: string | undefined;
|
|
13444
13460
|
} | {
|
|
13445
13461
|
logs: {
|
|
13446
|
-
type: "
|
|
13462
|
+
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";
|
|
13447
13463
|
date: string;
|
|
13448
13464
|
isMobile: boolean;
|
|
13449
13465
|
log_id: string;
|
|
@@ -13497,7 +13513,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13497
13513
|
};
|
|
13498
13514
|
};
|
|
13499
13515
|
output: {
|
|
13500
|
-
type: "
|
|
13516
|
+
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";
|
|
13501
13517
|
date: string;
|
|
13502
13518
|
isMobile: boolean;
|
|
13503
13519
|
log_id: string;
|
|
@@ -15022,6 +15038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15022
15038
|
verify_email?: boolean | undefined;
|
|
15023
15039
|
last_ip?: string | undefined;
|
|
15024
15040
|
last_login?: string | undefined;
|
|
15041
|
+
blocked?: boolean | undefined;
|
|
15025
15042
|
registration_completed_at?: string | undefined;
|
|
15026
15043
|
email?: string | undefined;
|
|
15027
15044
|
identities?: {
|
|
@@ -15207,6 +15224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15207
15224
|
verify_email?: boolean | undefined;
|
|
15208
15225
|
last_ip?: string | undefined;
|
|
15209
15226
|
last_login?: string | undefined;
|
|
15227
|
+
blocked?: boolean | undefined;
|
|
15210
15228
|
identities?: {
|
|
15211
15229
|
connection: string;
|
|
15212
15230
|
user_id: string;
|
|
@@ -15277,6 +15295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15277
15295
|
verify_email?: boolean | undefined;
|
|
15278
15296
|
last_ip?: string | undefined;
|
|
15279
15297
|
last_login?: string | undefined;
|
|
15298
|
+
blocked?: boolean | undefined;
|
|
15280
15299
|
identities?: {
|
|
15281
15300
|
connection: string;
|
|
15282
15301
|
user_id: string;
|
|
@@ -15347,6 +15366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15347
15366
|
verify_email?: boolean | undefined;
|
|
15348
15367
|
last_ip?: string | undefined;
|
|
15349
15368
|
last_login?: string | undefined;
|
|
15369
|
+
blocked?: boolean | undefined;
|
|
15350
15370
|
identities?: {
|
|
15351
15371
|
connection: string;
|
|
15352
15372
|
user_id: string;
|
|
@@ -15432,6 +15452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15432
15452
|
verify_email?: boolean | undefined;
|
|
15433
15453
|
last_ip?: string | undefined;
|
|
15434
15454
|
last_login?: string | undefined;
|
|
15455
|
+
blocked?: boolean | undefined;
|
|
15435
15456
|
identities?: {
|
|
15436
15457
|
connection: string;
|
|
15437
15458
|
user_id: string;
|
|
@@ -15525,6 +15546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15525
15546
|
user_id?: string | undefined;
|
|
15526
15547
|
provider?: string | undefined;
|
|
15527
15548
|
is_social?: boolean | undefined;
|
|
15549
|
+
blocked?: boolean | undefined;
|
|
15528
15550
|
registration_completed_at?: string | undefined;
|
|
15529
15551
|
password?: string | undefined;
|
|
15530
15552
|
};
|
|
@@ -15570,6 +15592,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15570
15592
|
verify_email?: boolean | undefined;
|
|
15571
15593
|
last_ip?: string | undefined;
|
|
15572
15594
|
last_login?: string | undefined;
|
|
15595
|
+
blocked?: boolean | undefined;
|
|
15573
15596
|
identities?: {
|
|
15574
15597
|
connection: string;
|
|
15575
15598
|
user_id: string;
|
|
@@ -15646,6 +15669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15646
15669
|
provider?: string | undefined;
|
|
15647
15670
|
connection?: string | undefined;
|
|
15648
15671
|
is_social?: boolean | undefined;
|
|
15672
|
+
blocked?: boolean | undefined;
|
|
15649
15673
|
registration_completed_at?: string | undefined;
|
|
15650
15674
|
verify_email?: boolean | undefined;
|
|
15651
15675
|
password?: string | undefined;
|
|
@@ -15763,6 +15787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15763
15787
|
verify_email?: boolean | undefined;
|
|
15764
15788
|
last_ip?: string | undefined;
|
|
15765
15789
|
last_login?: string | undefined;
|
|
15790
|
+
blocked?: boolean | undefined;
|
|
15766
15791
|
identities?: {
|
|
15767
15792
|
connection: string;
|
|
15768
15793
|
user_id: string;
|
|
@@ -15952,7 +15977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15952
15977
|
};
|
|
15953
15978
|
};
|
|
15954
15979
|
output: {
|
|
15955
|
-
type: "
|
|
15980
|
+
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";
|
|
15956
15981
|
date: string;
|
|
15957
15982
|
isMobile: boolean;
|
|
15958
15983
|
log_id: string;
|
|
@@ -15991,7 +16016,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15991
16016
|
limit: number;
|
|
15992
16017
|
length: number;
|
|
15993
16018
|
logs: {
|
|
15994
|
-
type: "
|
|
16019
|
+
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";
|
|
15995
16020
|
date: string;
|
|
15996
16021
|
isMobile: boolean;
|
|
15997
16022
|
log_id: string;
|
|
@@ -16310,7 +16335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16310
16335
|
};
|
|
16311
16336
|
} & {
|
|
16312
16337
|
json: {
|
|
16313
|
-
template: "
|
|
16338
|
+
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";
|
|
16314
16339
|
body: string;
|
|
16315
16340
|
from: string;
|
|
16316
16341
|
subject: string;
|
|
@@ -16331,7 +16356,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16331
16356
|
};
|
|
16332
16357
|
} & {
|
|
16333
16358
|
json: {
|
|
16334
|
-
template: "
|
|
16359
|
+
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";
|
|
16335
16360
|
body: string;
|
|
16336
16361
|
from: string;
|
|
16337
16362
|
subject: string;
|
|
@@ -16343,7 +16368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16343
16368
|
};
|
|
16344
16369
|
};
|
|
16345
16370
|
output: {
|
|
16346
|
-
template: "
|
|
16371
|
+
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";
|
|
16347
16372
|
body: string;
|
|
16348
16373
|
from: string;
|
|
16349
16374
|
subject: string;
|
|
@@ -16366,7 +16391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16366
16391
|
};
|
|
16367
16392
|
};
|
|
16368
16393
|
output: {
|
|
16369
|
-
name: "
|
|
16394
|
+
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";
|
|
16370
16395
|
body: string;
|
|
16371
16396
|
subject: string;
|
|
16372
16397
|
}[];
|
|
@@ -16379,7 +16404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16379
16404
|
$get: {
|
|
16380
16405
|
input: {
|
|
16381
16406
|
param: {
|
|
16382
|
-
templateName: "
|
|
16407
|
+
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";
|
|
16383
16408
|
};
|
|
16384
16409
|
} & {
|
|
16385
16410
|
header: {
|
|
@@ -16392,7 +16417,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16392
16417
|
} | {
|
|
16393
16418
|
input: {
|
|
16394
16419
|
param: {
|
|
16395
|
-
templateName: "
|
|
16420
|
+
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";
|
|
16396
16421
|
};
|
|
16397
16422
|
} & {
|
|
16398
16423
|
header: {
|
|
@@ -16400,7 +16425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16400
16425
|
};
|
|
16401
16426
|
};
|
|
16402
16427
|
output: {
|
|
16403
|
-
template: "
|
|
16428
|
+
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";
|
|
16404
16429
|
body: string;
|
|
16405
16430
|
from: string;
|
|
16406
16431
|
subject: string;
|
|
@@ -16419,7 +16444,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16419
16444
|
$put: {
|
|
16420
16445
|
input: {
|
|
16421
16446
|
param: {
|
|
16422
|
-
templateName: "
|
|
16447
|
+
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";
|
|
16423
16448
|
};
|
|
16424
16449
|
} & {
|
|
16425
16450
|
header: {
|
|
@@ -16427,7 +16452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16427
16452
|
};
|
|
16428
16453
|
} & {
|
|
16429
16454
|
json: {
|
|
16430
|
-
template: "
|
|
16455
|
+
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";
|
|
16431
16456
|
body: string;
|
|
16432
16457
|
subject: string;
|
|
16433
16458
|
syntax?: "liquid" | undefined;
|
|
@@ -16439,7 +16464,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16439
16464
|
};
|
|
16440
16465
|
};
|
|
16441
16466
|
output: {
|
|
16442
|
-
template: "
|
|
16467
|
+
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";
|
|
16443
16468
|
body: string;
|
|
16444
16469
|
from: string;
|
|
16445
16470
|
subject: string;
|
|
@@ -16458,7 +16483,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16458
16483
|
$patch: {
|
|
16459
16484
|
input: {
|
|
16460
16485
|
param: {
|
|
16461
|
-
templateName: "
|
|
16486
|
+
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";
|
|
16462
16487
|
};
|
|
16463
16488
|
} & {
|
|
16464
16489
|
header: {
|
|
@@ -16466,7 +16491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16466
16491
|
};
|
|
16467
16492
|
} & {
|
|
16468
16493
|
json: {
|
|
16469
|
-
template?: "
|
|
16494
|
+
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;
|
|
16470
16495
|
body?: string | undefined;
|
|
16471
16496
|
from?: string | undefined;
|
|
16472
16497
|
subject?: string | undefined;
|
|
@@ -16483,7 +16508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16483
16508
|
} | {
|
|
16484
16509
|
input: {
|
|
16485
16510
|
param: {
|
|
16486
|
-
templateName: "
|
|
16511
|
+
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";
|
|
16487
16512
|
};
|
|
16488
16513
|
} & {
|
|
16489
16514
|
header: {
|
|
@@ -16491,7 +16516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16491
16516
|
};
|
|
16492
16517
|
} & {
|
|
16493
16518
|
json: {
|
|
16494
|
-
template?: "
|
|
16519
|
+
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;
|
|
16495
16520
|
body?: string | undefined;
|
|
16496
16521
|
from?: string | undefined;
|
|
16497
16522
|
subject?: string | undefined;
|
|
@@ -16503,7 +16528,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16503
16528
|
};
|
|
16504
16529
|
};
|
|
16505
16530
|
output: {
|
|
16506
|
-
template: "
|
|
16531
|
+
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";
|
|
16507
16532
|
body: string;
|
|
16508
16533
|
from: string;
|
|
16509
16534
|
subject: string;
|
|
@@ -16522,7 +16547,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16522
16547
|
$delete: {
|
|
16523
16548
|
input: {
|
|
16524
16549
|
param: {
|
|
16525
|
-
templateName: "
|
|
16550
|
+
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";
|
|
16526
16551
|
};
|
|
16527
16552
|
} & {
|
|
16528
16553
|
header: {
|
|
@@ -16535,7 +16560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16535
16560
|
} | {
|
|
16536
16561
|
input: {
|
|
16537
16562
|
param: {
|
|
16538
|
-
templateName: "
|
|
16563
|
+
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";
|
|
16539
16564
|
};
|
|
16540
16565
|
} & {
|
|
16541
16566
|
header: {
|
|
@@ -16552,7 +16577,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16552
16577
|
$post: {
|
|
16553
16578
|
input: {
|
|
16554
16579
|
param: {
|
|
16555
|
-
templateName: "
|
|
16580
|
+
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";
|
|
16556
16581
|
};
|
|
16557
16582
|
} & {
|
|
16558
16583
|
header: {
|
|
@@ -17504,7 +17529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17504
17529
|
} & {
|
|
17505
17530
|
json: {
|
|
17506
17531
|
body?: string | undefined;
|
|
17507
|
-
screen?: "
|
|
17532
|
+
screen?: "login" | "identifier" | "signup" | "password" | undefined;
|
|
17508
17533
|
branding?: {
|
|
17509
17534
|
colors?: {
|
|
17510
17535
|
primary: string;
|
|
@@ -19210,19 +19235,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19210
19235
|
email: string;
|
|
19211
19236
|
send: "code" | "link";
|
|
19212
19237
|
authParams: {
|
|
19213
|
-
|
|
19214
|
-
|
|
19238
|
+
code_challenge?: string | undefined;
|
|
19239
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19215
19240
|
redirect_uri?: string | undefined;
|
|
19216
|
-
|
|
19217
|
-
username?: string | undefined;
|
|
19241
|
+
nonce?: string | undefined;
|
|
19218
19242
|
state?: string | undefined;
|
|
19219
19243
|
act_as?: string | undefined;
|
|
19220
19244
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19221
19245
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19222
|
-
|
|
19246
|
+
audience?: string | undefined;
|
|
19247
|
+
organization?: string | undefined;
|
|
19248
|
+
scope?: string | undefined;
|
|
19223
19249
|
prompt?: string | undefined;
|
|
19224
|
-
|
|
19225
|
-
code_challenge?: string | undefined;
|
|
19250
|
+
username?: string | undefined;
|
|
19226
19251
|
ui_locales?: string | undefined;
|
|
19227
19252
|
max_age?: number | undefined;
|
|
19228
19253
|
acr_values?: string | undefined;
|
|
@@ -19246,19 +19271,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19246
19271
|
phone_number: string;
|
|
19247
19272
|
send: "code" | "link";
|
|
19248
19273
|
authParams: {
|
|
19249
|
-
|
|
19250
|
-
|
|
19274
|
+
code_challenge?: string | undefined;
|
|
19275
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19251
19276
|
redirect_uri?: string | undefined;
|
|
19252
|
-
|
|
19253
|
-
username?: string | undefined;
|
|
19277
|
+
nonce?: string | undefined;
|
|
19254
19278
|
state?: string | undefined;
|
|
19255
19279
|
act_as?: string | undefined;
|
|
19256
19280
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19257
19281
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19258
|
-
|
|
19282
|
+
audience?: string | undefined;
|
|
19283
|
+
organization?: string | undefined;
|
|
19284
|
+
scope?: string | undefined;
|
|
19259
19285
|
prompt?: string | undefined;
|
|
19260
|
-
|
|
19261
|
-
code_challenge?: string | undefined;
|
|
19286
|
+
username?: string | undefined;
|
|
19262
19287
|
ui_locales?: string | undefined;
|
|
19263
19288
|
max_age?: number | undefined;
|
|
19264
19289
|
acr_values?: string | undefined;
|
|
@@ -21169,7 +21194,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21169
21194
|
$get: {
|
|
21170
21195
|
input: {
|
|
21171
21196
|
param: {
|
|
21172
|
-
screen: "
|
|
21197
|
+
screen: "login" | "signup" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21173
21198
|
};
|
|
21174
21199
|
} & {
|
|
21175
21200
|
query: {
|
|
@@ -21185,7 +21210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21185
21210
|
} | {
|
|
21186
21211
|
input: {
|
|
21187
21212
|
param: {
|
|
21188
|
-
screen: "
|
|
21213
|
+
screen: "login" | "signup" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21189
21214
|
};
|
|
21190
21215
|
} & {
|
|
21191
21216
|
query: {
|
|
@@ -21201,7 +21226,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21201
21226
|
} | {
|
|
21202
21227
|
input: {
|
|
21203
21228
|
param: {
|
|
21204
|
-
screen: "
|
|
21229
|
+
screen: "login" | "signup" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21205
21230
|
};
|
|
21206
21231
|
} & {
|
|
21207
21232
|
query: {
|
|
@@ -21221,7 +21246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21221
21246
|
$post: {
|
|
21222
21247
|
input: {
|
|
21223
21248
|
param: {
|
|
21224
|
-
screen: "
|
|
21249
|
+
screen: "login" | "signup" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21225
21250
|
};
|
|
21226
21251
|
} & {
|
|
21227
21252
|
query: {
|
|
@@ -21239,7 +21264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21239
21264
|
} | {
|
|
21240
21265
|
input: {
|
|
21241
21266
|
param: {
|
|
21242
|
-
screen: "
|
|
21267
|
+
screen: "login" | "signup" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21243
21268
|
};
|
|
21244
21269
|
} & {
|
|
21245
21270
|
query: {
|
|
@@ -21334,6 +21359,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21334
21359
|
};
|
|
21335
21360
|
};
|
|
21336
21361
|
}, "/forms"> & hono_types.MergeSchemaPath<{}, "/screen">, "/">;
|
|
21362
|
+
scimApp: OpenAPIHono<{
|
|
21363
|
+
Bindings: Bindings;
|
|
21364
|
+
Variables: Variables;
|
|
21365
|
+
}, {}, "/"> | undefined;
|
|
21337
21366
|
createX509Certificate: typeof createX509Certificate;
|
|
21338
21367
|
};
|
|
21339
21368
|
|