@computesdk/aws-ecs 1.1.0 → 1.1.1
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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -47,6 +47,6 @@ declare const getAndValidateCredentials: (config: FargateConfig) => {
|
|
|
47
47
|
/**
|
|
48
48
|
* Create an AWS ECS Fargate provider instance using the factory pattern
|
|
49
49
|
*/
|
|
50
|
-
declare const fargate: (config: FargateConfig) => computesdk.Provider<FargateSandbox, any, any>;
|
|
50
|
+
declare const fargate: (config: FargateConfig & computesdk.BaseProviderConfig) => computesdk.Provider<FargateSandbox, any, any>;
|
|
51
51
|
|
|
52
52
|
export { type FargateConfig, fargate, getAndValidateCredentials };
|
package/dist/index.d.ts
CHANGED
|
@@ -47,6 +47,6 @@ declare const getAndValidateCredentials: (config: FargateConfig) => {
|
|
|
47
47
|
/**
|
|
48
48
|
* Create an AWS ECS Fargate provider instance using the factory pattern
|
|
49
49
|
*/
|
|
50
|
-
declare const fargate: (config: FargateConfig) => computesdk.Provider<FargateSandbox, any, any>;
|
|
50
|
+
declare const fargate: (config: FargateConfig & computesdk.BaseProviderConfig) => computesdk.Provider<FargateSandbox, any, any>;
|
|
51
51
|
|
|
52
52
|
export { type FargateConfig, fargate, getAndValidateCredentials };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@computesdk/aws-ecs",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "AWS ECS provider for ComputeSDK",
|
|
5
5
|
"author": "ComputeSDK Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-sdk/client-ecs": "^3.943.0",
|
|
22
|
-
"computesdk": "1.9.
|
|
22
|
+
"computesdk": "1.9.1"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"aws",
|