@todesktop/shared 7.188.63 → 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
@@ -135,6 +135,7 @@ export interface ToDesktopJson {
135
135
  category?: string;
136
136
  dmgBackground?: FilePath;
137
137
  entitlements?: FilePath;
138
+ entitlementsInherit?: FilePath;
138
139
  provisioningProfile?: FilePath;
139
140
  extendInfo?: IAppBuilderLib['config']['mac']['extendInfo'];
140
141
  icon?: FilePath;
@@ -243,6 +244,7 @@ export interface BaseApp extends Schemable {
243
244
  };
244
245
  shouldCreate32BitWindowsArtifacts?: boolean;
245
246
  shouldCreateAppImages?: boolean;
247
+ shouldCreateAppleIntelArtifacts?: boolean;
246
248
  shouldCreateAppleSiliconAssets?: boolean;
247
249
  shouldCreateAppXFiles?: boolean;
248
250
  shouldCreateArm64LinuxArtifacts?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.63",
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
@@ -149,6 +149,7 @@ export interface ToDesktopJson {
149
149
  category?: string;
150
150
  dmgBackground?: FilePath;
151
151
  entitlements?: FilePath;
152
+ entitlementsInherit?: FilePath;
152
153
  provisioningProfile?: FilePath;
153
154
  extendInfo?: IAppBuilderLib['config']['mac']['extendInfo'];
154
155
  icon?: FilePath;
@@ -277,6 +278,8 @@ export interface BaseApp extends Schemable {
277
278
  // artifacts
278
279
  shouldCreate32BitWindowsArtifacts?: boolean;
279
280
  shouldCreateAppImages?: boolean;
281
+
282
+ shouldCreateAppleIntelArtifacts?: boolean;
280
283
  shouldCreateAppleSiliconAssets?: boolean;
281
284
  shouldCreateAppXFiles?: boolean;
282
285
  shouldCreateArm64LinuxArtifacts?: boolean;