@aws-sdk/signature-v4a 3.972.0 → 3.997.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-cjs/index.js +7 -3
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -4,9 +4,13 @@ var signatureV4a = require('@smithy/signature-v4a');
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
Object.
|
|
8
|
-
|
|
7
|
+
Object.prototype.hasOwnProperty.call(signatureV4a, '__proto__') &&
|
|
8
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
9
|
+
Object.defineProperty(exports, '__proto__', {
|
|
9
10
|
enumerable: true,
|
|
10
|
-
|
|
11
|
+
value: signatureV4a['__proto__']
|
|
11
12
|
});
|
|
13
|
+
|
|
14
|
+
Object.keys(signatureV4a).forEach(function (k) {
|
|
15
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = signatureV4a[k];
|
|
12
16
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/signature-v4a",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.997.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript SignatureV4a package",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@smithy/signature-v4a": "^3.1.
|
|
17
|
+
"@smithy/signature-v4a": "^3.1.9",
|
|
18
18
|
"tslib": "^2.6.2"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|