@aws-sdk/config 3.1034.0 → 3.1035.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,12 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
var protocolHttp = require('@smithy/protocol-http');
|
|
3
4
|
var fetchHttpHandler = require('@smithy/fetch-http-handler');
|
|
4
5
|
var nodeHttpHandler = require('@smithy/node-http-handler');
|
|
5
|
-
var protocolHttp = require('@smithy/protocol-http');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.FetchHttpHandler = fetchHttpHandler.FetchHttpHandler;
|
|
10
|
-
exports.NodeHttpHandler = nodeHttpHandler.NodeHttpHandler;
|
|
11
9
|
exports.HttpRequest = protocolHttp.HttpRequest;
|
|
12
10
|
exports.HttpResponse = protocolHttp.HttpResponse;
|
|
11
|
+
exports.FetchHttpHandler = fetchHttpHandler.FetchHttpHandler;
|
|
12
|
+
exports.NodeHttp2Handler = nodeHttpHandler.NodeHttp2Handler;
|
|
13
|
+
exports.NodeHttpHandler = nodeHttpHandler.NodeHttpHandler;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { FetchHttpHandler } from "@smithy/fetch-http-handler";
|
|
2
|
-
export { NodeHttpHandler } from "@smithy/node-http-handler";
|
|
3
1
|
export { HttpRequest, HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
export { FetchHttpHandler } from "@smithy/fetch-http-handler";
|
|
3
|
+
export { NodeHttpHandler, NodeHttp2Handler, } from "@smithy/node-http-handler";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { FetchHttpHandler } from "@smithy/fetch-http-handler";
|
|
2
|
-
export { NodeHttpHandler } from "@smithy/node-http-handler";
|
|
3
1
|
export { HttpRequest, HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
export { FetchHttpHandler, type FetchHttpHandlerOptions } from "@smithy/fetch-http-handler";
|
|
3
|
+
export { NodeHttpHandler, type NodeHttpHandlerOptions, NodeHttp2Handler, type NodeHttp2HandlerOptions, } from "@smithy/node-http-handler";
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
export { FetchHttpHandler } from "@smithy/fetch-http-handler";
|
|
2
|
-
export { NodeHttpHandler } from "@smithy/node-http-handler";
|
|
3
1
|
export { HttpRequest, HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
export {
|
|
3
|
+
FetchHttpHandler,
|
|
4
|
+
FetchHttpHandlerOptions,
|
|
5
|
+
} from "@smithy/fetch-http-handler";
|
|
6
|
+
export {
|
|
7
|
+
NodeHttpHandler,
|
|
8
|
+
NodeHttpHandlerOptions,
|
|
9
|
+
NodeHttp2Handler,
|
|
10
|
+
NodeHttp2HandlerOptions,
|
|
11
|
+
} from "@smithy/node-http-handler";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/config",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1035.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,8 +86,8 @@
|
|
|
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.4",
|
|
90
|
+
"@aws-sdk/credential-providers": "3.1035.0",
|
|
91
91
|
"@aws-sdk/types": "^3.973.8",
|
|
92
92
|
"@smithy/core": "^3.23.16",
|
|
93
93
|
"@smithy/fetch-http-handler": "^5.3.17",
|