authhero 9.6.1 → 9.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +122 -108
- package/dist/authhero.d.ts +100 -100
- package/dist/authhero.mjs +3942 -3813
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +2 -2
- package/dist/types/helpers/users.d.ts +53 -0
- package/dist/types/index.d.ts +100 -100
- package/dist/types/routes/auth-api/authorize.d.ts +3 -3
- package/dist/types/routes/auth-api/index.d.ts +30 -30
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +3 -3
- package/dist/types/routes/management-api/clients.d.ts +14 -14
- 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/index.d.ts +63 -63
- 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 +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +29 -29
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- 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/utils/jwks.d.ts +2 -2
- package/package.json +3 -3
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
12
|
+
gzip?: "true" | "false" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
26
|
+
gzip?: "true" | "false" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "
|
|
99
|
+
type: "push" | "email" | "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: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1202,12 +1202,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1202
1202
|
invitee: {
|
|
1203
1203
|
email?: string | undefined;
|
|
1204
1204
|
};
|
|
1205
|
+
id?: string | undefined;
|
|
1205
1206
|
app_metadata?: Record<string, any> | undefined;
|
|
1206
1207
|
user_metadata?: Record<string, any> | undefined;
|
|
1207
|
-
id?: string | undefined;
|
|
1208
1208
|
connection_id?: string | undefined;
|
|
1209
|
-
ttl_sec?: number | undefined;
|
|
1210
1209
|
roles?: string[] | undefined;
|
|
1210
|
+
ttl_sec?: number | undefined;
|
|
1211
1211
|
send_invitation_email?: boolean | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
@@ -1963,9 +1963,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1963
1963
|
};
|
|
1964
1964
|
} & {
|
|
1965
1965
|
query: {
|
|
1966
|
+
from?: string | undefined;
|
|
1966
1967
|
page?: string | undefined;
|
|
1967
1968
|
include_totals?: string | undefined;
|
|
1968
|
-
from?: string | undefined;
|
|
1969
1969
|
per_page?: string | undefined;
|
|
1970
1970
|
take?: string | undefined;
|
|
1971
1971
|
};
|
|
@@ -6961,7 +6961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6961
6961
|
};
|
|
6962
6962
|
};
|
|
6963
6963
|
output: {
|
|
6964
|
-
prompt: "mfa" | "organizations" | "signup" | "status" | "
|
|
6964
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6965
6965
|
language: string;
|
|
6966
6966
|
}[];
|
|
6967
6967
|
outputFormat: "json";
|
|
@@ -6999,7 +6999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6999
6999
|
$get: {
|
|
7000
7000
|
input: {
|
|
7001
7001
|
param: {
|
|
7002
|
-
prompt: "mfa" | "organizations" | "signup" | "status" | "
|
|
7002
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7003
7003
|
language: string;
|
|
7004
7004
|
};
|
|
7005
7005
|
} & {
|
|
@@ -7021,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7021
7021
|
$put: {
|
|
7022
7022
|
input: {
|
|
7023
7023
|
param: {
|
|
7024
|
-
prompt: "mfa" | "organizations" | "signup" | "status" | "
|
|
7024
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7025
7025
|
language: string;
|
|
7026
7026
|
};
|
|
7027
7027
|
} & {
|
|
@@ -7045,7 +7045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7045
7045
|
$delete: {
|
|
7046
7046
|
input: {
|
|
7047
7047
|
param: {
|
|
7048
|
-
prompt: "mfa" | "organizations" | "signup" | "status" | "
|
|
7048
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7049
7049
|
language: string;
|
|
7050
7050
|
};
|
|
7051
7051
|
} & {
|
|
@@ -8657,7 +8657,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8657
8657
|
log_type: string;
|
|
8658
8658
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8659
8659
|
actor: {
|
|
8660
|
-
type: "client_credentials" | "user" | "system" | "
|
|
8660
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8661
8661
|
id?: string | undefined;
|
|
8662
8662
|
email?: string | undefined;
|
|
8663
8663
|
org_id?: string | undefined;
|
|
@@ -8968,7 +8968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8968
8968
|
created_at: string;
|
|
8969
8969
|
updated_at: string;
|
|
8970
8970
|
name: string;
|
|
8971
|
-
provider: "auth0" | "
|
|
8971
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8972
8972
|
connection: string;
|
|
8973
8973
|
enabled: boolean;
|
|
8974
8974
|
credentials: {
|
|
@@ -9000,7 +9000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9000
9000
|
created_at: string;
|
|
9001
9001
|
updated_at: string;
|
|
9002
9002
|
name: string;
|
|
9003
|
-
provider: "auth0" | "
|
|
9003
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9004
9004
|
connection: string;
|
|
9005
9005
|
enabled: boolean;
|
|
9006
9006
|
credentials: {
|
|
@@ -9026,7 +9026,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9026
9026
|
} & {
|
|
9027
9027
|
json: {
|
|
9028
9028
|
name: string;
|
|
9029
|
-
provider: "auth0" | "
|
|
9029
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9030
9030
|
connection: string;
|
|
9031
9031
|
credentials: {
|
|
9032
9032
|
domain: string;
|
|
@@ -9043,7 +9043,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9043
9043
|
created_at: string;
|
|
9044
9044
|
updated_at: string;
|
|
9045
9045
|
name: string;
|
|
9046
|
-
provider: "auth0" | "
|
|
9046
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9047
9047
|
connection: string;
|
|
9048
9048
|
enabled: boolean;
|
|
9049
9049
|
credentials: {
|
|
@@ -9074,7 +9074,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9074
9074
|
json: {
|
|
9075
9075
|
id?: string | undefined;
|
|
9076
9076
|
name?: string | undefined;
|
|
9077
|
-
provider?: "auth0" | "
|
|
9077
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
9078
9078
|
connection?: string | undefined;
|
|
9079
9079
|
enabled?: boolean | undefined;
|
|
9080
9080
|
credentials?: {
|
|
@@ -9090,7 +9090,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9090
9090
|
created_at: string;
|
|
9091
9091
|
updated_at: string;
|
|
9092
9092
|
name: string;
|
|
9093
|
-
provider: "auth0" | "
|
|
9093
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9094
9094
|
connection: string;
|
|
9095
9095
|
enabled: boolean;
|
|
9096
9096
|
credentials: {
|
|
@@ -9308,7 +9308,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9308
9308
|
};
|
|
9309
9309
|
};
|
|
9310
9310
|
output: {
|
|
9311
|
-
type: "
|
|
9311
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9312
9312
|
date: string;
|
|
9313
9313
|
isMobile: boolean;
|
|
9314
9314
|
log_id: string;
|
|
@@ -9347,7 +9347,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9347
9347
|
limit: number;
|
|
9348
9348
|
length: number;
|
|
9349
9349
|
logs: {
|
|
9350
|
-
type: "
|
|
9350
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9351
9351
|
date: string;
|
|
9352
9352
|
isMobile: boolean;
|
|
9353
9353
|
log_id: string;
|
|
@@ -9386,7 +9386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9386
9386
|
next?: string | undefined;
|
|
9387
9387
|
} | {
|
|
9388
9388
|
logs: {
|
|
9389
|
-
type: "
|
|
9389
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9390
9390
|
date: string;
|
|
9391
9391
|
isMobile: boolean;
|
|
9392
9392
|
log_id: string;
|
|
@@ -9440,7 +9440,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9440
9440
|
};
|
|
9441
9441
|
};
|
|
9442
9442
|
output: {
|
|
9443
|
-
type: "
|
|
9443
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9444
9444
|
date: string;
|
|
9445
9445
|
isMobile: boolean;
|
|
9446
9446
|
log_id: string;
|
|
@@ -9596,7 +9596,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9596
9596
|
audience?: string | undefined;
|
|
9597
9597
|
client_id?: string | undefined;
|
|
9598
9598
|
allow_any_organization?: string | undefined;
|
|
9599
|
-
subject_type?: "
|
|
9599
|
+
subject_type?: "user" | "client" | undefined;
|
|
9600
9600
|
};
|
|
9601
9601
|
} & {
|
|
9602
9602
|
header: {
|
|
@@ -9611,7 +9611,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9611
9611
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9612
9612
|
allow_any_organization?: boolean | undefined;
|
|
9613
9613
|
is_system?: boolean | undefined;
|
|
9614
|
-
subject_type?: "
|
|
9614
|
+
subject_type?: "user" | "client" | undefined;
|
|
9615
9615
|
authorization_details_types?: string[] | undefined;
|
|
9616
9616
|
created_at?: string | undefined;
|
|
9617
9617
|
updated_at?: string | undefined;
|
|
@@ -9627,7 +9627,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9627
9627
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9628
9628
|
allow_any_organization?: boolean | undefined;
|
|
9629
9629
|
is_system?: boolean | undefined;
|
|
9630
|
-
subject_type?: "
|
|
9630
|
+
subject_type?: "user" | "client" | undefined;
|
|
9631
9631
|
authorization_details_types?: string[] | undefined;
|
|
9632
9632
|
created_at?: string | undefined;
|
|
9633
9633
|
updated_at?: string | undefined;
|
|
@@ -9643,7 +9643,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9643
9643
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9644
9644
|
allow_any_organization?: boolean | undefined;
|
|
9645
9645
|
is_system?: boolean | undefined;
|
|
9646
|
-
subject_type?: "
|
|
9646
|
+
subject_type?: "user" | "client" | undefined;
|
|
9647
9647
|
authorization_details_types?: string[] | undefined;
|
|
9648
9648
|
created_at?: string | undefined;
|
|
9649
9649
|
updated_at?: string | undefined;
|
|
@@ -9674,7 +9674,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9674
9674
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9675
9675
|
allow_any_organization?: boolean | undefined;
|
|
9676
9676
|
is_system?: boolean | undefined;
|
|
9677
|
-
subject_type?: "
|
|
9677
|
+
subject_type?: "user" | "client" | undefined;
|
|
9678
9678
|
authorization_details_types?: string[] | undefined;
|
|
9679
9679
|
created_at?: string | undefined;
|
|
9680
9680
|
updated_at?: string | undefined;
|
|
@@ -9719,7 +9719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9719
9719
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9720
9720
|
allow_any_organization?: boolean | undefined;
|
|
9721
9721
|
is_system?: boolean | undefined;
|
|
9722
|
-
subject_type?: "
|
|
9722
|
+
subject_type?: "user" | "client" | undefined;
|
|
9723
9723
|
authorization_details_types?: string[] | undefined;
|
|
9724
9724
|
};
|
|
9725
9725
|
};
|
|
@@ -9731,7 +9731,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9731
9731
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9732
9732
|
allow_any_organization?: boolean | undefined;
|
|
9733
9733
|
is_system?: boolean | undefined;
|
|
9734
|
-
subject_type?: "
|
|
9734
|
+
subject_type?: "user" | "client" | undefined;
|
|
9735
9735
|
authorization_details_types?: string[] | undefined;
|
|
9736
9736
|
created_at?: string | undefined;
|
|
9737
9737
|
updated_at?: string | undefined;
|
|
@@ -9755,7 +9755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9755
9755
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9756
9756
|
allow_any_organization?: boolean | undefined;
|
|
9757
9757
|
is_system?: boolean | undefined;
|
|
9758
|
-
subject_type?: "
|
|
9758
|
+
subject_type?: "user" | "client" | undefined;
|
|
9759
9759
|
authorization_details_types?: string[] | undefined;
|
|
9760
9760
|
};
|
|
9761
9761
|
};
|
|
@@ -9767,7 +9767,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9767
9767
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9768
9768
|
allow_any_organization?: boolean | undefined;
|
|
9769
9769
|
is_system?: boolean | undefined;
|
|
9770
|
-
subject_type?: "
|
|
9770
|
+
subject_type?: "user" | "client" | undefined;
|
|
9771
9771
|
authorization_details_types?: string[] | undefined;
|
|
9772
9772
|
created_at?: string | undefined;
|
|
9773
9773
|
updated_at?: string | undefined;
|
|
@@ -11912,7 +11912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11912
11912
|
};
|
|
11913
11913
|
};
|
|
11914
11914
|
output: {
|
|
11915
|
-
type: "
|
|
11915
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11916
11916
|
date: string;
|
|
11917
11917
|
isMobile: boolean;
|
|
11918
11918
|
log_id: string;
|
|
@@ -11951,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11951
11951
|
limit: number;
|
|
11952
11952
|
length: number;
|
|
11953
11953
|
logs: {
|
|
11954
|
-
type: "
|
|
11954
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11955
11955
|
date: string;
|
|
11956
11956
|
isMobile: boolean;
|
|
11957
11957
|
log_id: string;
|
|
@@ -12270,7 +12270,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12270
12270
|
};
|
|
12271
12271
|
} & {
|
|
12272
12272
|
json: {
|
|
12273
|
-
template: "
|
|
12273
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12274
12274
|
body: string;
|
|
12275
12275
|
from: string;
|
|
12276
12276
|
subject: string;
|
|
@@ -12291,7 +12291,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12291
12291
|
};
|
|
12292
12292
|
} & {
|
|
12293
12293
|
json: {
|
|
12294
|
-
template: "
|
|
12294
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12295
12295
|
body: string;
|
|
12296
12296
|
from: string;
|
|
12297
12297
|
subject: string;
|
|
@@ -12303,7 +12303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12303
12303
|
};
|
|
12304
12304
|
};
|
|
12305
12305
|
output: {
|
|
12306
|
-
template: "
|
|
12306
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12307
12307
|
body: string;
|
|
12308
12308
|
from: string;
|
|
12309
12309
|
subject: string;
|
|
@@ -12326,7 +12326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12326
12326
|
};
|
|
12327
12327
|
};
|
|
12328
12328
|
output: {
|
|
12329
|
-
name: "
|
|
12329
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12330
12330
|
body: string;
|
|
12331
12331
|
subject: string;
|
|
12332
12332
|
}[];
|
|
@@ -12339,7 +12339,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12339
12339
|
$get: {
|
|
12340
12340
|
input: {
|
|
12341
12341
|
param: {
|
|
12342
|
-
templateName: "
|
|
12342
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12343
12343
|
};
|
|
12344
12344
|
} & {
|
|
12345
12345
|
header: {
|
|
@@ -12352,7 +12352,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12352
12352
|
} | {
|
|
12353
12353
|
input: {
|
|
12354
12354
|
param: {
|
|
12355
|
-
templateName: "
|
|
12355
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12356
12356
|
};
|
|
12357
12357
|
} & {
|
|
12358
12358
|
header: {
|
|
@@ -12360,7 +12360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12360
12360
|
};
|
|
12361
12361
|
};
|
|
12362
12362
|
output: {
|
|
12363
|
-
template: "
|
|
12363
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12364
12364
|
body: string;
|
|
12365
12365
|
from: string;
|
|
12366
12366
|
subject: string;
|
|
@@ -12379,7 +12379,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12379
12379
|
$put: {
|
|
12380
12380
|
input: {
|
|
12381
12381
|
param: {
|
|
12382
|
-
templateName: "
|
|
12382
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12383
12383
|
};
|
|
12384
12384
|
} & {
|
|
12385
12385
|
header: {
|
|
@@ -12387,7 +12387,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12387
12387
|
};
|
|
12388
12388
|
} & {
|
|
12389
12389
|
json: {
|
|
12390
|
-
template: "
|
|
12390
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12391
12391
|
body: string;
|
|
12392
12392
|
subject: string;
|
|
12393
12393
|
syntax?: "liquid" | undefined;
|
|
@@ -12399,7 +12399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12399
12399
|
};
|
|
12400
12400
|
};
|
|
12401
12401
|
output: {
|
|
12402
|
-
template: "
|
|
12402
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12403
12403
|
body: string;
|
|
12404
12404
|
from: string;
|
|
12405
12405
|
subject: string;
|
|
@@ -12418,7 +12418,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12418
12418
|
$patch: {
|
|
12419
12419
|
input: {
|
|
12420
12420
|
param: {
|
|
12421
|
-
templateName: "
|
|
12421
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12422
12422
|
};
|
|
12423
12423
|
} & {
|
|
12424
12424
|
header: {
|
|
@@ -12426,7 +12426,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12426
12426
|
};
|
|
12427
12427
|
} & {
|
|
12428
12428
|
json: {
|
|
12429
|
-
template?: "
|
|
12429
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12430
12430
|
body?: string | undefined;
|
|
12431
12431
|
from?: string | undefined;
|
|
12432
12432
|
subject?: string | undefined;
|
|
@@ -12443,7 +12443,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12443
12443
|
} | {
|
|
12444
12444
|
input: {
|
|
12445
12445
|
param: {
|
|
12446
|
-
templateName: "
|
|
12446
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12447
12447
|
};
|
|
12448
12448
|
} & {
|
|
12449
12449
|
header: {
|
|
@@ -12451,7 +12451,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12451
12451
|
};
|
|
12452
12452
|
} & {
|
|
12453
12453
|
json: {
|
|
12454
|
-
template?: "
|
|
12454
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12455
12455
|
body?: string | undefined;
|
|
12456
12456
|
from?: string | undefined;
|
|
12457
12457
|
subject?: string | undefined;
|
|
@@ -12463,7 +12463,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12463
12463
|
};
|
|
12464
12464
|
};
|
|
12465
12465
|
output: {
|
|
12466
|
-
template: "
|
|
12466
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12467
12467
|
body: string;
|
|
12468
12468
|
from: string;
|
|
12469
12469
|
subject: string;
|
|
@@ -12482,7 +12482,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12482
12482
|
$delete: {
|
|
12483
12483
|
input: {
|
|
12484
12484
|
param: {
|
|
12485
|
-
templateName: "
|
|
12485
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12486
12486
|
};
|
|
12487
12487
|
} & {
|
|
12488
12488
|
header: {
|
|
@@ -12495,7 +12495,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12495
12495
|
} | {
|
|
12496
12496
|
input: {
|
|
12497
12497
|
param: {
|
|
12498
|
-
templateName: "
|
|
12498
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12499
12499
|
};
|
|
12500
12500
|
} & {
|
|
12501
12501
|
header: {
|
|
@@ -12512,7 +12512,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12512
12512
|
$post: {
|
|
12513
12513
|
input: {
|
|
12514
12514
|
param: {
|
|
12515
|
-
templateName: "
|
|
12515
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12516
12516
|
};
|
|
12517
12517
|
} & {
|
|
12518
12518
|
header: {
|
|
@@ -13464,7 +13464,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13464
13464
|
} & {
|
|
13465
13465
|
json: {
|
|
13466
13466
|
body?: string | undefined;
|
|
13467
|
-
screen?: "
|
|
13467
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
13468
13468
|
branding?: {
|
|
13469
13469
|
colors?: {
|
|
13470
13470
|
primary: string;
|
|
@@ -13633,7 +13633,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13633
13633
|
json: {
|
|
13634
13634
|
bindings: {
|
|
13635
13635
|
ref: {
|
|
13636
|
-
type?: "
|
|
13636
|
+
type?: "action_id" | "action_name" | undefined;
|
|
13637
13637
|
value?: string | undefined;
|
|
13638
13638
|
id?: string | undefined;
|
|
13639
13639
|
name?: string | undefined;
|
|
@@ -14063,7 +14063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14063
14063
|
};
|
|
14064
14064
|
output: {};
|
|
14065
14065
|
outputFormat: string;
|
|
14066
|
-
status:
|
|
14066
|
+
status: 200;
|
|
14067
14067
|
} | {
|
|
14068
14068
|
input: {
|
|
14069
14069
|
param: {
|
|
@@ -14076,7 +14076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14076
14076
|
};
|
|
14077
14077
|
output: {};
|
|
14078
14078
|
outputFormat: string;
|
|
14079
|
-
status:
|
|
14079
|
+
status: 404;
|
|
14080
14080
|
} | {
|
|
14081
14081
|
input: {
|
|
14082
14082
|
param: {
|
|
@@ -14089,7 +14089,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14089
14089
|
};
|
|
14090
14090
|
output: {};
|
|
14091
14091
|
outputFormat: string;
|
|
14092
|
-
status:
|
|
14092
|
+
status: 409;
|
|
14093
14093
|
};
|
|
14094
14094
|
};
|
|
14095
14095
|
} & {
|