authhero 5.18.0 → 5.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +136 -129
- package/dist/authhero.d.ts +309 -104
- package/dist/authhero.mjs +10431 -9866
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/helpers/consent.d.ts +31 -0
- package/dist/types/helpers/control-plane-sync-events.d.ts +67 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/default-destinations.d.ts +11 -0
- package/dist/types/helpers/outbox-destinations/control-plane-sync.d.ts +35 -0
- package/dist/types/helpers/outbox-destinations/logs.d.ts +2 -0
- package/dist/types/index.d.ts +178 -101
- package/dist/types/routes/auth-api/index.d.ts +24 -24
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +9 -9
- package/dist/types/routes/management-api/connections.d.ts +5 -5
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +15 -15
- package/dist/types/routes/management-api/grants.d.ts +80 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +143 -69
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/proxy-routes.d.ts +1 -0
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +34 -1
- package/dist/types/routes/universal-login/common.d.ts +10 -10
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- 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/screens/consent.d.ts +9 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/state-machines/login-session.d.ts +12 -1
- package/dist/types/types/AuthHeroConfig.d.ts +26 -0
- package/dist/types/types/IdToken.d.ts +1 -1
- package/package.json +5 -5
|
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "push" | "email" | "passkey" | "
|
|
40
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
41
41
|
phone_number?: string | undefined;
|
|
42
42
|
totp_secret?: string | undefined;
|
|
43
43
|
credential_id?: string | undefined;
|
|
@@ -177,7 +177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
177
177
|
};
|
|
178
178
|
};
|
|
179
179
|
output: {
|
|
180
|
-
name: "
|
|
180
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
181
181
|
enabled: boolean;
|
|
182
182
|
trial_expired?: boolean | undefined;
|
|
183
183
|
}[];
|
|
@@ -332,7 +332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
332
332
|
$get: {
|
|
333
333
|
input: {
|
|
334
334
|
param: {
|
|
335
|
-
factor_name: "
|
|
335
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
336
336
|
};
|
|
337
337
|
} & {
|
|
338
338
|
header: {
|
|
@@ -340,7 +340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
340
340
|
};
|
|
341
341
|
};
|
|
342
342
|
output: {
|
|
343
|
-
name: "
|
|
343
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
344
344
|
enabled: boolean;
|
|
345
345
|
trial_expired?: boolean | undefined;
|
|
346
346
|
};
|
|
@@ -353,7 +353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
353
353
|
$put: {
|
|
354
354
|
input: {
|
|
355
355
|
param: {
|
|
356
|
-
factor_name: "
|
|
356
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
357
357
|
};
|
|
358
358
|
} & {
|
|
359
359
|
header: {
|
|
@@ -365,7 +365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
365
365
|
};
|
|
366
366
|
};
|
|
367
367
|
output: {
|
|
368
|
-
name: "
|
|
368
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
369
369
|
enabled: boolean;
|
|
370
370
|
trial_expired?: boolean | undefined;
|
|
371
371
|
};
|
|
@@ -1298,8 +1298,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1298
1298
|
};
|
|
1299
1299
|
} & {
|
|
1300
1300
|
json: {
|
|
1301
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1302
1301
|
show_as_button?: boolean | undefined;
|
|
1302
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1303
1303
|
is_signup_enabled?: boolean | undefined;
|
|
1304
1304
|
};
|
|
1305
1305
|
};
|
|
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6601
6601
|
};
|
|
6602
6602
|
};
|
|
6603
6603
|
output: {
|
|
6604
|
-
prompt: "
|
|
6604
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6605
6605
|
language: string;
|
|
6606
6606
|
}[];
|
|
6607
6607
|
outputFormat: "json";
|
|
@@ -6639,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6639
6639
|
$get: {
|
|
6640
6640
|
input: {
|
|
6641
6641
|
param: {
|
|
6642
|
-
prompt: "
|
|
6642
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6643
6643
|
language: string;
|
|
6644
6644
|
};
|
|
6645
6645
|
} & {
|
|
@@ -6661,7 +6661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6661
6661
|
$put: {
|
|
6662
6662
|
input: {
|
|
6663
6663
|
param: {
|
|
6664
|
-
prompt: "
|
|
6664
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6665
6665
|
language: string;
|
|
6666
6666
|
};
|
|
6667
6667
|
} & {
|
|
@@ -6685,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6685
6685
|
$delete: {
|
|
6686
6686
|
input: {
|
|
6687
6687
|
param: {
|
|
6688
|
-
prompt: "
|
|
6688
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6689
6689
|
language: string;
|
|
6690
6690
|
};
|
|
6691
6691
|
} & {
|
|
@@ -6824,7 +6824,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6824
6824
|
} | undefined;
|
|
6825
6825
|
} | undefined;
|
|
6826
6826
|
passkey_options?: {
|
|
6827
|
-
challenge_ui?: "
|
|
6827
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
6828
6828
|
local_enrollment_enabled?: boolean | undefined;
|
|
6829
6829
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
6830
6830
|
} | undefined;
|
|
@@ -6958,7 +6958,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6958
6958
|
} | undefined;
|
|
6959
6959
|
} | undefined;
|
|
6960
6960
|
passkey_options?: {
|
|
6961
|
-
challenge_ui?: "
|
|
6961
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
6962
6962
|
local_enrollment_enabled?: boolean | undefined;
|
|
6963
6963
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
6964
6964
|
} | undefined;
|
|
@@ -7107,7 +7107,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7107
7107
|
} | undefined;
|
|
7108
7108
|
} | undefined;
|
|
7109
7109
|
passkey_options?: {
|
|
7110
|
-
challenge_ui?: "
|
|
7110
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7111
7111
|
local_enrollment_enabled?: boolean | undefined;
|
|
7112
7112
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7113
7113
|
} | undefined;
|
|
@@ -7286,7 +7286,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7286
7286
|
} | undefined;
|
|
7287
7287
|
} | undefined;
|
|
7288
7288
|
passkey_options?: {
|
|
7289
|
-
challenge_ui?: "
|
|
7289
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7290
7290
|
local_enrollment_enabled?: boolean | undefined;
|
|
7291
7291
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7292
7292
|
} | undefined;
|
|
@@ -7444,7 +7444,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7444
7444
|
} | undefined;
|
|
7445
7445
|
} | undefined;
|
|
7446
7446
|
passkey_options?: {
|
|
7447
|
-
challenge_ui?: "
|
|
7447
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7448
7448
|
local_enrollment_enabled?: boolean | undefined;
|
|
7449
7449
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7450
7450
|
} | undefined;
|
|
@@ -8434,7 +8434,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8434
8434
|
created_at: string;
|
|
8435
8435
|
updated_at: string;
|
|
8436
8436
|
name: string;
|
|
8437
|
-
provider: "auth0" | "
|
|
8437
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8438
8438
|
connection: string;
|
|
8439
8439
|
enabled: boolean;
|
|
8440
8440
|
credentials: {
|
|
@@ -8466,7 +8466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8466
8466
|
created_at: string;
|
|
8467
8467
|
updated_at: string;
|
|
8468
8468
|
name: string;
|
|
8469
|
-
provider: "auth0" | "
|
|
8469
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8470
8470
|
connection: string;
|
|
8471
8471
|
enabled: boolean;
|
|
8472
8472
|
credentials: {
|
|
@@ -8492,7 +8492,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8492
8492
|
} & {
|
|
8493
8493
|
json: {
|
|
8494
8494
|
name: string;
|
|
8495
|
-
provider: "auth0" | "
|
|
8495
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8496
8496
|
connection: string;
|
|
8497
8497
|
credentials: {
|
|
8498
8498
|
domain: string;
|
|
@@ -8509,7 +8509,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8509
8509
|
created_at: string;
|
|
8510
8510
|
updated_at: string;
|
|
8511
8511
|
name: string;
|
|
8512
|
-
provider: "auth0" | "
|
|
8512
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8513
8513
|
connection: string;
|
|
8514
8514
|
enabled: boolean;
|
|
8515
8515
|
credentials: {
|
|
@@ -8540,7 +8540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8540
8540
|
json: {
|
|
8541
8541
|
id?: string | undefined;
|
|
8542
8542
|
name?: string | undefined;
|
|
8543
|
-
provider?: "auth0" | "
|
|
8543
|
+
provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
|
|
8544
8544
|
connection?: string | undefined;
|
|
8545
8545
|
enabled?: boolean | undefined;
|
|
8546
8546
|
credentials?: {
|
|
@@ -8556,7 +8556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8556
8556
|
created_at: string;
|
|
8557
8557
|
updated_at: string;
|
|
8558
8558
|
name: string;
|
|
8559
|
-
provider: "auth0" | "
|
|
8559
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
8560
8560
|
connection: string;
|
|
8561
8561
|
enabled: boolean;
|
|
8562
8562
|
credentials: {
|
|
@@ -8774,7 +8774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8774
8774
|
};
|
|
8775
8775
|
};
|
|
8776
8776
|
output: {
|
|
8777
|
-
type: "
|
|
8777
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8778
8778
|
date: string;
|
|
8779
8779
|
isMobile: boolean;
|
|
8780
8780
|
log_id: string;
|
|
@@ -8813,7 +8813,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8813
8813
|
limit: number;
|
|
8814
8814
|
length: number;
|
|
8815
8815
|
logs: {
|
|
8816
|
-
type: "
|
|
8816
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8817
8817
|
date: string;
|
|
8818
8818
|
isMobile: boolean;
|
|
8819
8819
|
log_id: string;
|
|
@@ -8867,7 +8867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8867
8867
|
};
|
|
8868
8868
|
};
|
|
8869
8869
|
output: {
|
|
8870
|
-
type: "
|
|
8870
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8871
8871
|
date: string;
|
|
8872
8872
|
isMobile: boolean;
|
|
8873
8873
|
log_id: string;
|
|
@@ -8936,6 +8936,80 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8936
8936
|
};
|
|
8937
8937
|
};
|
|
8938
8938
|
}, "/client-registration-tokens"> & import("hono/types").MergeSchemaPath<{
|
|
8939
|
+
"/": {
|
|
8940
|
+
$get: {
|
|
8941
|
+
input: {
|
|
8942
|
+
query: {
|
|
8943
|
+
per_page?: string | undefined;
|
|
8944
|
+
page?: string | undefined;
|
|
8945
|
+
include_totals?: string | undefined;
|
|
8946
|
+
user_id?: string | undefined;
|
|
8947
|
+
client_id?: string | undefined;
|
|
8948
|
+
audience?: string | undefined;
|
|
8949
|
+
};
|
|
8950
|
+
} & {
|
|
8951
|
+
header: {
|
|
8952
|
+
"tenant-id"?: string | undefined;
|
|
8953
|
+
};
|
|
8954
|
+
};
|
|
8955
|
+
output: {
|
|
8956
|
+
user_id: string;
|
|
8957
|
+
clientID: string;
|
|
8958
|
+
scope: string[];
|
|
8959
|
+
id: string;
|
|
8960
|
+
audience?: string | undefined;
|
|
8961
|
+
}[] | {
|
|
8962
|
+
start: number;
|
|
8963
|
+
limit: number;
|
|
8964
|
+
length: number;
|
|
8965
|
+
grants: {
|
|
8966
|
+
user_id: string;
|
|
8967
|
+
clientID: string;
|
|
8968
|
+
scope: string[];
|
|
8969
|
+
id: string;
|
|
8970
|
+
audience?: string | undefined;
|
|
8971
|
+
}[];
|
|
8972
|
+
total?: number | undefined;
|
|
8973
|
+
};
|
|
8974
|
+
outputFormat: "json";
|
|
8975
|
+
status: 200;
|
|
8976
|
+
};
|
|
8977
|
+
};
|
|
8978
|
+
} & {
|
|
8979
|
+
"/:id": {
|
|
8980
|
+
$delete: {
|
|
8981
|
+
input: {
|
|
8982
|
+
param: {
|
|
8983
|
+
id: string;
|
|
8984
|
+
};
|
|
8985
|
+
} & {
|
|
8986
|
+
header: {
|
|
8987
|
+
"tenant-id"?: string | undefined;
|
|
8988
|
+
};
|
|
8989
|
+
};
|
|
8990
|
+
output: {};
|
|
8991
|
+
outputFormat: string;
|
|
8992
|
+
status: 204;
|
|
8993
|
+
};
|
|
8994
|
+
};
|
|
8995
|
+
} & {
|
|
8996
|
+
"/": {
|
|
8997
|
+
$delete: {
|
|
8998
|
+
input: {
|
|
8999
|
+
query: {
|
|
9000
|
+
user_id: string;
|
|
9001
|
+
};
|
|
9002
|
+
} & {
|
|
9003
|
+
header: {
|
|
9004
|
+
"tenant-id"?: string | undefined;
|
|
9005
|
+
};
|
|
9006
|
+
};
|
|
9007
|
+
output: {};
|
|
9008
|
+
outputFormat: string;
|
|
9009
|
+
status: 204;
|
|
9010
|
+
};
|
|
9011
|
+
};
|
|
9012
|
+
}, "/grants"> & import("hono/types").MergeSchemaPath<{
|
|
8939
9013
|
"/": {
|
|
8940
9014
|
$get: {
|
|
8941
9015
|
input: {
|
|
@@ -9181,7 +9255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9181
9255
|
addons?: {
|
|
9182
9256
|
[x: string]: any;
|
|
9183
9257
|
} | undefined;
|
|
9184
|
-
token_endpoint_auth_method?: "none" | "
|
|
9258
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9185
9259
|
client_metadata?: {
|
|
9186
9260
|
[x: string]: string;
|
|
9187
9261
|
} | undefined;
|
|
@@ -9277,7 +9351,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9277
9351
|
addons?: {
|
|
9278
9352
|
[x: string]: any;
|
|
9279
9353
|
} | undefined;
|
|
9280
|
-
token_endpoint_auth_method?: "none" | "
|
|
9354
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9281
9355
|
client_metadata?: {
|
|
9282
9356
|
[x: string]: string;
|
|
9283
9357
|
} | undefined;
|
|
@@ -9388,7 +9462,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9388
9462
|
addons?: {
|
|
9389
9463
|
[x: string]: any;
|
|
9390
9464
|
} | undefined;
|
|
9391
|
-
token_endpoint_auth_method?: "none" | "
|
|
9465
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9392
9466
|
client_metadata?: {
|
|
9393
9467
|
[x: string]: string;
|
|
9394
9468
|
} | undefined;
|
|
@@ -9498,7 +9572,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9498
9572
|
custom_login_page_preview?: string | undefined;
|
|
9499
9573
|
form_template?: string | undefined;
|
|
9500
9574
|
addons?: Record<string, any> | undefined;
|
|
9501
|
-
token_endpoint_auth_method?: "none" | "
|
|
9575
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9502
9576
|
client_metadata?: Record<string, string> | undefined;
|
|
9503
9577
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9504
9578
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9578,7 +9652,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9578
9652
|
addons?: {
|
|
9579
9653
|
[x: string]: any;
|
|
9580
9654
|
} | undefined;
|
|
9581
|
-
token_endpoint_auth_method?: "none" | "
|
|
9655
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9582
9656
|
client_metadata?: {
|
|
9583
9657
|
[x: string]: string;
|
|
9584
9658
|
} | undefined;
|
|
@@ -9667,7 +9741,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9667
9741
|
custom_login_page_preview?: string | undefined;
|
|
9668
9742
|
form_template?: string | undefined;
|
|
9669
9743
|
addons?: Record<string, any> | undefined;
|
|
9670
|
-
token_endpoint_auth_method?: "none" | "
|
|
9744
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9671
9745
|
client_metadata?: Record<string, string> | undefined;
|
|
9672
9746
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9673
9747
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9747,7 +9821,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9747
9821
|
addons?: {
|
|
9748
9822
|
[x: string]: any;
|
|
9749
9823
|
} | undefined;
|
|
9750
|
-
token_endpoint_auth_method?: "none" | "
|
|
9824
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9751
9825
|
client_metadata?: {
|
|
9752
9826
|
[x: string]: string;
|
|
9753
9827
|
} | undefined;
|
|
@@ -9916,7 +9990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9916
9990
|
} | undefined;
|
|
9917
9991
|
} | undefined;
|
|
9918
9992
|
passkey_options?: {
|
|
9919
|
-
challenge_ui?: "
|
|
9993
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
9920
9994
|
local_enrollment_enabled?: boolean | undefined;
|
|
9921
9995
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9922
9996
|
} | undefined;
|
|
@@ -10070,7 +10144,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10070
10144
|
} | undefined;
|
|
10071
10145
|
} | undefined;
|
|
10072
10146
|
passkey_options?: {
|
|
10073
|
-
challenge_ui?: "
|
|
10147
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10074
10148
|
local_enrollment_enabled?: boolean | undefined;
|
|
10075
10149
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10076
10150
|
} | undefined;
|
|
@@ -11011,7 +11085,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11011
11085
|
};
|
|
11012
11086
|
};
|
|
11013
11087
|
output: {
|
|
11014
|
-
type: "
|
|
11088
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11015
11089
|
date: string;
|
|
11016
11090
|
isMobile: boolean;
|
|
11017
11091
|
log_id: string;
|
|
@@ -11050,7 +11124,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11050
11124
|
limit: number;
|
|
11051
11125
|
length: number;
|
|
11052
11126
|
logs: {
|
|
11053
|
-
type: "
|
|
11127
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11054
11128
|
date: string;
|
|
11055
11129
|
isMobile: boolean;
|
|
11056
11130
|
log_id: string;
|
|
@@ -11365,7 +11439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11365
11439
|
};
|
|
11366
11440
|
} & {
|
|
11367
11441
|
json: {
|
|
11368
|
-
template: "
|
|
11442
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11369
11443
|
body: string;
|
|
11370
11444
|
from: string;
|
|
11371
11445
|
subject: string;
|
|
@@ -11386,7 +11460,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11386
11460
|
};
|
|
11387
11461
|
} & {
|
|
11388
11462
|
json: {
|
|
11389
|
-
template: "
|
|
11463
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11390
11464
|
body: string;
|
|
11391
11465
|
from: string;
|
|
11392
11466
|
subject: string;
|
|
@@ -11398,7 +11472,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11398
11472
|
};
|
|
11399
11473
|
};
|
|
11400
11474
|
output: {
|
|
11401
|
-
template: "
|
|
11475
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11402
11476
|
body: string;
|
|
11403
11477
|
from: string;
|
|
11404
11478
|
subject: string;
|
|
@@ -11421,7 +11495,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11421
11495
|
};
|
|
11422
11496
|
};
|
|
11423
11497
|
output: {
|
|
11424
|
-
name: "
|
|
11498
|
+
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";
|
|
11425
11499
|
body: string;
|
|
11426
11500
|
subject: string;
|
|
11427
11501
|
}[];
|
|
@@ -11434,7 +11508,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11434
11508
|
$get: {
|
|
11435
11509
|
input: {
|
|
11436
11510
|
param: {
|
|
11437
|
-
templateName: "
|
|
11511
|
+
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";
|
|
11438
11512
|
};
|
|
11439
11513
|
} & {
|
|
11440
11514
|
header: {
|
|
@@ -11447,7 +11521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11447
11521
|
} | {
|
|
11448
11522
|
input: {
|
|
11449
11523
|
param: {
|
|
11450
|
-
templateName: "
|
|
11524
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11451
11525
|
};
|
|
11452
11526
|
} & {
|
|
11453
11527
|
header: {
|
|
@@ -11455,7 +11529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11455
11529
|
};
|
|
11456
11530
|
};
|
|
11457
11531
|
output: {
|
|
11458
|
-
template: "
|
|
11532
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11459
11533
|
body: string;
|
|
11460
11534
|
from: string;
|
|
11461
11535
|
subject: string;
|
|
@@ -11474,7 +11548,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11474
11548
|
$put: {
|
|
11475
11549
|
input: {
|
|
11476
11550
|
param: {
|
|
11477
|
-
templateName: "
|
|
11551
|
+
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";
|
|
11478
11552
|
};
|
|
11479
11553
|
} & {
|
|
11480
11554
|
header: {
|
|
@@ -11482,7 +11556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11482
11556
|
};
|
|
11483
11557
|
} & {
|
|
11484
11558
|
json: {
|
|
11485
|
-
template: "
|
|
11559
|
+
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";
|
|
11486
11560
|
body: string;
|
|
11487
11561
|
from: string;
|
|
11488
11562
|
subject: string;
|
|
@@ -11494,7 +11568,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11494
11568
|
};
|
|
11495
11569
|
};
|
|
11496
11570
|
output: {
|
|
11497
|
-
template: "
|
|
11571
|
+
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";
|
|
11498
11572
|
body: string;
|
|
11499
11573
|
from: string;
|
|
11500
11574
|
subject: string;
|
|
@@ -11513,7 +11587,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11513
11587
|
$patch: {
|
|
11514
11588
|
input: {
|
|
11515
11589
|
param: {
|
|
11516
|
-
templateName: "
|
|
11590
|
+
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";
|
|
11517
11591
|
};
|
|
11518
11592
|
} & {
|
|
11519
11593
|
header: {
|
|
@@ -11521,7 +11595,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11521
11595
|
};
|
|
11522
11596
|
} & {
|
|
11523
11597
|
json: {
|
|
11524
|
-
template?: "
|
|
11598
|
+
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;
|
|
11525
11599
|
body?: string | undefined;
|
|
11526
11600
|
from?: string | undefined;
|
|
11527
11601
|
subject?: string | undefined;
|
|
@@ -11538,7 +11612,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11538
11612
|
} | {
|
|
11539
11613
|
input: {
|
|
11540
11614
|
param: {
|
|
11541
|
-
templateName: "
|
|
11615
|
+
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";
|
|
11542
11616
|
};
|
|
11543
11617
|
} & {
|
|
11544
11618
|
header: {
|
|
@@ -11546,7 +11620,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11546
11620
|
};
|
|
11547
11621
|
} & {
|
|
11548
11622
|
json: {
|
|
11549
|
-
template?: "
|
|
11623
|
+
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;
|
|
11550
11624
|
body?: string | undefined;
|
|
11551
11625
|
from?: string | undefined;
|
|
11552
11626
|
subject?: string | undefined;
|
|
@@ -11558,7 +11632,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11558
11632
|
};
|
|
11559
11633
|
};
|
|
11560
11634
|
output: {
|
|
11561
|
-
template: "
|
|
11635
|
+
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";
|
|
11562
11636
|
body: string;
|
|
11563
11637
|
from: string;
|
|
11564
11638
|
subject: string;
|
|
@@ -11835,7 +11909,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11835
11909
|
primary: boolean;
|
|
11836
11910
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11837
11911
|
verification_method?: "txt" | undefined;
|
|
11838
|
-
custom_client_ip_header?: "null" | "
|
|
11912
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11839
11913
|
domain_metadata?: {
|
|
11840
11914
|
[x: string]: string;
|
|
11841
11915
|
} | undefined;
|
|
@@ -11876,7 +11950,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11876
11950
|
primary: boolean;
|
|
11877
11951
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11878
11952
|
verification_method?: "txt" | undefined;
|
|
11879
|
-
custom_client_ip_header?: "null" | "
|
|
11953
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11880
11954
|
domain_metadata?: {
|
|
11881
11955
|
[x: string]: string;
|
|
11882
11956
|
} | undefined;
|
|
@@ -11931,7 +12005,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11931
12005
|
domain?: string | undefined;
|
|
11932
12006
|
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
11933
12007
|
verification_method?: "txt" | undefined;
|
|
11934
|
-
custom_client_ip_header?: "null" | "
|
|
12008
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11935
12009
|
domain_metadata?: Record<string, string> | undefined;
|
|
11936
12010
|
custom_domain_id?: string | undefined;
|
|
11937
12011
|
primary?: boolean | undefined;
|
|
@@ -11958,7 +12032,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11958
12032
|
primary: boolean;
|
|
11959
12033
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
11960
12034
|
verification_method?: "txt" | undefined;
|
|
11961
|
-
custom_client_ip_header?: "null" | "
|
|
12035
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11962
12036
|
domain_metadata?: {
|
|
11963
12037
|
[x: string]: string;
|
|
11964
12038
|
} | undefined;
|
|
@@ -11994,7 +12068,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11994
12068
|
custom_domain_id?: string | undefined;
|
|
11995
12069
|
verification_method?: "txt" | undefined;
|
|
11996
12070
|
tls_policy?: "recommended" | undefined;
|
|
11997
|
-
custom_client_ip_header?: "null" | "
|
|
12071
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11998
12072
|
domain_metadata?: Record<string, string> | undefined;
|
|
11999
12073
|
};
|
|
12000
12074
|
};
|
|
@@ -12005,7 +12079,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12005
12079
|
primary: boolean;
|
|
12006
12080
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12007
12081
|
verification_method?: "txt" | undefined;
|
|
12008
|
-
custom_client_ip_header?: "null" | "
|
|
12082
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12009
12083
|
domain_metadata?: {
|
|
12010
12084
|
[x: string]: string;
|
|
12011
12085
|
} | undefined;
|
|
@@ -12051,7 +12125,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12051
12125
|
primary: boolean;
|
|
12052
12126
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12053
12127
|
verification_method?: "txt" | undefined;
|
|
12054
|
-
custom_client_ip_header?: "null" | "
|
|
12128
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12055
12129
|
domain_metadata?: {
|
|
12056
12130
|
[x: string]: string;
|
|
12057
12131
|
} | undefined;
|
|
@@ -12092,7 +12166,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12092
12166
|
primary: boolean;
|
|
12093
12167
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
12094
12168
|
verification_method?: "txt" | undefined;
|
|
12095
|
-
custom_client_ip_header?: "null" | "
|
|
12169
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12096
12170
|
domain_metadata?: {
|
|
12097
12171
|
[x: string]: string;
|
|
12098
12172
|
} | undefined;
|
|
@@ -12138,7 +12212,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12138
12212
|
base_focus_color: string;
|
|
12139
12213
|
base_hover_color: string;
|
|
12140
12214
|
body_text: string;
|
|
12141
|
-
captcha_widget_theme: "
|
|
12215
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
12142
12216
|
error: string;
|
|
12143
12217
|
header: string;
|
|
12144
12218
|
icons: string;
|
|
@@ -12189,7 +12263,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12189
12263
|
background_color: string;
|
|
12190
12264
|
background_image_url: string;
|
|
12191
12265
|
page_layout: "center" | "left" | "right";
|
|
12192
|
-
logo_placement?: "
|
|
12266
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12193
12267
|
};
|
|
12194
12268
|
widget: {
|
|
12195
12269
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12228,7 +12302,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12228
12302
|
base_focus_color: string;
|
|
12229
12303
|
base_hover_color: string;
|
|
12230
12304
|
body_text: string;
|
|
12231
|
-
captcha_widget_theme: "
|
|
12305
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
12232
12306
|
error: string;
|
|
12233
12307
|
header: string;
|
|
12234
12308
|
icons: string;
|
|
@@ -12279,7 +12353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12279
12353
|
background_color: string;
|
|
12280
12354
|
background_image_url: string;
|
|
12281
12355
|
page_layout: "center" | "left" | "right";
|
|
12282
|
-
logo_placement?: "
|
|
12356
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12283
12357
|
};
|
|
12284
12358
|
widget: {
|
|
12285
12359
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12307,7 +12381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12307
12381
|
base_focus_color: string;
|
|
12308
12382
|
base_hover_color: string;
|
|
12309
12383
|
body_text: string;
|
|
12310
|
-
captcha_widget_theme: "
|
|
12384
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
12311
12385
|
error: string;
|
|
12312
12386
|
header: string;
|
|
12313
12387
|
icons: string;
|
|
@@ -12358,7 +12432,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12358
12432
|
background_color: string;
|
|
12359
12433
|
background_image_url: string;
|
|
12360
12434
|
page_layout: "center" | "left" | "right";
|
|
12361
|
-
logo_placement?: "
|
|
12435
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12362
12436
|
};
|
|
12363
12437
|
widget: {
|
|
12364
12438
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12397,7 +12471,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12397
12471
|
font?: {
|
|
12398
12472
|
url: string;
|
|
12399
12473
|
} | undefined;
|
|
12400
|
-
dark_mode?: "
|
|
12474
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
12401
12475
|
};
|
|
12402
12476
|
outputFormat: "json";
|
|
12403
12477
|
status: 200;
|
|
@@ -12427,7 +12501,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12427
12501
|
font?: {
|
|
12428
12502
|
url: string;
|
|
12429
12503
|
} | undefined;
|
|
12430
|
-
dark_mode?: "
|
|
12504
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
12431
12505
|
};
|
|
12432
12506
|
};
|
|
12433
12507
|
output: {
|
|
@@ -12446,7 +12520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12446
12520
|
font?: {
|
|
12447
12521
|
url: string;
|
|
12448
12522
|
} | undefined;
|
|
12449
|
-
dark_mode?: "
|
|
12523
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
12450
12524
|
};
|
|
12451
12525
|
outputFormat: "json";
|
|
12452
12526
|
status: 200;
|
|
@@ -12650,7 +12724,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12650
12724
|
output: {
|
|
12651
12725
|
id: string;
|
|
12652
12726
|
trigger_id: string;
|
|
12653
|
-
status: "
|
|
12727
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
12654
12728
|
results: {
|
|
12655
12729
|
action_name: string;
|
|
12656
12730
|
error: {
|