@aws-sdk/types 3.47.0 → 3.52.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,41 @@
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.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/types
9
+
10
+
11
+
12
+
13
+
14
+ # [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
15
+
16
+
17
+ ### Features
18
+
19
+ * **smithy-client:** implement SdkException class ([#3261](https://github.com/aws/aws-sdk-js-v3/issues/3261)) ([6a23634](https://github.com/aws/aws-sdk-js-v3/commit/6a23634ec278fe0d275f58fb6b981440be6a3db8))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/types
28
+
29
+
30
+
31
+
32
+
33
+ ## [3.47.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
34
+
35
+ **Note:** Version bump only for package @aws-sdk/types
36
+
37
+
38
+
39
+
40
+
6
41
  # [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
7
42
 
8
43
  **Note:** Version bump only for package @aws-sdk/types
@@ -24,6 +24,7 @@ export interface RetryableTrait {
24
24
  /**
25
25
  * Type that is implemented by all Smithy shapes marked with the
26
26
  * error trait.
27
+ * @deprecated
27
28
  */
28
29
  export interface SmithyException {
29
30
  /**
@@ -47,4 +48,7 @@ export interface SmithyException {
47
48
  */
48
49
  readonly $response?: HttpResponse;
49
50
  }
51
+ /**
52
+ * @deprecated
53
+ */
50
54
  export declare type SdkError = Error & Partial<SmithyException> & Partial<MetadataBearer>;
@@ -22,4 +22,5 @@ export interface SmithyException {
22
22
 
23
23
  readonly $response?: HttpResponse;
24
24
  }
25
+
25
26
  export declare type SdkError = Error & Partial<SmithyException> & Partial<MetadataBearer>;
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@aws-sdk/types",
3
- "version": "3.47.0",
3
+ "version": "3.52.0",
4
4
  "main": "./dist-cjs/index.js",
5
5
  "module": "./dist-es/index.js",
6
6
  "types": "./dist-types/index.d.ts",
7
7
  "description": "Types for the AWS SDK",
8
8
  "scripts": {
9
- "build": "yarn build:cjs && yarn build:es && yarn build:types",
9
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
10
10
  "build:cjs": "tsc -p tsconfig.cjs.json",
11
11
  "build:es": "tsc -p tsconfig.es.json",
12
12
  "build:types": "tsc -p tsconfig.types.json",
13
13
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
14
- "clean": "rimraf ./dist-*",
14
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
15
15
  "test": "exit 0"
16
16
  },
17
17
  "author": {
@@ -37,5 +37,13 @@
37
37
  "type": "git",
38
38
  "url": "https://github.com/aws/aws-sdk-js-v3.git",
39
39
  "directory": "packages/types"
40
+ },
41
+ "devDependencies": {
42
+ "@tsconfig/recommended": "1.0.1",
43
+ "concurrently": "7.0.0",
44
+ "downlevel-dts": "0.7.0",
45
+ "rimraf": "3.0.2",
46
+ "typedoc": "0.19.2",
47
+ "typescript": "~4.3.5"
40
48
  }
41
49
  }