@aws-sdk/middleware-sdk-s3 3.972.48 → 3.972.50

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/package.json CHANGED
@@ -1,22 +1,23 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-s3",
3
- "version": "3.972.48",
3
+ "version": "3.972.50",
4
4
  "scripts": {
5
- "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
- "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-s3",
5
+ "build": "yarn lint && concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
+ "build:cjs": "node ../../scripts/compilation/inline",
7
7
  "build:es": "tsc -p tsconfig.es.json",
8
8
  "build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
9
9
  "build:types": "tsc -p tsconfig.types.json",
10
10
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
11
11
  "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
12
- "test:types": "tsc -p tsconfig.test.json",
13
12
  "extract:docs": "api-extractor run --local",
13
+ "lint": "node ../../scripts/validation/submodules-linter.js",
14
14
  "test": "yarn g:vitest run",
15
15
  "test:watch": "yarn g:vitest watch",
16
16
  "test:integration": "yarn g:vitest run -c vitest.config.integ.mts && yarn test:types",
17
- "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts",
17
+ "test:integration:watch": "yarn test:types && yarn g:vitest watch -c vitest.config.integ.mts",
18
18
  "test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts --mode development",
19
- "test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts"
19
+ "test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts --mode development",
20
+ "test:types": "tsc -p tsconfig.test.json"
20
21
  },
21
22
  "main": "./dist-cjs/index.js",
22
23
  "module": "./dist-es/index.js",
@@ -65,9 +66,9 @@
65
66
  },
66
67
  "license": "Apache-2.0",
67
68
  "dependencies": {
68
- "@aws-sdk/core": "^3.974.18",
69
- "@aws-sdk/signature-v4-multi-region": "^3.996.32",
70
- "@aws-sdk/types": "^3.973.11",
69
+ "@aws-sdk/core": "^3.974.20",
70
+ "@aws-sdk/signature-v4-multi-region": "^3.996.33",
71
+ "@aws-sdk/types": "^3.973.12",
71
72
  "@smithy/core": "^3.24.6",
72
73
  "@smithy/types": "^4.14.3",
73
74
  "tslib": "^2.6.2"
@@ -90,6 +91,10 @@
90
91
  }
91
92
  },
92
93
  "files": [
94
+ "./s3-control.d.ts",
95
+ "./s3-control.js",
96
+ "./s3.d.ts",
97
+ "./s3.js",
93
98
  "dist-*/**"
94
99
  ],
95
100
  "browser": {
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Do not edit:
3
+ * This is a compatibility redirect for contexts that do not understand package.json exports field.
4
+ */
5
+ declare module "@aws-sdk/middleware-sdk-s3/s3-control" {
6
+ export * from "@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/index.d";
7
+ }
package/s3-control.js ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Do not edit:
3
+ * This is a compatibility redirect for contexts that do not understand package.json exports field.
4
+ */
5
+ module.exports = require("./dist-cjs/submodules/s3-control/index.js");
package/s3.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Do not edit:
3
+ * This is a compatibility redirect for contexts that do not understand package.json exports field.
4
+ */
5
+ declare module "@aws-sdk/middleware-sdk-s3/s3" {
6
+ export * from "@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.d";
7
+ }
package/s3.js ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Do not edit:
3
+ * This is a compatibility redirect for contexts that do not understand package.json exports field.
4
+ */
5
+ module.exports = require("./dist-cjs/submodules/s3/index.js");