@smithy/property-provider 4.0.2 → 4.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.
package/dist-types/chain.d.ts
CHANGED
|
@@ -10,4 +10,4 @@ import { Provider } from "@smithy/types";
|
|
|
10
10
|
* If no providers were received or no provider resolves successfully, the
|
|
11
11
|
* returned promise will be rejected.
|
|
12
12
|
*/
|
|
13
|
-
export declare const chain: <T>(...providers: Provider<T
|
|
13
|
+
export declare const chain: <T>(...providers: Array<Provider<T>>) => Provider<T>;
|
|
@@ -10,4 +10,4 @@ import { Provider } from "@smithy/types";
|
|
|
10
10
|
* If no providers were received or no provider resolves successfully, the
|
|
11
11
|
* returned promise will be rejected.
|
|
12
12
|
*/
|
|
13
|
-
export declare const chain: <T>(...providers: Provider<T
|
|
13
|
+
export declare const chain: <T>(...providers: Array<Provider<T>>) => Provider<T>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/property-provider",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
|
|
6
6
|
"build:cjs": "node ../../scripts/inline property-provider",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@smithy/types": "^4.
|
|
26
|
+
"@smithy/types": "^4.3.0",
|
|
27
27
|
"tslib": "^2.6.2"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|