cyberdesk 1.4.0 → 1.4.1

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.
@@ -80,6 +80,9 @@ export type MouseClickRequest = {
80
80
  x?: number | null;
81
81
  y?: number | null;
82
82
  button?: string;
83
+ /**
84
+ * None = full click, True = mouse down, False = mouse up
85
+ */
83
86
  down?: boolean | null;
84
87
  };
85
88
  export type MouseMoveRequest = {
@@ -255,7 +258,6 @@ export type ValidationError = {
255
258
  export type WorkflowCreate = {
256
259
  name?: string | null;
257
260
  main_prompt: string;
258
- cleanup_prompt?: string | null;
259
261
  };
260
262
  /**
261
263
  * Workflow response schema
@@ -263,7 +265,6 @@ export type WorkflowCreate = {
263
265
  export type WorkflowResponse = {
264
266
  name?: string | null;
265
267
  main_prompt: string;
266
- cleanup_prompt?: string | null;
267
268
  id: string;
268
269
  user_id: string;
269
270
  old_versions?: Array<{
@@ -278,7 +279,6 @@ export type WorkflowResponse = {
278
279
  export type WorkflowUpdate = {
279
280
  name?: string | null;
280
281
  main_prompt?: string | null;
281
- cleanup_prompt?: string | null;
282
282
  };
283
283
  export type HealthCheckV1HealthGetData = {
284
284
  body?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",