@computesdk/e2b 1.7.0 → 1.7.2
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
|
@@ -17,6 +17,6 @@ interface E2BConfig {
|
|
|
17
17
|
/**
|
|
18
18
|
* Create an E2B provider instance using the factory pattern
|
|
19
19
|
*/
|
|
20
|
-
declare const e2b: (config: E2BConfig) => computesdk.Provider<Sandbox, any, any>;
|
|
20
|
+
declare const e2b: (config: E2BConfig & computesdk.BaseProviderConfig) => computesdk.Provider<Sandbox, any, any>;
|
|
21
21
|
|
|
22
22
|
export { type E2BConfig, e2b };
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,6 @@ interface E2BConfig {
|
|
|
17
17
|
/**
|
|
18
18
|
* Create an E2B provider instance using the factory pattern
|
|
19
19
|
*/
|
|
20
|
-
declare const e2b: (config: E2BConfig) => computesdk.Provider<Sandbox, any, any>;
|
|
20
|
+
declare const e2b: (config: E2BConfig & computesdk.BaseProviderConfig) => computesdk.Provider<Sandbox, any, any>;
|
|
21
21
|
|
|
22
22
|
export { type E2BConfig, e2b };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@computesdk/e2b",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "E2B provider for ComputeSDK",
|
|
5
5
|
"author": "Garrison",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"e2b": "^2.0.1",
|
|
22
|
-
"computesdk": "1.9.
|
|
22
|
+
"computesdk": "1.9.3"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"e2b",
|