@aws-sdk/client-account 3.118.1 → 3.128.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/CHANGELOG.md +27 -0
- package/dist-cjs/protocols/Aws_restJson1.js +25 -26
- package/dist-es/protocols/Aws_restJson1.js +18 -19
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-account
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-account
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** fallback to status code for unmodeled errors ([#3752](https://github.com/aws/aws-sdk-js-v3/issues/3752)) ([49bcc4f](https://github.com/aws/aws-sdk-js-v3/commit/49bcc4f153e890e798a8e82fd5fc397b2dcc449f))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [3.118.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.118.0...v3.118.1) (2022-06-27)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-account
|
|
@@ -13,9 +13,8 @@ const serializeAws_restJson1DeleteAlternateContactCommand = async (input, contex
|
|
|
13
13
|
const resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/deleteAlternateContact";
|
|
14
14
|
let body;
|
|
15
15
|
body = JSON.stringify({
|
|
16
|
-
...(input.AccountId
|
|
17
|
-
...(input.AlternateContactType
|
|
18
|
-
input.AlternateContactType !== null && { AlternateContactType: input.AlternateContactType }),
|
|
16
|
+
...(input.AccountId != null && { AccountId: input.AccountId }),
|
|
17
|
+
...(input.AlternateContactType != null && { AlternateContactType: input.AlternateContactType }),
|
|
19
18
|
});
|
|
20
19
|
return new protocol_http_1.HttpRequest({
|
|
21
20
|
protocol,
|
|
@@ -36,9 +35,8 @@ const serializeAws_restJson1GetAlternateContactCommand = async (input, context)
|
|
|
36
35
|
const resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/getAlternateContact";
|
|
37
36
|
let body;
|
|
38
37
|
body = JSON.stringify({
|
|
39
|
-
...(input.AccountId
|
|
40
|
-
...(input.AlternateContactType
|
|
41
|
-
input.AlternateContactType !== null && { AlternateContactType: input.AlternateContactType }),
|
|
38
|
+
...(input.AccountId != null && { AccountId: input.AccountId }),
|
|
39
|
+
...(input.AlternateContactType != null && { AlternateContactType: input.AlternateContactType }),
|
|
42
40
|
});
|
|
43
41
|
return new protocol_http_1.HttpRequest({
|
|
44
42
|
protocol,
|
|
@@ -59,13 +57,12 @@ const serializeAws_restJson1PutAlternateContactCommand = async (input, context)
|
|
|
59
57
|
const resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/putAlternateContact";
|
|
60
58
|
let body;
|
|
61
59
|
body = JSON.stringify({
|
|
62
|
-
...(input.AccountId
|
|
63
|
-
...(input.AlternateContactType
|
|
64
|
-
|
|
65
|
-
...(input.
|
|
66
|
-
...(input.
|
|
67
|
-
...(input.
|
|
68
|
-
...(input.Title !== undefined && input.Title !== null && { Title: input.Title }),
|
|
60
|
+
...(input.AccountId != null && { AccountId: input.AccountId }),
|
|
61
|
+
...(input.AlternateContactType != null && { AlternateContactType: input.AlternateContactType }),
|
|
62
|
+
...(input.EmailAddress != null && { EmailAddress: input.EmailAddress }),
|
|
63
|
+
...(input.Name != null && { Name: input.Name }),
|
|
64
|
+
...(input.PhoneNumber != null && { PhoneNumber: input.PhoneNumber }),
|
|
65
|
+
...(input.Title != null && { Title: input.Title }),
|
|
69
66
|
});
|
|
70
67
|
return new protocol_http_1.HttpRequest({
|
|
71
68
|
protocol,
|
|
@@ -95,8 +92,7 @@ const deserializeAws_restJson1DeleteAlternateContactCommandError = async (output
|
|
|
95
92
|
body: await parseBody(output.body, context),
|
|
96
93
|
};
|
|
97
94
|
let response;
|
|
98
|
-
|
|
99
|
-
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
95
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
100
96
|
switch (errorCode) {
|
|
101
97
|
case "AccessDeniedException":
|
|
102
98
|
case "com.amazonaws.account#AccessDeniedException":
|
|
@@ -115,10 +111,12 @@ const deserializeAws_restJson1DeleteAlternateContactCommandError = async (output
|
|
|
115
111
|
throw await deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context);
|
|
116
112
|
default:
|
|
117
113
|
const parsedBody = parsedOutput.body;
|
|
114
|
+
const $metadata = deserializeMetadata(output);
|
|
115
|
+
const statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
118
116
|
response = new AccountServiceException_1.AccountServiceException({
|
|
119
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
117
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
120
118
|
$fault: "client",
|
|
121
|
-
$metadata
|
|
119
|
+
$metadata,
|
|
122
120
|
});
|
|
123
121
|
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
124
122
|
}
|
|
@@ -144,8 +142,7 @@ const deserializeAws_restJson1GetAlternateContactCommandError = async (output, c
|
|
|
144
142
|
body: await parseBody(output.body, context),
|
|
145
143
|
};
|
|
146
144
|
let response;
|
|
147
|
-
|
|
148
|
-
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
145
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
149
146
|
switch (errorCode) {
|
|
150
147
|
case "AccessDeniedException":
|
|
151
148
|
case "com.amazonaws.account#AccessDeniedException":
|
|
@@ -164,10 +161,12 @@ const deserializeAws_restJson1GetAlternateContactCommandError = async (output, c
|
|
|
164
161
|
throw await deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context);
|
|
165
162
|
default:
|
|
166
163
|
const parsedBody = parsedOutput.body;
|
|
164
|
+
const $metadata = deserializeMetadata(output);
|
|
165
|
+
const statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
167
166
|
response = new AccountServiceException_1.AccountServiceException({
|
|
168
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
167
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
169
168
|
$fault: "client",
|
|
170
|
-
$metadata
|
|
169
|
+
$metadata,
|
|
171
170
|
});
|
|
172
171
|
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
173
172
|
}
|
|
@@ -189,8 +188,7 @@ const deserializeAws_restJson1PutAlternateContactCommandError = async (output, c
|
|
|
189
188
|
body: await parseBody(output.body, context),
|
|
190
189
|
};
|
|
191
190
|
let response;
|
|
192
|
-
|
|
193
|
-
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
191
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
194
192
|
switch (errorCode) {
|
|
195
193
|
case "AccessDeniedException":
|
|
196
194
|
case "com.amazonaws.account#AccessDeniedException":
|
|
@@ -206,10 +204,12 @@ const deserializeAws_restJson1PutAlternateContactCommandError = async (output, c
|
|
|
206
204
|
throw await deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context);
|
|
207
205
|
default:
|
|
208
206
|
const parsedBody = parsedOutput.body;
|
|
207
|
+
const $metadata = deserializeMetadata(output);
|
|
208
|
+
const statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
209
209
|
response = new AccountServiceException_1.AccountServiceException({
|
|
210
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
210
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
211
211
|
$fault: "client",
|
|
212
|
-
$metadata
|
|
212
|
+
$metadata,
|
|
213
213
|
});
|
|
214
214
|
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
215
215
|
}
|
|
@@ -332,5 +332,4 @@ const loadRestJsonErrorCode = (output, data) => {
|
|
|
332
332
|
if (data["__type"] !== undefined) {
|
|
333
333
|
return sanitizeErrorCode(data["__type"]);
|
|
334
334
|
}
|
|
335
|
-
return "";
|
|
336
335
|
};
|
|
@@ -14,8 +14,7 @@ export var serializeAws_restJson1DeleteAlternateContactCommand = function (input
|
|
|
14
14
|
"content-type": "application/json",
|
|
15
15
|
};
|
|
16
16
|
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/deleteAlternateContact";
|
|
17
|
-
body = JSON.stringify(__assign(__assign({}, (input.AccountId
|
|
18
|
-
input.AlternateContactType !== null && { AlternateContactType: input.AlternateContactType })));
|
|
17
|
+
body = JSON.stringify(__assign(__assign({}, (input.AccountId != null && { AccountId: input.AccountId })), (input.AlternateContactType != null && { AlternateContactType: input.AlternateContactType })));
|
|
19
18
|
return [2, new __HttpRequest({
|
|
20
19
|
protocol: protocol,
|
|
21
20
|
hostname: hostname,
|
|
@@ -39,8 +38,7 @@ export var serializeAws_restJson1GetAlternateContactCommand = function (input, c
|
|
|
39
38
|
"content-type": "application/json",
|
|
40
39
|
};
|
|
41
40
|
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/getAlternateContact";
|
|
42
|
-
body = JSON.stringify(__assign(__assign({}, (input.AccountId
|
|
43
|
-
input.AlternateContactType !== null && { AlternateContactType: input.AlternateContactType })));
|
|
41
|
+
body = JSON.stringify(__assign(__assign({}, (input.AccountId != null && { AccountId: input.AccountId })), (input.AlternateContactType != null && { AlternateContactType: input.AlternateContactType })));
|
|
44
42
|
return [2, new __HttpRequest({
|
|
45
43
|
protocol: protocol,
|
|
46
44
|
hostname: hostname,
|
|
@@ -64,8 +62,7 @@ export var serializeAws_restJson1PutAlternateContactCommand = function (input, c
|
|
|
64
62
|
"content-type": "application/json",
|
|
65
63
|
};
|
|
66
64
|
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/putAlternateContact";
|
|
67
|
-
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AccountId
|
|
68
|
-
input.AlternateContactType !== null && { AlternateContactType: input.AlternateContactType })), (input.EmailAddress !== undefined && input.EmailAddress !== null && { EmailAddress: input.EmailAddress })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.PhoneNumber !== undefined && input.PhoneNumber !== null && { PhoneNumber: input.PhoneNumber })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })));
|
|
65
|
+
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AccountId != null && { AccountId: input.AccountId })), (input.AlternateContactType != null && { AlternateContactType: input.AlternateContactType })), (input.EmailAddress != null && { EmailAddress: input.EmailAddress })), (input.Name != null && { Name: input.Name })), (input.PhoneNumber != null && { PhoneNumber: input.PhoneNumber })), (input.Title != null && { Title: input.Title })));
|
|
69
66
|
return [2, new __HttpRequest({
|
|
70
67
|
protocol: protocol,
|
|
71
68
|
hostname: hostname,
|
|
@@ -97,7 +94,7 @@ export var deserializeAws_restJson1DeleteAlternateContactCommand = function (out
|
|
|
97
94
|
});
|
|
98
95
|
}); };
|
|
99
96
|
var deserializeAws_restJson1DeleteAlternateContactCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
100
|
-
var parsedOutput, _a, response, errorCode, _b, parsedBody;
|
|
97
|
+
var parsedOutput, _a, response, errorCode, _b, parsedBody, $metadata, statusCode;
|
|
101
98
|
var _c;
|
|
102
99
|
return __generator(this, function (_d) {
|
|
103
100
|
switch (_d.label) {
|
|
@@ -107,7 +104,6 @@ var deserializeAws_restJson1DeleteAlternateContactCommandError = function (outpu
|
|
|
107
104
|
return [4, parseBody(output.body, context)];
|
|
108
105
|
case 1:
|
|
109
106
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
110
|
-
errorCode = "UnknownError";
|
|
111
107
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
112
108
|
_b = errorCode;
|
|
113
109
|
switch (_b) {
|
|
@@ -135,10 +131,12 @@ var deserializeAws_restJson1DeleteAlternateContactCommandError = function (outpu
|
|
|
135
131
|
case 11: throw _d.sent();
|
|
136
132
|
case 12:
|
|
137
133
|
parsedBody = parsedOutput.body;
|
|
134
|
+
$metadata = deserializeMetadata(output);
|
|
135
|
+
statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
138
136
|
response = new __BaseException({
|
|
139
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
137
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
140
138
|
$fault: "client",
|
|
141
|
-
$metadata:
|
|
139
|
+
$metadata: $metadata,
|
|
142
140
|
});
|
|
143
141
|
throw __decorateServiceException(response, parsedBody);
|
|
144
142
|
}
|
|
@@ -169,7 +167,7 @@ export var deserializeAws_restJson1GetAlternateContactCommand = function (output
|
|
|
169
167
|
});
|
|
170
168
|
}); };
|
|
171
169
|
var deserializeAws_restJson1GetAlternateContactCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
172
|
-
var parsedOutput, _a, response, errorCode, _b, parsedBody;
|
|
170
|
+
var parsedOutput, _a, response, errorCode, _b, parsedBody, $metadata, statusCode;
|
|
173
171
|
var _c;
|
|
174
172
|
return __generator(this, function (_d) {
|
|
175
173
|
switch (_d.label) {
|
|
@@ -179,7 +177,6 @@ var deserializeAws_restJson1GetAlternateContactCommandError = function (output,
|
|
|
179
177
|
return [4, parseBody(output.body, context)];
|
|
180
178
|
case 1:
|
|
181
179
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
182
|
-
errorCode = "UnknownError";
|
|
183
180
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
184
181
|
_b = errorCode;
|
|
185
182
|
switch (_b) {
|
|
@@ -207,10 +204,12 @@ var deserializeAws_restJson1GetAlternateContactCommandError = function (output,
|
|
|
207
204
|
case 11: throw _d.sent();
|
|
208
205
|
case 12:
|
|
209
206
|
parsedBody = parsedOutput.body;
|
|
207
|
+
$metadata = deserializeMetadata(output);
|
|
208
|
+
statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
210
209
|
response = new __BaseException({
|
|
211
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
210
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
212
211
|
$fault: "client",
|
|
213
|
-
$metadata:
|
|
212
|
+
$metadata: $metadata,
|
|
214
213
|
});
|
|
215
214
|
throw __decorateServiceException(response, parsedBody);
|
|
216
215
|
}
|
|
@@ -235,7 +234,7 @@ export var deserializeAws_restJson1PutAlternateContactCommand = function (output
|
|
|
235
234
|
});
|
|
236
235
|
}); };
|
|
237
236
|
var deserializeAws_restJson1PutAlternateContactCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
238
|
-
var parsedOutput, _a, response, errorCode, _b, parsedBody;
|
|
237
|
+
var parsedOutput, _a, response, errorCode, _b, parsedBody, $metadata, statusCode;
|
|
239
238
|
var _c;
|
|
240
239
|
return __generator(this, function (_d) {
|
|
241
240
|
switch (_d.label) {
|
|
@@ -245,7 +244,6 @@ var deserializeAws_restJson1PutAlternateContactCommandError = function (output,
|
|
|
245
244
|
return [4, parseBody(output.body, context)];
|
|
246
245
|
case 1:
|
|
247
246
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
248
|
-
errorCode = "UnknownError";
|
|
249
247
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
250
248
|
_b = errorCode;
|
|
251
249
|
switch (_b) {
|
|
@@ -269,10 +267,12 @@ var deserializeAws_restJson1PutAlternateContactCommandError = function (output,
|
|
|
269
267
|
case 9: throw _d.sent();
|
|
270
268
|
case 10:
|
|
271
269
|
parsedBody = parsedOutput.body;
|
|
270
|
+
$metadata = deserializeMetadata(output);
|
|
271
|
+
statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
272
272
|
response = new __BaseException({
|
|
273
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
273
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
274
274
|
$fault: "client",
|
|
275
|
-
$metadata:
|
|
275
|
+
$metadata: $metadata,
|
|
276
276
|
});
|
|
277
277
|
throw __decorateServiceException(response, parsedBody);
|
|
278
278
|
}
|
|
@@ -403,5 +403,4 @@ var loadRestJsonErrorCode = function (output, data) {
|
|
|
403
403
|
if (data["__type"] !== undefined) {
|
|
404
404
|
return sanitizeErrorCode(data["__type"]);
|
|
405
405
|
}
|
|
406
|
-
return "";
|
|
407
406
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-account",
|
|
3
3
|
"description": "AWS SDK for JavaScript Account Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.128.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.128.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.128.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.128.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.127.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.127.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.127.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.128.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.127.0",
|
|
40
|
+
"@aws-sdk/types": "3.127.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.128.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1"
|