@computesdk/vercel 1.3.4 → 1.3.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 '@vercel/sandbox';
3
4
 
4
5
  /**
5
6
  * Vercel sandbox provider configuration
@@ -19,6 +20,6 @@ interface VercelConfig {
19
20
  /**
20
21
  * Create a Vercel provider instance using the factory pattern
21
22
  */
22
- declare const vercel: (config: VercelConfig) => computesdk.Provider;
23
+ declare const vercel: (config: VercelConfig) => computesdk.Provider<Sandbox>;
23
24
 
24
25
  export { type VercelConfig, vercel };
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 '@vercel/sandbox';
3
4
 
4
5
  /**
5
6
  * Vercel sandbox provider configuration
@@ -19,6 +20,6 @@ interface VercelConfig {
19
20
  /**
20
21
  * Create a Vercel provider instance using the factory pattern
21
22
  */
22
- declare const vercel: (config: VercelConfig) => computesdk.Provider;
23
+ declare const vercel: (config: VercelConfig) => computesdk.Provider<Sandbox>;
23
24
 
24
25
  export { type VercelConfig, vercel };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@computesdk/vercel",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "Vercel Sandbox provider for ComputeSDK",
5
5
  "author": "Garrison",
6
6
  "license": "MIT",
@@ -20,7 +20,7 @@
20
20
  "dependencies": {
21
21
  "@vercel/sandbox": "^0.0.13",
22
22
  "ms": "^2.1.3",
23
- "computesdk": "1.6.0"
23
+ "computesdk": "1.7.0"
24
24
  },
25
25
  "keywords": [
26
26
  "vercel",
@@ -49,7 +49,7 @@
49
49
  "tsup": "^8.0.0",
50
50
  "typescript": "^5.0.0",
51
51
  "vitest": "^1.0.0",
52
- "@computesdk/test-utils": "1.3.0"
52
+ "@computesdk/test-utils": "1.3.1"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "tsup",