@aws-sdk/client-marketplace-entitlement-service 3.121.0 → 3.130.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_json1_1.js +10 -12
- package/dist-es/protocols/Aws_json1_1.js +7 -9
- 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.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **codegen:** fix error code parsing when it's a number ([#3371](https://github.com/aws/aws-sdk-js-v3/issues/3371)) ([c2d8522](https://github.com/aws/aws-sdk-js-v3/commit/c2d852279a3d23958521a6ceb4f4c642b0cb1848))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-marketplace-entitlement-service
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-marketplace-entitlement-service
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
|
|
7
34
|
|
|
8
35
|
|
|
@@ -108,24 +108,21 @@ const serializeAws_json1_1GetEntitlementFilters = (input, context) => {
|
|
|
108
108
|
};
|
|
109
109
|
const serializeAws_json1_1GetEntitlementsRequest = (input, context) => {
|
|
110
110
|
return {
|
|
111
|
-
...(input.Filter
|
|
112
|
-
|
|
113
|
-
...(input.
|
|
114
|
-
...(input.
|
|
115
|
-
...(input.ProductCode !== undefined && input.ProductCode !== null && { ProductCode: input.ProductCode }),
|
|
111
|
+
...(input.Filter != null && { Filter: serializeAws_json1_1GetEntitlementFilters(input.Filter, context) }),
|
|
112
|
+
...(input.MaxResults != null && { MaxResults: input.MaxResults }),
|
|
113
|
+
...(input.NextToken != null && { NextToken: input.NextToken }),
|
|
114
|
+
...(input.ProductCode != null && { ProductCode: input.ProductCode }),
|
|
116
115
|
};
|
|
117
116
|
};
|
|
118
117
|
const deserializeAws_json1_1Entitlement = (output, context) => {
|
|
119
118
|
return {
|
|
120
119
|
CustomerIdentifier: (0, smithy_client_1.expectString)(output.CustomerIdentifier),
|
|
121
120
|
Dimension: (0, smithy_client_1.expectString)(output.Dimension),
|
|
122
|
-
ExpirationDate: output.ExpirationDate
|
|
121
|
+
ExpirationDate: output.ExpirationDate != null
|
|
123
122
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.ExpirationDate)))
|
|
124
123
|
: undefined,
|
|
125
124
|
ProductCode: (0, smithy_client_1.expectString)(output.ProductCode),
|
|
126
|
-
Value: output.Value
|
|
127
|
-
? deserializeAws_json1_1EntitlementValue((0, smithy_client_1.expectUnion)(output.Value), context)
|
|
128
|
-
: undefined,
|
|
125
|
+
Value: output.Value != null ? deserializeAws_json1_1EntitlementValue((0, smithy_client_1.expectUnion)(output.Value), context) : undefined,
|
|
129
126
|
};
|
|
130
127
|
};
|
|
131
128
|
const deserializeAws_json1_1EntitlementList = (output, context) => {
|
|
@@ -156,9 +153,7 @@ const deserializeAws_json1_1EntitlementValue = (output, context) => {
|
|
|
156
153
|
};
|
|
157
154
|
const deserializeAws_json1_1GetEntitlementsResult = (output, context) => {
|
|
158
155
|
return {
|
|
159
|
-
Entitlements: output.Entitlements
|
|
160
|
-
? deserializeAws_json1_1EntitlementList(output.Entitlements, context)
|
|
161
|
-
: undefined,
|
|
156
|
+
Entitlements: output.Entitlements != null ? deserializeAws_json1_1EntitlementList(output.Entitlements, context) : undefined,
|
|
162
157
|
NextToken: (0, smithy_client_1.expectString)(output.NextToken),
|
|
163
158
|
};
|
|
164
159
|
};
|
|
@@ -221,6 +216,9 @@ const loadRestJsonErrorCode = (output, data) => {
|
|
|
221
216
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
222
217
|
const sanitizeErrorCode = (rawValue) => {
|
|
223
218
|
let cleanValue = rawValue;
|
|
219
|
+
if (typeof cleanValue === "number") {
|
|
220
|
+
cleanValue = cleanValue.toString();
|
|
221
|
+
}
|
|
224
222
|
if (cleanValue.indexOf(":") >= 0) {
|
|
225
223
|
cleanValue = cleanValue.split(":")[0];
|
|
226
224
|
}
|
|
@@ -121,20 +121,17 @@ var serializeAws_json1_1GetEntitlementFilters = function (input, context) {
|
|
|
121
121
|
}, {});
|
|
122
122
|
};
|
|
123
123
|
var serializeAws_json1_1GetEntitlementsRequest = function (input, context) {
|
|
124
|
-
return __assign(__assign(__assign(__assign({}, (input.Filter
|
|
125
|
-
input.Filter !== null && { Filter: serializeAws_json1_1GetEntitlementFilters(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.ProductCode !== undefined && input.ProductCode !== null && { ProductCode: input.ProductCode }));
|
|
124
|
+
return __assign(__assign(__assign(__assign({}, (input.Filter != null && { Filter: serializeAws_json1_1GetEntitlementFilters(input.Filter, context) })), (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })), (input.ProductCode != null && { ProductCode: input.ProductCode }));
|
|
126
125
|
};
|
|
127
126
|
var deserializeAws_json1_1Entitlement = function (output, context) {
|
|
128
127
|
return {
|
|
129
128
|
CustomerIdentifier: __expectString(output.CustomerIdentifier),
|
|
130
129
|
Dimension: __expectString(output.Dimension),
|
|
131
|
-
ExpirationDate: output.ExpirationDate
|
|
130
|
+
ExpirationDate: output.ExpirationDate != null
|
|
132
131
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.ExpirationDate)))
|
|
133
132
|
: undefined,
|
|
134
133
|
ProductCode: __expectString(output.ProductCode),
|
|
135
|
-
Value: output.Value
|
|
136
|
-
? deserializeAws_json1_1EntitlementValue(__expectUnion(output.Value), context)
|
|
137
|
-
: undefined,
|
|
134
|
+
Value: output.Value != null ? deserializeAws_json1_1EntitlementValue(__expectUnion(output.Value), context) : undefined,
|
|
138
135
|
};
|
|
139
136
|
};
|
|
140
137
|
var deserializeAws_json1_1EntitlementList = function (output, context) {
|
|
@@ -165,9 +162,7 @@ var deserializeAws_json1_1EntitlementValue = function (output, context) {
|
|
|
165
162
|
};
|
|
166
163
|
var deserializeAws_json1_1GetEntitlementsResult = function (output, context) {
|
|
167
164
|
return {
|
|
168
|
-
Entitlements: output.Entitlements
|
|
169
|
-
? deserializeAws_json1_1EntitlementList(output.Entitlements, context)
|
|
170
|
-
: undefined,
|
|
165
|
+
Entitlements: output.Entitlements != null ? deserializeAws_json1_1EntitlementList(output.Entitlements, context) : undefined,
|
|
171
166
|
NextToken: __expectString(output.NextToken),
|
|
172
167
|
};
|
|
173
168
|
};
|
|
@@ -242,6 +237,9 @@ var loadRestJsonErrorCode = function (output, data) {
|
|
|
242
237
|
var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
|
|
243
238
|
var sanitizeErrorCode = function (rawValue) {
|
|
244
239
|
var cleanValue = rawValue;
|
|
240
|
+
if (typeof cleanValue === "number") {
|
|
241
|
+
cleanValue = cleanValue.toString();
|
|
242
|
+
}
|
|
245
243
|
if (cleanValue.indexOf(":") >= 0) {
|
|
246
244
|
cleanValue = cleanValue.split(":")[0];
|
|
247
245
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-marketplace-entitlement-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Marketplace Entitlement Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.130.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.130.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.130.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.130.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.130.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"
|