@aws-sdk/config 3.1044.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.
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var smithyClient = require('@smithy/smithy-client');
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 = smithyClient.NoOpLogger;
36
+ exports.NoOpLogger = client.NoOpLogger;
37
37
  exports.LogLevel = LogLevel;
@@ -1,13 +1,13 @@
1
1
  'use strict';
2
2
 
3
- var protocolHttp = require('@smithy/protocol-http');
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 = protocolHttp.HttpRequest;
10
- exports.HttpResponse = protocolHttp.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 utilRetry = require('@smithy/util-retry');
3
+ var retry = require('@smithy/core/retry');
4
4
 
5
5
 
6
6
 
7
- exports.AdaptiveRetryStrategy = utilRetry.AdaptiveRetryStrategy;
8
- exports.ConfiguredRetryStrategy = utilRetry.ConfiguredRetryStrategy;
9
- exports.DEFAULT_MAX_ATTEMPTS = utilRetry.DEFAULT_MAX_ATTEMPTS;
10
- exports.DEFAULT_RETRY_MODE = utilRetry.DEFAULT_RETRY_MODE;
11
- exports.DefaultRateLimiter = utilRetry.DefaultRateLimiter;
12
- exports.RETRY_MODES = utilRetry.RETRY_MODES;
13
- exports.StandardRetryStrategy = utilRetry.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/smithy-client";
1
+ export { NoOpLogger } from "@smithy/core/client";
2
2
  export { LogLevel } from "./LogLevel";
@@ -1,3 +1,3 @@
1
- export { HttpRequest, HttpResponse } from "@smithy/protocol-http";
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/util-retry";
1
+ export { RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, DefaultRateLimiter, StandardRetryStrategy, AdaptiveRetryStrategy, ConfiguredRetryStrategy, } from "@smithy/core/retry";
@@ -1,3 +1,3 @@
1
- export { NoOpLogger } from "@smithy/smithy-client";
1
+ export { NoOpLogger } from "@smithy/core/client";
2
2
  export type { Logger } from "@smithy/types";
3
3
  export { LogLevel } from "./LogLevel";
@@ -1,3 +1,3 @@
1
- export { HttpRequest, HttpResponse } from "@smithy/protocol-http";
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/util-retry";
1
+ export { RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, DefaultRateLimiter, StandardRetryStrategy, AdaptiveRetryStrategy, ConfiguredRetryStrategy, type DefaultRateLimiterOptions, } from "@smithy/core/retry";
@@ -1,3 +1,3 @@
1
- export { NoOpLogger } from "@smithy/smithy-client";
1
+ export { NoOpLogger } from "@smithy/core/client";
2
2
  export { Logger } from "@smithy/types";
3
3
  export { LogLevel } from "./LogLevel";
@@ -1,4 +1,4 @@
1
- export { HttpRequest, HttpResponse } from "@smithy/protocol-http";
1
+ export { HttpRequest, HttpResponse } from "@smithy/core/protocols";
2
2
  export {
3
3
  FetchHttpHandler,
4
4
  FetchHttpHandlerOptions,
@@ -7,4 +7,4 @@ export {
7
7
  AdaptiveRetryStrategy,
8
8
  ConfiguredRetryStrategy,
9
9
  DefaultRateLimiterOptions,
10
- } from "@smithy/util-retry";
10
+ } from "@smithy/core/retry";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/config",
3
- "version": "3.1044.0",
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.8",
90
- "@aws-sdk/credential-providers": "3.1044.0",
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.23.17",
93
- "@smithy/fetch-http-handler": "^5.3.17",
94
- "@smithy/node-http-handler": "^4.6.1",
95
- "@smithy/protocol-http": "^5.3.14",
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": {