@aws-sdk/config 3.1086.0 → 3.1088.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.
@@ -1,5 +1,2 @@
1
1
  export * from "@aws-sdk/credential-providers";
2
- export {
3
- AwsCredentialIdentity,
4
- RuntimeConfigAwsCredentialIdentityProvider,
5
- } from "@aws-sdk/types";
2
+ export { AwsCredentialIdentity, RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types";
@@ -7,8 +7,4 @@ export {
7
7
  AwsSmithyRpcV2CborProtocol,
8
8
  } from "@aws-sdk/core/protocols";
9
9
  export { AwsJsonRpcProtocol } from "@aws-sdk/core/protocols";
10
- export {
11
- HttpProtocol,
12
- HttpBindingProtocol,
13
- RpcProtocol,
14
- } from "@smithy/core/protocols";
10
+ export { HttpProtocol, HttpBindingProtocol, RpcProtocol } from "@smithy/core/protocols";
@@ -1,11 +1,5 @@
1
1
  export { HttpRequest, HttpResponse } from "@smithy/core/protocols";
2
- export {
3
- FetchHttpHandler,
4
- FetchHttpHandlerOptions,
5
- } from "@smithy/fetch-http-handler";
6
- export {
7
- NodeHttpHandlerOptions,
8
- NodeHttp2HandlerOptions,
9
- } from "@smithy/node-http-handler";
2
+ export { FetchHttpHandler, FetchHttpHandlerOptions } from "@smithy/fetch-http-handler";
3
+ export { NodeHttpHandlerOptions, NodeHttp2HandlerOptions } from "@smithy/node-http-handler";
10
4
  export declare const NodeHttpHandler: symbol;
11
5
  export declare const NodeHttp2Handler: symbol;
@@ -1,8 +1,5 @@
1
1
  export { HttpRequest, HttpResponse } from "@smithy/core/protocols";
2
- export {
3
- FetchHttpHandler,
4
- FetchHttpHandlerOptions,
5
- } from "@smithy/fetch-http-handler";
2
+ export { FetchHttpHandler, FetchHttpHandlerOptions } from "@smithy/fetch-http-handler";
6
3
  export {
7
4
  NodeHttpHandler,
8
5
  NodeHttpHandlerOptions,
package/package.json CHANGED
@@ -1,26 +1,53 @@
1
1
  {
2
2
  "name": "@aws-sdk/config",
3
- "version": "3.1086.0",
3
+ "version": "3.1088.0",
4
4
  "description": "Injectable dependencies, extensions, and other plugins for AWS SDK clients.",
5
- "scripts": {
6
- "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
- "build:cjs": "node ../../scripts/compilation/inline && premove ./dist-cjs/api-extractor-type-index.js",
8
- "build:es": "premove dist-es && tsc -p tsconfig.es.json && premove ./dist-es/api-extractor-type-index.js",
9
- "build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
10
- "build:types": "premove dist-types && tsc -p tsconfig.types.json",
11
- "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "premove dist-cjs dist-es dist-types",
13
- "extract:docs": "api-extractor run --local",
14
- "lint": "node ../../scripts/validation/submodules-linter.js",
15
- "prebuild": "yarn lint",
16
- "test": "yarn g:vitest run",
17
- "test:watch": "yarn g:vitest watch",
18
- "test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
19
- "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
5
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/config",
6
+ "license": "Apache-2.0",
7
+ "author": {
8
+ "name": "AWS SDK for JavaScript Team",
9
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
20
10
  },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
14
+ "directory": "packages/config"
15
+ },
16
+ "files": [
17
+ "./credentials.d.ts",
18
+ "./credentials.js",
19
+ "./logger.d.ts",
20
+ "./logger.js",
21
+ "./protocol.d.ts",
22
+ "./protocol.js",
23
+ "./requestHandler.d.ts",
24
+ "./requestHandler.js",
25
+ "./retryStrategy.d.ts",
26
+ "./retryStrategy.js",
27
+ "./typecheck.d.ts",
28
+ "./typecheck.js",
29
+ "dist-*/**"
30
+ ],
31
+ "sideEffects": false,
21
32
  "main": "./dist-cjs/index.js",
22
33
  "module": "./dist-es/index.js",
34
+ "browser": {
35
+ "./dist-es/submodules/requestHandler/index.js": "./dist-es/submodules/requestHandler/index.browser.js"
36
+ },
23
37
  "types": "./dist-types/index.d.ts",
38
+ "typesVersions": {
39
+ "<4.5": {
40
+ "dist-types/*": [
41
+ "dist-types/ts3.4/*"
42
+ ],
43
+ "*": [
44
+ "dist-types/ts3.4/submodules/*/index.d.ts"
45
+ ]
46
+ }
47
+ },
48
+ "react-native": {
49
+ "./dist-es/submodules/requestHandler/index.js": "./dist-es/submodules/requestHandler/index.browser.js"
50
+ },
24
51
  "exports": {
25
52
  "./credentials": {
26
53
  "types": "./dist-types/submodules/credentials/index.d.ts",
@@ -67,36 +94,31 @@
67
94
  "require": "./dist-cjs/submodules/typecheck/index.js"
68
95
  }
69
96
  },
70
- "files": [
71
- "./credentials.d.ts",
72
- "./credentials.js",
73
- "./logger.d.ts",
74
- "./logger.js",
75
- "./protocol.d.ts",
76
- "./protocol.js",
77
- "./requestHandler.d.ts",
78
- "./requestHandler.js",
79
- "./retryStrategy.d.ts",
80
- "./retryStrategy.js",
81
- "./typecheck.d.ts",
82
- "./typecheck.js",
83
- "dist-*/**"
84
- ],
85
- "sideEffects": false,
86
- "author": {
87
- "name": "AWS SDK for JavaScript Team",
88
- "url": "https://aws.amazon.com/sdk-for-javascript/"
97
+ "scripts": {
98
+ "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
99
+ "build:cjs": "node ../../scripts/compilation/inline && premove ./dist-cjs/api-extractor-type-index.js",
100
+ "build:es": "premove dist-es && tsc -p tsconfig.es.json && premove ./dist-es/api-extractor-type-index.js",
101
+ "build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
102
+ "build:types": "premove dist-types && tsc -p tsconfig.types.json",
103
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
104
+ "clean": "premove dist-cjs dist-es dist-types",
105
+ "extract:docs": "api-extractor run --local",
106
+ "lint": "node ../../scripts/validation/submodules-linter.js",
107
+ "prebuild": "yarn lint",
108
+ "test": "yarn g:vitest run",
109
+ "test:watch": "yarn g:vitest watch",
110
+ "test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
111
+ "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
89
112
  },
90
- "license": "Apache-2.0",
91
113
  "dependencies": {
92
- "@aws-sdk/core": "^3.975.1",
93
- "@aws-sdk/credential-providers": "3.1086.0",
94
- "@aws-sdk/types": "^3.974.0",
95
- "@smithy/core": "^3.29.2",
96
- "@smithy/fetch-http-handler": "^5.6.4",
97
- "@smithy/node-http-handler": "^4.9.4",
98
- "@smithy/typecheck": "^1.2.7",
99
- "@smithy/types": "^4.16.0",
114
+ "@aws-sdk/core": "^3.975.3",
115
+ "@aws-sdk/credential-providers": "3.1088.0",
116
+ "@aws-sdk/types": "^3.974.2",
117
+ "@smithy/core": "^3.29.4",
118
+ "@smithy/fetch-http-handler": "^5.6.6",
119
+ "@smithy/node-http-handler": "^4.9.6",
120
+ "@smithy/typecheck": "^1.2.9",
121
+ "@smithy/types": "^4.16.1",
100
122
  "tslib": "^2.6.2"
101
123
  },
102
124
  "devDependencies": {
@@ -108,24 +130,5 @@
108
130
  },
109
131
  "engines": {
110
132
  "node": ">=20.0.0"
111
- },
112
- "typesVersions": {
113
- "<4.5": {
114
- "dist-types/*": [
115
- "dist-types/ts3.4/*"
116
- ]
117
- }
118
- },
119
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/config",
120
- "repository": {
121
- "type": "git",
122
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
123
- "directory": "packages/config"
124
- },
125
- "browser": {
126
- "./dist-es/submodules/requestHandler/index.js": "./dist-es/submodules/requestHandler/index.browser.js"
127
- },
128
- "react-native": {
129
- "./dist-es/submodules/requestHandler/index.js": "./dist-es/submodules/requestHandler/index.browser.js"
130
133
  }
131
134
  }