@aws-sdk/middleware-eventstream 3.50.0 → 3.54.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,30 @@
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.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/middleware-eventstream
9
+
10
+
11
+
12
+
13
+
14
+ # [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/middleware-eventstream
17
+
18
+
19
+
20
+
21
+
22
+ # [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
23
+
24
+ **Note:** Version bump only for package @aws-sdk/middleware-eventstream
25
+
26
+
27
+
28
+
29
+
6
30
  # [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
7
31
 
8
32
  **Note:** Version bump only for package @aws-sdk/middleware-eventstream
@@ -0,0 +1,17 @@
1
+ import { Decoder, Encoder, EventSigner, EventStreamPayloadHandler, EventStreamPayloadHandlerProvider } from "@aws-sdk/types";
2
+ export interface EventStreamInputConfig {
3
+ }
4
+ export declare type EventStreamResolvedConfig = {
5
+
6
+ eventSigner: EventSigner;
7
+
8
+ eventStreamPayloadHandler: EventStreamPayloadHandler;
9
+ };
10
+ interface PreviouslyResolved {
11
+ utf8Encoder: Encoder;
12
+ utf8Decoder: Decoder;
13
+ signer: any;
14
+ eventStreamPayloadHandlerProvider: EventStreamPayloadHandlerProvider;
15
+ }
16
+ export declare function resolveEventStreamConfig<T>(input: T & PreviouslyResolved & EventStreamInputConfig): T & EventStreamResolvedConfig;
17
+ export {};
@@ -0,0 +1,4 @@
1
+ import { FinalizeRequestMiddleware, RelativeMiddlewareOptions } from "@aws-sdk/types";
2
+ import { EventStreamResolvedConfig } from "./configuration";
3
+ export declare const eventStreamHandlingMiddleware: (options: EventStreamResolvedConfig) => FinalizeRequestMiddleware<any, any>;
4
+ export declare const eventStreamHandlingMiddlewareOptions: RelativeMiddlewareOptions;
@@ -0,0 +1,3 @@
1
+ import { BuildHandlerOptions, BuildMiddleware } from "@aws-sdk/types";
2
+ export declare const eventStreamHeaderMiddleware: BuildMiddleware<any, any>;
3
+ export declare const eventStreamHeaderMiddlewareOptions: BuildHandlerOptions;
@@ -0,0 +1,4 @@
1
+ export * from "./configuration";
2
+ export * from "./handling-middleware";
3
+ export * from "./headers-middleware";
4
+ export * from "./plugin";
@@ -0,0 +1,3 @@
1
+ import { Pluggable } from "@aws-sdk/types";
2
+ import { EventStreamResolvedConfig } from "./configuration";
3
+ export declare const getEventStreamPlugin: (options: EventStreamResolvedConfig) => Pluggable<any, any>;
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-eventstream",
3
- "version": "3.50.0",
3
+ "version": "3.54.0",
4
4
  "scripts": {
5
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",
9
9
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
10
- "clean": "rimraf ./dist-*",
10
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
11
11
  "test": "jest"
12
12
  },
13
13
  "main": "./dist-cjs/index.js",
@@ -19,8 +19,8 @@
19
19
  },
20
20
  "license": "Apache-2.0",
21
21
  "dependencies": {
22
- "@aws-sdk/protocol-http": "3.50.0",
23
- "@aws-sdk/types": "3.50.0",
22
+ "@aws-sdk/protocol-http": "3.54.0",
23
+ "@aws-sdk/types": "3.54.0",
24
24
  "tslib": "^2.3.0"
25
25
  },
26
26
  "engines": {