cyberdesk 2.2.44 → 2.2.45
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 +4 -12
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -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,
|
|
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,
|
|
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
|