@todesktop/shared 7.188.59 → 7.188.61

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
@@ -264,5 +264,8 @@ export interface BaseApp extends Schemable {
264
264
  login?: string;
265
265
  description?: string;
266
266
  };
267
+ macUniversalInstallerConfig?: {
268
+ shouldPinToVersion?: boolean;
269
+ };
267
270
  }
268
271
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.59",
3
+ "version": "7.188.61",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -290,10 +290,12 @@ export interface BaseApp extends Schemable {
290
290
  shouldCreateNSISWebInstaller?: boolean;
291
291
  shouldCreateRPMPackages?: boolean;
292
292
  shouldCreateSnapFiles?: boolean;
293
-
294
293
  // artifact configs
295
294
  appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
296
295
  masConfig?: Partial<IAppBuilderLib['config']['mas']>;
297
296
  nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
298
297
  snapStore?: { login?: string; description?: string };
298
+ macUniversalInstallerConfig?: {
299
+ shouldPinToVersion?: boolean;
300
+ };
299
301
  }