@aws-sdk/middleware-sdk-ec2 3.972.46 → 3.972.47

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.
@@ -20,11 +20,11 @@ interface PreviouslyResolved {
20
20
  regionInfoProvider?: RegionInfoProvider;
21
21
  }
22
22
  export declare function copySnapshotPresignedUrlMiddleware(
23
- options: PreviouslyResolved
23
+ options: PreviouslyResolved,
24
24
  ): SerializeMiddleware<any, any>;
25
25
  export declare const copySnapshotPresignedUrlMiddlewareOptions: SerializeHandlerOptions &
26
26
  RelativeMiddlewareOptions;
27
27
  export declare const getCopySnapshotPresignedUrlPlugin: (
28
- config: PreviouslyResolved
28
+ config: PreviouslyResolved,
29
29
  ) => Pluggable<any, any>;
30
30
  export {};
package/package.json CHANGED
@@ -1,6 +1,31 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-ec2",
3
- "version": "3.972.46",
3
+ "version": "3.972.47",
4
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/middleware-sdk-ec2",
5
+ "license": "Apache-2.0",
6
+ "author": {
7
+ "name": "AWS SDK for JavaScript Team",
8
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
13
+ "directory": "packages-internal/middleware-sdk-ec2"
14
+ },
15
+ "files": [
16
+ "dist-*/**"
17
+ ],
18
+ "sideEffects": false,
19
+ "main": "./dist-cjs/index.js",
20
+ "module": "./dist-es/index.js",
21
+ "types": "./dist-types/index.d.ts",
22
+ "typesVersions": {
23
+ "<4.5": {
24
+ "dist-types/*": [
25
+ "dist-types/ts3.4/*"
26
+ ]
27
+ }
28
+ },
4
29
  "scripts": {
5
30
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
31
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -16,47 +41,22 @@
16
41
  "test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts",
17
42
  "test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts"
18
43
  },
19
- "main": "./dist-cjs/index.js",
20
- "module": "./dist-es/index.js",
21
- "types": "./dist-types/index.d.ts",
22
- "sideEffects": false,
23
- "author": {
24
- "name": "AWS SDK for JavaScript Team",
25
- "url": "https://aws.amazon.com/sdk-for-javascript/"
26
- },
27
- "license": "Apache-2.0",
28
44
  "dependencies": {
29
- "@aws-sdk/core": "^3.975.2",
30
- "@aws-sdk/types": "^3.974.1",
31
- "@smithy/core": "^3.29.3",
32
- "@smithy/signature-v4": "^5.6.3",
45
+ "@aws-sdk/core": "^3.975.3",
46
+ "@aws-sdk/types": "^3.974.2",
47
+ "@smithy/core": "^3.29.4",
48
+ "@smithy/signature-v4": "^5.6.5",
33
49
  "@smithy/types": "^4.16.1",
34
50
  "tslib": "^2.6.2"
35
51
  },
36
- "engines": {
37
- "node": ">=20.0.0"
38
- },
39
- "typesVersions": {
40
- "<4.5": {
41
- "dist-types/*": [
42
- "dist-types/ts3.4/*"
43
- ]
44
- }
45
- },
46
- "files": [
47
- "dist-*/**"
48
- ],
49
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/middleware-sdk-ec2",
50
- "repository": {
51
- "type": "git",
52
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
53
- "directory": "packages-internal/middleware-sdk-ec2"
54
- },
55
52
  "devDependencies": {
56
53
  "@tsconfig/recommended": "1.0.1",
57
54
  "concurrently": "7.0.0",
58
55
  "downlevel-dts": "0.10.1",
59
56
  "premove": "4.0.0",
60
57
  "typescript": "~5.8.3"
58
+ },
59
+ "engines": {
60
+ "node": ">=20.0.0"
61
61
  }
62
62
  }