@smithy/util-stream-node
Advanced tools
+7
-8
| { | ||
| "name": "@smithy/util-stream-node", | ||
| "version": "4.2.19", | ||
| "version": "4.2.20", | ||
| "scripts": { | ||
| "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'", | ||
| "build:cjs": "node ../../scripts/inline util-stream-node", | ||
| "build:es": "yarn g:tsc -p tsconfig.es.json", | ||
| "build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'", | ||
| "build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline util-stream-node", | ||
| "build:types": "yarn g:tsc -p tsconfig.types.json", | ||
| "build:types:downlevel": "premove dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4", | ||
| "stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz", | ||
| "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo", | ||
| "format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"", | ||
| "lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"", | ||
| "format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"" | ||
| "stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz" | ||
| }, | ||
@@ -25,4 +24,4 @@ "main": "./dist-cjs/index.js", | ||
| "dependencies": { | ||
| "@smithy/node-http-handler": "^4.5.1", | ||
| "@smithy/types": "^4.13.1", | ||
| "@smithy/node-http-handler": "^4.5.2", | ||
| "@smithy/types": "^4.14.0", | ||
| "@smithy/util-buffer-from": "^4.2.2", | ||
@@ -29,0 +28,0 @@ "tslib": "^2.6.2" |
| import { GetAwsChunkedEncodingStream } from "@smithy/types"; | ||
| import { Readable } from "stream"; | ||
| /** | ||
| * @internal | ||
| */ | ||
| export declare const getAwsChunkedEncodingStream: GetAwsChunkedEncodingStream<Readable>; |
| /** | ||
| * @internal | ||
| */ | ||
| export * from "./getAwsChunkedEncodingStream"; | ||
| /** | ||
| * @internal | ||
| */ | ||
| export * from "./sdk-stream-mixin"; |
| import { SdkStream } from "@smithy/types"; | ||
| import { Readable } from "stream"; | ||
| /** | ||
| * The function that mixes in the utility functions to help consuming runtime-specific payload stream. | ||
| * | ||
| * @internal | ||
| */ | ||
| export declare const sdkStreamMixin: (stream: unknown) => SdkStream<Readable>; |
21060
-3.19%10
-23.08%168
-11.58%Updated