@verdocs/js-sdk 1.3.0 → 1.3.1
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/HTTP/Transport.js +1 -1
- package/package.json +9 -8
package/HTTP/Transport.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @module
|
|
7
7
|
*/
|
|
8
|
-
import globalThis from './globalThis';
|
|
9
8
|
import { VerdocsEndpoint } from './VerdocsEndpoint';
|
|
9
|
+
import globalThis from './globalThis';
|
|
10
10
|
// @credit https://derickbailey.com/2016/03/09/creating-a-true-singleton-in-node-js-with-es6-symbols/
|
|
11
11
|
// Also see globalThis for comments about why we're doing this in the first place.
|
|
12
12
|
var ENDPOINT_KEY = Symbol.for('verdocs-api-endpoint');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/js-sdk",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"homepage": "https://github.com/Verdocs/js-sdk",
|
|
6
6
|
"description": "Verdocs JS SDK",
|
|
@@ -51,15 +51,16 @@
|
|
|
51
51
|
"typescript": "^4.7.3"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@
|
|
55
|
-
"jest": "^28.1.
|
|
56
|
-
"
|
|
57
|
-
"
|
|
54
|
+
"@jest/globals": "^28.1.2",
|
|
55
|
+
"@types/jest": "^28.1.4",
|
|
56
|
+
"axios-mock-adapter": "^1.21.1",
|
|
57
|
+
"jest": "^28.1.2",
|
|
58
|
+
"prettier": "^2.7.1",
|
|
58
59
|
"ts-jest": "^28.0.5",
|
|
59
60
|
"tslint": "^6.1.3",
|
|
60
61
|
"tslint-config-prettier": "^1.18.0",
|
|
61
|
-
"typedoc": "^0.
|
|
62
|
-
"typedoc-plugin-markdown": "^3.
|
|
63
|
-
"typescript": "^4.7.
|
|
62
|
+
"typedoc": "^0.23.5",
|
|
63
|
+
"typedoc-plugin-markdown": "^3.13.3",
|
|
64
|
+
"typescript": "^4.7.4"
|
|
64
65
|
}
|
|
65
66
|
}
|