@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 +3 -0
- package/package.json +1 -1
- package/src/base.ts +3 -1
package/lib/base.d.ts
CHANGED
package/package.json
CHANGED
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
|
}
|