@todesktop/shared 7.188.32 → 7.188.34

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.
@@ -185,9 +185,11 @@ export interface WindowsCustomManifest extends CustomManifest {
185
185
  }
186
186
  export interface SmokeTestProgress {
187
187
  abState?: SmokeTestState;
188
+ abSkipReason?: string;
188
189
  appLaunched?: boolean;
189
190
  appUpdated?: boolean;
190
191
  bcState?: SmokeTestState;
192
+ buildAId?: string;
191
193
  code?: string;
192
194
  message?: string;
193
195
  performance?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.32",
3
+ "version": "7.188.34",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -262,9 +262,11 @@ export interface WindowsCustomManifest extends CustomManifest {
262
262
 
263
263
  export interface SmokeTestProgress {
264
264
  abState?: SmokeTestState;
265
+ abSkipReason?: string;
265
266
  appLaunched?: boolean;
266
267
  appUpdated?: boolean;
267
268
  bcState?: SmokeTestState;
269
+ buildAId?: string;
268
270
  code?: string; // string currently, since it's still a subject to change
269
271
  message?: string;
270
272
  performance?: {