@aws-sdk/types 3.296.0 → 3.306.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.
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./config"), exports);
5
+ tslib_1.__exportStar(require("./manager"), exports);
6
+ tslib_1.__exportStar(require("./pool"), exports);
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ tslib_1.__exportStar(require("./auth"), exports);
6
6
  tslib_1.__exportStar(require("./checksum"), exports);
7
7
  tslib_1.__exportStar(require("./client"), exports);
8
8
  tslib_1.__exportStar(require("./command"), exports);
9
+ tslib_1.__exportStar(require("./connection"), exports);
9
10
  tslib_1.__exportStar(require("./credentials"), exports);
10
11
  tslib_1.__exportStar(require("./crypto"), exports);
11
12
  tslib_1.__exportStar(require("./dns"), exports);
@@ -0,0 +1,3 @@
1
+ export * from "./config";
2
+ export * from "./manager";
3
+ export * from "./pool";
package/dist-es/index.js CHANGED
@@ -3,6 +3,7 @@ export * from "./auth";
3
3
  export * from "./checksum";
4
4
  export * from "./client";
5
5
  export * from "./command";
6
+ export * from "./connection";
6
7
  export * from "./credentials";
7
8
  export * from "./crypto";
8
9
  export * from "./dns";
@@ -21,7 +21,7 @@ export interface AbortSignal {
21
21
  * A function to be invoked when the action represented by this signal has
22
22
  * been cancelled.
23
23
  */
24
- onabort: AbortHandler | null;
24
+ onabort: AbortHandler | Function | null;
25
25
  }
26
26
  /**
27
27
  * @public
@@ -0,0 +1,3 @@
1
+ export * from "./config";
2
+ export * from "./manager";
3
+ export * from "./pool";
@@ -3,6 +3,7 @@ export * from "./auth";
3
3
  export * from "./checksum";
4
4
  export * from "./client";
5
5
  export * from "./command";
6
+ export * from "./connection";
6
7
  export * from "./credentials";
7
8
  export * from "./crypto";
8
9
  export * from "./dns";
@@ -3,7 +3,7 @@ export interface AbortHandler {
3
3
  }
4
4
  export interface AbortSignal {
5
5
  readonly aborted: boolean;
6
- onabort: AbortHandler | null;
6
+ onabort: AbortHandler | Function | null;
7
7
  }
8
8
  export interface AbortController {
9
9
  readonly signal: AbortSignal;
@@ -0,0 +1,3 @@
1
+ export * from "./config";
2
+ export * from "./manager";
3
+ export * from "./pool";
@@ -3,6 +3,7 @@ export * from "./auth";
3
3
  export * from "./checksum";
4
4
  export * from "./client";
5
5
  export * from "./command";
6
+ export * from "./connection";
6
7
  export * from "./credentials";
7
8
  export * from "./crypto";
8
9
  export * from "./dns";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/types",
3
- "version": "3.296.0",
3
+ "version": "3.306.0",
4
4
  "main": "./dist-cjs/index.js",
5
5
  "module": "./dist-es/index.js",
6
6
  "types": "./dist-types/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  "build:types": "tsc -p tsconfig.types.json",
14
14
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
15
15
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
16
- "test": "exit 0"
16
+ "test": "tsc -p tsconfig.test.json"
17
17
  },
18
18
  "author": {
19
19
  "name": "AWS SDK for JavaScript Team",