@todesktop/shared 7.188.27 → 7.188.28
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 +6 -0
- package/package.json +1 -1
- package/src/desktopify.ts +6 -0
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
|
/**
|
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 {
|