@daytonaio/sdk 0.154.0 → 0.155.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/package.json +3 -3
- package/src/Process.d.ts +1 -1
- package/src/Process.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daytonaio/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.155.0",
|
|
4
4
|
"description": "TypeScript SDK for Daytona",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"pathe": "^2.0.3",
|
|
44
44
|
"shell-quote": "^1.8.2",
|
|
45
45
|
"tar": "^7.5.11",
|
|
46
|
-
"@daytonaio/api-client": "0.
|
|
47
|
-
"@daytonaio/toolbox-api-client": "0.
|
|
46
|
+
"@daytonaio/api-client": "0.155.0",
|
|
47
|
+
"@daytonaio/toolbox-api-client": "0.155.0"
|
|
48
48
|
},
|
|
49
49
|
"packageManager": "yarn@4.6.0",
|
|
50
50
|
"type": "commonjs"
|
package/src/Process.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export declare class Process {
|
|
|
45
45
|
* @param {string} command - Shell command to execute
|
|
46
46
|
* @param {string} [cwd] - Working directory for command execution. If not specified, uses the sandbox working directory.
|
|
47
47
|
* @param {Record<string, string>} [env] - Environment variables to set for the command
|
|
48
|
-
* @param {number} [timeout] - Maximum time in seconds to wait for the command to complete.
|
|
48
|
+
* @param {number} [timeout] - Maximum time in seconds to wait for the command to complete.
|
|
49
49
|
* @returns {Promise<ExecuteResponse>} Command execution results containing:
|
|
50
50
|
* - exitCode: The command's exit status
|
|
51
51
|
* - result: Standard output from the command
|
package/src/Process.js
CHANGED
|
@@ -52,7 +52,7 @@ class Process {
|
|
|
52
52
|
* @param {string} command - Shell command to execute
|
|
53
53
|
* @param {string} [cwd] - Working directory for command execution. If not specified, uses the sandbox working directory.
|
|
54
54
|
* @param {Record<string, string>} [env] - Environment variables to set for the command
|
|
55
|
-
* @param {number} [timeout] - Maximum time in seconds to wait for the command to complete.
|
|
55
|
+
* @param {number} [timeout] - Maximum time in seconds to wait for the command to complete.
|
|
56
56
|
* @returns {Promise<ExecuteResponse>} Command execution results containing:
|
|
57
57
|
* - exitCode: The command's exit status
|
|
58
58
|
* - result: Standard output from the command
|