@aws-sdk/signature-v4a 3.969.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 CHANGED
@@ -4,9 +4,13 @@ var signatureV4a = require('@smithy/signature-v4a');
4
4
 
5
5
 
6
6
 
7
- Object.keys(signatureV4a).forEach(function (k) {
8
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
7
+ Object.prototype.hasOwnProperty.call(signatureV4a, '__proto__') &&
8
+ !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
9
+ Object.defineProperty(exports, '__proto__', {
9
10
  enumerable: true,
10
- get: function () { return signatureV4a[k]; }
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.969.0",
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",
@@ -11,17 +11,17 @@
11
11
  "build:es": "tsc -p tsconfig.es.json",
12
12
  "build:types": "tsc -p tsconfig.types.json",
13
13
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
14
- "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
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.8",
17
+ "@smithy/signature-v4a": "^3.1.9",
18
18
  "tslib": "^2.6.2"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@tsconfig/recommended": "1.0.1",
22
22
  "concurrently": "7.0.0",
23
23
  "downlevel-dts": "0.10.1",
24
- "rimraf": "5.0.10",
24
+ "premove": "4.0.0",
25
25
  "typescript": "~5.8.3"
26
26
  },
27
27
  "engines": {