cyberdesk 1.3.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,7 +80,10 @@ export type MouseClickRequest = {
|
|
|
80
80
|
x?: number | null;
|
|
81
81
|
y?: number | null;
|
|
82
82
|
button?: string;
|
|
83
|
-
|
|
83
|
+
/**
|
|
84
|
+
* None = full click, True = mouse down, False = mouse up
|
|
85
|
+
*/
|
|
86
|
+
down?: boolean | null;
|
|
84
87
|
};
|
|
85
88
|
export type MouseMoveRequest = {
|
|
86
89
|
x: number;
|
|
@@ -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;
|