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.
- package/dist/{adapter-zgOel4wW.d.mts → adapter-Cl735Kp4.d.mts} +3 -60
- package/dist/{adapter-zgOel4wW.d.ts → adapter-Cl735Kp4.d.ts} +3 -60
- package/dist/{chunk-ZUFJJYC4.mjs → chunk-2Y7EZPIP.mjs} +3 -2
- package/dist/{chunk-RT72C52I.mjs → chunk-6MS4CGEZ.mjs} +3 -2
- package/dist/{chunk-MSTM6W3Y.mjs → chunk-AB2JYY6A.mjs} +3 -3
- package/dist/{chunk-IV75IMEW.mjs → chunk-I5DCB7RU.mjs} +27 -9
- package/dist/chunk-NOW6XL5E.mjs +310 -0
- package/dist/{docker-QPCLWLYR.mjs → docker-OBUQX5ZI.mjs} +1 -1
- package/dist/entry-Bs17QEiq.d.mts +45 -0
- package/dist/entry-QNyd4S1s.d.ts +45 -0
- package/dist/index.d.mts +128 -37
- package/dist/index.d.ts +128 -37
- package/dist/index.js +251 -130
- package/dist/index.mjs +216 -123
- package/dist/lifecycle-workflow-steps.d.mts +2 -2
- package/dist/lifecycle-workflow-steps.d.ts +2 -2
- package/dist/lifecycle-workflow.d.mts +2 -2
- package/dist/lifecycle-workflow.d.ts +2 -2
- package/dist/{local-KJ3BSIFJ.mjs → local-4C3V4EFS.mjs} +1 -1
- package/dist/next/loader.js +3 -3
- package/dist/next/loader.mjs +1 -1
- package/dist/next.js +3 -3
- package/dist/next.mjs +1 -1
- package/dist/sandbox.d.mts +3 -3
- package/dist/sandbox.d.ts +3 -3
- package/dist/sandbox.js +15 -5
- package/dist/sandbox.mjs +3 -3
- package/dist/{steps-DShnXBLf.d.ts → steps-XA4wG8W3.d.ts} +4 -1
- package/dist/{steps-BIsP57pm.d.mts → steps-eTytqxQb.d.mts} +4 -1
- package/dist/storage.d.mts +2 -2
- package/dist/storage.d.ts +2 -2
- package/dist/storage.js +27 -9
- package/dist/storage.mjs +1 -1
- package/dist/{vercel-QZ6INPMV.mjs → vercel-6ORAC625.mjs} +1 -1
- package/package.json +2 -2
- package/dist/chunk-BFFNCESS.mjs +0 -302
- package/dist/entry-6HYg5qqg.d.mts +0 -36
- package/dist/entry-BrWOmEK2.d.ts +0 -36
package/dist/entry-BrWOmEK2.d.ts
DELETED
|
@@ -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 };
|