cyberdesk 2.2.44 → 2.2.46

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.
@@ -312,10 +312,6 @@ export type MachineCreate = {
312
312
  * Name
313
313
  */
314
314
  name?: string | null;
315
- /**
316
- * Fingerprint
317
- */
318
- fingerprint: string;
319
315
  /**
320
316
  * Version
321
317
  */
@@ -344,6 +340,10 @@ export type MachineCreate = {
344
340
  machine_sensitive_parameters?: {
345
341
  [key: string]: string;
346
342
  } | null;
343
+ /**
344
+ * Fingerprint
345
+ */
346
+ fingerprint: string;
347
347
  /**
348
348
  * Unkey Key Id
349
349
  */
@@ -410,10 +410,6 @@ export type MachineResponse = {
410
410
  * Name
411
411
  */
412
412
  name?: string | null;
413
- /**
414
- * Fingerprint
415
- */
416
- fingerprint: string;
417
413
  /**
418
414
  * Version
419
415
  */
@@ -512,10 +508,6 @@ export type MachineResponseWithIncludes = {
512
508
  * Name
513
509
  */
514
510
  name?: string | null;
515
- /**
516
- * Fingerprint
517
- */
518
- fingerprint: string;
519
511
  /**
520
512
  * Unkey Key Id
521
513
  */
package/dist/index.d.ts CHANGED
@@ -176,7 +176,7 @@ export declare function createCyberdeskClient(apiKey: string, baseUrl?: string,
176
176
  * @param params.include - Optional list of related resources to include. Available: ["pools"].
177
177
  * Related resources are returned in the `included` array following the JSON:API pattern.
178
178
  * @returns Machine details including:
179
- * - Basic info: id, name, status, fingerprint, etc.
179
+ * - Basic info: id, name, status, version, hostname, etc.
180
180
  * - machine_parameters: Dict of desktop parameters (if configured)
181
181
  * - machine_sensitive_parameters: Dict of sensitive parameter aliases (if configured)
182
182
  * - physical_server_id: Fly machine ID currently hosting the WebSocket connection
package/dist/index.js CHANGED
@@ -331,7 +331,7 @@ function createCyberdeskClient(apiKey, baseUrl, options) {
331
331
  * @param params.include - Optional list of related resources to include. Available: ["pools"].
332
332
  * Related resources are returned in the `included` array following the JSON:API pattern.
333
333
  * @returns Machine details including:
334
- * - Basic info: id, name, status, fingerprint, etc.
334
+ * - Basic info: id, name, status, version, hostname, etc.
335
335
  * - machine_parameters: Dict of desktop parameters (if configured)
336
336
  * - machine_sensitive_parameters: Dict of sensitive parameter aliases (if configured)
337
337
  * - physical_server_id: Fly machine ID currently hosting the WebSocket connection
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "2.2.44",
3
+ "version": "2.2.46",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -40,6 +40,7 @@
40
40
  "dotenv": "^16.0.0",
41
41
  "svix": "^1.0.0",
42
42
  "typescript": "^5.0.0",
43
+ "vite": "^8.0.5",
43
44
  "vitest": "^4.1.0"
44
45
  }
45
46
  }