cyberdesk 1.2.0 → 1.4.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.
|
@@ -39,6 +39,7 @@ export type KeyboardTypeRequest = {
|
|
|
39
39
|
* Schema for creating a machine
|
|
40
40
|
*/
|
|
41
41
|
export type MachineCreate = {
|
|
42
|
+
name?: string | null;
|
|
42
43
|
fingerprint: string;
|
|
43
44
|
version?: string | null;
|
|
44
45
|
hostname?: string | null;
|
|
@@ -49,6 +50,7 @@ export type MachineCreate = {
|
|
|
49
50
|
* Machine response schema
|
|
50
51
|
*/
|
|
51
52
|
export type MachineResponse = {
|
|
53
|
+
name?: string | null;
|
|
52
54
|
fingerprint: string;
|
|
53
55
|
version?: string | null;
|
|
54
56
|
hostname?: string | null;
|
|
@@ -66,6 +68,7 @@ export type MachineStatus = 'connected' | 'disconnected' | 'error';
|
|
|
66
68
|
* Schema for updating a machine
|
|
67
69
|
*/
|
|
68
70
|
export type MachineUpdate = {
|
|
71
|
+
name?: string | null;
|
|
69
72
|
version?: string | null;
|
|
70
73
|
hostname?: string | null;
|
|
71
74
|
os_info?: string | null;
|
|
@@ -77,7 +80,7 @@ export type MouseClickRequest = {
|
|
|
77
80
|
x?: number | null;
|
|
78
81
|
y?: number | null;
|
|
79
82
|
button?: string;
|
|
80
|
-
down?: boolean;
|
|
83
|
+
down?: boolean | null;
|
|
81
84
|
};
|
|
82
85
|
export type MouseMoveRequest = {
|
|
83
86
|
x: number;
|
|
@@ -250,6 +253,7 @@ export type ValidationError = {
|
|
|
250
253
|
* Schema for creating a workflow
|
|
251
254
|
*/
|
|
252
255
|
export type WorkflowCreate = {
|
|
256
|
+
name?: string | null;
|
|
253
257
|
main_prompt: string;
|
|
254
258
|
cleanup_prompt?: string | null;
|
|
255
259
|
};
|
|
@@ -257,6 +261,7 @@ export type WorkflowCreate = {
|
|
|
257
261
|
* Workflow response schema
|
|
258
262
|
*/
|
|
259
263
|
export type WorkflowResponse = {
|
|
264
|
+
name?: string | null;
|
|
260
265
|
main_prompt: string;
|
|
261
266
|
cleanup_prompt?: string | null;
|
|
262
267
|
id: string;
|
|
@@ -271,6 +276,7 @@ export type WorkflowResponse = {
|
|
|
271
276
|
* Schema for updating a workflow
|
|
272
277
|
*/
|
|
273
278
|
export type WorkflowUpdate = {
|
|
279
|
+
name?: string | null;
|
|
274
280
|
main_prompt?: string | null;
|
|
275
281
|
cleanup_prompt?: string | null;
|
|
276
282
|
};
|