authhero 5.21.0 → 6.0.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 +105 -105
- package/dist/authhero.d.ts +66 -66
- package/dist/authhero.mjs +9892 -9836
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -6
- package/dist/types/helpers/client.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/logging.d.ts +7 -0
- package/dist/types/index.d.ts +63 -63
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- 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/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +39 -39
- 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/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +14 -14
- 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/strategies/microsoft-entra.d.ts +23 -0
- package/dist/types/strategies/waad.d.ts +24 -0
- package/dist/types/strategies/windowslive.d.ts +24 -0
- package/dist/types/utils/email.d.ts +2 -0
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -195,13 +195,13 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
195
195
|
tenant: z.ZodObject<{
|
|
196
196
|
created_at: z.ZodPipe<z.ZodNullable<z.ZodString>, z.ZodTransform<string, string | null>>;
|
|
197
197
|
updated_at: z.ZodPipe<z.ZodNullable<z.ZodString>, z.ZodTransform<string, string | null>>;
|
|
198
|
-
audience: z.ZodString
|
|
198
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
199
199
|
friendly_name: z.ZodString;
|
|
200
200
|
picture_url: z.ZodOptional<z.ZodString>;
|
|
201
201
|
support_email: z.ZodOptional<z.ZodString>;
|
|
202
202
|
support_url: z.ZodOptional<z.ZodString>;
|
|
203
|
-
sender_email: z.ZodString
|
|
204
|
-
sender_name: z.ZodString
|
|
203
|
+
sender_email: z.ZodOptional<z.ZodString>;
|
|
204
|
+
sender_name: z.ZodOptional<z.ZodString>;
|
|
205
205
|
session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
206
206
|
idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
207
207
|
ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2721,7 +2721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2721
2721
|
};
|
|
2722
2722
|
} & {
|
|
2723
2723
|
json: {
|
|
2724
|
-
type: "
|
|
2724
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2725
2725
|
phone_number?: string | undefined;
|
|
2726
2726
|
totp_secret?: string | undefined;
|
|
2727
2727
|
credential_id?: string | undefined;
|
|
@@ -2861,7 +2861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2861
2861
|
};
|
|
2862
2862
|
};
|
|
2863
2863
|
output: {
|
|
2864
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
2864
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2865
2865
|
enabled: boolean;
|
|
2866
2866
|
trial_expired?: boolean | undefined;
|
|
2867
2867
|
}[];
|
|
@@ -3016,7 +3016,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3016
3016
|
$get: {
|
|
3017
3017
|
input: {
|
|
3018
3018
|
param: {
|
|
3019
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3019
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3020
3020
|
};
|
|
3021
3021
|
} & {
|
|
3022
3022
|
header: {
|
|
@@ -3024,7 +3024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3024
3024
|
};
|
|
3025
3025
|
};
|
|
3026
3026
|
output: {
|
|
3027
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3027
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3028
3028
|
enabled: boolean;
|
|
3029
3029
|
trial_expired?: boolean | undefined;
|
|
3030
3030
|
};
|
|
@@ -3037,7 +3037,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3037
3037
|
$put: {
|
|
3038
3038
|
input: {
|
|
3039
3039
|
param: {
|
|
3040
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3040
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3041
3041
|
};
|
|
3042
3042
|
} & {
|
|
3043
3043
|
header: {
|
|
@@ -3049,7 +3049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3049
3049
|
};
|
|
3050
3050
|
};
|
|
3051
3051
|
output: {
|
|
3052
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3052
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3053
3053
|
enabled: boolean;
|
|
3054
3054
|
trial_expired?: boolean | undefined;
|
|
3055
3055
|
};
|
|
@@ -9285,7 +9285,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9285
9285
|
};
|
|
9286
9286
|
};
|
|
9287
9287
|
output: {
|
|
9288
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
9288
|
+
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";
|
|
9289
9289
|
language: string;
|
|
9290
9290
|
}[];
|
|
9291
9291
|
outputFormat: "json";
|
|
@@ -9323,7 +9323,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9323
9323
|
$get: {
|
|
9324
9324
|
input: {
|
|
9325
9325
|
param: {
|
|
9326
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
9326
|
+
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";
|
|
9327
9327
|
language: string;
|
|
9328
9328
|
};
|
|
9329
9329
|
} & {
|
|
@@ -9345,7 +9345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9345
9345
|
$put: {
|
|
9346
9346
|
input: {
|
|
9347
9347
|
param: {
|
|
9348
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
9348
|
+
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";
|
|
9349
9349
|
language: string;
|
|
9350
9350
|
};
|
|
9351
9351
|
} & {
|
|
@@ -9369,7 +9369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9369
9369
|
$delete: {
|
|
9370
9370
|
input: {
|
|
9371
9371
|
param: {
|
|
9372
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
9372
|
+
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";
|
|
9373
9373
|
language: string;
|
|
9374
9374
|
};
|
|
9375
9375
|
} & {
|
|
@@ -10810,7 +10810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10810
10810
|
log_type: string;
|
|
10811
10811
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10812
10812
|
actor: {
|
|
10813
|
-
type: "
|
|
10813
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
10814
10814
|
id?: string | undefined;
|
|
10815
10815
|
email?: string | undefined;
|
|
10816
10816
|
org_id?: string | undefined;
|
|
@@ -11118,7 +11118,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11118
11118
|
created_at: string;
|
|
11119
11119
|
updated_at: string;
|
|
11120
11120
|
name: string;
|
|
11121
|
-
provider: "auth0" | "
|
|
11121
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11122
11122
|
connection: string;
|
|
11123
11123
|
enabled: boolean;
|
|
11124
11124
|
credentials: {
|
|
@@ -11150,7 +11150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11150
11150
|
created_at: string;
|
|
11151
11151
|
updated_at: string;
|
|
11152
11152
|
name: string;
|
|
11153
|
-
provider: "auth0" | "
|
|
11153
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11154
11154
|
connection: string;
|
|
11155
11155
|
enabled: boolean;
|
|
11156
11156
|
credentials: {
|
|
@@ -11176,7 +11176,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11176
11176
|
} & {
|
|
11177
11177
|
json: {
|
|
11178
11178
|
name: string;
|
|
11179
|
-
provider: "auth0" | "
|
|
11179
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11180
11180
|
connection: string;
|
|
11181
11181
|
credentials: {
|
|
11182
11182
|
domain: string;
|
|
@@ -11193,7 +11193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11193
11193
|
created_at: string;
|
|
11194
11194
|
updated_at: string;
|
|
11195
11195
|
name: string;
|
|
11196
|
-
provider: "auth0" | "
|
|
11196
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11197
11197
|
connection: string;
|
|
11198
11198
|
enabled: boolean;
|
|
11199
11199
|
credentials: {
|
|
@@ -11224,7 +11224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11224
11224
|
json: {
|
|
11225
11225
|
id?: string | undefined;
|
|
11226
11226
|
name?: string | undefined;
|
|
11227
|
-
provider?: "auth0" | "
|
|
11227
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
11228
11228
|
connection?: string | undefined;
|
|
11229
11229
|
enabled?: boolean | undefined;
|
|
11230
11230
|
credentials?: {
|
|
@@ -11240,7 +11240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11240
11240
|
created_at: string;
|
|
11241
11241
|
updated_at: string;
|
|
11242
11242
|
name: string;
|
|
11243
|
-
provider: "auth0" | "
|
|
11243
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11244
11244
|
connection: string;
|
|
11245
11245
|
enabled: boolean;
|
|
11246
11246
|
credentials: {
|
|
@@ -11458,7 +11458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11458
11458
|
};
|
|
11459
11459
|
};
|
|
11460
11460
|
output: {
|
|
11461
|
-
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
11461
|
+
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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11462
11462
|
date: string;
|
|
11463
11463
|
isMobile: boolean;
|
|
11464
11464
|
log_id: string;
|
|
@@ -11497,7 +11497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11497
11497
|
limit: number;
|
|
11498
11498
|
length: number;
|
|
11499
11499
|
logs: {
|
|
11500
|
-
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
11500
|
+
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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11501
11501
|
date: string;
|
|
11502
11502
|
isMobile: boolean;
|
|
11503
11503
|
log_id: string;
|
|
@@ -11551,7 +11551,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11551
11551
|
};
|
|
11552
11552
|
};
|
|
11553
11553
|
output: {
|
|
11554
|
-
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
11554
|
+
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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11555
11555
|
date: string;
|
|
11556
11556
|
isMobile: boolean;
|
|
11557
11557
|
log_id: string;
|
|
@@ -11706,7 +11706,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11706
11706
|
audience?: string | undefined;
|
|
11707
11707
|
client_id?: string | undefined;
|
|
11708
11708
|
allow_any_organization?: string | undefined;
|
|
11709
|
-
subject_type?: "
|
|
11709
|
+
subject_type?: "user" | "client" | undefined;
|
|
11710
11710
|
};
|
|
11711
11711
|
} & {
|
|
11712
11712
|
header: {
|
|
@@ -11721,7 +11721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11721
11721
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11722
11722
|
allow_any_organization?: boolean | undefined;
|
|
11723
11723
|
is_system?: boolean | undefined;
|
|
11724
|
-
subject_type?: "
|
|
11724
|
+
subject_type?: "user" | "client" | undefined;
|
|
11725
11725
|
authorization_details_types?: string[] | undefined;
|
|
11726
11726
|
created_at?: string | undefined;
|
|
11727
11727
|
updated_at?: string | undefined;
|
|
@@ -11737,7 +11737,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11737
11737
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11738
11738
|
allow_any_organization?: boolean | undefined;
|
|
11739
11739
|
is_system?: boolean | undefined;
|
|
11740
|
-
subject_type?: "
|
|
11740
|
+
subject_type?: "user" | "client" | undefined;
|
|
11741
11741
|
authorization_details_types?: string[] | undefined;
|
|
11742
11742
|
created_at?: string | undefined;
|
|
11743
11743
|
updated_at?: string | undefined;
|
|
@@ -11768,7 +11768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11768
11768
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11769
11769
|
allow_any_organization?: boolean | undefined;
|
|
11770
11770
|
is_system?: boolean | undefined;
|
|
11771
|
-
subject_type?: "
|
|
11771
|
+
subject_type?: "user" | "client" | undefined;
|
|
11772
11772
|
authorization_details_types?: string[] | undefined;
|
|
11773
11773
|
created_at?: string | undefined;
|
|
11774
11774
|
updated_at?: string | undefined;
|
|
@@ -11813,7 +11813,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11813
11813
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11814
11814
|
allow_any_organization?: boolean | undefined;
|
|
11815
11815
|
is_system?: boolean | undefined;
|
|
11816
|
-
subject_type?: "
|
|
11816
|
+
subject_type?: "user" | "client" | undefined;
|
|
11817
11817
|
authorization_details_types?: string[] | undefined;
|
|
11818
11818
|
};
|
|
11819
11819
|
};
|
|
@@ -11825,7 +11825,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11825
11825
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11826
11826
|
allow_any_organization?: boolean | undefined;
|
|
11827
11827
|
is_system?: boolean | undefined;
|
|
11828
|
-
subject_type?: "
|
|
11828
|
+
subject_type?: "user" | "client" | undefined;
|
|
11829
11829
|
authorization_details_types?: string[] | undefined;
|
|
11830
11830
|
created_at?: string | undefined;
|
|
11831
11831
|
updated_at?: string | undefined;
|
|
@@ -11849,7 +11849,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11849
11849
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11850
11850
|
allow_any_organization?: boolean | undefined;
|
|
11851
11851
|
is_system?: boolean | undefined;
|
|
11852
|
-
subject_type?: "
|
|
11852
|
+
subject_type?: "user" | "client" | undefined;
|
|
11853
11853
|
authorization_details_types?: string[] | undefined;
|
|
11854
11854
|
};
|
|
11855
11855
|
};
|
|
@@ -11861,7 +11861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11861
11861
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11862
11862
|
allow_any_organization?: boolean | undefined;
|
|
11863
11863
|
is_system?: boolean | undefined;
|
|
11864
|
-
subject_type?: "
|
|
11864
|
+
subject_type?: "user" | "client" | undefined;
|
|
11865
11865
|
authorization_details_types?: string[] | undefined;
|
|
11866
11866
|
created_at?: string | undefined;
|
|
11867
11867
|
updated_at?: string | undefined;
|
|
@@ -11939,7 +11939,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11939
11939
|
addons?: {
|
|
11940
11940
|
[x: string]: any;
|
|
11941
11941
|
} | undefined;
|
|
11942
|
-
token_endpoint_auth_method?: "
|
|
11942
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11943
11943
|
client_metadata?: {
|
|
11944
11944
|
[x: string]: string;
|
|
11945
11945
|
} | undefined;
|
|
@@ -12035,7 +12035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12035
12035
|
addons?: {
|
|
12036
12036
|
[x: string]: any;
|
|
12037
12037
|
} | undefined;
|
|
12038
|
-
token_endpoint_auth_method?: "
|
|
12038
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12039
12039
|
client_metadata?: {
|
|
12040
12040
|
[x: string]: string;
|
|
12041
12041
|
} | undefined;
|
|
@@ -12146,7 +12146,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12146
12146
|
addons?: {
|
|
12147
12147
|
[x: string]: any;
|
|
12148
12148
|
} | undefined;
|
|
12149
|
-
token_endpoint_auth_method?: "
|
|
12149
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12150
12150
|
client_metadata?: {
|
|
12151
12151
|
[x: string]: string;
|
|
12152
12152
|
} | undefined;
|
|
@@ -12256,7 +12256,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12256
12256
|
custom_login_page_preview?: string | undefined;
|
|
12257
12257
|
form_template?: string | undefined;
|
|
12258
12258
|
addons?: Record<string, any> | undefined;
|
|
12259
|
-
token_endpoint_auth_method?: "
|
|
12259
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12260
12260
|
client_metadata?: Record<string, string> | undefined;
|
|
12261
12261
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12262
12262
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12336,7 +12336,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12336
12336
|
addons?: {
|
|
12337
12337
|
[x: string]: any;
|
|
12338
12338
|
} | undefined;
|
|
12339
|
-
token_endpoint_auth_method?: "
|
|
12339
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12340
12340
|
client_metadata?: {
|
|
12341
12341
|
[x: string]: string;
|
|
12342
12342
|
} | undefined;
|
|
@@ -12425,7 +12425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12425
12425
|
custom_login_page_preview?: string | undefined;
|
|
12426
12426
|
form_template?: string | undefined;
|
|
12427
12427
|
addons?: Record<string, any> | undefined;
|
|
12428
|
-
token_endpoint_auth_method?: "
|
|
12428
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12429
12429
|
client_metadata?: Record<string, string> | undefined;
|
|
12430
12430
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12431
12431
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12505,7 +12505,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12505
12505
|
addons?: {
|
|
12506
12506
|
[x: string]: any;
|
|
12507
12507
|
} | undefined;
|
|
12508
|
-
token_endpoint_auth_method?: "
|
|
12508
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12509
12509
|
client_metadata?: {
|
|
12510
12510
|
[x: string]: string;
|
|
12511
12511
|
} | undefined;
|
|
@@ -13769,7 +13769,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13769
13769
|
};
|
|
13770
13770
|
};
|
|
13771
13771
|
output: {
|
|
13772
|
-
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
13772
|
+
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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13773
13773
|
date: string;
|
|
13774
13774
|
isMobile: boolean;
|
|
13775
13775
|
log_id: string;
|
|
@@ -13808,7 +13808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13808
13808
|
limit: number;
|
|
13809
13809
|
length: number;
|
|
13810
13810
|
logs: {
|
|
13811
|
-
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
13811
|
+
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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13812
13812
|
date: string;
|
|
13813
13813
|
isMobile: boolean;
|
|
13814
13814
|
log_id: string;
|
|
@@ -15512,7 +15512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15512
15512
|
logs: {
|
|
15513
15513
|
action_name: string;
|
|
15514
15514
|
lines: {
|
|
15515
|
-
level: "
|
|
15515
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15516
15516
|
message: string;
|
|
15517
15517
|
}[];
|
|
15518
15518
|
}[];
|
|
@@ -16179,7 +16179,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16179
16179
|
args: hono_utils_types.JSONValue[];
|
|
16180
16180
|
}[];
|
|
16181
16181
|
logs: {
|
|
16182
|
-
level: "
|
|
16182
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16183
16183
|
message: string;
|
|
16184
16184
|
}[];
|
|
16185
16185
|
error?: string | undefined;
|
|
@@ -16477,7 +16477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16477
16477
|
scope?: string | undefined;
|
|
16478
16478
|
grant_types?: string[] | undefined;
|
|
16479
16479
|
response_types?: string[] | undefined;
|
|
16480
|
-
token_endpoint_auth_method?: "
|
|
16480
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
16481
16481
|
jwks_uri?: string | undefined;
|
|
16482
16482
|
jwks?: Record<string, unknown> | undefined;
|
|
16483
16483
|
software_id?: string | undefined;
|
|
@@ -16566,7 +16566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16566
16566
|
scope?: string | undefined;
|
|
16567
16567
|
grant_types?: string[] | undefined;
|
|
16568
16568
|
response_types?: string[] | undefined;
|
|
16569
|
-
token_endpoint_auth_method?: "
|
|
16569
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
16570
16570
|
jwks_uri?: string | undefined;
|
|
16571
16571
|
jwks?: Record<string, unknown> | undefined;
|
|
16572
16572
|
software_id?: string | undefined;
|
|
@@ -16912,20 +16912,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16912
16912
|
email: string;
|
|
16913
16913
|
send: "code" | "link";
|
|
16914
16914
|
authParams: {
|
|
16915
|
+
username?: string | undefined;
|
|
16916
|
+
state?: string | undefined;
|
|
16915
16917
|
audience?: string | undefined;
|
|
16916
16918
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16917
16919
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16918
16920
|
scope?: string | undefined;
|
|
16919
|
-
username?: string | undefined;
|
|
16920
|
-
state?: string | undefined;
|
|
16921
|
-
prompt?: string | undefined;
|
|
16922
|
-
ui_locales?: string | undefined;
|
|
16923
16921
|
organization?: string | undefined;
|
|
16922
|
+
nonce?: string | undefined;
|
|
16924
16923
|
redirect_uri?: string | undefined;
|
|
16925
16924
|
act_as?: string | undefined;
|
|
16926
|
-
|
|
16925
|
+
prompt?: string | undefined;
|
|
16927
16926
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16928
16927
|
code_challenge?: string | undefined;
|
|
16928
|
+
ui_locales?: string | undefined;
|
|
16929
16929
|
max_age?: number | undefined;
|
|
16930
16930
|
acr_values?: string | undefined;
|
|
16931
16931
|
claims?: {
|
|
@@ -16948,20 +16948,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16948
16948
|
phone_number: string;
|
|
16949
16949
|
send: "code" | "link";
|
|
16950
16950
|
authParams: {
|
|
16951
|
+
username?: string | undefined;
|
|
16952
|
+
state?: string | undefined;
|
|
16951
16953
|
audience?: string | undefined;
|
|
16952
16954
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16953
16955
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16954
16956
|
scope?: string | undefined;
|
|
16955
|
-
username?: string | undefined;
|
|
16956
|
-
state?: string | undefined;
|
|
16957
|
-
prompt?: string | undefined;
|
|
16958
|
-
ui_locales?: string | undefined;
|
|
16959
16957
|
organization?: string | undefined;
|
|
16958
|
+
nonce?: string | undefined;
|
|
16960
16959
|
redirect_uri?: string | undefined;
|
|
16961
16960
|
act_as?: string | undefined;
|
|
16962
|
-
|
|
16961
|
+
prompt?: string | undefined;
|
|
16963
16962
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16964
16963
|
code_challenge?: string | undefined;
|
|
16964
|
+
ui_locales?: string | undefined;
|
|
16965
16965
|
max_age?: number | undefined;
|
|
16966
16966
|
acr_values?: string | undefined;
|
|
16967
16967
|
claims?: {
|
|
@@ -17092,14 +17092,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17092
17092
|
input: {
|
|
17093
17093
|
form: {
|
|
17094
17094
|
token: string;
|
|
17095
|
-
token_type_hint?: "
|
|
17095
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17096
17096
|
client_id?: string | undefined;
|
|
17097
17097
|
client_secret?: string | undefined;
|
|
17098
17098
|
};
|
|
17099
17099
|
} & {
|
|
17100
17100
|
json: {
|
|
17101
17101
|
token: string;
|
|
17102
|
-
token_type_hint?: "
|
|
17102
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17103
17103
|
client_id?: string | undefined;
|
|
17104
17104
|
client_secret?: string | undefined;
|
|
17105
17105
|
};
|
|
@@ -17111,14 +17111,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17111
17111
|
input: {
|
|
17112
17112
|
form: {
|
|
17113
17113
|
token: string;
|
|
17114
|
-
token_type_hint?: "
|
|
17114
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17115
17115
|
client_id?: string | undefined;
|
|
17116
17116
|
client_secret?: string | undefined;
|
|
17117
17117
|
};
|
|
17118
17118
|
} & {
|
|
17119
17119
|
json: {
|
|
17120
17120
|
token: string;
|
|
17121
|
-
token_type_hint?: "
|
|
17121
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17122
17122
|
client_id?: string | undefined;
|
|
17123
17123
|
client_secret?: string | undefined;
|
|
17124
17124
|
};
|
|
@@ -17133,14 +17133,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17133
17133
|
input: {
|
|
17134
17134
|
form: {
|
|
17135
17135
|
token: string;
|
|
17136
|
-
token_type_hint?: "
|
|
17136
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17137
17137
|
client_id?: string | undefined;
|
|
17138
17138
|
client_secret?: string | undefined;
|
|
17139
17139
|
};
|
|
17140
17140
|
} & {
|
|
17141
17141
|
json: {
|
|
17142
17142
|
token: string;
|
|
17143
|
-
token_type_hint?: "
|
|
17143
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17144
17144
|
client_id?: string | undefined;
|
|
17145
17145
|
client_secret?: string | undefined;
|
|
17146
17146
|
};
|
|
@@ -18867,7 +18867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18867
18867
|
$get: {
|
|
18868
18868
|
input: {
|
|
18869
18869
|
param: {
|
|
18870
|
-
screen: "signup" | "
|
|
18870
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18871
18871
|
};
|
|
18872
18872
|
} & {
|
|
18873
18873
|
query: {
|
|
@@ -18883,7 +18883,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18883
18883
|
} | {
|
|
18884
18884
|
input: {
|
|
18885
18885
|
param: {
|
|
18886
|
-
screen: "signup" | "
|
|
18886
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18887
18887
|
};
|
|
18888
18888
|
} & {
|
|
18889
18889
|
query: {
|
|
@@ -18899,7 +18899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18899
18899
|
} | {
|
|
18900
18900
|
input: {
|
|
18901
18901
|
param: {
|
|
18902
|
-
screen: "signup" | "
|
|
18902
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18903
18903
|
};
|
|
18904
18904
|
} & {
|
|
18905
18905
|
query: {
|
|
@@ -18919,7 +18919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18919
18919
|
$post: {
|
|
18920
18920
|
input: {
|
|
18921
18921
|
param: {
|
|
18922
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
18922
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18923
18923
|
};
|
|
18924
18924
|
} & {
|
|
18925
18925
|
query: {
|
|
@@ -18937,7 +18937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18937
18937
|
} | {
|
|
18938
18938
|
input: {
|
|
18939
18939
|
param: {
|
|
18940
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
18940
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18941
18941
|
};
|
|
18942
18942
|
} & {
|
|
18943
18943
|
query: {
|
|
@@ -18955,7 +18955,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18955
18955
|
} | {
|
|
18956
18956
|
input: {
|
|
18957
18957
|
param: {
|
|
18958
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
18958
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18959
18959
|
};
|
|
18960
18960
|
} & {
|
|
18961
18961
|
query: {
|