@todesktop/shared 7.188.64 → 7.188.65

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
@@ -244,6 +244,7 @@ export interface BaseApp extends Schemable {
244
244
  };
245
245
  shouldCreate32BitWindowsArtifacts?: boolean;
246
246
  shouldCreateAppImages?: boolean;
247
+ shouldCreateAppleIntelArtifacts?: boolean;
247
248
  shouldCreateAppleSiliconAssets?: boolean;
248
249
  shouldCreateAppXFiles?: boolean;
249
250
  shouldCreateArm64LinuxArtifacts?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.64",
3
+ "version": "7.188.65",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -278,6 +278,8 @@ export interface BaseApp extends Schemable {
278
278
  // artifacts
279
279
  shouldCreate32BitWindowsArtifacts?: boolean;
280
280
  shouldCreateAppImages?: boolean;
281
+
282
+ shouldCreateAppleIntelArtifacts?: boolean;
281
283
  shouldCreateAppleSiliconAssets?: boolean;
282
284
  shouldCreateAppXFiles?: boolean;
283
285
  shouldCreateArm64LinuxArtifacts?: boolean;