@transmitsecurity/platform-web-sdk 1.17.0 → 1.17.2-beta.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/CHANGELOG.md +24 -1
- package/LICENSE +21 -0
- package/dist/drs.cjs +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 +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/ts-platform-websdk.js +2 -2
- package/dist/web-sdk-drs+idv+webauthn+ido.js +2 -2
- package/dist/web-sdk.d.ts +38 -16
- package/dist/webauthn.cjs +1 -1
- package/dist/webauthn.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.17.2 – Sep. 28, 2025
|
|
4
|
+
* feat: Add package LICENSE file
|
|
5
|
+
|
|
6
|
+
**Fraud Prevention**
|
|
7
|
+
* fix: Update `getSessionToken` error format from object to string.
|
|
8
|
+
* improve device event performance and reselience.
|
|
9
|
+
|
|
10
|
+
**Orchestration**
|
|
11
|
+
* feat: Add Generic OTP Authentication step type
|
|
12
|
+
|
|
13
|
+
## 1.17.1 – Sep. 14, 2025
|
|
14
|
+
**Fraud Prevention**
|
|
15
|
+
* feat: Improve resilience of building encrypted request's body.
|
|
16
|
+
* feat: Add `missing_config` disabled reason for when the configuration or `sdkEnabled` flag is missing.
|
|
17
|
+
|
|
18
|
+
**Identity Verification**
|
|
19
|
+
* fix: Add translation for approve and retake buttons on selfie capture
|
|
20
|
+
|
|
21
|
+
## 1.17.0 – Aug. 3, 2025
|
|
22
|
+
* feat: Support installing SDK via npm install @transmitsecurity/platform-web-sdk
|
|
23
|
+
|
|
2
24
|
## 1.16.4 - Aug. 3, 2025
|
|
25
|
+
* feat: Provide detailed reasons when the RiskID-SDK is disabled.
|
|
26
|
+
* fix: Improved error handling in device attributes collection
|
|
3
27
|
* fix: Crypto binding - resolved initialization issue in Safari
|
|
4
|
-
* feat: Improved error handling - provide detailed reasons when the RiskID-SDK is disabled.
|
|
5
28
|
|
|
6
29
|
## 1.16.3 - Jul. 13, 2025
|
|
7
30
|
* feat: Deploy a fix for Orchestration (ido) sdk
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023–2025 Transmit Security Ltd.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|