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
- pool_id?: string | null;
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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "2.1.6",
3
+ "version": "2.1.7",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",