@fastgpt-sdk/sandbox-adapter 0.0.29 → 0.0.31

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.
@@ -1,5 +1,5 @@
1
1
  import { ImageSpec, NetworkPolicy, ResourceLimits } from '@/types';
2
- import type { Volume } from '@alibaba-group/opensandbox';
2
+ import type { Volume } from '../../../opensandbox';
3
3
  /**
4
4
  * Configuration for creating a sandbox.
5
5
  */
@@ -6,7 +6,7 @@ export { SealosDevboxAdapter } from './SealosDevboxAdapter';
6
6
  export type { SealosDevboxConfig } from './SealosDevboxAdapter';
7
7
  export { OpenSandboxAdapter } from './OpenSandboxAdapter';
8
8
  export type { OpenSandboxConfigType, OpenSandboxConnectionConfig } from './OpenSandboxAdapter';
9
- export type { Volume as OpenSandboxVolume } from '@alibaba-group/opensandbox';
9
+ export type { Volume as OpenSandboxVolume } from '../../opensandbox';
10
10
  export { E2BAdapter } from './E2BAdapter';
11
11
  export type { E2BConfig } from './E2BAdapter';
12
12
  export type SandboxProviderType = 'opensandbox' | 'sealosdevbox' | 'e2b';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastgpt-sdk/sandbox-adapter",
3
- "version": "0.0.29",
3
+ "version": "0.0.31",
4
4
  "description": "Unified abstraction layer for cloud sandbox providers with adapter pattern and feature polyfilling",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -48,7 +48,6 @@
48
48
  "author": "",
49
49
  "license": "MIT",
50
50
  "dependencies": {
51
- "@alibaba-group/opensandbox": "file:./opensandbox",
52
51
  "@e2b/code-interpreter": "^2.3.3"
53
52
  },
54
53
  "devDependencies": {