@fastgpt-sdk/sandbox-adapter 0.0.8 → 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.
@@ -3,7 +3,7 @@ import { type OpenSandboxConnectionConfig } from './OpenSandboxAdapter';
3
3
  import { ISandbox } from '@/interfaces';
4
4
  export { SealosDevboxAdapter, type SealosDevboxConfig } from './SealosDevboxAdapter';
5
5
  export { OpenSandboxAdapter, type OpenSandboxConnectionConfig, type SandboxRuntimeType } from './OpenSandboxAdapter';
6
- export type SandboxProvider = 'opensandbox' | 'sealos-devbox';
6
+ export type SandboxProviderType = 'opensandbox' | 'sealos-devbox';
7
7
  type CreateProviderType = {
8
8
  provider: 'opensandbox';
9
9
  config: OpenSandboxConnectionConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastgpt-sdk/sandbox-adapter",
3
- "version": "0.0.8",
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",