@aws-sdk/middleware-eventstream 3.36.0 → 3.46.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 +35 -0
- package/dist-types/ts3.4/configuration.d.ts +2 -8
- package/package.json +5 -10
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.46.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.45.0...v3.46.0) (2022-01-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **packages:** end support for Node.js 10.x ([#3141](https://github.com/aws/aws-sdk-js-v3/issues/3141)) ([1a62865](https://github.com/aws/aws-sdk-js-v3/commit/1a6286513f7cdb556708845c512861c5f92eb883))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/middleware-eventstream
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/middleware-eventstream
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @aws-sdk/middleware-eventstream
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
# [3.36.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.35.0...v3.36.0) (2021-10-08)
|
|
7
42
|
|
|
8
43
|
|
|
@@ -2,15 +2,9 @@ import { Decoder, Encoder, EventSigner, EventStreamPayloadHandler, EventStreamPa
|
|
|
2
2
|
export interface EventStreamInputConfig {
|
|
3
3
|
}
|
|
4
4
|
export declare type EventStreamResolvedConfig = {
|
|
5
|
-
|
|
6
|
-
* A signer that signs the event of a event stream
|
|
7
|
-
* @internal
|
|
8
|
-
*/
|
|
5
|
+
|
|
9
6
|
eventSigner: EventSigner;
|
|
10
|
-
|
|
11
|
-
* A handler that control the eventstream payload flow and sign the payload after payload stream starting to flow.
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
7
|
+
|
|
14
8
|
eventStreamPayloadHandler: EventStreamPayloadHandler;
|
|
15
9
|
};
|
|
16
10
|
interface PreviouslyResolved {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-eventstream",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.46.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
6
6
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
7
7
|
"build:es": "tsc -p tsconfig.es.json",
|
|
8
8
|
"build:types": "tsc -p tsconfig.types.json",
|
|
9
|
-
"downlevel
|
|
9
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
10
10
|
"test": "jest"
|
|
11
11
|
},
|
|
12
12
|
"main": "./dist-cjs/index.js",
|
|
@@ -18,17 +18,12 @@
|
|
|
18
18
|
},
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@aws-sdk/protocol-http": "3.
|
|
22
|
-
"@aws-sdk/types": "3.
|
|
21
|
+
"@aws-sdk/protocol-http": "3.46.0",
|
|
22
|
+
"@aws-sdk/types": "3.46.0",
|
|
23
23
|
"tslib": "^2.3.0"
|
|
24
24
|
},
|
|
25
|
-
"devDependencies": {
|
|
26
|
-
"@types/jest": "^26.0.4",
|
|
27
|
-
"jest": "^26.1.0",
|
|
28
|
-
"typescript": "~4.3.5"
|
|
29
|
-
},
|
|
30
25
|
"engines": {
|
|
31
|
-
"node": ">=
|
|
26
|
+
"node": ">= 12.0.0"
|
|
32
27
|
},
|
|
33
28
|
"typesVersions": {
|
|
34
29
|
"<4.0": {
|