@todesktop/shared 7.188.33 → 7.188.35

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/base.d.ts CHANGED
@@ -144,6 +144,7 @@ export interface ToDesktopJson {
144
144
  entitlements?: FilePath;
145
145
  entitlementsInherit?: FilePath;
146
146
  provisioningProfile?: FilePath;
147
+ x64ArchFiles?: string;
147
148
  };
148
149
  nodeVersion?: string;
149
150
  npmVersion?: string;
@@ -185,6 +185,7 @@ 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.33",
3
+ "version": "7.188.35",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -156,6 +156,7 @@ export interface ToDesktopJson {
156
156
  entitlements?: FilePath;
157
157
  entitlementsInherit?: FilePath;
158
158
  provisioningProfile?: FilePath;
159
+ x64ArchFiles?: string;
159
160
  };
160
161
  nodeVersion?: string;
161
162
  npmVersion?: string;
package/src/desktopify.ts CHANGED
@@ -262,6 +262,7 @@ 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;