cyberdesk 1.2.0 → 1.3.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;
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",