@computesdk/blaxel 1.3.0 → 1.3.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
|
@@ -22,6 +22,6 @@ interface BlaxelConfig {
|
|
|
22
22
|
/**
|
|
23
23
|
* Create a Blaxel provider instance using the factory pattern
|
|
24
24
|
*/
|
|
25
|
-
declare const blaxel: (config: BlaxelConfig) => computesdk.Provider<SandboxInstance, any, any>;
|
|
25
|
+
declare const blaxel: (config: BlaxelConfig & computesdk.BaseProviderConfig) => computesdk.Provider<SandboxInstance, any, any>;
|
|
26
26
|
|
|
27
27
|
export { type BlaxelConfig, blaxel };
|
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,6 @@ interface BlaxelConfig {
|
|
|
22
22
|
/**
|
|
23
23
|
* Create a Blaxel provider instance using the factory pattern
|
|
24
24
|
*/
|
|
25
|
-
declare const blaxel: (config: BlaxelConfig) => computesdk.Provider<SandboxInstance, any, any>;
|
|
25
|
+
declare const blaxel: (config: BlaxelConfig & computesdk.BaseProviderConfig) => computesdk.Provider<SandboxInstance, any, any>;
|
|
26
26
|
|
|
27
27
|
export { type BlaxelConfig, blaxel };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@computesdk/blaxel",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Blaxel provider for ComputeSDK",
|
|
5
5
|
"author": "ComputeSDK",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@blaxel/core": "^0.2.42",
|
|
22
|
-
"computesdk": "1.9.
|
|
22
|
+
"computesdk": "1.9.1"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"blaxel",
|