@aws-sdk/eventstream-handler-node 3.47.0 → 3.50.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.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/eventstream-handler-node
9
+
10
+
11
+
12
+
13
+
14
+ # [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **eventstream-handler-node:** explicitly define type of err ([#3240](https://github.com/aws/aws-sdk-js-v3/issues/3240)) ([4098091](https://github.com/aws/aws-sdk-js-v3/commit/4098091d054f804013f89c536710f5fcfb10951d))
20
+
21
+
22
+
23
+
24
+
25
+ ## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/eventstream-handler-node
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/eventstream-handler-node
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/eventstream-handler-node
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@aws-sdk/eventstream-handler-node",
3
- "version": "3.47.0",
3
+ "version": "3.50.0",
4
4
  "scripts": {
5
- "build": "yarn build:cjs && yarn build:es && yarn build:types",
5
+ "build": "concurrently '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",
@@ -19,12 +19,18 @@
19
19
  },
20
20
  "license": "Apache-2.0",
21
21
  "dependencies": {
22
- "@aws-sdk/eventstream-marshaller": "3.47.0",
23
- "@aws-sdk/types": "3.47.0",
22
+ "@aws-sdk/eventstream-marshaller": "3.50.0",
23
+ "@aws-sdk/types": "3.50.0",
24
24
  "tslib": "^2.3.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@aws-sdk/util-utf8-node": "3.47.0"
27
+ "@aws-sdk/util-utf8-node": "3.49.0",
28
+ "@tsconfig/recommended": "1.0.1",
29
+ "concurrently": "7.0.0",
30
+ "downlevel-dts": "0.7.0",
31
+ "rimraf": "3.0.2",
32
+ "typedoc": "0.19.2",
33
+ "typescript": "~4.3.5"
28
34
  },
29
35
  "engines": {
30
36
  "node": ">= 12.0.0"
@@ -1,17 +0,0 @@
1
-
2
- import { EventStreamMarshaller as EventMarshaller } from "@aws-sdk/eventstream-marshaller";
3
- import { EventSigner } from "@aws-sdk/types";
4
- import { Transform, TransformCallback, TransformOptions } from "stream";
5
- export interface EventSigningStreamOptions extends TransformOptions {
6
- priorSignature: string;
7
- eventSigner: EventSigner;
8
- eventMarshaller: EventMarshaller;
9
- }
10
-
11
- export declare class EventSigningStream extends Transform {
12
- private priorSignature;
13
- private eventSigner;
14
- private eventMarshaller;
15
- constructor(options: EventSigningStreamOptions);
16
- _transform(chunk: Uint8Array, encoding: string, callback: TransformCallback): Promise<void>;
17
- }
@@ -1,13 +0,0 @@
1
- import { Decoder, Encoder, EventSigner, EventStreamPayloadHandler as IEventStreamPayloadHandler, FinalizeHandler, FinalizeHandlerArguments, FinalizeHandlerOutput, HandlerExecutionContext, MetadataBearer, Provider } from "@aws-sdk/types";
2
- export interface EventStreamPayloadHandlerOptions {
3
- eventSigner: Provider<EventSigner>;
4
- utf8Encoder: Encoder;
5
- utf8Decoder: Decoder;
6
- }
7
-
8
- export declare class EventStreamPayloadHandler implements IEventStreamPayloadHandler {
9
- private readonly eventSigner;
10
- private readonly eventMarshaller;
11
- constructor(options: EventStreamPayloadHandlerOptions);
12
- handle<T extends MetadataBearer>(next: FinalizeHandler<any, T>, args: FinalizeHandlerArguments<any>, context?: HandlerExecutionContext): Promise<FinalizeHandlerOutput<T>>;
13
- }
@@ -1 +0,0 @@
1
- export { eventStreamPayloadHandlerProvider } from "./provider";
@@ -1,3 +0,0 @@
1
- import { EventStreamPayloadHandlerProvider } from "@aws-sdk/types";
2
-
3
- export declare const eventStreamPayloadHandlerProvider: EventStreamPayloadHandlerProvider;