@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 +1 -0
- package/package.json +1 -1
- package/src/base.ts +2 -0
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
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;
|