@aws-sdk/config 3.1045.0 → 3.1046.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/submodules/logger/index.js +2 -2
- package/dist-cjs/submodules/requestHandler/index.js +3 -3
- package/dist-cjs/submodules/retryStrategy/index.js +8 -8
- package/dist-es/submodules/logger/index.js +1 -1
- package/dist-es/submodules/requestHandler/index.js +1 -1
- package/dist-es/submodules/retryStrategy/index.js +1 -1
- package/dist-types/submodules/logger/index.d.ts +1 -1
- package/dist-types/submodules/requestHandler/index.d.ts +1 -1
- package/dist-types/submodules/retryStrategy/index.d.ts +1 -1
- package/dist-types/ts3.4/submodules/logger/index.d.ts +1 -1
- package/dist-types/ts3.4/submodules/requestHandler/index.d.ts +1 -1
- package/dist-types/ts3.4/submodules/retryStrategy/index.d.ts +1 -1
- package/package.json +7 -10
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var client = require('@smithy/core/client');
|
|
4
4
|
|
|
5
5
|
class LogLevel {
|
|
6
6
|
minimum;
|
|
@@ -33,5 +33,5 @@ class LogLevel {
|
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
exports.NoOpLogger =
|
|
36
|
+
exports.NoOpLogger = client.NoOpLogger;
|
|
37
37
|
exports.LogLevel = LogLevel;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var protocols = require('@smithy/core/protocols');
|
|
4
4
|
var fetchHttpHandler = require('@smithy/fetch-http-handler');
|
|
5
5
|
var nodeHttpHandler = require('@smithy/node-http-handler');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.HttpRequest =
|
|
10
|
-
exports.HttpResponse =
|
|
9
|
+
exports.HttpRequest = protocols.HttpRequest;
|
|
10
|
+
exports.HttpResponse = protocols.HttpResponse;
|
|
11
11
|
exports.FetchHttpHandler = fetchHttpHandler.FetchHttpHandler;
|
|
12
12
|
exports.NodeHttp2Handler = nodeHttpHandler.NodeHttp2Handler;
|
|
13
13
|
exports.NodeHttpHandler = nodeHttpHandler.NodeHttpHandler;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var retry = require('@smithy/core/retry');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.AdaptiveRetryStrategy =
|
|
8
|
-
exports.ConfiguredRetryStrategy =
|
|
9
|
-
exports.DEFAULT_MAX_ATTEMPTS =
|
|
10
|
-
exports.DEFAULT_RETRY_MODE =
|
|
11
|
-
exports.DefaultRateLimiter =
|
|
12
|
-
exports.RETRY_MODES =
|
|
13
|
-
exports.StandardRetryStrategy =
|
|
7
|
+
exports.AdaptiveRetryStrategy = retry.AdaptiveRetryStrategy;
|
|
8
|
+
exports.ConfiguredRetryStrategy = retry.ConfiguredRetryStrategy;
|
|
9
|
+
exports.DEFAULT_MAX_ATTEMPTS = retry.DEFAULT_MAX_ATTEMPTS;
|
|
10
|
+
exports.DEFAULT_RETRY_MODE = retry.DEFAULT_RETRY_MODE;
|
|
11
|
+
exports.DefaultRateLimiter = retry.DefaultRateLimiter;
|
|
12
|
+
exports.RETRY_MODES = retry.RETRY_MODES;
|
|
13
|
+
exports.StandardRetryStrategy = retry.StandardRetryStrategy;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { NoOpLogger } from "@smithy/
|
|
1
|
+
export { NoOpLogger } from "@smithy/core/client";
|
|
2
2
|
export { LogLevel } from "./LogLevel";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { HttpRequest, HttpResponse } from "@smithy/
|
|
1
|
+
export { HttpRequest, HttpResponse } from "@smithy/core/protocols";
|
|
2
2
|
export { FetchHttpHandler } from "@smithy/fetch-http-handler";
|
|
3
3
|
export { NodeHttpHandler, NodeHttp2Handler, } from "@smithy/node-http-handler";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, DefaultRateLimiter, StandardRetryStrategy, AdaptiveRetryStrategy, ConfiguredRetryStrategy, } from "@smithy/
|
|
1
|
+
export { RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, DefaultRateLimiter, StandardRetryStrategy, AdaptiveRetryStrategy, ConfiguredRetryStrategy, } from "@smithy/core/retry";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { HttpRequest, HttpResponse } from "@smithy/
|
|
1
|
+
export { HttpRequest, HttpResponse } from "@smithy/core/protocols";
|
|
2
2
|
export { FetchHttpHandler, type FetchHttpHandlerOptions } from "@smithy/fetch-http-handler";
|
|
3
3
|
export { NodeHttpHandler, type NodeHttpHandlerOptions, NodeHttp2Handler, type NodeHttp2HandlerOptions, } from "@smithy/node-http-handler";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, DefaultRateLimiter, StandardRetryStrategy, AdaptiveRetryStrategy, ConfiguredRetryStrategy, type DefaultRateLimiterOptions, } from "@smithy/
|
|
1
|
+
export { RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, DefaultRateLimiter, StandardRetryStrategy, AdaptiveRetryStrategy, ConfiguredRetryStrategy, type DefaultRateLimiterOptions, } from "@smithy/core/retry";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/config",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1046.0",
|
|
4
4
|
"description": "Injectable dependencies, extensions, and other plugins for AWS SDK clients.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn lint && concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
@@ -86,17 +86,14 @@
|
|
|
86
86
|
},
|
|
87
87
|
"license": "Apache-2.0",
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@aws-sdk/core": "^3.974.
|
|
90
|
-
"@aws-sdk/credential-providers": "3.
|
|
89
|
+
"@aws-sdk/core": "^3.974.9",
|
|
90
|
+
"@aws-sdk/credential-providers": "3.1046.0",
|
|
91
91
|
"@aws-sdk/types": "^3.973.8",
|
|
92
|
-
"@smithy/core": "^3.
|
|
93
|
-
"@smithy/fetch-http-handler": "^5.
|
|
94
|
-
"@smithy/node-http-handler": "^4.
|
|
95
|
-
"@smithy/
|
|
96
|
-
"@smithy/smithy-client": "^4.12.13",
|
|
97
|
-
"@smithy/typecheck": "^1.0.25",
|
|
92
|
+
"@smithy/core": "^3.24.1",
|
|
93
|
+
"@smithy/fetch-http-handler": "^5.4.1",
|
|
94
|
+
"@smithy/node-http-handler": "^4.7.1",
|
|
95
|
+
"@smithy/typecheck": "^1.1.1",
|
|
98
96
|
"@smithy/types": "^4.14.1",
|
|
99
|
-
"@smithy/util-retry": "^4.3.6",
|
|
100
97
|
"tslib": "^2.6.2"
|
|
101
98
|
},
|
|
102
99
|
"devDependencies": {
|