authhero 8.3.0 → 8.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/js/client.js +3 -3
- package/dist/authhero.cjs +6 -6
- package/dist/authhero.d.ts +140 -97
- package/dist/authhero.mjs +40 -27
- package/dist/client.js +3 -3
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/client/loading-link-handler.d.ts +14 -0
- package/dist/types/components/Button.d.ts +2 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +96 -96
- package/dist/types/middlewares/authentication.d.ts +17 -0
- package/dist/types/routes/auth-api/index.d.ts +21 -21
- package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- 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/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +6 -6
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +190 -190
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- 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/themes.d.ts +3 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- 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/types/AuthHeroConfig.d.ts +26 -1
- package/dist/types/types/IdToken.d.ts +2 -2
- package/dist/types/utils/jwks.d.ts +2 -2
- package/dist/types/utils/jwt.d.ts +9 -0
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
|
|
|
30
30
|
export { seed, MANAGEMENT_API_SCOPES } from "./seed";
|
|
31
31
|
export type { SeedOptions, SeedResult } from "./seed";
|
|
32
32
|
export { createAuthMiddleware, MANAGEMENT_API_AUDIENCE, } from "./middlewares/authentication";
|
|
33
|
-
export type { ManagementAudienceResolver } from "./middlewares/authentication";
|
|
33
|
+
export type { ManagementAudienceResolver, IssuerResolver, } from "./middlewares/authentication";
|
|
34
34
|
export { tenantMiddleware } from "./middlewares/tenant";
|
|
35
35
|
export { clientInfoMiddleware } from "./middlewares/client-info";
|
|
36
36
|
export type { SamlSigner } from "@authhero/saml/core";
|
|
@@ -84,7 +84,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
84
84
|
};
|
|
85
85
|
} & {
|
|
86
86
|
json: {
|
|
87
|
-
type: "
|
|
87
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
88
88
|
phone_number?: string | undefined;
|
|
89
89
|
totp_secret?: string | undefined;
|
|
90
90
|
credential_id?: string | undefined;
|
|
@@ -224,7 +224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
224
224
|
};
|
|
225
225
|
};
|
|
226
226
|
output: {
|
|
227
|
-
name: "email" | "
|
|
227
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
228
228
|
enabled: boolean;
|
|
229
229
|
trial_expired?: boolean | undefined;
|
|
230
230
|
}[];
|
|
@@ -379,7 +379,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
379
379
|
$get: {
|
|
380
380
|
input: {
|
|
381
381
|
param: {
|
|
382
|
-
factor_name: "email" | "
|
|
382
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
383
383
|
};
|
|
384
384
|
} & {
|
|
385
385
|
header: {
|
|
@@ -387,7 +387,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
387
387
|
};
|
|
388
388
|
};
|
|
389
389
|
output: {
|
|
390
|
-
name: "email" | "
|
|
390
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
391
391
|
enabled: boolean;
|
|
392
392
|
trial_expired?: boolean | undefined;
|
|
393
393
|
};
|
|
@@ -400,7 +400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
400
400
|
$put: {
|
|
401
401
|
input: {
|
|
402
402
|
param: {
|
|
403
|
-
factor_name: "email" | "
|
|
403
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
404
404
|
};
|
|
405
405
|
} & {
|
|
406
406
|
header: {
|
|
@@ -412,7 +412,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
412
412
|
};
|
|
413
413
|
};
|
|
414
414
|
output: {
|
|
415
|
-
name: "email" | "
|
|
415
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
416
416
|
enabled: boolean;
|
|
417
417
|
trial_expired?: boolean | undefined;
|
|
418
418
|
};
|
|
@@ -6648,7 +6648,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6648
6648
|
};
|
|
6649
6649
|
};
|
|
6650
6650
|
output: {
|
|
6651
|
-
prompt: "signup" | "status" | "organizations" | "
|
|
6651
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6652
6652
|
language: string;
|
|
6653
6653
|
}[];
|
|
6654
6654
|
outputFormat: "json";
|
|
@@ -6686,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6686
6686
|
$get: {
|
|
6687
6687
|
input: {
|
|
6688
6688
|
param: {
|
|
6689
|
-
prompt: "signup" | "status" | "organizations" | "
|
|
6689
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6690
6690
|
language: string;
|
|
6691
6691
|
};
|
|
6692
6692
|
} & {
|
|
@@ -6708,7 +6708,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6708
6708
|
$put: {
|
|
6709
6709
|
input: {
|
|
6710
6710
|
param: {
|
|
6711
|
-
prompt: "signup" | "status" | "organizations" | "
|
|
6711
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6712
6712
|
language: string;
|
|
6713
6713
|
};
|
|
6714
6714
|
} & {
|
|
@@ -6732,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6732
6732
|
$delete: {
|
|
6733
6733
|
input: {
|
|
6734
6734
|
param: {
|
|
6735
|
-
prompt: "signup" | "status" | "organizations" | "
|
|
6735
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6736
6736
|
language: string;
|
|
6737
6737
|
};
|
|
6738
6738
|
} & {
|
|
@@ -6834,7 +6834,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6834
6834
|
} | undefined;
|
|
6835
6835
|
unique?: boolean | undefined;
|
|
6836
6836
|
profile_required?: boolean | undefined;
|
|
6837
|
-
verification_method?: "
|
|
6837
|
+
verification_method?: "code" | "link" | undefined;
|
|
6838
6838
|
} | undefined;
|
|
6839
6839
|
username?: {
|
|
6840
6840
|
identifier?: {
|
|
@@ -6968,7 +6968,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6968
6968
|
} | undefined;
|
|
6969
6969
|
unique?: boolean | undefined;
|
|
6970
6970
|
profile_required?: boolean | undefined;
|
|
6971
|
-
verification_method?: "
|
|
6971
|
+
verification_method?: "code" | "link" | undefined;
|
|
6972
6972
|
} | undefined;
|
|
6973
6973
|
username?: {
|
|
6974
6974
|
identifier?: {
|
|
@@ -7117,7 +7117,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7117
7117
|
} | undefined;
|
|
7118
7118
|
unique?: boolean | undefined;
|
|
7119
7119
|
profile_required?: boolean | undefined;
|
|
7120
|
-
verification_method?: "
|
|
7120
|
+
verification_method?: "code" | "link" | undefined;
|
|
7121
7121
|
} | undefined;
|
|
7122
7122
|
username?: {
|
|
7123
7123
|
identifier?: {
|
|
@@ -7296,7 +7296,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7296
7296
|
} | undefined;
|
|
7297
7297
|
unique?: boolean | undefined;
|
|
7298
7298
|
profile_required?: boolean | undefined;
|
|
7299
|
-
verification_method?: "
|
|
7299
|
+
verification_method?: "code" | "link" | undefined;
|
|
7300
7300
|
} | undefined;
|
|
7301
7301
|
username?: {
|
|
7302
7302
|
identifier?: {
|
|
@@ -7454,7 +7454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7454
7454
|
} | undefined;
|
|
7455
7455
|
unique?: boolean | undefined;
|
|
7456
7456
|
profile_required?: boolean | undefined;
|
|
7457
|
-
verification_method?: "
|
|
7457
|
+
verification_method?: "code" | "link" | undefined;
|
|
7458
7458
|
} | undefined;
|
|
7459
7459
|
username?: {
|
|
7460
7460
|
identifier?: {
|
|
@@ -7630,7 +7630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7630
7630
|
tenant_id: string;
|
|
7631
7631
|
created_at: string;
|
|
7632
7632
|
updated_at: string;
|
|
7633
|
-
deploymentStatus: "
|
|
7633
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7634
7634
|
secrets?: {
|
|
7635
7635
|
[x: string]: string;
|
|
7636
7636
|
} | undefined;
|
|
@@ -7720,7 +7720,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7720
7720
|
tenant_id: string;
|
|
7721
7721
|
created_at: string;
|
|
7722
7722
|
updated_at: string;
|
|
7723
|
-
deploymentStatus: "
|
|
7723
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7724
7724
|
secrets?: {
|
|
7725
7725
|
[x: string]: string;
|
|
7726
7726
|
} | undefined;
|
|
@@ -8233,7 +8233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8233
8233
|
log_type: string;
|
|
8234
8234
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8235
8235
|
actor: {
|
|
8236
|
-
type: "
|
|
8236
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8237
8237
|
id?: string | undefined;
|
|
8238
8238
|
email?: string | undefined;
|
|
8239
8239
|
org_id?: string | undefined;
|
|
@@ -8881,7 +8881,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8881
8881
|
};
|
|
8882
8882
|
};
|
|
8883
8883
|
output: {
|
|
8884
|
-
type: "i" | "
|
|
8884
|
+
type: "i" | "fn" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8885
8885
|
date: string;
|
|
8886
8886
|
isMobile: boolean;
|
|
8887
8887
|
log_id: string;
|
|
@@ -8920,7 +8920,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8920
8920
|
limit: number;
|
|
8921
8921
|
length: number;
|
|
8922
8922
|
logs: {
|
|
8923
|
-
type: "i" | "
|
|
8923
|
+
type: "i" | "fn" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8924
8924
|
date: string;
|
|
8925
8925
|
isMobile: boolean;
|
|
8926
8926
|
log_id: string;
|
|
@@ -8974,7 +8974,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8974
8974
|
};
|
|
8975
8975
|
};
|
|
8976
8976
|
output: {
|
|
8977
|
-
type: "i" | "
|
|
8977
|
+
type: "i" | "fn" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8978
8978
|
date: string;
|
|
8979
8979
|
isMobile: boolean;
|
|
8980
8980
|
log_id: string;
|
|
@@ -9129,7 +9129,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9129
9129
|
audience?: string | undefined;
|
|
9130
9130
|
client_id?: string | undefined;
|
|
9131
9131
|
allow_any_organization?: string | undefined;
|
|
9132
|
-
subject_type?: "
|
|
9132
|
+
subject_type?: "user" | "client" | undefined;
|
|
9133
9133
|
};
|
|
9134
9134
|
} & {
|
|
9135
9135
|
header: {
|
|
@@ -9144,7 +9144,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9144
9144
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9145
9145
|
allow_any_organization?: boolean | undefined;
|
|
9146
9146
|
is_system?: boolean | undefined;
|
|
9147
|
-
subject_type?: "
|
|
9147
|
+
subject_type?: "user" | "client" | undefined;
|
|
9148
9148
|
authorization_details_types?: string[] | undefined;
|
|
9149
9149
|
created_at?: string | undefined;
|
|
9150
9150
|
updated_at?: string | undefined;
|
|
@@ -9160,7 +9160,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9160
9160
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9161
9161
|
allow_any_organization?: boolean | undefined;
|
|
9162
9162
|
is_system?: boolean | undefined;
|
|
9163
|
-
subject_type?: "
|
|
9163
|
+
subject_type?: "user" | "client" | undefined;
|
|
9164
9164
|
authorization_details_types?: string[] | undefined;
|
|
9165
9165
|
created_at?: string | undefined;
|
|
9166
9166
|
updated_at?: string | undefined;
|
|
@@ -9191,7 +9191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9191
9191
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9192
9192
|
allow_any_organization?: boolean | undefined;
|
|
9193
9193
|
is_system?: boolean | undefined;
|
|
9194
|
-
subject_type?: "
|
|
9194
|
+
subject_type?: "user" | "client" | undefined;
|
|
9195
9195
|
authorization_details_types?: string[] | undefined;
|
|
9196
9196
|
created_at?: string | undefined;
|
|
9197
9197
|
updated_at?: string | undefined;
|
|
@@ -9236,7 +9236,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9236
9236
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9237
9237
|
allow_any_organization?: boolean | undefined;
|
|
9238
9238
|
is_system?: boolean | undefined;
|
|
9239
|
-
subject_type?: "
|
|
9239
|
+
subject_type?: "user" | "client" | undefined;
|
|
9240
9240
|
authorization_details_types?: string[] | undefined;
|
|
9241
9241
|
};
|
|
9242
9242
|
};
|
|
@@ -9248,7 +9248,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9248
9248
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9249
9249
|
allow_any_organization?: boolean | undefined;
|
|
9250
9250
|
is_system?: boolean | undefined;
|
|
9251
|
-
subject_type?: "
|
|
9251
|
+
subject_type?: "user" | "client" | undefined;
|
|
9252
9252
|
authorization_details_types?: string[] | undefined;
|
|
9253
9253
|
created_at?: string | undefined;
|
|
9254
9254
|
updated_at?: string | undefined;
|
|
@@ -9272,7 +9272,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9272
9272
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9273
9273
|
allow_any_organization?: boolean | undefined;
|
|
9274
9274
|
is_system?: boolean | undefined;
|
|
9275
|
-
subject_type?: "
|
|
9275
|
+
subject_type?: "user" | "client" | undefined;
|
|
9276
9276
|
authorization_details_types?: string[] | undefined;
|
|
9277
9277
|
};
|
|
9278
9278
|
};
|
|
@@ -9284,7 +9284,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9284
9284
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9285
9285
|
allow_any_organization?: boolean | undefined;
|
|
9286
9286
|
is_system?: boolean | undefined;
|
|
9287
|
-
subject_type?: "
|
|
9287
|
+
subject_type?: "user" | "client" | undefined;
|
|
9288
9288
|
authorization_details_types?: string[] | undefined;
|
|
9289
9289
|
created_at?: string | undefined;
|
|
9290
9290
|
updated_at?: string | undefined;
|
|
@@ -9362,7 +9362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9362
9362
|
addons?: {
|
|
9363
9363
|
[x: string]: any;
|
|
9364
9364
|
} | undefined;
|
|
9365
|
-
token_endpoint_auth_method?: "
|
|
9365
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9366
9366
|
client_metadata?: {
|
|
9367
9367
|
[x: string]: string;
|
|
9368
9368
|
} | undefined;
|
|
@@ -9458,7 +9458,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9458
9458
|
addons?: {
|
|
9459
9459
|
[x: string]: any;
|
|
9460
9460
|
} | undefined;
|
|
9461
|
-
token_endpoint_auth_method?: "
|
|
9461
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9462
9462
|
client_metadata?: {
|
|
9463
9463
|
[x: string]: string;
|
|
9464
9464
|
} | undefined;
|
|
@@ -9569,7 +9569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9569
9569
|
addons?: {
|
|
9570
9570
|
[x: string]: any;
|
|
9571
9571
|
} | undefined;
|
|
9572
|
-
token_endpoint_auth_method?: "
|
|
9572
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9573
9573
|
client_metadata?: {
|
|
9574
9574
|
[x: string]: string;
|
|
9575
9575
|
} | undefined;
|
|
@@ -9679,7 +9679,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9679
9679
|
custom_login_page_preview?: string | undefined;
|
|
9680
9680
|
form_template?: string | undefined;
|
|
9681
9681
|
addons?: Record<string, any> | undefined;
|
|
9682
|
-
token_endpoint_auth_method?: "
|
|
9682
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9683
9683
|
client_metadata?: Record<string, string> | undefined;
|
|
9684
9684
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9685
9685
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9759,7 +9759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9759
9759
|
addons?: {
|
|
9760
9760
|
[x: string]: any;
|
|
9761
9761
|
} | undefined;
|
|
9762
|
-
token_endpoint_auth_method?: "
|
|
9762
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9763
9763
|
client_metadata?: {
|
|
9764
9764
|
[x: string]: string;
|
|
9765
9765
|
} | undefined;
|
|
@@ -9848,7 +9848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9848
9848
|
custom_login_page_preview?: string | undefined;
|
|
9849
9849
|
form_template?: string | undefined;
|
|
9850
9850
|
addons?: Record<string, any> | undefined;
|
|
9851
|
-
token_endpoint_auth_method?: "
|
|
9851
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9852
9852
|
client_metadata?: Record<string, string> | undefined;
|
|
9853
9853
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9854
9854
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9928,7 +9928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9928
9928
|
addons?: {
|
|
9929
9929
|
[x: string]: any;
|
|
9930
9930
|
} | undefined;
|
|
9931
|
-
token_endpoint_auth_method?: "
|
|
9931
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9932
9932
|
client_metadata?: {
|
|
9933
9933
|
[x: string]: string;
|
|
9934
9934
|
} | undefined;
|
|
@@ -10060,7 +10060,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10060
10060
|
} | undefined;
|
|
10061
10061
|
unique?: boolean | undefined;
|
|
10062
10062
|
profile_required?: boolean | undefined;
|
|
10063
|
-
verification_method?: "
|
|
10063
|
+
verification_method?: "code" | "link" | undefined;
|
|
10064
10064
|
} | undefined;
|
|
10065
10065
|
username?: {
|
|
10066
10066
|
identifier?: {
|
|
@@ -10214,7 +10214,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10214
10214
|
} | undefined;
|
|
10215
10215
|
unique?: boolean | undefined;
|
|
10216
10216
|
profile_required?: boolean | undefined;
|
|
10217
|
-
verification_method?: "
|
|
10217
|
+
verification_method?: "code" | "link" | undefined;
|
|
10218
10218
|
} | undefined;
|
|
10219
10219
|
username?: {
|
|
10220
10220
|
identifier?: {
|
|
@@ -11192,7 +11192,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11192
11192
|
};
|
|
11193
11193
|
};
|
|
11194
11194
|
output: {
|
|
11195
|
-
type: "i" | "
|
|
11195
|
+
type: "i" | "fn" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11196
11196
|
date: string;
|
|
11197
11197
|
isMobile: boolean;
|
|
11198
11198
|
log_id: string;
|
|
@@ -11231,7 +11231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11231
11231
|
limit: number;
|
|
11232
11232
|
length: number;
|
|
11233
11233
|
logs: {
|
|
11234
|
-
type: "i" | "
|
|
11234
|
+
type: "i" | "fn" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11235
11235
|
date: string;
|
|
11236
11236
|
isMobile: boolean;
|
|
11237
11237
|
log_id: string;
|
|
@@ -11546,7 +11546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11546
11546
|
};
|
|
11547
11547
|
} & {
|
|
11548
11548
|
json: {
|
|
11549
|
-
template: "
|
|
11549
|
+
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";
|
|
11550
11550
|
body: string;
|
|
11551
11551
|
from: string;
|
|
11552
11552
|
subject: string;
|
|
@@ -11567,7 +11567,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11567
11567
|
};
|
|
11568
11568
|
} & {
|
|
11569
11569
|
json: {
|
|
11570
|
-
template: "
|
|
11570
|
+
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";
|
|
11571
11571
|
body: string;
|
|
11572
11572
|
from: string;
|
|
11573
11573
|
subject: string;
|
|
@@ -11579,7 +11579,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11579
11579
|
};
|
|
11580
11580
|
};
|
|
11581
11581
|
output: {
|
|
11582
|
-
template: "
|
|
11582
|
+
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";
|
|
11583
11583
|
body: string;
|
|
11584
11584
|
from: string;
|
|
11585
11585
|
subject: string;
|
|
@@ -11602,7 +11602,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11602
11602
|
};
|
|
11603
11603
|
};
|
|
11604
11604
|
output: {
|
|
11605
|
-
name: "
|
|
11605
|
+
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";
|
|
11606
11606
|
body: string;
|
|
11607
11607
|
subject: string;
|
|
11608
11608
|
}[];
|
|
@@ -11615,7 +11615,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11615
11615
|
$get: {
|
|
11616
11616
|
input: {
|
|
11617
11617
|
param: {
|
|
11618
|
-
templateName: "
|
|
11618
|
+
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";
|
|
11619
11619
|
};
|
|
11620
11620
|
} & {
|
|
11621
11621
|
header: {
|
|
@@ -11628,7 +11628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11628
11628
|
} | {
|
|
11629
11629
|
input: {
|
|
11630
11630
|
param: {
|
|
11631
|
-
templateName: "
|
|
11631
|
+
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";
|
|
11632
11632
|
};
|
|
11633
11633
|
} & {
|
|
11634
11634
|
header: {
|
|
@@ -11636,7 +11636,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11636
11636
|
};
|
|
11637
11637
|
};
|
|
11638
11638
|
output: {
|
|
11639
|
-
template: "
|
|
11639
|
+
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";
|
|
11640
11640
|
body: string;
|
|
11641
11641
|
from: string;
|
|
11642
11642
|
subject: string;
|
|
@@ -11655,7 +11655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11655
11655
|
$put: {
|
|
11656
11656
|
input: {
|
|
11657
11657
|
param: {
|
|
11658
|
-
templateName: "
|
|
11658
|
+
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";
|
|
11659
11659
|
};
|
|
11660
11660
|
} & {
|
|
11661
11661
|
header: {
|
|
@@ -11663,7 +11663,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11663
11663
|
};
|
|
11664
11664
|
} & {
|
|
11665
11665
|
json: {
|
|
11666
|
-
template: "
|
|
11666
|
+
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";
|
|
11667
11667
|
body: string;
|
|
11668
11668
|
subject: string;
|
|
11669
11669
|
syntax?: "liquid" | undefined;
|
|
@@ -11675,7 +11675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11675
11675
|
};
|
|
11676
11676
|
};
|
|
11677
11677
|
output: {
|
|
11678
|
-
template: "
|
|
11678
|
+
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";
|
|
11679
11679
|
body: string;
|
|
11680
11680
|
from: string;
|
|
11681
11681
|
subject: string;
|
|
@@ -11694,7 +11694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11694
11694
|
$patch: {
|
|
11695
11695
|
input: {
|
|
11696
11696
|
param: {
|
|
11697
|
-
templateName: "
|
|
11697
|
+
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";
|
|
11698
11698
|
};
|
|
11699
11699
|
} & {
|
|
11700
11700
|
header: {
|
|
@@ -11702,7 +11702,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11702
11702
|
};
|
|
11703
11703
|
} & {
|
|
11704
11704
|
json: {
|
|
11705
|
-
template?: "
|
|
11705
|
+
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;
|
|
11706
11706
|
body?: string | undefined;
|
|
11707
11707
|
from?: string | undefined;
|
|
11708
11708
|
subject?: string | undefined;
|
|
@@ -11719,7 +11719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11719
11719
|
} | {
|
|
11720
11720
|
input: {
|
|
11721
11721
|
param: {
|
|
11722
|
-
templateName: "
|
|
11722
|
+
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";
|
|
11723
11723
|
};
|
|
11724
11724
|
} & {
|
|
11725
11725
|
header: {
|
|
@@ -11727,7 +11727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11727
11727
|
};
|
|
11728
11728
|
} & {
|
|
11729
11729
|
json: {
|
|
11730
|
-
template?: "
|
|
11730
|
+
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;
|
|
11731
11731
|
body?: string | undefined;
|
|
11732
11732
|
from?: string | undefined;
|
|
11733
11733
|
subject?: string | undefined;
|
|
@@ -11739,7 +11739,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11739
11739
|
};
|
|
11740
11740
|
};
|
|
11741
11741
|
output: {
|
|
11742
|
-
template: "
|
|
11742
|
+
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";
|
|
11743
11743
|
body: string;
|
|
11744
11744
|
from: string;
|
|
11745
11745
|
subject: string;
|
|
@@ -11758,7 +11758,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11758
11758
|
$delete: {
|
|
11759
11759
|
input: {
|
|
11760
11760
|
param: {
|
|
11761
|
-
templateName: "
|
|
11761
|
+
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";
|
|
11762
11762
|
};
|
|
11763
11763
|
} & {
|
|
11764
11764
|
header: {
|
|
@@ -11771,7 +11771,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11771
11771
|
} | {
|
|
11772
11772
|
input: {
|
|
11773
11773
|
param: {
|
|
11774
|
-
templateName: "
|
|
11774
|
+
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";
|
|
11775
11775
|
};
|
|
11776
11776
|
} & {
|
|
11777
11777
|
header: {
|
|
@@ -11788,7 +11788,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11788
11788
|
$post: {
|
|
11789
11789
|
input: {
|
|
11790
11790
|
param: {
|
|
11791
|
-
templateName: "
|
|
11791
|
+
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";
|
|
11792
11792
|
};
|
|
11793
11793
|
} & {
|
|
11794
11794
|
header: {
|
|
@@ -12071,7 +12071,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12071
12071
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12072
12072
|
custom_domain_id: string;
|
|
12073
12073
|
primary: boolean;
|
|
12074
|
-
status: "disabled" | "pending" | "
|
|
12074
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12075
12075
|
verification_method?: "txt" | undefined;
|
|
12076
12076
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12077
12077
|
domain_metadata?: {
|
|
@@ -12112,7 +12112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12112
12112
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12113
12113
|
custom_domain_id: string;
|
|
12114
12114
|
primary: boolean;
|
|
12115
|
-
status: "disabled" | "pending" | "
|
|
12115
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12116
12116
|
verification_method?: "txt" | undefined;
|
|
12117
12117
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12118
12118
|
domain_metadata?: {
|
|
@@ -12176,7 +12176,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12176
12176
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12177
12177
|
custom_domain_id: string;
|
|
12178
12178
|
primary: boolean;
|
|
12179
|
-
status: "disabled" | "pending" | "
|
|
12179
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12180
12180
|
verification_method?: "txt" | undefined;
|
|
12181
12181
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12182
12182
|
domain_metadata?: {
|
|
@@ -12223,7 +12223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12223
12223
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12224
12224
|
custom_domain_id: string;
|
|
12225
12225
|
primary: boolean;
|
|
12226
|
-
status: "disabled" | "pending" | "
|
|
12226
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12227
12227
|
verification_method?: "txt" | undefined;
|
|
12228
12228
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12229
12229
|
domain_metadata?: {
|
|
@@ -12269,7 +12269,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12269
12269
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12270
12270
|
custom_domain_id: string;
|
|
12271
12271
|
primary: boolean;
|
|
12272
|
-
status: "disabled" | "pending" | "
|
|
12272
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12273
12273
|
verification_method?: "txt" | undefined;
|
|
12274
12274
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12275
12275
|
domain_metadata?: {
|
|
@@ -12310,7 +12310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12310
12310
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12311
12311
|
custom_domain_id: string;
|
|
12312
12312
|
primary: boolean;
|
|
12313
|
-
status: "disabled" | "pending" | "
|
|
12313
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12314
12314
|
verification_method?: "txt" | undefined;
|
|
12315
12315
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12316
12316
|
domain_metadata?: {
|
|
@@ -12358,7 +12358,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12358
12358
|
base_focus_color: string;
|
|
12359
12359
|
base_hover_color: string;
|
|
12360
12360
|
body_text: string;
|
|
12361
|
-
captcha_widget_theme: "
|
|
12361
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12362
12362
|
error: string;
|
|
12363
12363
|
header: string;
|
|
12364
12364
|
icons: string;
|
|
@@ -12448,7 +12448,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12448
12448
|
base_focus_color: string;
|
|
12449
12449
|
base_hover_color: string;
|
|
12450
12450
|
body_text: string;
|
|
12451
|
-
captcha_widget_theme: "
|
|
12451
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12452
12452
|
error: string;
|
|
12453
12453
|
header: string;
|
|
12454
12454
|
icons: string;
|
|
@@ -12527,7 +12527,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12527
12527
|
base_focus_color: string;
|
|
12528
12528
|
base_hover_color: string;
|
|
12529
12529
|
body_text: string;
|
|
12530
|
-
captcha_widget_theme: "
|
|
12530
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
12531
12531
|
error: string;
|
|
12532
12532
|
header: string;
|
|
12533
12533
|
icons: string;
|
|
@@ -12617,7 +12617,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12617
12617
|
font?: {
|
|
12618
12618
|
url: string;
|
|
12619
12619
|
} | undefined;
|
|
12620
|
-
dark_mode?: "
|
|
12620
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12621
12621
|
};
|
|
12622
12622
|
outputFormat: "json";
|
|
12623
12623
|
status: 200;
|
|
@@ -12647,7 +12647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12647
12647
|
font?: {
|
|
12648
12648
|
url: string;
|
|
12649
12649
|
} | undefined;
|
|
12650
|
-
dark_mode?: "
|
|
12650
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12651
12651
|
};
|
|
12652
12652
|
};
|
|
12653
12653
|
output: {
|
|
@@ -12666,7 +12666,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12666
12666
|
font?: {
|
|
12667
12667
|
url: string;
|
|
12668
12668
|
} | undefined;
|
|
12669
|
-
dark_mode?: "
|
|
12669
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
12670
12670
|
};
|
|
12671
12671
|
outputFormat: "json";
|
|
12672
12672
|
status: 200;
|
|
@@ -12870,7 +12870,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12870
12870
|
output: {
|
|
12871
12871
|
id: string;
|
|
12872
12872
|
trigger_id: string;
|
|
12873
|
-
status: "
|
|
12873
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
12874
12874
|
results: {
|
|
12875
12875
|
action_name: string;
|
|
12876
12876
|
error: {
|
|
@@ -13632,7 +13632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13632
13632
|
message: string;
|
|
13633
13633
|
};
|
|
13634
13634
|
outputFormat: "json";
|
|
13635
|
-
status:
|
|
13635
|
+
status: 400;
|
|
13636
13636
|
} | {
|
|
13637
13637
|
input: {
|
|
13638
13638
|
query: {
|
|
@@ -13650,7 +13650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13650
13650
|
message: string;
|
|
13651
13651
|
};
|
|
13652
13652
|
outputFormat: "json";
|
|
13653
|
-
status:
|
|
13653
|
+
status: 500;
|
|
13654
13654
|
};
|
|
13655
13655
|
};
|
|
13656
13656
|
} & {
|
|
@@ -13688,7 +13688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13688
13688
|
message: string;
|
|
13689
13689
|
};
|
|
13690
13690
|
outputFormat: "json";
|
|
13691
|
-
status:
|
|
13691
|
+
status: 400;
|
|
13692
13692
|
} | {
|
|
13693
13693
|
input: {
|
|
13694
13694
|
form: {
|
|
@@ -13706,7 +13706,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13706
13706
|
message: string;
|
|
13707
13707
|
};
|
|
13708
13708
|
outputFormat: "json";
|
|
13709
|
-
status:
|
|
13709
|
+
status: 500;
|
|
13710
13710
|
};
|
|
13711
13711
|
};
|
|
13712
13712
|
}, "/login/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -13744,7 +13744,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13744
13744
|
message: string;
|
|
13745
13745
|
};
|
|
13746
13746
|
outputFormat: "json";
|
|
13747
|
-
status:
|
|
13747
|
+
status: 400;
|
|
13748
13748
|
} | {
|
|
13749
13749
|
input: {
|
|
13750
13750
|
query: {
|
|
@@ -13762,7 +13762,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13762
13762
|
message: string;
|
|
13763
13763
|
};
|
|
13764
13764
|
outputFormat: "json";
|
|
13765
|
-
status:
|
|
13765
|
+
status: 500;
|
|
13766
13766
|
};
|
|
13767
13767
|
};
|
|
13768
13768
|
} & {
|
|
@@ -13800,7 +13800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13800
13800
|
message: string;
|
|
13801
13801
|
};
|
|
13802
13802
|
outputFormat: "json";
|
|
13803
|
-
status:
|
|
13803
|
+
status: 400;
|
|
13804
13804
|
} | {
|
|
13805
13805
|
input: {
|
|
13806
13806
|
form: {
|
|
@@ -13818,7 +13818,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13818
13818
|
message: string;
|
|
13819
13819
|
};
|
|
13820
13820
|
outputFormat: "json";
|
|
13821
|
-
status:
|
|
13821
|
+
status: 500;
|
|
13822
13822
|
};
|
|
13823
13823
|
};
|
|
13824
13824
|
}, "/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -13882,7 +13882,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13882
13882
|
scope?: string | undefined;
|
|
13883
13883
|
grant_types?: string[] | undefined;
|
|
13884
13884
|
response_types?: string[] | undefined;
|
|
13885
|
-
token_endpoint_auth_method?: "
|
|
13885
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13886
13886
|
jwks_uri?: string | undefined;
|
|
13887
13887
|
jwks?: Record<string, unknown> | undefined;
|
|
13888
13888
|
software_id?: string | undefined;
|
|
@@ -13971,7 +13971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13971
13971
|
scope?: string | undefined;
|
|
13972
13972
|
grant_types?: string[] | undefined;
|
|
13973
13973
|
response_types?: string[] | undefined;
|
|
13974
|
-
token_endpoint_auth_method?: "
|
|
13974
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13975
13975
|
jwks_uri?: string | undefined;
|
|
13976
13976
|
jwks?: Record<string, unknown> | undefined;
|
|
13977
13977
|
software_id?: string | undefined;
|
|
@@ -14315,7 +14315,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14315
14315
|
connection: "email";
|
|
14316
14316
|
client_id: string;
|
|
14317
14317
|
email: string;
|
|
14318
|
-
send: "
|
|
14318
|
+
send: "code" | "link";
|
|
14319
14319
|
authParams: {
|
|
14320
14320
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14321
14321
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
@@ -14351,7 +14351,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14351
14351
|
client_id: string;
|
|
14352
14352
|
connection: "sms";
|
|
14353
14353
|
phone_number: string;
|
|
14354
|
-
send: "
|
|
14354
|
+
send: "code" | "link";
|
|
14355
14355
|
authParams: {
|
|
14356
14356
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14357
14357
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
@@ -14430,7 +14430,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14430
14430
|
error_description?: string | undefined;
|
|
14431
14431
|
};
|
|
14432
14432
|
outputFormat: "json";
|
|
14433
|
-
status:
|
|
14433
|
+
status: 400;
|
|
14434
14434
|
} | {
|
|
14435
14435
|
input: {
|
|
14436
14436
|
query: {
|
|
@@ -14451,7 +14451,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14451
14451
|
error_description?: string | undefined;
|
|
14452
14452
|
};
|
|
14453
14453
|
outputFormat: "json";
|
|
14454
|
-
status:
|
|
14454
|
+
status: 500;
|
|
14455
14455
|
};
|
|
14456
14456
|
};
|
|
14457
14457
|
}, "/passwordless"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -14497,14 +14497,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14497
14497
|
input: {
|
|
14498
14498
|
form: {
|
|
14499
14499
|
token: string;
|
|
14500
|
-
token_type_hint?: "
|
|
14500
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14501
14501
|
client_id?: string | undefined;
|
|
14502
14502
|
client_secret?: string | undefined;
|
|
14503
14503
|
};
|
|
14504
14504
|
} & {
|
|
14505
14505
|
json: {
|
|
14506
14506
|
token: string;
|
|
14507
|
-
token_type_hint?: "
|
|
14507
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14508
14508
|
client_id?: string | undefined;
|
|
14509
14509
|
client_secret?: string | undefined;
|
|
14510
14510
|
};
|
|
@@ -14516,14 +14516,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14516
14516
|
input: {
|
|
14517
14517
|
form: {
|
|
14518
14518
|
token: string;
|
|
14519
|
-
token_type_hint?: "
|
|
14519
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14520
14520
|
client_id?: string | undefined;
|
|
14521
14521
|
client_secret?: string | undefined;
|
|
14522
14522
|
};
|
|
14523
14523
|
} & {
|
|
14524
14524
|
json: {
|
|
14525
14525
|
token: string;
|
|
14526
|
-
token_type_hint?: "
|
|
14526
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14527
14527
|
client_id?: string | undefined;
|
|
14528
14528
|
client_secret?: string | undefined;
|
|
14529
14529
|
};
|
|
@@ -14538,14 +14538,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14538
14538
|
input: {
|
|
14539
14539
|
form: {
|
|
14540
14540
|
token: string;
|
|
14541
|
-
token_type_hint?: "
|
|
14541
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14542
14542
|
client_id?: string | undefined;
|
|
14543
14543
|
client_secret?: string | undefined;
|
|
14544
14544
|
};
|
|
14545
14545
|
} & {
|
|
14546
14546
|
json: {
|
|
14547
14547
|
token: string;
|
|
14548
|
-
token_type_hint?: "
|
|
14548
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14549
14549
|
client_id?: string | undefined;
|
|
14550
14550
|
client_secret?: string | undefined;
|
|
14551
14551
|
};
|
|
@@ -15081,7 +15081,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15081
15081
|
output: {
|
|
15082
15082
|
keys: {
|
|
15083
15083
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
15084
|
-
kty: "
|
|
15084
|
+
kty: "RSA" | "EC" | "oct";
|
|
15085
15085
|
kid?: string | undefined;
|
|
15086
15086
|
use?: "sig" | "enc" | undefined;
|
|
15087
15087
|
n?: string | undefined;
|
|
@@ -15405,7 +15405,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15405
15405
|
};
|
|
15406
15406
|
output: {};
|
|
15407
15407
|
outputFormat: string;
|
|
15408
|
-
status:
|
|
15408
|
+
status: 302;
|
|
15409
15409
|
} | {
|
|
15410
15410
|
input: {
|
|
15411
15411
|
query: {
|
|
@@ -15414,7 +15414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15414
15414
|
};
|
|
15415
15415
|
output: {};
|
|
15416
15416
|
outputFormat: string;
|
|
15417
|
-
status:
|
|
15417
|
+
status: 400;
|
|
15418
15418
|
} | {
|
|
15419
15419
|
input: {
|
|
15420
15420
|
query: {
|
|
@@ -15423,7 +15423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15423
15423
|
};
|
|
15424
15424
|
output: {};
|
|
15425
15425
|
outputFormat: string;
|
|
15426
|
-
status:
|
|
15426
|
+
status: 500;
|
|
15427
15427
|
};
|
|
15428
15428
|
};
|
|
15429
15429
|
}, "/continue"> & import("hono/types").MergeSchemaPath<{
|