@aws-sdk/xhr-http-handler 3.292.0 → 3.295.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.
|
@@ -4,7 +4,7 @@ import { EventEmitter } from "events";
|
|
|
4
4
|
export interface XhrHttpHandlerOptions {
|
|
5
5
|
requestTimeout?: number;
|
|
6
6
|
}
|
|
7
|
-
export
|
|
7
|
+
export type XhrHttpHandlerEvents = {
|
|
8
8
|
readonly PROGRESS: "xhr.progress";
|
|
9
9
|
readonly UPLOAD_PROGRESS: "xhr.upload.progress";
|
|
10
10
|
readonly XHR_INSTANTIATED: "after.xhr.new";
|
|
@@ -15,7 +15,7 @@ export interface XhrHttpHandlerOptions {
|
|
|
15
15
|
/**
|
|
16
16
|
* Events emitted by the XhrHttpHandler class as an EventEmitter.
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
18
|
+
export type XhrHttpHandlerEvents = {
|
|
19
19
|
/**
|
|
20
20
|
* Emitted for xhr on progress.
|
|
21
21
|
* Payload is the native ProgressEvent and the HttpRequest to allow
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/xhr-http-handler",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.295.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,20 +18,20 @@
|
|
|
18
18
|
"module": "./dist-es/index.js",
|
|
19
19
|
"types": "./dist-types/index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@aws-sdk/protocol-http": "3.
|
|
22
|
-
"@aws-sdk/querystring-builder": "3.
|
|
23
|
-
"@aws-sdk/types": "3.
|
|
21
|
+
"@aws-sdk/protocol-http": "3.295.0",
|
|
22
|
+
"@aws-sdk/querystring-builder": "3.295.0",
|
|
23
|
+
"@aws-sdk/types": "3.295.0",
|
|
24
24
|
"events": "3.3.0",
|
|
25
|
-
"tslib": "^2.
|
|
25
|
+
"tslib": "^2.5.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@aws-sdk/abort-controller": "3.
|
|
28
|
+
"@aws-sdk/abort-controller": "3.295.0",
|
|
29
29
|
"@tsconfig/recommended": "1.0.1",
|
|
30
30
|
"concurrently": "7.0.0",
|
|
31
31
|
"downlevel-dts": "0.10.1",
|
|
32
32
|
"rimraf": "3.0.2",
|
|
33
33
|
"typedoc": "0.23.23",
|
|
34
|
-
"typescript": "~4.
|
|
34
|
+
"typescript": "~4.9.5"
|
|
35
35
|
},
|
|
36
36
|
"typesVersions": {
|
|
37
37
|
"<4.0": {
|