@aws-sdk/middleware-eventstream 3.972.23 → 3.972.24

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.
@@ -19,6 +19,6 @@ interface PreviouslyResolved {
19
19
  credentials?: AwsCredentialIdentityProvider;
20
20
  }
21
21
  export declare function resolveEventStreamConfig<T>(
22
- input: T & PreviouslyResolved & EventStreamInputConfig
22
+ input: T & PreviouslyResolved & EventStreamInputConfig,
23
23
  ): T & EventStreamResolvedConfig;
24
24
  export {};
@@ -1,9 +1,6 @@
1
- import {
2
- FinalizeRequestMiddleware,
3
- RelativeMiddlewareOptions,
4
- } from "@smithy/types";
1
+ import { FinalizeRequestMiddleware, RelativeMiddlewareOptions } from "@smithy/types";
5
2
  import { EventStreamResolvedConfig } from "./eventStreamConfiguration";
6
3
  export declare const eventStreamHandlingMiddleware: (
7
- options: EventStreamResolvedConfig
4
+ options: EventStreamResolvedConfig,
8
5
  ) => FinalizeRequestMiddleware<any, any>;
9
6
  export declare const eventStreamHandlingMiddlewareOptions: RelativeMiddlewareOptions;
@@ -1,5 +1,5 @@
1
1
  import { Pluggable } from "@smithy/types";
2
2
  import { EventStreamResolvedConfig } from "./eventStreamConfiguration";
3
3
  export declare const getEventStreamPlugin: (
4
- options: EventStreamResolvedConfig
4
+ options: EventStreamResolvedConfig,
5
5
  ) => Pluggable<any, any>;
@@ -1,8 +1,5 @@
1
1
  export { resolveEventStreamConfig } from "./eventStreamConfiguration";
2
- export {
3
- EventStreamInputConfig,
4
- EventStreamResolvedConfig,
5
- } from "./eventStreamConfiguration";
2
+ export { EventStreamInputConfig, EventStreamResolvedConfig } from "./eventStreamConfiguration";
6
3
  export {
7
4
  eventStreamHandlingMiddleware,
8
5
  eventStreamHandlingMiddlewareOptions,
package/package.json CHANGED
@@ -1,6 +1,31 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-eventstream",
3
- "version": "3.972.23",
3
+ "version": "3.972.24",
4
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/middleware-eventstream",
5
+ "license": "Apache-2.0",
6
+ "author": {
7
+ "name": "AWS SDK for JavaScript Team",
8
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
13
+ "directory": "packages-internal/middleware-eventstream"
14
+ },
15
+ "files": [
16
+ "dist-*/**"
17
+ ],
18
+ "sideEffects": false,
19
+ "main": "./dist-cjs/index.js",
20
+ "module": "./dist-es/index.js",
21
+ "types": "./dist-types/index.d.ts",
22
+ "typesVersions": {
23
+ "<4.5": {
24
+ "dist-types/*": [
25
+ "dist-types/ts3.4/*"
26
+ ]
27
+ }
28
+ },
4
29
  "scripts": {
5
30
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
31
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -13,45 +38,20 @@
13
38
  "test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
14
39
  "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
15
40
  },
16
- "main": "./dist-cjs/index.js",
17
- "module": "./dist-es/index.js",
18
- "types": "./dist-types/index.d.ts",
19
- "sideEffects": false,
20
- "author": {
21
- "name": "AWS SDK for JavaScript Team",
22
- "url": "https://aws.amazon.com/sdk-for-javascript/"
23
- },
24
- "license": "Apache-2.0",
25
41
  "dependencies": {
26
- "@aws-sdk/types": "^3.974.1",
27
- "@smithy/core": "^3.29.3",
42
+ "@aws-sdk/types": "^3.974.2",
43
+ "@smithy/core": "^3.29.4",
28
44
  "@smithy/types": "^4.16.1",
29
45
  "tslib": "^2.6.2"
30
46
  },
31
- "engines": {
32
- "node": ">=20.0.0"
33
- },
34
- "typesVersions": {
35
- "<4.5": {
36
- "dist-types/*": [
37
- "dist-types/ts3.4/*"
38
- ]
39
- }
40
- },
41
- "files": [
42
- "dist-*/**"
43
- ],
44
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/middleware-eventstream",
45
- "repository": {
46
- "type": "git",
47
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
48
- "directory": "packages-internal/middleware-eventstream"
49
- },
50
47
  "devDependencies": {
51
48
  "@tsconfig/recommended": "1.0.1",
52
49
  "concurrently": "7.0.0",
53
50
  "downlevel-dts": "0.10.1",
54
51
  "premove": "4.0.0",
55
52
  "typescript": "~5.8.3"
53
+ },
54
+ "engines": {
55
+ "node": ">=20.0.0"
56
56
  }
57
57
  }