cyberdesk 2.1.17 → 2.1.18
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.
|
@@ -352,6 +352,10 @@ export type PowerShellExecRequest = {
|
|
|
352
352
|
* Session ID to use
|
|
353
353
|
*/
|
|
354
354
|
session_id?: string | null;
|
|
355
|
+
/**
|
|
356
|
+
* Maximum time in seconds to wait for command completion before continuing. The command will continue running in the background after timeout (default: 30.0)
|
|
357
|
+
*/
|
|
358
|
+
timeout?: number | null;
|
|
355
359
|
};
|
|
356
360
|
export type PowerShellSessionRequest = {
|
|
357
361
|
/**
|