cyberdesk 2.1.6 → 2.1.7
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.
|
@@ -646,7 +646,10 @@ export type WorkflowChainCreate = {
|
|
|
646
646
|
shared_file_inputs?: Array<FileInput> | null;
|
|
647
647
|
keep_session_after_completion?: boolean | null;
|
|
648
648
|
machine_id?: string | null;
|
|
649
|
-
|
|
649
|
+
/**
|
|
650
|
+
* Pool IDs to filter available machines when starting a new session. Machine must belong to ALL of these pools (intersection). Ignored when machine_id is provided.
|
|
651
|
+
*/
|
|
652
|
+
pool_ids?: Array<string> | null;
|
|
650
653
|
session_id?: string | null;
|
|
651
654
|
};
|
|
652
655
|
/**
|