cyberdesk 2.1.6 → 2.1.8
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
|
/**
|
|
@@ -1236,6 +1239,10 @@ export type ListRunsV1RunsGetData = {
|
|
|
1236
1239
|
* Filter by machine ID
|
|
1237
1240
|
*/
|
|
1238
1241
|
machine_id?: string | null;
|
|
1242
|
+
/**
|
|
1243
|
+
* Filter by session ID
|
|
1244
|
+
*/
|
|
1245
|
+
session_id?: string | null;
|
|
1239
1246
|
/**
|
|
1240
1247
|
* Filter by run status
|
|
1241
1248
|
*/
|