agentuity-vscode 0.1.15 → 0.1.16
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/package.json +1 -1
- package/src/core/cliClient.ts +10 -0
package/package.json
CHANGED
package/src/core/cliClient.ts
CHANGED
|
@@ -1303,13 +1303,23 @@ export interface SandboxEnvResult {
|
|
|
1303
1303
|
}
|
|
1304
1304
|
|
|
1305
1305
|
// Sandbox runtime types
|
|
1306
|
+
export interface SandboxRuntimeRequirements {
|
|
1307
|
+
memory?: string;
|
|
1308
|
+
cpu?: string;
|
|
1309
|
+
disk?: string;
|
|
1310
|
+
networkEnabled: boolean;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1306
1313
|
export interface SandboxRuntime {
|
|
1307
1314
|
id: string;
|
|
1308
1315
|
name: string;
|
|
1309
1316
|
description?: string;
|
|
1310
1317
|
iconUrl?: string;
|
|
1318
|
+
brandColor?: string;
|
|
1311
1319
|
url?: string;
|
|
1312
1320
|
tags?: string[];
|
|
1321
|
+
requirements?: SandboxRuntimeRequirements;
|
|
1322
|
+
readme?: string;
|
|
1313
1323
|
}
|
|
1314
1324
|
|
|
1315
1325
|
export interface SandboxRuntimeListParams {
|