@todesktop/shared 7.188.31 → 7.188.32

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.
@@ -190,7 +190,10 @@ export interface SmokeTestProgress {
190
190
  bcState?: SmokeTestState;
191
191
  code?: string;
192
192
  message?: string;
193
- performance?: SmokeTestPerformance;
193
+ performance?: {
194
+ ab?: SmokeTestPerformance;
195
+ bc: SmokeTestPerformance;
196
+ };
194
197
  progress: number;
195
198
  screenshot?: string;
196
199
  state: SmokeTestState;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.31",
3
+ "version": "7.188.32",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -267,7 +267,10 @@ export interface SmokeTestProgress {
267
267
  bcState?: SmokeTestState;
268
268
  code?: string; // string currently, since it's still a subject to change
269
269
  message?: string;
270
- performance?: SmokeTestPerformance;
270
+ performance?: {
271
+ ab?: SmokeTestPerformance;
272
+ bc: SmokeTestPerformance;
273
+ };
271
274
  progress: number;
272
275
  screenshot?: string;
273
276
  state: SmokeTestState;