@aws-sdk/types 3.734.0 → 3.804.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/dist-cjs/index.js
CHANGED
|
@@ -18,8 +18,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
|
|
20
20
|
// src/index.ts
|
|
21
|
-
var
|
|
22
|
-
__export(
|
|
21
|
+
var index_exports = {};
|
|
22
|
+
__export(index_exports, {
|
|
23
23
|
AbortController: () => import_types.AbortController,
|
|
24
24
|
AbortHandler: () => import_types.AbortHandler,
|
|
25
25
|
AbortSignal: () => import_types.AbortSignal,
|
|
@@ -191,7 +191,7 @@ __export(src_exports, {
|
|
|
191
191
|
WithSdkStreamMixin: () => import_types.WithSdkStreamMixin,
|
|
192
192
|
randomValues: () => import_types.randomValues
|
|
193
193
|
});
|
|
194
|
-
module.exports = __toCommonJS(
|
|
194
|
+
module.exports = __toCommonJS(index_exports);
|
|
195
195
|
|
|
196
196
|
// src/abort.ts
|
|
197
197
|
var import_types = require("@smithy/types");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Resolves a function that accepts both the object argument fields of F1 and F2.
|
|
3
|
+
* The function returns an intersection of what F1 and F2 return.
|
|
4
|
+
*
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export type MergeFunctions<F1, F2> = F1 extends (arg: infer A1) => infer R1 ? F2 extends (arg: infer A2) => infer R2 ? R1 extends Promise<unknown> ? (arg?: A1 & A2) => Promise<Awaited<R1> & Awaited<R2>> : (arg?: A1 & A2) => R1 & R2 : never : never;
|
package/dist-types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/types",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.804.0",
|
|
4
4
|
"main": "./dist-cjs/index.js",
|
|
5
5
|
"module": "./dist-es/index.js",
|
|
6
6
|
"types": "./dist-types/index.d.ts",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"directory": "packages/types"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@smithy/types": "^4.
|
|
44
|
+
"@smithy/types": "^4.2.0",
|
|
45
45
|
"tslib": "^2.6.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"concurrently": "7.0.0",
|
|
50
50
|
"downlevel-dts": "0.10.1",
|
|
51
51
|
"rimraf": "3.0.2",
|
|
52
|
-
"typescript": "~5.
|
|
52
|
+
"typescript": "~5.8.3"
|
|
53
53
|
},
|
|
54
54
|
"browser": {},
|
|
55
55
|
"react-native": {}
|