authhero 7.1.0 → 7.2.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/authhero.cjs +102 -102
- package/dist/authhero.d.ts +58 -63
- package/dist/authhero.mjs +5041 -5036
- 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/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/signing-keys.d.ts +1 -0
- package/dist/types/index.d.ts +58 -58
- package/dist/types/routes/auth-api/index.d.ts +28 -28
- 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/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- 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 +30 -30
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/types/Bindings.d.ts +0 -6
- package/dist/types/utils/jwks.d.ts +10 -11
- package/dist/types/utils/jwt.d.ts +21 -1
- package/package.json +2 -2
|
@@ -457,7 +457,7 @@ export declare function passwordlessGrantUser(ctx: Context<{
|
|
|
457
457
|
custom_login_page_preview?: string | undefined;
|
|
458
458
|
form_template?: string | undefined;
|
|
459
459
|
addons?: Record<string, any> | undefined;
|
|
460
|
-
token_endpoint_auth_method?: "
|
|
460
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
461
461
|
client_metadata?: Record<string, string> | undefined;
|
|
462
462
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
463
463
|
mobile?: Record<string, any> | undefined;
|
|
@@ -540,8 +540,8 @@ export declare function passwordlessGrantUser(ctx: Context<{
|
|
|
540
540
|
} | undefined;
|
|
541
541
|
authenticated_at?: string | undefined;
|
|
542
542
|
};
|
|
543
|
-
connectionType: "
|
|
544
|
-
authConnection: "
|
|
543
|
+
connectionType: "username" | "sms" | "email";
|
|
544
|
+
authConnection: "username" | "sms" | "email";
|
|
545
545
|
session_id: string | undefined;
|
|
546
546
|
authParams: {
|
|
547
547
|
client_id: string;
|
|
@@ -23,11 +23,11 @@ export declare const dcrRequestSchema: z.ZodObject<{
|
|
|
23
23
|
grant_types: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24
24
|
response_types: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25
25
|
token_endpoint_auth_method: z.ZodOptional<z.ZodEnum<{
|
|
26
|
+
none: "none";
|
|
26
27
|
client_secret_post: "client_secret_post";
|
|
27
28
|
client_secret_basic: "client_secret_basic";
|
|
28
|
-
none: "none";
|
|
29
|
-
private_key_jwt: "private_key_jwt";
|
|
30
29
|
client_secret_jwt: "client_secret_jwt";
|
|
30
|
+
private_key_jwt: "private_key_jwt";
|
|
31
31
|
}>>;
|
|
32
32
|
jwks_uri: z.ZodOptional<z.ZodString>;
|
|
33
33
|
jwks: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SigningKey, KeysAdapter } from "@authhero/adapter-interfaces";
|
|
2
2
|
import { SigningKeyMode, SigningKeyModeOption } from "../types/AuthHeroConfig";
|
|
3
|
+
export declare function listControlPlaneKeys(keys: KeysAdapter, type?: string): Promise<SigningKey[]>;
|
|
3
4
|
export declare function resolveSigningKeyMode(option: SigningKeyModeOption | undefined, tenantId: string): Promise<SigningKeyMode>;
|
|
4
5
|
export interface ResolveSigningKeysOptions {
|
|
5
6
|
/**
|
package/dist/types/index.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
86
86
|
};
|
|
87
87
|
} & {
|
|
88
88
|
json: {
|
|
89
|
-
type: "
|
|
89
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
90
90
|
phone_number?: string | undefined;
|
|
91
91
|
totp_secret?: string | undefined;
|
|
92
92
|
credential_id?: string | undefined;
|
|
@@ -226,7 +226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
226
226
|
};
|
|
227
227
|
};
|
|
228
228
|
output: {
|
|
229
|
-
name: "
|
|
229
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
230
230
|
enabled: boolean;
|
|
231
231
|
trial_expired?: boolean | undefined;
|
|
232
232
|
}[];
|
|
@@ -381,7 +381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
381
381
|
$get: {
|
|
382
382
|
input: {
|
|
383
383
|
param: {
|
|
384
|
-
factor_name: "
|
|
384
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
385
385
|
};
|
|
386
386
|
} & {
|
|
387
387
|
header: {
|
|
@@ -389,7 +389,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
389
389
|
};
|
|
390
390
|
};
|
|
391
391
|
output: {
|
|
392
|
-
name: "
|
|
392
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
393
393
|
enabled: boolean;
|
|
394
394
|
trial_expired?: boolean | undefined;
|
|
395
395
|
};
|
|
@@ -402,7 +402,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
402
402
|
$put: {
|
|
403
403
|
input: {
|
|
404
404
|
param: {
|
|
405
|
-
factor_name: "
|
|
405
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
406
406
|
};
|
|
407
407
|
} & {
|
|
408
408
|
header: {
|
|
@@ -414,7 +414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
414
414
|
};
|
|
415
415
|
};
|
|
416
416
|
output: {
|
|
417
|
-
name: "
|
|
417
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
418
418
|
enabled: boolean;
|
|
419
419
|
trial_expired?: boolean | undefined;
|
|
420
420
|
};
|
|
@@ -1347,8 +1347,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1347
1347
|
};
|
|
1348
1348
|
} & {
|
|
1349
1349
|
json: {
|
|
1350
|
-
show_as_button?: boolean | undefined;
|
|
1351
1350
|
assign_membership_on_login?: boolean | undefined;
|
|
1351
|
+
show_as_button?: boolean | undefined;
|
|
1352
1352
|
is_signup_enabled?: boolean | undefined;
|
|
1353
1353
|
};
|
|
1354
1354
|
};
|
|
@@ -6650,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6650
6650
|
};
|
|
6651
6651
|
};
|
|
6652
6652
|
output: {
|
|
6653
|
-
prompt: "
|
|
6653
|
+
prompt: "mfa" | "organizations" | "status" | "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";
|
|
6654
6654
|
language: string;
|
|
6655
6655
|
}[];
|
|
6656
6656
|
outputFormat: "json";
|
|
@@ -6688,7 +6688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6688
6688
|
$get: {
|
|
6689
6689
|
input: {
|
|
6690
6690
|
param: {
|
|
6691
|
-
prompt: "
|
|
6691
|
+
prompt: "mfa" | "organizations" | "status" | "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";
|
|
6692
6692
|
language: string;
|
|
6693
6693
|
};
|
|
6694
6694
|
} & {
|
|
@@ -6710,7 +6710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6710
6710
|
$put: {
|
|
6711
6711
|
input: {
|
|
6712
6712
|
param: {
|
|
6713
|
-
prompt: "
|
|
6713
|
+
prompt: "mfa" | "organizations" | "status" | "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";
|
|
6714
6714
|
language: string;
|
|
6715
6715
|
};
|
|
6716
6716
|
} & {
|
|
@@ -6734,7 +6734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6734
6734
|
$delete: {
|
|
6735
6735
|
input: {
|
|
6736
6736
|
param: {
|
|
6737
|
-
prompt: "
|
|
6737
|
+
prompt: "mfa" | "organizations" | "status" | "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";
|
|
6738
6738
|
language: string;
|
|
6739
6739
|
};
|
|
6740
6740
|
} & {
|
|
@@ -8175,7 +8175,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8175
8175
|
log_type: string;
|
|
8176
8176
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8177
8177
|
actor: {
|
|
8178
|
-
type: "
|
|
8178
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8179
8179
|
id?: string | undefined;
|
|
8180
8180
|
email?: string | undefined;
|
|
8181
8181
|
org_id?: string | undefined;
|
|
@@ -8823,7 +8823,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8823
8823
|
};
|
|
8824
8824
|
};
|
|
8825
8825
|
output: {
|
|
8826
|
-
type: "
|
|
8826
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8827
8827
|
date: string;
|
|
8828
8828
|
isMobile: boolean;
|
|
8829
8829
|
log_id: string;
|
|
@@ -8862,7 +8862,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8862
8862
|
limit: number;
|
|
8863
8863
|
length: number;
|
|
8864
8864
|
logs: {
|
|
8865
|
-
type: "
|
|
8865
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8866
8866
|
date: string;
|
|
8867
8867
|
isMobile: boolean;
|
|
8868
8868
|
log_id: string;
|
|
@@ -8916,7 +8916,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8916
8916
|
};
|
|
8917
8917
|
};
|
|
8918
8918
|
output: {
|
|
8919
|
-
type: "
|
|
8919
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8920
8920
|
date: string;
|
|
8921
8921
|
isMobile: boolean;
|
|
8922
8922
|
log_id: string;
|
|
@@ -9304,7 +9304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9304
9304
|
addons?: {
|
|
9305
9305
|
[x: string]: any;
|
|
9306
9306
|
} | undefined;
|
|
9307
|
-
token_endpoint_auth_method?: "
|
|
9307
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9308
9308
|
client_metadata?: {
|
|
9309
9309
|
[x: string]: string;
|
|
9310
9310
|
} | undefined;
|
|
@@ -9400,7 +9400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9400
9400
|
addons?: {
|
|
9401
9401
|
[x: string]: any;
|
|
9402
9402
|
} | undefined;
|
|
9403
|
-
token_endpoint_auth_method?: "
|
|
9403
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9404
9404
|
client_metadata?: {
|
|
9405
9405
|
[x: string]: string;
|
|
9406
9406
|
} | undefined;
|
|
@@ -9511,7 +9511,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9511
9511
|
addons?: {
|
|
9512
9512
|
[x: string]: any;
|
|
9513
9513
|
} | undefined;
|
|
9514
|
-
token_endpoint_auth_method?: "
|
|
9514
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9515
9515
|
client_metadata?: {
|
|
9516
9516
|
[x: string]: string;
|
|
9517
9517
|
} | undefined;
|
|
@@ -9621,7 +9621,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9621
9621
|
custom_login_page_preview?: string | undefined;
|
|
9622
9622
|
form_template?: string | undefined;
|
|
9623
9623
|
addons?: Record<string, any> | undefined;
|
|
9624
|
-
token_endpoint_auth_method?: "
|
|
9624
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9625
9625
|
client_metadata?: Record<string, string> | undefined;
|
|
9626
9626
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9627
9627
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9701,7 +9701,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9701
9701
|
addons?: {
|
|
9702
9702
|
[x: string]: any;
|
|
9703
9703
|
} | undefined;
|
|
9704
|
-
token_endpoint_auth_method?: "
|
|
9704
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9705
9705
|
client_metadata?: {
|
|
9706
9706
|
[x: string]: string;
|
|
9707
9707
|
} | undefined;
|
|
@@ -9790,7 +9790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9790
9790
|
custom_login_page_preview?: string | undefined;
|
|
9791
9791
|
form_template?: string | undefined;
|
|
9792
9792
|
addons?: Record<string, any> | undefined;
|
|
9793
|
-
token_endpoint_auth_method?: "
|
|
9793
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9794
9794
|
client_metadata?: Record<string, string> | undefined;
|
|
9795
9795
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9796
9796
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9870,7 +9870,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9870
9870
|
addons?: {
|
|
9871
9871
|
[x: string]: any;
|
|
9872
9872
|
} | undefined;
|
|
9873
|
-
token_endpoint_auth_method?: "
|
|
9873
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9874
9874
|
client_metadata?: {
|
|
9875
9875
|
[x: string]: string;
|
|
9876
9876
|
} | undefined;
|
|
@@ -11134,7 +11134,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11134
11134
|
};
|
|
11135
11135
|
};
|
|
11136
11136
|
output: {
|
|
11137
|
-
type: "
|
|
11137
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11138
11138
|
date: string;
|
|
11139
11139
|
isMobile: boolean;
|
|
11140
11140
|
log_id: string;
|
|
@@ -11173,7 +11173,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11173
11173
|
limit: number;
|
|
11174
11174
|
length: number;
|
|
11175
11175
|
logs: {
|
|
11176
|
-
type: "
|
|
11176
|
+
type: "festft" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11177
11177
|
date: string;
|
|
11178
11178
|
isMobile: boolean;
|
|
11179
11179
|
log_id: string;
|
|
@@ -12013,7 +12013,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12013
12013
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12014
12014
|
custom_domain_id: string;
|
|
12015
12015
|
primary: boolean;
|
|
12016
|
-
status: "
|
|
12016
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12017
12017
|
verification_method?: "txt" | undefined;
|
|
12018
12018
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12019
12019
|
domain_metadata?: {
|
|
@@ -12054,7 +12054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12054
12054
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12055
12055
|
custom_domain_id: string;
|
|
12056
12056
|
primary: boolean;
|
|
12057
|
-
status: "
|
|
12057
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12058
12058
|
verification_method?: "txt" | undefined;
|
|
12059
12059
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12060
12060
|
domain_metadata?: {
|
|
@@ -12118,7 +12118,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12118
12118
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12119
12119
|
custom_domain_id: string;
|
|
12120
12120
|
primary: boolean;
|
|
12121
|
-
status: "
|
|
12121
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12122
12122
|
verification_method?: "txt" | undefined;
|
|
12123
12123
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12124
12124
|
domain_metadata?: {
|
|
@@ -12165,7 +12165,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12165
12165
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12166
12166
|
custom_domain_id: string;
|
|
12167
12167
|
primary: boolean;
|
|
12168
|
-
status: "
|
|
12168
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12169
12169
|
verification_method?: "txt" | undefined;
|
|
12170
12170
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12171
12171
|
domain_metadata?: {
|
|
@@ -12211,7 +12211,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12211
12211
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12212
12212
|
custom_domain_id: string;
|
|
12213
12213
|
primary: boolean;
|
|
12214
|
-
status: "
|
|
12214
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12215
12215
|
verification_method?: "txt" | undefined;
|
|
12216
12216
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12217
12217
|
domain_metadata?: {
|
|
@@ -12252,7 +12252,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12252
12252
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12253
12253
|
custom_domain_id: string;
|
|
12254
12254
|
primary: boolean;
|
|
12255
|
-
status: "
|
|
12255
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12256
12256
|
verification_method?: "txt" | undefined;
|
|
12257
12257
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12258
12258
|
domain_metadata?: {
|
|
@@ -13824,7 +13824,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13824
13824
|
scope?: string | undefined;
|
|
13825
13825
|
grant_types?: string[] | undefined;
|
|
13826
13826
|
response_types?: string[] | undefined;
|
|
13827
|
-
token_endpoint_auth_method?: "
|
|
13827
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13828
13828
|
jwks_uri?: string | undefined;
|
|
13829
13829
|
jwks?: Record<string, unknown> | undefined;
|
|
13830
13830
|
software_id?: string | undefined;
|
|
@@ -13913,7 +13913,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13913
13913
|
scope?: string | undefined;
|
|
13914
13914
|
grant_types?: string[] | undefined;
|
|
13915
13915
|
response_types?: string[] | undefined;
|
|
13916
|
-
token_endpoint_auth_method?: "
|
|
13916
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13917
13917
|
jwks_uri?: string | undefined;
|
|
13918
13918
|
jwks?: Record<string, unknown> | undefined;
|
|
13919
13919
|
software_id?: string | undefined;
|
|
@@ -14259,16 +14259,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14259
14259
|
email: string;
|
|
14260
14260
|
send: "code" | "link";
|
|
14261
14261
|
authParams: {
|
|
14262
|
-
|
|
14263
|
-
|
|
14262
|
+
organization?: string | undefined;
|
|
14263
|
+
audience?: string | undefined;
|
|
14264
14264
|
scope?: string | undefined;
|
|
14265
14265
|
username?: string | undefined;
|
|
14266
|
-
audience?: string | undefined;
|
|
14267
14266
|
state?: string | undefined;
|
|
14268
|
-
organization?: string | undefined;
|
|
14269
|
-
nonce?: string | undefined;
|
|
14270
14267
|
act_as?: string | undefined;
|
|
14268
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14269
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14271
14270
|
redirect_uri?: string | undefined;
|
|
14271
|
+
nonce?: string | undefined;
|
|
14272
14272
|
prompt?: string | undefined;
|
|
14273
14273
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14274
14274
|
code_challenge?: string | undefined;
|
|
@@ -14295,16 +14295,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14295
14295
|
phone_number: string;
|
|
14296
14296
|
send: "code" | "link";
|
|
14297
14297
|
authParams: {
|
|
14298
|
-
|
|
14299
|
-
|
|
14298
|
+
organization?: string | undefined;
|
|
14299
|
+
audience?: string | undefined;
|
|
14300
14300
|
scope?: string | undefined;
|
|
14301
14301
|
username?: string | undefined;
|
|
14302
|
-
audience?: string | undefined;
|
|
14303
14302
|
state?: string | undefined;
|
|
14304
|
-
organization?: string | undefined;
|
|
14305
|
-
nonce?: string | undefined;
|
|
14306
14303
|
act_as?: string | undefined;
|
|
14304
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14305
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14307
14306
|
redirect_uri?: string | undefined;
|
|
14307
|
+
nonce?: string | undefined;
|
|
14308
14308
|
prompt?: string | undefined;
|
|
14309
14309
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14310
14310
|
code_challenge?: string | undefined;
|
|
@@ -14439,14 +14439,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14439
14439
|
input: {
|
|
14440
14440
|
form: {
|
|
14441
14441
|
token: string;
|
|
14442
|
-
token_type_hint?: "
|
|
14442
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14443
14443
|
client_id?: string | undefined;
|
|
14444
14444
|
client_secret?: string | undefined;
|
|
14445
14445
|
};
|
|
14446
14446
|
} & {
|
|
14447
14447
|
json: {
|
|
14448
14448
|
token: string;
|
|
14449
|
-
token_type_hint?: "
|
|
14449
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14450
14450
|
client_id?: string | undefined;
|
|
14451
14451
|
client_secret?: string | undefined;
|
|
14452
14452
|
};
|
|
@@ -14458,14 +14458,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14458
14458
|
input: {
|
|
14459
14459
|
form: {
|
|
14460
14460
|
token: string;
|
|
14461
|
-
token_type_hint?: "
|
|
14461
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14462
14462
|
client_id?: string | undefined;
|
|
14463
14463
|
client_secret?: string | undefined;
|
|
14464
14464
|
};
|
|
14465
14465
|
} & {
|
|
14466
14466
|
json: {
|
|
14467
14467
|
token: string;
|
|
14468
|
-
token_type_hint?: "
|
|
14468
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14469
14469
|
client_id?: string | undefined;
|
|
14470
14470
|
client_secret?: string | undefined;
|
|
14471
14471
|
};
|
|
@@ -14480,14 +14480,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14480
14480
|
input: {
|
|
14481
14481
|
form: {
|
|
14482
14482
|
token: string;
|
|
14483
|
-
token_type_hint?: "
|
|
14483
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14484
14484
|
client_id?: string | undefined;
|
|
14485
14485
|
client_secret?: string | undefined;
|
|
14486
14486
|
};
|
|
14487
14487
|
} & {
|
|
14488
14488
|
json: {
|
|
14489
14489
|
token: string;
|
|
14490
|
-
token_type_hint?: "
|
|
14490
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14491
14491
|
client_id?: string | undefined;
|
|
14492
14492
|
client_secret?: string | undefined;
|
|
14493
14493
|
};
|
|
@@ -14537,7 +14537,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14537
14537
|
client_id: string;
|
|
14538
14538
|
username: string;
|
|
14539
14539
|
otp: string;
|
|
14540
|
-
realm: "
|
|
14540
|
+
realm: "sms" | "email";
|
|
14541
14541
|
} | {
|
|
14542
14542
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14543
14543
|
subject_token: string;
|
|
@@ -14584,7 +14584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14584
14584
|
client_id: string;
|
|
14585
14585
|
username: string;
|
|
14586
14586
|
otp: string;
|
|
14587
|
-
realm: "
|
|
14587
|
+
realm: "sms" | "email";
|
|
14588
14588
|
} | {
|
|
14589
14589
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14590
14590
|
subject_token: string;
|
|
@@ -14636,7 +14636,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14636
14636
|
client_id: string;
|
|
14637
14637
|
username: string;
|
|
14638
14638
|
otp: string;
|
|
14639
|
-
realm: "
|
|
14639
|
+
realm: "sms" | "email";
|
|
14640
14640
|
} | {
|
|
14641
14641
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14642
14642
|
subject_token: string;
|
|
@@ -14683,7 +14683,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14683
14683
|
client_id: string;
|
|
14684
14684
|
username: string;
|
|
14685
14685
|
otp: string;
|
|
14686
|
-
realm: "
|
|
14686
|
+
realm: "sms" | "email";
|
|
14687
14687
|
} | {
|
|
14688
14688
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14689
14689
|
subject_token: string;
|
|
@@ -14743,7 +14743,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14743
14743
|
client_id: string;
|
|
14744
14744
|
username: string;
|
|
14745
14745
|
otp: string;
|
|
14746
|
-
realm: "
|
|
14746
|
+
realm: "sms" | "email";
|
|
14747
14747
|
} | {
|
|
14748
14748
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14749
14749
|
subject_token: string;
|
|
@@ -14790,7 +14790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14790
14790
|
client_id: string;
|
|
14791
14791
|
username: string;
|
|
14792
14792
|
otp: string;
|
|
14793
|
-
realm: "
|
|
14793
|
+
realm: "sms" | "email";
|
|
14794
14794
|
} | {
|
|
14795
14795
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14796
14796
|
subject_token: string;
|
|
@@ -14845,7 +14845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14845
14845
|
client_id: string;
|
|
14846
14846
|
username: string;
|
|
14847
14847
|
otp: string;
|
|
14848
|
-
realm: "
|
|
14848
|
+
realm: "sms" | "email";
|
|
14849
14849
|
} | {
|
|
14850
14850
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14851
14851
|
subject_token: string;
|
|
@@ -14892,7 +14892,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14892
14892
|
client_id: string;
|
|
14893
14893
|
username: string;
|
|
14894
14894
|
otp: string;
|
|
14895
|
-
realm: "
|
|
14895
|
+
realm: "sms" | "email";
|
|
14896
14896
|
} | {
|
|
14897
14897
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14898
14898
|
subject_token: string;
|
|
@@ -14947,7 +14947,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14947
14947
|
client_id: string;
|
|
14948
14948
|
username: string;
|
|
14949
14949
|
otp: string;
|
|
14950
|
-
realm: "
|
|
14950
|
+
realm: "sms" | "email";
|
|
14951
14951
|
} | {
|
|
14952
14952
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14953
14953
|
subject_token: string;
|
|
@@ -14994,7 +14994,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14994
14994
|
client_id: string;
|
|
14995
14995
|
username: string;
|
|
14996
14996
|
otp: string;
|
|
14997
|
-
realm: "
|
|
14997
|
+
realm: "sms" | "email";
|
|
14998
14998
|
} | {
|
|
14999
14999
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15000
15000
|
subject_token: string;
|