@fastgpt-sdk/sandbox-adapter 0.0.7 → 0.0.9

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,9 +1,9 @@
1
1
  import { type SealosDevboxConfig } from './SealosDevboxAdapter';
2
2
  import { type OpenSandboxConnectionConfig } from './OpenSandboxAdapter';
3
3
  import { ISandbox } from '@/interfaces';
4
- export { BaseSandboxAdapter } from './BaseSandboxAdapter';
5
4
  export { SealosDevboxAdapter, type SealosDevboxConfig } from './SealosDevboxAdapter';
6
5
  export { OpenSandboxAdapter, type OpenSandboxConnectionConfig, type SandboxRuntimeType } from './OpenSandboxAdapter';
6
+ export type SandboxProviderType = 'opensandbox' | 'sealos-devbox';
7
7
  type CreateProviderType = {
8
8
  provider: 'opensandbox';
9
9
  config: OpenSandboxConnectionConfig;
package/dist/index.js CHANGED
@@ -1214,6 +1214,5 @@ export {
1214
1214
  FileOperationError,
1215
1215
  FeatureNotSupportedError,
1216
1216
  ConnectionError,
1217
- CommandExecutionError,
1218
- BaseSandboxAdapter
1217
+ CommandExecutionError
1219
1218
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastgpt-sdk/sandbox-adapter",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
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.js",