experimental-agent 0.4.0 → 0.5.0

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.
Files changed (38) hide show
  1. package/dist/{adapter-zgOel4wW.d.mts → adapter-Cl735Kp4.d.mts} +3 -60
  2. package/dist/{adapter-zgOel4wW.d.ts → adapter-Cl735Kp4.d.ts} +3 -60
  3. package/dist/{chunk-ZUFJJYC4.mjs → chunk-2Y7EZPIP.mjs} +3 -2
  4. package/dist/{chunk-RT72C52I.mjs → chunk-6MS4CGEZ.mjs} +3 -2
  5. package/dist/{chunk-MSTM6W3Y.mjs → chunk-AB2JYY6A.mjs} +3 -3
  6. package/dist/{chunk-IV75IMEW.mjs → chunk-I5DCB7RU.mjs} +27 -9
  7. package/dist/chunk-NOW6XL5E.mjs +310 -0
  8. package/dist/{docker-QPCLWLYR.mjs → docker-OBUQX5ZI.mjs} +1 -1
  9. package/dist/entry-Bs17QEiq.d.mts +45 -0
  10. package/dist/entry-QNyd4S1s.d.ts +45 -0
  11. package/dist/index.d.mts +128 -37
  12. package/dist/index.d.ts +128 -37
  13. package/dist/index.js +251 -130
  14. package/dist/index.mjs +216 -123
  15. package/dist/lifecycle-workflow-steps.d.mts +2 -2
  16. package/dist/lifecycle-workflow-steps.d.ts +2 -2
  17. package/dist/lifecycle-workflow.d.mts +2 -2
  18. package/dist/lifecycle-workflow.d.ts +2 -2
  19. package/dist/{local-KJ3BSIFJ.mjs → local-4C3V4EFS.mjs} +1 -1
  20. package/dist/next/loader.js +3 -3
  21. package/dist/next/loader.mjs +1 -1
  22. package/dist/next.js +3 -3
  23. package/dist/next.mjs +1 -1
  24. package/dist/sandbox.d.mts +3 -3
  25. package/dist/sandbox.d.ts +3 -3
  26. package/dist/sandbox.js +15 -5
  27. package/dist/sandbox.mjs +3 -3
  28. package/dist/{steps-DShnXBLf.d.ts → steps-XA4wG8W3.d.ts} +4 -1
  29. package/dist/{steps-BIsP57pm.d.mts → steps-eTytqxQb.d.mts} +4 -1
  30. package/dist/storage.d.mts +2 -2
  31. package/dist/storage.d.ts +2 -2
  32. package/dist/storage.js +27 -9
  33. package/dist/storage.mjs +1 -1
  34. package/dist/{vercel-QZ6INPMV.mjs → vercel-6ORAC625.mjs} +1 -1
  35. package/package.json +2 -2
  36. package/dist/chunk-BFFNCESS.mjs +0 -302
  37. package/dist/entry-6HYg5qqg.d.mts +0 -36
  38. package/dist/entry-BrWOmEK2.d.ts +0 -36
@@ -1,36 +0,0 @@
1
- import { S as SandboxBinding, e as LifecycleConfig } from './steps-DShnXBLf.js';
2
- import * as _vercel_sandbox from '@vercel/sandbox';
3
-
4
- type DockerBindingConfig = {
5
- cwd?: string;
6
- };
7
- type DockerBindingMetadata = {
8
- sandboxName: string;
9
- };
10
- declare function dockerSandbox(): SandboxBinding<"docker", DockerBindingConfig, DockerBindingMetadata>;
11
-
12
- type LocalBindingConfig = {
13
- cwd?: string;
14
- };
15
- type LocalBindingMetadata = {
16
- basePath: string;
17
- pid: number;
18
- };
19
- declare function localSandbox(): SandboxBinding<"local", LocalBindingConfig, LocalBindingMetadata>;
20
-
21
- type VercelBindingConfig = {
22
- cwd?: string;
23
- resources?: {
24
- vcpus: number;
25
- };
26
- ports?: number[];
27
- networkPolicy?: _vercel_sandbox.NetworkPolicy;
28
- snapshotId?: string;
29
- lifecycle?: LifecycleConfig;
30
- };
31
- type VercelBindingMetadata = {
32
- sandboxId: string;
33
- };
34
- declare function vercelSandbox(): SandboxBinding<"vercel", VercelBindingConfig, VercelBindingMetadata>;
35
-
36
- export { type DockerBindingConfig as D, type LocalBindingConfig as L, type VercelBindingConfig as V, type LocalBindingMetadata as a, type VercelBindingMetadata as b, type DockerBindingMetadata as c, dockerSandbox as d, localSandbox as l, vercelSandbox as v };