cyberdesk 2.1.10 → 2.1.11
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 +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
|
@@ -129,6 +129,7 @@ export type MachineResponse = {
|
|
|
129
129
|
status: MachineStatus;
|
|
130
130
|
is_available: boolean;
|
|
131
131
|
reserved_session_id?: string | null;
|
|
132
|
+
linked_keepalive_machine_id?: string | null;
|
|
132
133
|
created_at: string;
|
|
133
134
|
last_seen: string;
|
|
134
135
|
pools?: Array<PoolResponse> | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -106,6 +106,10 @@ export declare function createCyberdeskClient(apiKey: string, baseUrl?: string):
|
|
|
106
106
|
*
|
|
107
107
|
* @param machineId - The ID of the machine to update
|
|
108
108
|
* @param data - Update data (name, status, availability, etc.)
|
|
109
|
+
*
|
|
110
|
+
* Note: linked_keepalive_machine_id is not writable; it is managed by
|
|
111
|
+
* Cyberdriver link events and will be set/cleared automatically by the
|
|
112
|
+
* platform.
|
|
109
113
|
* @returns Updated machine details
|
|
110
114
|
*/
|
|
111
115
|
update: (machineId: string, data: MachineUpdate) => Promise<{
|
package/dist/index.js
CHANGED
|
@@ -151,6 +151,10 @@ function createCyberdeskClient(apiKey, baseUrl) {
|
|
|
151
151
|
*
|
|
152
152
|
* @param machineId - The ID of the machine to update
|
|
153
153
|
* @param data - Update data (name, status, availability, etc.)
|
|
154
|
+
*
|
|
155
|
+
* Note: linked_keepalive_machine_id is not writable; it is managed by
|
|
156
|
+
* Cyberdriver link events and will be set/cleared automatically by the
|
|
157
|
+
* platform.
|
|
154
158
|
* @returns Updated machine details
|
|
155
159
|
*/
|
|
156
160
|
update: (machineId, data) => __awaiter(this, void 0, void 0, function* () {
|