@aws-sdk/client-workspaces 3.131.0 → 3.133.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
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.133.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.132.0...v3.133.0) (2022-07-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-workspaces:** Increased the character limit of the login message from 850 to 2000 characters. ([6481e59](https://github.com/aws/aws-sdk-js-v3/commit/6481e598bf2360dfe18714996867eeed605a6f82))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-workspaces
|
|
@@ -2296,6 +2296,9 @@ const deserializeAws_json1_1ImportClientBrandingCommandError = async (output, co
|
|
|
2296
2296
|
case "ResourceLimitExceededException":
|
|
2297
2297
|
case "com.amazonaws.workspaces#ResourceLimitExceededException":
|
|
2298
2298
|
throw await deserializeAws_json1_1ResourceLimitExceededExceptionResponse(parsedOutput, context);
|
|
2299
|
+
case "ResourceNotFoundException":
|
|
2300
|
+
case "com.amazonaws.workspaces#ResourceNotFoundException":
|
|
2301
|
+
throw await deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context);
|
|
2299
2302
|
default:
|
|
2300
2303
|
const parsedBody = parsedOutput.body;
|
|
2301
2304
|
const $metadata = deserializeMetadata(output);
|
|
@@ -2971,15 +2971,19 @@ var deserializeAws_json1_1ImportClientBrandingCommandError = function (output, c
|
|
|
2971
2971
|
case "com.amazonaws.workspaces#InvalidParameterValuesException": return [3, 4];
|
|
2972
2972
|
case "ResourceLimitExceededException": return [3, 6];
|
|
2973
2973
|
case "com.amazonaws.workspaces#ResourceLimitExceededException": return [3, 6];
|
|
2974
|
+
case "ResourceNotFoundException": return [3, 8];
|
|
2975
|
+
case "com.amazonaws.workspaces#ResourceNotFoundException": return [3, 8];
|
|
2974
2976
|
}
|
|
2975
|
-
return [3,
|
|
2977
|
+
return [3, 10];
|
|
2976
2978
|
case 2: return [4, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];
|
|
2977
2979
|
case 3: throw _d.sent();
|
|
2978
2980
|
case 4: return [4, deserializeAws_json1_1InvalidParameterValuesExceptionResponse(parsedOutput, context)];
|
|
2979
2981
|
case 5: throw _d.sent();
|
|
2980
2982
|
case 6: return [4, deserializeAws_json1_1ResourceLimitExceededExceptionResponse(parsedOutput, context)];
|
|
2981
2983
|
case 7: throw _d.sent();
|
|
2982
|
-
case 8:
|
|
2984
|
+
case 8: return [4, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];
|
|
2985
|
+
case 9: throw _d.sent();
|
|
2986
|
+
case 10:
|
|
2983
2987
|
parsedBody = parsedOutput.body;
|
|
2984
2988
|
$metadata = deserializeMetadata(output);
|
|
2985
2989
|
statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workspaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workspaces Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.133.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",
|