@aws-sdk/xhr-http-handler 3.170.0 → 3.178.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,22 @@
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.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/xhr-http-handler
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/xhr-http-handler
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/xhr-http-handler
@@ -1,21 +1,15 @@
1
1
  import { HttpHandler, HttpRequest, HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { HttpHandlerOptions, Provider } from "@aws-sdk/types";
3
3
  import { EventEmitter } from "events";
4
-
5
4
  export interface XhrHttpHandlerOptions {
6
5
  requestTimeout?: number;
7
6
  }
8
-
9
7
  export declare type XhrHttpHandlerEvents = {
10
8
  readonly PROGRESS: "xhr.progress";
11
-
12
9
  readonly UPLOAD_PROGRESS: "xhr.upload.progress";
13
-
14
10
  readonly XHR_INSTANTIATED: "after.xhr.new";
15
-
16
11
  readonly BEFORE_XHR_SEND: "before.xhr.send";
17
12
  };
18
-
19
13
  export declare class XhrHttpHandler
20
14
  extends EventEmitter
21
15
  implements HttpHandler
@@ -33,8 +27,6 @@ export declare class XhrHttpHandler
33
27
  ): Promise<{
34
28
  response: HttpResponse;
35
29
  }>;
36
-
37
30
  private responseHeaders;
38
-
39
31
  private initializeTransformStream;
40
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/xhr-http-handler",
3
- "version": "3.170.0",
3
+ "version": "3.178.0",
4
4
  "description": "Provides a way to make requests using XMLHttpRequest",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
@@ -18,15 +18,15 @@
18
18
  "module": "./dist-es/index.js",
19
19
  "types": "./dist-types/index.d.ts",
20
20
  "dependencies": {
21
- "@aws-sdk/protocol-http": "3.170.0",
22
- "@aws-sdk/querystring-builder": "3.170.0",
23
- "@aws-sdk/types": "3.170.0",
21
+ "@aws-sdk/protocol-http": "3.178.0",
22
+ "@aws-sdk/querystring-builder": "3.178.0",
23
+ "@aws-sdk/types": "3.178.0",
24
24
  "@aws-sdk/util-base64-browser": "3.170.0",
25
25
  "events": "3.3.0",
26
26
  "tslib": "^2.3.1"
27
27
  },
28
28
  "devDependencies": {
29
- "@aws-sdk/abort-controller": "3.170.0",
29
+ "@aws-sdk/abort-controller": "3.178.0",
30
30
  "@tsconfig/recommended": "1.0.1",
31
31
  "concurrently": "7.0.0",
32
32
  "downlevel-dts": "0.10.1",