@smithy/fetch-http-handler 5.0.1 → 5.0.3

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.
@@ -10,7 +10,7 @@ export { FetchHttpHandlerOptions };
10
10
  * Detection of keepalive support. Can be overridden for testing.
11
11
  */
12
12
  export declare const keepAliveSupport: {
13
- supported: boolean | undefined;
13
+ supported: undefined | boolean;
14
14
  };
15
15
  /**
16
16
  * @internal
@@ -10,7 +10,7 @@ export { FetchHttpHandlerOptions };
10
10
  * Detection of keepalive support. Can be overridden for testing.
11
11
  */
12
12
  export declare const keepAliveSupport: {
13
- supported: boolean | undefined;
13
+ supported: undefined | boolean;
14
14
  };
15
15
  /**
16
16
  * @internal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/fetch-http-handler",
3
- "version": "5.0.1",
3
+ "version": "5.0.3",
4
4
  "description": "Provides a way to make requests",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
@@ -11,7 +11,7 @@
11
11
  "stage-release": "rimraf ./.release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
12
12
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
13
13
  "lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
14
- "format": "prettier --config ../../prettier.config.js --ignore-path ../.prettierignore --write \"**/*.{ts,md,json}\"",
14
+ "format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
15
15
  "extract:docs": "api-extractor run --local",
16
16
  "test": "yarn g:vitest run && yarn test:browser",
17
17
  "test:watch": "yarn g:vitest watch",
@@ -27,14 +27,14 @@
27
27
  "module": "./dist-es/index.js",
28
28
  "types": "./dist-types/index.d.ts",
29
29
  "dependencies": {
30
- "@smithy/protocol-http": "^5.0.1",
31
- "@smithy/querystring-builder": "^4.0.1",
32
- "@smithy/types": "^4.1.0",
30
+ "@smithy/protocol-http": "^5.1.1",
31
+ "@smithy/querystring-builder": "^4.0.3",
32
+ "@smithy/types": "^4.3.0",
33
33
  "@smithy/util-base64": "^4.0.0",
34
34
  "tslib": "^2.6.2"
35
35
  },
36
36
  "devDependencies": {
37
- "@smithy/abort-controller": "^4.0.1",
37
+ "@smithy/abort-controller": "^4.0.3",
38
38
  "concurrently": "7.0.0",
39
39
  "downlevel-dts": "0.10.1",
40
40
  "rimraf": "3.0.2",
@@ -50,10 +50,10 @@
50
50
  "files": [
51
51
  "dist-*/**"
52
52
  ],
53
- "homepage": "https://github.com/awslabs/smithy-typescript/tree/main/packages/fetch-http-handler",
53
+ "homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/fetch-http-handler",
54
54
  "repository": {
55
55
  "type": "git",
56
- "url": "https://github.com/awslabs/smithy-typescript.git",
56
+ "url": "https://github.com/smithy-lang/smithy-typescript.git",
57
57
  "directory": "packages/fetch-http-handler"
58
58
  },
59
59
  "typedoc": {