@aws-sdk/eventstream-handler-node 3.357.0 → 3.369.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/dist-cjs/EventStreamPayloadHandler.js +1 -1
- package/dist-es/EventStreamPayloadHandler.js +1 -1
- package/dist-types/EventSigningStream.d.ts +2 -2
- package/dist-types/EventStreamPayloadHandler.d.ts +1 -1
- package/dist-types/provider.d.ts +1 -1
- package/dist-types/ts3.4/EventSigningStream.d.ts +2 -2
- package/dist-types/ts3.4/EventStreamPayloadHandler.d.ts +1 -1
- package/dist-types/ts3.4/provider.d.ts +1 -1
- package/package.json +5 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.EventStreamPayloadHandler = void 0;
|
|
4
|
-
const eventstream_codec_1 = require("@
|
|
4
|
+
const eventstream_codec_1 = require("@smithy/eventstream-codec");
|
|
5
5
|
const stream_1 = require("stream");
|
|
6
6
|
const EventSigningStream_1 = require("./EventSigningStream");
|
|
7
7
|
class EventStreamPayloadHandler {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventStreamCodec } from "@
|
|
1
|
+
import { EventStreamCodec } from "@smithy/eventstream-codec";
|
|
2
2
|
import { PassThrough, pipeline, Readable } from "stream";
|
|
3
3
|
import { EventSigningStream } from "./EventSigningStream";
|
|
4
4
|
export class EventStreamPayloadHandler {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { EventStreamCodec } from "@
|
|
3
|
-
import { MessageSigner } from "@
|
|
2
|
+
import { EventStreamCodec } from "@smithy/eventstream-codec";
|
|
3
|
+
import { MessageSigner } from "@smithy/types";
|
|
4
4
|
import { Transform, TransformCallback, TransformOptions } from "stream";
|
|
5
5
|
/**
|
|
6
6
|
* @internal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Decoder, Encoder, EventStreamPayloadHandler as IEventStreamPayloadHandler, FinalizeHandler, FinalizeHandlerArguments, FinalizeHandlerOutput, HandlerExecutionContext, MessageSigner, MetadataBearer, Provider } from "@
|
|
1
|
+
import { Decoder, Encoder, EventStreamPayloadHandler as IEventStreamPayloadHandler, FinalizeHandler, FinalizeHandlerArguments, FinalizeHandlerOutput, HandlerExecutionContext, MessageSigner, MetadataBearer, Provider } from "@smithy/types";
|
|
2
2
|
/**
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
package/dist-types/provider.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { EventStreamCodec } from "@
|
|
2
|
-
import { MessageSigner } from "@
|
|
1
|
+
import { EventStreamCodec } from "@smithy/eventstream-codec";
|
|
2
|
+
import { MessageSigner } from "@smithy/types";
|
|
3
3
|
import { Transform, TransformCallback, TransformOptions } from "stream";
|
|
4
4
|
export interface EventSigningStreamOptions extends TransformOptions {
|
|
5
5
|
priorSignature: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { EventStreamPayloadHandlerProvider } from "@
|
|
1
|
+
import { EventStreamPayloadHandlerProvider } from "@smithy/types";
|
|
2
2
|
export declare const eventStreamPayloadHandlerProvider: EventStreamPayloadHandlerProvider;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/eventstream-handler-node",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.369.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",
|
|
@@ -20,12 +20,13 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@aws-sdk/
|
|
24
|
-
"@
|
|
23
|
+
"@aws-sdk/types": "3.369.0",
|
|
24
|
+
"@smithy/eventstream-codec": "^1.0.1",
|
|
25
|
+
"@smithy/types": "^1.1.0",
|
|
25
26
|
"tslib": "^2.5.0"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
28
|
-
"@
|
|
29
|
+
"@smithy/util-utf8": "^1.0.1",
|
|
29
30
|
"@tsconfig/recommended": "1.0.1",
|
|
30
31
|
"@types/node": "^14.14.31",
|
|
31
32
|
"concurrently": "7.0.0",
|