@computesdk/codesandbox 1.2.3 → 1.2.5

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 CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as computesdk from 'computesdk';
2
2
  import { Runtime } from 'computesdk';
3
+ import { Sandbox } from '@codesandbox/sdk';
3
4
 
4
5
  /**
5
6
  * Codesandbox-specific configuration options
@@ -17,6 +18,6 @@ interface CodesandboxConfig {
17
18
  /**
18
19
  * Create a Codesandbox provider instance using the factory pattern
19
20
  */
20
- declare const codesandbox: (config: CodesandboxConfig) => computesdk.Provider;
21
+ declare const codesandbox: (config: CodesandboxConfig) => computesdk.Provider<Sandbox>;
21
22
 
22
23
  export { type CodesandboxConfig, codesandbox };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as computesdk from 'computesdk';
2
2
  import { Runtime } from 'computesdk';
3
+ import { Sandbox } from '@codesandbox/sdk';
3
4
 
4
5
  /**
5
6
  * Codesandbox-specific configuration options
@@ -17,6 +18,6 @@ interface CodesandboxConfig {
17
18
  /**
18
19
  * Create a Codesandbox provider instance using the factory pattern
19
20
  */
20
- declare const codesandbox: (config: CodesandboxConfig) => computesdk.Provider;
21
+ declare const codesandbox: (config: CodesandboxConfig) => computesdk.Provider<Sandbox>;
21
22
 
22
23
  export { type CodesandboxConfig, codesandbox };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@computesdk/codesandbox",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "CodeSandbox provider for ComputeSDK",
5
5
  "author": "Garrison",
6
6
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "@codesandbox/sdk": "^2.0.7",
22
- "computesdk": "1.5.0"
22
+ "computesdk": "1.7.0"
23
23
  },
24
24
  "keywords": [
25
25
  "codesandbox",
@@ -47,7 +47,7 @@
47
47
  "tsup": "^8.0.0",
48
48
  "typescript": "^5.0.0",
49
49
  "vitest": "^1.0.0",
50
- "@computesdk/test-utils": "1.3.0"
50
+ "@computesdk/test-utils": "1.3.1"
51
51
  },
52
52
  "scripts": {
53
53
  "build": "tsup",