@todesktop/shared 7.188.60 → 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 -1
- package/package.json +1 -1
- package/src/base.ts +3 -2
package/lib/base.d.ts
CHANGED
|
@@ -257,7 +257,6 @@ export interface BaseApp extends Schemable {
|
|
|
257
257
|
shouldCreateNSISWebInstaller?: boolean;
|
|
258
258
|
shouldCreateRPMPackages?: boolean;
|
|
259
259
|
shouldCreateSnapFiles?: boolean;
|
|
260
|
-
shouldMacInstallerBePinnedToSpecificVersion?: boolean;
|
|
261
260
|
appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
|
|
262
261
|
masConfig?: Partial<IAppBuilderLib['config']['mas']>;
|
|
263
262
|
nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
|
|
@@ -265,5 +264,8 @@ export interface BaseApp extends Schemable {
|
|
|
265
264
|
login?: string;
|
|
266
265
|
description?: string;
|
|
267
266
|
};
|
|
267
|
+
macUniversalInstallerConfig?: {
|
|
268
|
+
shouldPinToVersion?: boolean;
|
|
269
|
+
};
|
|
268
270
|
}
|
|
269
271
|
export {};
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -290,11 +290,12 @@ export interface BaseApp extends Schemable {
|
|
|
290
290
|
shouldCreateNSISWebInstaller?: boolean;
|
|
291
291
|
shouldCreateRPMPackages?: boolean;
|
|
292
292
|
shouldCreateSnapFiles?: boolean;
|
|
293
|
-
shouldMacInstallerBePinnedToSpecificVersion?: boolean;
|
|
294
|
-
|
|
295
293
|
// artifact configs
|
|
296
294
|
appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
|
|
297
295
|
masConfig?: Partial<IAppBuilderLib['config']['mas']>;
|
|
298
296
|
nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
|
|
299
297
|
snapStore?: { login?: string; description?: string };
|
|
298
|
+
macUniversalInstallerConfig?: {
|
|
299
|
+
shouldPinToVersion?: boolean;
|
|
300
|
+
};
|
|
300
301
|
}
|