agentuity-vscode 1.0.3 → 1.0.5

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 CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "agentuity-vscode",
3
3
  "displayName": "Agentuity VSCode Extension",
4
4
  "description": "Build, deploy, and manage AI agents with Agentuity",
5
- "version": "1.0.3",
5
+ "version": "1.0.5",
6
6
  "publisher": "agentuity",
7
7
  "license": "Apache-2.0",
8
8
  "repository": {
@@ -1658,6 +1658,14 @@ export interface SandboxInfo {
1658
1658
  identifier?: string;
1659
1659
  networkPort?: number;
1660
1660
  url?: string;
1661
+ timeout?: {
1662
+ idle?: string;
1663
+ execution?: string;
1664
+ };
1665
+ command?: {
1666
+ exec: string[];
1667
+ mode?: 'oneshot' | 'interactive';
1668
+ };
1661
1669
  }
1662
1670
 
1663
1671
  export interface SandboxCreateOptions {