@todesktop/shared 7.188.31 → 7.188.33

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.
@@ -188,9 +188,13 @@ export interface SmokeTestProgress {
188
188
  appLaunched?: boolean;
189
189
  appUpdated?: boolean;
190
190
  bcState?: SmokeTestState;
191
+ buildAId?: string;
191
192
  code?: string;
192
193
  message?: string;
193
- performance?: SmokeTestPerformance;
194
+ performance?: {
195
+ ab?: SmokeTestPerformance;
196
+ bc: SmokeTestPerformance;
197
+ };
194
198
  progress: number;
195
199
  screenshot?: string;
196
200
  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.33",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -265,9 +265,13 @@ export interface SmokeTestProgress {
265
265
  appLaunched?: boolean;
266
266
  appUpdated?: boolean;
267
267
  bcState?: SmokeTestState;
268
+ buildAId?: string;
268
269
  code?: string; // string currently, since it's still a subject to change
269
270
  message?: string;
270
- performance?: SmokeTestPerformance;
271
+ performance?: {
272
+ ab?: SmokeTestPerformance;
273
+ bc: SmokeTestPerformance;
274
+ };
271
275
  progress: number;
272
276
  screenshot?: string;
273
277
  state: SmokeTestState;