@extrahorizon/javascript-sdk 8.9.0-dev-146-a1caf73 → 8.9.0-dev-147-660f81f
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 +2 -0
- package/build/index.cjs.js +1 -1
- package/build/index.mjs +1 -1
- package/build/types/version.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -24,6 +24,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
24
24
|
- Corrected the types for the `findFirst` (based) methods to indicate they may return `undefined` when no results are found.
|
|
25
25
|
- Corrected the types of the `schema` property in the `exh.templates.*`
|
|
26
26
|
- Corrected the types of `exh.mails.*`
|
|
27
|
+
- Bumped axios version to `0.30.3` to resolve warning about `CVE-2026-25639`
|
|
28
|
+
- Bumped qs version to `6.14.2` to resolve warning about `CVE-2026-2391`
|
|
27
29
|
|
|
28
30
|
|
|
29
31
|
## [8.8.2]
|
package/build/index.cjs.js
CHANGED
package/build/index.mjs
CHANGED
package/build/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.9.0-dev-
|
|
1
|
+
export declare const version = "8.9.0-dev-147-660f81f";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@extrahorizon/javascript-sdk",
|
|
3
|
-
"version": "8.9.0-dev-
|
|
3
|
+
"version": "8.9.0-dev-147-660f81f",
|
|
4
4
|
"description": "This package serves as a JavaScript wrapper around all Extra Horizon cloud services.",
|
|
5
5
|
"main": "build/index.cjs.js",
|
|
6
6
|
"types": "build/types/index.d.ts",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"build"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"axios": "0.30.
|
|
35
|
+
"axios": "0.30.3",
|
|
36
36
|
"buffer": "6.0.3",
|
|
37
37
|
"fflate": "0.8.2",
|
|
38
38
|
"form-data": "4.0.4",
|
|
39
39
|
"platform-specific": "1.1.0",
|
|
40
|
-
"qs": "6.14.
|
|
40
|
+
"qs": "6.14.2",
|
|
41
41
|
"typescript-json-decoder": "1.0.11"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|