@computesdk/lambda 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.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -66,6 +66,6 @@ declare const fetchLambda: (apiKey: string, endpoint: string, options?: {
|
|
|
66
66
|
/**
|
|
67
67
|
* Create a Lambda provider instance using the factory pattern
|
|
68
68
|
*/
|
|
69
|
-
declare const lambda: (config: LambdaConfig) => computesdk.Provider<LambdaSandbox, any, any>;
|
|
69
|
+
declare const lambda: (config: LambdaConfig & computesdk.BaseProviderConfig) => computesdk.Provider<LambdaSandbox, any, any>;
|
|
70
70
|
|
|
71
71
|
export { type LambdaConfig, fetchLambda, getAndValidateCredentials, lambda };
|
package/dist/index.d.ts
CHANGED
|
@@ -66,6 +66,6 @@ declare const fetchLambda: (apiKey: string, endpoint: string, options?: {
|
|
|
66
66
|
/**
|
|
67
67
|
* Create a Lambda provider instance using the factory pattern
|
|
68
68
|
*/
|
|
69
|
-
declare const lambda: (config: LambdaConfig) => computesdk.Provider<LambdaSandbox, any, any>;
|
|
69
|
+
declare const lambda: (config: LambdaConfig & computesdk.BaseProviderConfig) => computesdk.Provider<LambdaSandbox, any, any>;
|
|
70
70
|
|
|
71
71
|
export { type LambdaConfig, fetchLambda, getAndValidateCredentials, lambda };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@computesdk/lambda",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Lambda provider for ComputeSDK",
|
|
5
5
|
"author": "ComputeSDK Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"computesdk": "1.9.
|
|
22
|
+
"computesdk": "1.9.1"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"lambda",
|