@transmitsecurity/platform-web-sdk 2.6.1 → 2.6.2
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/CHANGELOG.md +16 -0
- package/dist/common.cjs +1 -1
- package/dist/common.js +1 -1
- package/dist/drs.cjs +1 -1
- package/dist/drs.d.ts +1 -1
- package/dist/drs.js +1 -1
- package/dist/ido.cjs +1 -1
- package/dist/ido.js +1 -1
- package/dist/idv.cjs +1 -1
- package/dist/idv.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/ts-platform-websdk.js +1 -1
- package/dist/web-sdk-drs+idv+webauthn+ido.js +1 -1
- package/dist/web-sdk.d.ts +2 -2
- package/dist/webauthn.cjs +1 -1
- package/dist/webauthn.js +1 -1
- package/package.json +1 -1
package/dist/drs.d.ts
CHANGED
|
@@ -59,7 +59,7 @@ type AvsMatchLevel = 'none' | 'postal' | 'street' | 'full' | 'unknown';
|
|
|
59
59
|
/** The outcome of an action reported via {@link TSAccountProtection.reportActionResult} */
|
|
60
60
|
type ActionResult = "success" | "failure" | "incomplete";
|
|
61
61
|
/** Type of challenge presented to the user, when a challenge was recommended for the action */
|
|
62
|
-
type ChallengeType = "sms_otp" | "email_otp" | "totp" | "push_otp" | "voice_otp" | "idv" | "captcha" | "password" | "passkey";
|
|
62
|
+
type ChallengeType = "sms_otp" | "email_otp" | "totp" | "push_otp" | "voice_otp" | "idv" | "captcha" | "password" | "passkey" | "document_verification" | "security_question" | "knowledge_based_authentication" | "device_approval" | "out_of_band" | "otp" | "device_biometrics" | "face_id" | "fingerprint" | "mobile_approve" | "pin" | "cap_rep_token" | "symantec_token" | "duo" | "secure_id" | "csm" | "biometric" | "devicetag_rep_token" | "email_verification" | "magic_link" | "symantec_pin" | "web_to_mobile";
|
|
63
63
|
type AuthMethodType = 'password' | 'webauthn' | 'totp' | 'email_otp' | 'sms_otp' | 'direct_otp' | 'voice_otp' | 'push_otp' | 'idv' | 'email_magic_link' | 'mobile_biometric' | 'face' | 'pin_authenticator' | 'google' | 'facebook' | 'apple' | 'line' | 'saml' | 'oidc';
|
|
64
64
|
interface ActionResultOptions {
|
|
65
65
|
/** Identifier containing sensitive user data. Mosaic will encrypt and securely store this data. */
|