cyberdesk 1.4.0 → 1.5.0
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.
- package/dist/client/types.gen.d.ts +15 -3
- package/package.json +1 -1
|
@@ -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 = {
|
|
@@ -222,6 +225,12 @@ export type TrajectoryCreate = {
|
|
|
222
225
|
trajectory_data: Array<{
|
|
223
226
|
[key: string]: unknown;
|
|
224
227
|
}>;
|
|
228
|
+
/**
|
|
229
|
+
* Display dimensions when trajectory was recorded
|
|
230
|
+
*/
|
|
231
|
+
dimensions: {
|
|
232
|
+
[key: string]: number;
|
|
233
|
+
};
|
|
225
234
|
};
|
|
226
235
|
/**
|
|
227
236
|
* Trajectory response schema
|
|
@@ -231,6 +240,12 @@ export type TrajectoryResponse = {
|
|
|
231
240
|
trajectory_data: Array<{
|
|
232
241
|
[key: string]: unknown;
|
|
233
242
|
}>;
|
|
243
|
+
/**
|
|
244
|
+
* Display dimensions when trajectory was recorded
|
|
245
|
+
*/
|
|
246
|
+
dimensions: {
|
|
247
|
+
[key: string]: number;
|
|
248
|
+
};
|
|
234
249
|
id: string;
|
|
235
250
|
user_id: string;
|
|
236
251
|
created_at: string;
|
|
@@ -255,7 +270,6 @@ export type ValidationError = {
|
|
|
255
270
|
export type WorkflowCreate = {
|
|
256
271
|
name?: string | null;
|
|
257
272
|
main_prompt: string;
|
|
258
|
-
cleanup_prompt?: string | null;
|
|
259
273
|
};
|
|
260
274
|
/**
|
|
261
275
|
* Workflow response schema
|
|
@@ -263,7 +277,6 @@ export type WorkflowCreate = {
|
|
|
263
277
|
export type WorkflowResponse = {
|
|
264
278
|
name?: string | null;
|
|
265
279
|
main_prompt: string;
|
|
266
|
-
cleanup_prompt?: string | null;
|
|
267
280
|
id: string;
|
|
268
281
|
user_id: string;
|
|
269
282
|
old_versions?: Array<{
|
|
@@ -278,7 +291,6 @@ export type WorkflowResponse = {
|
|
|
278
291
|
export type WorkflowUpdate = {
|
|
279
292
|
name?: string | null;
|
|
280
293
|
main_prompt?: string | null;
|
|
281
|
-
cleanup_prompt?: string | null;
|
|
282
294
|
};
|
|
283
295
|
export type HealthCheckV1HealthGetData = {
|
|
284
296
|
body?: never;
|