@todesktop/shared 7.188.27 → 7.188.29
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/lib/desktopify.d.ts +7 -1
- package/package.json +1 -1
- package/src/desktopify.ts +7 -1
package/lib/desktopify.d.ts
CHANGED
|
@@ -195,6 +195,12 @@ export interface SmokeTestProgress {
|
|
|
195
195
|
screenshot?: string;
|
|
196
196
|
state: SmokeTestState;
|
|
197
197
|
updatedAppHasNoMainErrors?: boolean;
|
|
198
|
+
vm: {
|
|
199
|
+
agentVersion: string;
|
|
200
|
+
cpu?: string;
|
|
201
|
+
image: string;
|
|
202
|
+
imageVersion: string;
|
|
203
|
+
};
|
|
198
204
|
}
|
|
199
205
|
export interface SmokeTestPerformance {
|
|
200
206
|
/**
|
|
@@ -210,7 +216,7 @@ export interface SmokeTestPerformance {
|
|
|
210
216
|
* is calculated from the process start.
|
|
211
217
|
* It measures for the first 10-12 seconds of the app execution.
|
|
212
218
|
*/
|
|
213
|
-
|
|
219
|
+
cpuUsageMainProcessMs: number;
|
|
214
220
|
/**
|
|
215
221
|
* Maximum memory consumption by the main + renders + any other helper
|
|
216
222
|
* processes
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -272,6 +272,12 @@ export interface SmokeTestProgress {
|
|
|
272
272
|
screenshot?: string;
|
|
273
273
|
state: SmokeTestState;
|
|
274
274
|
updatedAppHasNoMainErrors?: boolean;
|
|
275
|
+
vm: {
|
|
276
|
+
agentVersion: string;
|
|
277
|
+
cpu?: string; // win only
|
|
278
|
+
image: string;
|
|
279
|
+
imageVersion: string;
|
|
280
|
+
};
|
|
275
281
|
}
|
|
276
282
|
|
|
277
283
|
export interface SmokeTestPerformance {
|
|
@@ -288,7 +294,7 @@ export interface SmokeTestPerformance {
|
|
|
288
294
|
* is calculated from the process start.
|
|
289
295
|
* It measures for the first 10-12 seconds of the app execution.
|
|
290
296
|
*/
|
|
291
|
-
|
|
297
|
+
cpuUsageMainProcessMs: number;
|
|
292
298
|
/**
|
|
293
299
|
* Maximum memory consumption by the main + renders + any other helper
|
|
294
300
|
* processes
|