@todesktop/shared 7.188.59 → 7.188.60

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
@@ -257,6 +257,7 @@ export interface BaseApp extends Schemable {
257
257
  shouldCreateNSISWebInstaller?: boolean;
258
258
  shouldCreateRPMPackages?: boolean;
259
259
  shouldCreateSnapFiles?: boolean;
260
+ shouldMacInstallerBePinnedToSpecificVersion?: boolean;
260
261
  appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
261
262
  masConfig?: Partial<IAppBuilderLib['config']['mas']>;
262
263
  nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.59",
3
+ "version": "7.188.60",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -290,6 +290,7 @@ export interface BaseApp extends Schemable {
290
290
  shouldCreateNSISWebInstaller?: boolean;
291
291
  shouldCreateRPMPackages?: boolean;
292
292
  shouldCreateSnapFiles?: boolean;
293
+ shouldMacInstallerBePinnedToSpecificVersion?: boolean;
293
294
 
294
295
  // artifact configs
295
296
  appxConfig?: Partial<IAppBuilderLib['config']['appx']>;