@tangle-network/sandbox 0.11.1-develop.20260718152243.786d70a → 0.11.1
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/README.md +16 -39
- package/dist/agent/index.d.ts +3 -3
- package/dist/{client-zbqfunVS.d.ts → client-DBioX_CL.d.ts} +2 -2
- package/dist/{client-BPKkPBc0.js → client-D_67csnK.js} +6 -14
- package/dist/core.d.ts +3 -3
- package/dist/core.js +2 -2
- package/dist/{index-Cy9eyvmJ.d.ts → index-Dj8LzvId.d.ts} +2 -2
- package/dist/index.d.ts +5 -5
- package/dist/index.js +6 -6
- package/dist/{runtime-api-fqaQ3CN2.js → runtime-api-kukaWPtF.js} +4 -4
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1 -1
- package/dist/{sandbox-Bv_ZM6OW.d.ts → sandbox-BRoxCvpS.d.ts} +22 -71
- package/dist/{sandbox-BfmGTfbd.js → sandbox-DaLPTCRA.js} +23 -105
- package/dist/session-gateway/index.d.ts +13 -82
- package/dist/session-gateway/index.js +144 -343
- package/dist/tangle/index.d.ts +1 -1
- package/dist/tangle/index.js +1 -1
- package/dist/{tangle-DuiNiJxp.js → tangle-DHOkbr5a.js} +3 -3
- package/dist/{types-C5sMDbeg.d.ts → types-D2C72ySk.d.ts} +26 -75
- package/package.json +1 -2
package/dist/tangle/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as TANGLE_JOBS_CONTRACT, c as AgentSandboxBlueprintAbi, d as SandboxCreateParamTypes, f as SandboxCreateResponseParamTypes, i as TANGLE_CHAIN_ID, l as ITangleJobsAbi, n as JOB_SANDBOX_CREATE, o as TANGLE_MAINNET_RPC, p as SandboxIdParamTypes, r as JOB_SANDBOX_DELETE, s as TangleSandboxClientConfig, t as TangleSandboxClient, u as JsonResponseParamTypes } from "../index-
|
|
1
|
+
import { a as TANGLE_JOBS_CONTRACT, c as AgentSandboxBlueprintAbi, d as SandboxCreateParamTypes, f as SandboxCreateResponseParamTypes, i as TANGLE_CHAIN_ID, l as ITangleJobsAbi, n as JOB_SANDBOX_CREATE, o as TANGLE_MAINNET_RPC, p as SandboxIdParamTypes, r as JOB_SANDBOX_DELETE, s as TangleSandboxClientConfig, t as TangleSandboxClient, u as JsonResponseParamTypes } from "../index-Dj8LzvId.js";
|
|
2
2
|
export { AgentSandboxBlueprintAbi, ITangleJobsAbi, JOB_SANDBOX_CREATE, JOB_SANDBOX_DELETE, JsonResponseParamTypes, SandboxCreateParamTypes, SandboxCreateResponseParamTypes, SandboxIdParamTypes, TANGLE_CHAIN_ID, TANGLE_JOBS_CONTRACT, TANGLE_MAINNET_RPC, TangleSandboxClient, TangleSandboxClientConfig };
|
package/dist/tangle/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as TANGLE_JOBS_CONTRACT, c as ITangleJobsAbi, d as SandboxCreateResponseParamTypes, f as SandboxIdParamTypes, i as TANGLE_CHAIN_ID, l as JsonResponseParamTypes, n as JOB_SANDBOX_CREATE, o as TANGLE_MAINNET_RPC, r as JOB_SANDBOX_DELETE, s as AgentSandboxBlueprintAbi, t as TangleSandboxClient, u as SandboxCreateParamTypes } from "../tangle-
|
|
1
|
+
import { a as TANGLE_JOBS_CONTRACT, c as ITangleJobsAbi, d as SandboxCreateResponseParamTypes, f as SandboxIdParamTypes, i as TANGLE_CHAIN_ID, l as JsonResponseParamTypes, n as JOB_SANDBOX_CREATE, o as TANGLE_MAINNET_RPC, r as JOB_SANDBOX_DELETE, s as AgentSandboxBlueprintAbi, t as TangleSandboxClient, u as SandboxCreateParamTypes } from "../tangle-DHOkbr5a.js";
|
|
2
2
|
export { AgentSandboxBlueprintAbi, ITangleJobsAbi, JOB_SANDBOX_CREATE, JOB_SANDBOX_DELETE, JsonResponseParamTypes, SandboxCreateParamTypes, SandboxCreateResponseParamTypes, SandboxIdParamTypes, TANGLE_CHAIN_ID, TANGLE_JOBS_CONTRACT, TANGLE_MAINNET_RPC, TangleSandboxClient };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { p as parseErrorResponse } from "./errors-Cbs78OlF.js";
|
|
2
|
-
import {
|
|
2
|
+
import { t as SandboxInstance } from "./sandbox-DaLPTCRA.js";
|
|
3
3
|
//#region src/tangle/abi.ts
|
|
4
4
|
/**
|
|
5
5
|
* Tangle Contract ABI Definitions
|
|
@@ -744,7 +744,7 @@ var TangleSandboxClient = class {
|
|
|
744
744
|
attestationNonce: attestationNonceFromOptions(createOptions)
|
|
745
745
|
};
|
|
746
746
|
this.sandboxes.set(sandboxId, entry);
|
|
747
|
-
return
|
|
747
|
+
return new SandboxInstance(this, sandboxInfoFromEntry(entry));
|
|
748
748
|
}
|
|
749
749
|
/**
|
|
750
750
|
* Get a sandbox by id. Rehydrates from the operator API when configured so
|
|
@@ -758,7 +758,7 @@ var TangleSandboxClient = class {
|
|
|
758
758
|
throw parseErrorResponse(response.status, body, void 0, response.headers);
|
|
759
759
|
}
|
|
760
760
|
const data = await response.json();
|
|
761
|
-
return
|
|
761
|
+
return new SandboxInstance(this, sandboxInfoFromEntry(sandboxEntryFromWire(id, data)));
|
|
762
762
|
}
|
|
763
763
|
/**
|
|
764
764
|
* Route interception for SandboxInstance lifecycle calls.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AgentProfile
|
|
1
|
+
import { AgentProfile, AgentProfileCapabilities, AgentProfileConfidential, AgentProfileConnection, AgentProfileFileMount, AgentProfileMcpServer, AgentProfileModelHints, AgentProfilePermissionValue, AgentProfilePrompt, AgentProfileResourceRef, AgentProfileResources, AgentProfileValidationIssue, AgentProfileValidationResult, AgentSubagentProfile, defineAgentProfile, defineGitHubResource, defineInlineResource, mergeAgentProfiles } from "@tangle-network/agent-interface";
|
|
2
2
|
|
|
3
3
|
//#region src/types.d.ts
|
|
4
4
|
type JsonValue = string | number | boolean | null | JsonValue[] | {
|
|
@@ -1003,10 +1003,10 @@ interface ExecResult {
|
|
|
1003
1003
|
* Options for executing a command.
|
|
1004
1004
|
*/
|
|
1005
1005
|
interface ExecOptions {
|
|
1006
|
-
/** Working directory for the command.
|
|
1007
|
-
*
|
|
1008
|
-
*
|
|
1009
|
-
*
|
|
1006
|
+
/** Working directory for the command. When `sessionId` is set the
|
|
1007
|
+
* runtime remaps well-known absolute sandbox paths to the task's
|
|
1008
|
+
* real workspace; without `sessionId`, absolute paths pass through
|
|
1009
|
+
* verbatim and may not resolve to the task's actual filesystem. */
|
|
1010
1010
|
cwd?: string;
|
|
1011
1011
|
/** Environment variables */
|
|
1012
1012
|
env?: Record<string, string>;
|
|
@@ -1843,7 +1843,7 @@ interface SentSessionMessage {
|
|
|
1843
1843
|
parts: unknown[];
|
|
1844
1844
|
}
|
|
1845
1845
|
/** Canonical portable profile attached to a task session. */
|
|
1846
|
-
type TaskSessionProfile = AgentProfile
|
|
1846
|
+
type TaskSessionProfile = AgentProfile & {
|
|
1847
1847
|
name: string;
|
|
1848
1848
|
};
|
|
1849
1849
|
/** Options for creating an isolated background task session. */
|
|
@@ -2081,24 +2081,21 @@ type TurnDriveResult = {
|
|
|
2081
2081
|
* capability tokens for browser-safe runtime access.
|
|
2082
2082
|
*/
|
|
2083
2083
|
type ScopedTokenScope = "session" | "session-runtime" | "project" | "read-only";
|
|
2084
|
-
|
|
2085
|
-
|
|
2084
|
+
/**
|
|
2085
|
+
* Options for `box.mintScopedToken()`.
|
|
2086
|
+
*/
|
|
2087
|
+
interface MintScopedTokenOptions {
|
|
2088
|
+
/** Scope to mint. `session` and `project` are for SessionGateway streams;
|
|
2089
|
+
* `session-runtime` permits typed files, messages, and terminals for one
|
|
2090
|
+
* session; `read-only` permits read-only runtime requests. */
|
|
2091
|
+
scope: ScopedTokenScope;
|
|
2092
|
+
/** Required when `scope` is `session` or `session-runtime`. */
|
|
2093
|
+
sessionId?: string;
|
|
2094
|
+
/** TTL in minutes. Default 5; clamped to [1, 15]. Browser-side
|
|
2095
|
+
* bearers must be short-lived; pair with `client.onTokenRefresh()`
|
|
2096
|
+
* for long-running consumers. */
|
|
2086
2097
|
ttlMinutes?: number;
|
|
2087
2098
|
}
|
|
2088
|
-
/** Options for `box.mintScopedToken()`, narrowed by consumer scope. */
|
|
2089
|
-
type MintScopedTokenOptions = (MintScopedTokenBase & {
|
|
2090
|
-
scope: "session"; /** Client-facing browser session ID. */
|
|
2091
|
-
sessionId: string; /** Actual runtime session ID used to filter the sandbox event stream. */
|
|
2092
|
-
runtimeSessionId: string;
|
|
2093
|
-
}) | (MintScopedTokenBase & {
|
|
2094
|
-
scope: "session-runtime";
|
|
2095
|
-
sessionId: string;
|
|
2096
|
-
runtimeSessionId?: never;
|
|
2097
|
-
}) | (MintScopedTokenBase & {
|
|
2098
|
-
scope: "project" | "read-only";
|
|
2099
|
-
sessionId?: never;
|
|
2100
|
-
runtimeSessionId?: never;
|
|
2101
|
-
});
|
|
2102
2099
|
/**
|
|
2103
2100
|
* Returned by `box.mintScopedToken()`. Use session/project tokens with
|
|
2104
2101
|
* `SessionGatewayClient`; use session-runtime/read-only tokens with
|
|
@@ -3380,7 +3377,7 @@ interface BackendConfig {
|
|
|
3380
3377
|
* Use a string for a named provider/backend profile, or an `AgentProfile`
|
|
3381
3378
|
* object for an inline provider-neutral profile definition.
|
|
3382
3379
|
*/
|
|
3383
|
-
profile?: string | AgentProfile
|
|
3380
|
+
profile?: string | AgentProfile;
|
|
3384
3381
|
/**
|
|
3385
3382
|
* Model configuration override.
|
|
3386
3383
|
*/
|
|
@@ -3636,24 +3633,19 @@ interface EgressPolicy {
|
|
|
3636
3633
|
/** Egress mode */
|
|
3637
3634
|
mode: "open" | "strict" | "blocked";
|
|
3638
3635
|
/**
|
|
3639
|
-
*
|
|
3640
|
-
*
|
|
3636
|
+
* Additional allowed domains in strict mode.
|
|
3637
|
+
* These are merged with the platform default allowlist.
|
|
3641
3638
|
* Ignored in `open` and `blocked` modes.
|
|
3642
3639
|
*/
|
|
3643
3640
|
allowDomains?: string[];
|
|
3644
|
-
/**
|
|
3645
|
-
* Include platform and credential-derived domains in strict mode.
|
|
3646
|
-
* Defaults to true. Set false when `allowDomains` must be the complete list.
|
|
3647
|
-
*/
|
|
3648
|
-
includeImplicitDomains?: boolean;
|
|
3649
3641
|
/**
|
|
3650
3642
|
* Denied domains. Only enforced when the proxy supports denylist transforms.
|
|
3651
|
-
* @deprecated
|
|
3643
|
+
* @deprecated Deferred — not supported by iron-proxy v0.41.
|
|
3652
3644
|
*/
|
|
3653
3645
|
denyDomains?: string[];
|
|
3654
3646
|
/**
|
|
3655
3647
|
* Allowed CIDR ranges. Only enforced when the proxy supports CIDR passthrough.
|
|
3656
|
-
* @deprecated
|
|
3648
|
+
* @deprecated Deferred — not supported by iron-proxy v0.41.
|
|
3657
3649
|
*/
|
|
3658
3650
|
allowCidrs?: string[];
|
|
3659
3651
|
}
|
|
@@ -4004,7 +3996,7 @@ interface BackendManager {
|
|
|
4004
3996
|
*
|
|
4005
3997
|
* Optional while backends adopt the public `AgentProfile` contract.
|
|
4006
3998
|
*/
|
|
4007
|
-
validateProfile?(profile: AgentProfile
|
|
3999
|
+
validateProfile?(profile: AgentProfile): Promise<AgentProfileValidationResult>;
|
|
4008
4000
|
/** Restart the backend agent */
|
|
4009
4001
|
restart(): Promise<void>;
|
|
4010
4002
|
}
|
|
@@ -4037,14 +4029,6 @@ interface ProcessSpawnOptions {
|
|
|
4037
4029
|
interface ExactProcessSpawnOptions extends ProcessSpawnOptions {
|
|
4038
4030
|
/** UTF-8 bytes written before stdin is closed. */
|
|
4039
4031
|
stdin?: string;
|
|
4040
|
-
/**
|
|
4041
|
-
* Whether to extend the sandbox runtime environment.
|
|
4042
|
-
* Set to `false` when every process input must be supplied explicitly.
|
|
4043
|
-
* The executable must then be absolute unless `env.PATH` is supplied.
|
|
4044
|
-
*
|
|
4045
|
-
* @default true
|
|
4046
|
-
*/
|
|
4047
|
-
inheritEnv?: boolean;
|
|
4048
4032
|
}
|
|
4049
4033
|
/**
|
|
4050
4034
|
* Options for running Python code.
|
|
@@ -4093,33 +4077,6 @@ interface ProcessInfo extends ProcessStatus {
|
|
|
4093
4077
|
/** Environment variables used */
|
|
4094
4078
|
env?: Record<string, string>;
|
|
4095
4079
|
}
|
|
4096
|
-
/** A development server started and tracked by the sandbox runtime. */
|
|
4097
|
-
interface DevServerInfo {
|
|
4098
|
-
/** Supervisor process ID. */
|
|
4099
|
-
pid: number;
|
|
4100
|
-
/** Detected project family, such as node-npm or rust-cargo. */
|
|
4101
|
-
family: string;
|
|
4102
|
-
/** Command managed by the runtime. */
|
|
4103
|
-
command: string;
|
|
4104
|
-
/** Canonical workspace root used for project detection. */
|
|
4105
|
-
workspaceRoot: string;
|
|
4106
|
-
/** When the managed process started. */
|
|
4107
|
-
startedAt: Date;
|
|
4108
|
-
/** True when this call started the process; false when it reused one. */
|
|
4109
|
-
startedNow: boolean;
|
|
4110
|
-
/** True when dependency installation ran before startup. */
|
|
4111
|
-
installRan: boolean;
|
|
4112
|
-
/** Time spent installing dependencies during this call. */
|
|
4113
|
-
installDurationMs: number;
|
|
4114
|
-
/** Assigned listening port, once the server is ready. */
|
|
4115
|
-
port?: number;
|
|
4116
|
-
}
|
|
4117
|
-
interface EnsureDevServerOptions {
|
|
4118
|
-
/** Agent session whose isolated workspace contains the project. */
|
|
4119
|
-
sessionId?: string;
|
|
4120
|
-
/** Project directory inside the selected workspace. Defaults to the workspace root. */
|
|
4121
|
-
cwd?: string;
|
|
4122
|
-
}
|
|
4123
4080
|
/**
|
|
4124
4081
|
* A log entry from process stdout/stderr.
|
|
4125
4082
|
*/
|
|
@@ -4266,12 +4223,6 @@ interface Process {
|
|
|
4266
4223
|
* ```
|
|
4267
4224
|
*/
|
|
4268
4225
|
interface ProcessManager {
|
|
4269
|
-
/**
|
|
4270
|
-
* Detect the workspace project and idempotently start its development server.
|
|
4271
|
-
* The runtime owns installation, process tracking, port assignment, and
|
|
4272
|
-
* stale-Vite compatibility handling.
|
|
4273
|
-
*/
|
|
4274
|
-
ensureDevServer(options?: EnsureDevServerOptions): Promise<DevServerInfo>;
|
|
4275
4226
|
/**
|
|
4276
4227
|
* Spawn a process without blocking.
|
|
4277
4228
|
* Returns immediately with a Process handle.
|
|
@@ -5050,4 +5001,4 @@ interface CodeExecutionOptions {
|
|
|
5050
5001
|
idempotencyKey?: string;
|
|
5051
5002
|
}
|
|
5052
5003
|
//#endregion
|
|
5053
|
-
export {
|
|
5004
|
+
export { DurablePlan as $, defineAgentProfile as $i, SandboxFleetDispatchFailureClass as $n, SessionBackendCredentials as $r, ListSandboxFleetOptions as $t, CodeResult as A, UpdateUserOptions as Ai, ReapExpiredSandboxFleetsResult as An, SandboxResources as Ar, GitConfig as At, CreateSandboxOptions as B, AgentProfileCapabilities as Bi, RolloutStartResult as Bn, SandboxTraceEvent as Br, GpuLeaseStatus as Bt, BatchTaskUsage as C, TeeAttestationReport as Ci, ProvisionStatus as Cn, SandboxInfo as Cr, FleetMachineId as Ct, CodeExecutionOptions as D, TokenRefreshHandler as Di, PublishPublicTemplateOptions as Dn, SandboxPortPreviewLink as Dr, GitAuth as Dt, ChunkedUploadResult as E, TeePublicKeyResponse as Ei, PublicTemplateVersionInfo as En, SandboxPortBinding as Er, GPU_LEASE_PROVIDER_NAMES as Et, CreateIntelligenceReportOptions as F, WaitForRolloutOptions as Fi, ResumeOptions as Fn, SandboxTerminalCreateOptions as Fr, GpuLeaseCommandResult as Ft, DispatchPromptOptions as G, AgentProfileModelHints as Gi, SSHCredentials as Gn, ScopedTokenScope as Gr, IntelligenceReport as Gt, CreateTaskSessionOptions as H, AgentProfileConnection as Hi, RolloutTurnPart as Hn, SandboxTraceOptions as Hr, HostAgentDriverConfig as Ht, CreateRequestOptions as I, WriteFileOptions as Ii, Rollout as In, SandboxTerminalInfo as Ir, GpuLeaseExecOptions as It, DownloadProgress as J, AgentProfileResourceRef as Ji, SandboxEnvironment as Jn, SecretInfo as Jr, IntelligenceReportSubjectType as Jt, DispatchedSession as K, AgentProfilePermissionValue as Ki, SandboxClientConfig as Kn, SearchMatch as Kr, IntelligenceReportBudget as Kt, CreateSandboxFleetOptions as L, WriteManyFile as Li, RolloutChildResult as Ln, SandboxTerminalManager as Lr, GpuLeaseExecResult as Lt, CommitTaskSessionOptions as M, UploadProgress as Mi, ReconcileSandboxFleetsResult as Mn, SandboxRuntimeProfile as Mr, GitStatus as Mt, CompletedTurnResult as N, UsageInfo as Ni, RenameOptions as Nn, SandboxRuntimeProfileList as Nr, GpuLease as Nt, CodeExecutionResult as O, ToolsConfig as Oi, PublishPublicTemplateVersionOptions as On, SandboxProfileSummary as Or, GitBranch as Ot, CreateGpuLeaseOptions as P, WaitForOptions as Pi, RestoreSnapshotOptions as Pn, SandboxStatus as Pr, GpuLeaseBilling as Pt, DriverType as Q, AgentSubagentProfile as Qi, SandboxFleetCostEstimate as Qn, SentSessionMessage as Qr, ListOptions as Qt, CreateSandboxFleetTokenOptions as R, WriteManyOptions as Ri, RolloutOptions as Rn, SandboxTerminalRequestOptions as Rr, GpuLeaseManager as Rt, BatchTaskResult as S, TeeAttestationOptions as Si, ProvisionResult as Sn, SandboxFleetWorkspaceSnapshotResult as Sr, FleetExecDispatchResult as St, ChunkedUploadOptions as T, TeePublicKey as Ti, PublicTemplateInfo as Tn, SandboxPermissionsConfig as Tr, FleetPromptDispatchResult as Tt, DeleteOptions as U, AgentProfileFileMount as Ui, RunCodeOptions as Un, SandboxUser as Ur, HostAgentRuntimeBackend as Ut, CreateSessionOptions as V, AgentProfileConfidential as Vi, RolloutStatus as Vn, SandboxTraceExport as Vr, GpuType as Vt, DirectoryPermission as W, AgentProfileMcpServer as Wi, SSHCommandDescriptor as Wn, ScopedToken as Wr, InstalledTool as Wt, DriverConfig as X, AgentProfileValidationIssue as Xi, SandboxFleetArtifact as Xn, SendSessionMessageOptions as Xr, JsonValue as Xt, DriveTurnOptions as Y, AgentProfileResources as Yi, SandboxEvent as Yn, SecretsManager as Yr, IntelligenceReportWindow as Yt, DriverInfo as Z, AgentProfileValidationResult as Zi, SandboxFleetArtifactSpec as Zn, SendSessionMessageRequest as Zr, ListMessagesOptions as Zt, BatchResult as _, TaskSessionChanges as _i, ProcessStatus as _n, SandboxFleetTraceOptions as _r, FleetDispatchCancelResult as _t, AttachSandboxFleetMachineOptions as a, SessionMessageInputPart as ai, NetworkManager as an, SandboxFleetMachine as ar, ExecResult as at, BatchSidecarGroup as b, TaskSessionInfo as bi, PromptResult as bn, SandboxFleetWorkspaceReconcileResult as br, FleetDispatchStreamOptions as bt, BackendInfo as c, SnapshotOptions as ci, PermissionsManager as cn, SandboxFleetMachineSpec as cr, FileReadBatchResult as ct, BackendType as d, StartupDiagnostics as di, Process as dn, SandboxFleetOperationsSummary as dr, FileRenameResult as dt, defineGitHubResource as ea, SessionEventStreamOptions as ei, ListSandboxOptions as en, SandboxFleetDispatchResponse as er, EgressManager as et, BatchBackend as f, StartupOperation as fi, ProcessInfo as fn, SandboxFleetPolicy as fr, FileSystem as ft, BatchOptions as g, TaskResult as gi, ProcessSpawnOptions as gn, SandboxFleetTraceExport as gr, FileWriteResult as gt, BatchEventDataMap as h, TaskOptions as hi, ProcessSignal as hn, SandboxFleetTraceEvent as hr, FileTreeResult as ht, AttachGpuLeaseOptions as i, SessionMessage as ii, NetworkConfig as in, SandboxFleetIntelligenceEnvelope as ir, ExecOptions as it, CodeResultPart as j, UploadOptions as ji, ReconcileSandboxFleetsOptions as jn, SandboxRuntimeHealth as jr, GitDiff as jt, CodeLanguage as k, TurnDriveResult as ki, ReapExpiredSandboxFleetsOptions as kn, SandboxResourceUsage as kr, GitCommit as kt, BackendManager as l, SnapshotResult as li, PreviewLinkInfo as ln, SandboxFleetManifest as lr, FileReadError as lt, BatchEvent as m, SubscriptionInfo as mi, ProcessManager as mn, SandboxFleetTraceBundle as mr, FileTreeOptions as mt, AccessPolicyRule as n, mergeAgentProfiles as na, SessionInfo as ni, MintScopedTokenOptions as nn, SandboxFleetDriverTimings as nr, EventStreamOptions as nt, BackendCapabilities as o, SessionStatus as oi, NonHostAgentDriverConfig as on, SandboxFleetMachineMeteredUsage as or, FileInfo as ot, BatchBackendStats as p, StorageConfig as pi, ProcessLogEntry as pn, SandboxFleetToken as pr, FileTreeFile as pt, DownloadOptions as q, AgentProfilePrompt as qi, SandboxConnection as qn, SearchOptions as qr, IntelligenceReportCompareTo as qt, AddUserOptions as r, SessionListOptions as ri, MkdirOptions as rn, SandboxFleetInfo as rr, ExactProcessSpawnOptions as rt, BackendConfig as s, SnapshotInfo as si, PermissionLevel as sn, SandboxFleetMachineRecord as sr, FileReadBatchOptions as st, AcceleratorKind as t, defineInlineResource as ta, SessionForkOptions as ti, McpServerConfig as tn, SandboxFleetDriverCapability as tr, EgressPolicy as tt, BackendStatus as u, SshKeysManager as ui, PreviewLinkManager as un, SandboxFleetManifestMachine as ur, FileReadResult as ut, BatchRunOptions as v, TaskSessionCommitResult as vi, PromptInputPart as vn, SandboxFleetUsage as vr, FleetDispatchResultBuffer as vt, BranchOptions as w, TeeAttestationResponse as wi, ProvisionStep as wn, SandboxIntelligenceEnvelope as wr, FleetPromptDispatchOptions as wt, BatchTask as x, TaskSessionProfile as xi, ProvisionEvent as xn, SandboxFleetWorkspaceRestoreResult as xr, FleetExecDispatchOptions as xt, BatchRunRequest as y, TaskSessionFileChange as yi, PromptOptions as yn, SandboxFleetWorkspace as yr, FleetDispatchResultBufferOptions as yt, CreateSandboxFleetWithCoordinatorOptions as z, AgentProfile as zi, RolloutScorer as zn, SandboxTraceBundle as zr, GpuLeaseProviderName as zt };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/sandbox",
|
|
3
|
-
"version": "0.11.1
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "Client SDK for the Tangle Sandbox platform - build AI agent applications with dev containers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -131,7 +131,6 @@
|
|
|
131
131
|
"build": "tsdown",
|
|
132
132
|
"build:clean": "tsdown",
|
|
133
133
|
"check-types": "tsc --noEmit",
|
|
134
|
-
"check-examples": "tsc -p tsconfig.examples.json && tsc -p tsconfig.worker-example.json",
|
|
135
134
|
"verify-dist": "bash scripts/verify-dist.sh",
|
|
136
135
|
"test": "vitest run",
|
|
137
136
|
"test:watch": "vitest",
|