@todesktop/shared 7.188.44 → 7.188.45
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 +4 -0
- package/package.json +1 -1
- package/src/base.ts +6 -0
package/lib/base.d.ts
CHANGED
|
@@ -255,10 +255,14 @@ export interface BaseApp extends Schemable {
|
|
|
255
255
|
shouldCreateSnapFiles?: boolean;
|
|
256
256
|
appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
|
|
257
257
|
masConfig?: Partial<IAppBuilderLib['config']['mas']>;
|
|
258
|
+
msiConfig?: MSIConfig;
|
|
258
259
|
nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
|
|
259
260
|
snapStore?: {
|
|
260
261
|
login?: string;
|
|
261
262
|
description?: string;
|
|
262
263
|
};
|
|
263
264
|
}
|
|
265
|
+
interface MSIConfig extends Partial<IAppBuilderLib['config']['msi']> {
|
|
266
|
+
autoUpdatesEnabled?: boolean;
|
|
267
|
+
}
|
|
264
268
|
export {};
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -293,6 +293,12 @@ export interface BaseApp extends Schemable {
|
|
|
293
293
|
// artifact configs
|
|
294
294
|
appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
|
|
295
295
|
masConfig?: Partial<IAppBuilderLib['config']['mas']>;
|
|
296
|
+
msiConfig?: MSIConfig;
|
|
296
297
|
nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
|
|
297
298
|
snapStore?: { login?: string; description?: string };
|
|
298
299
|
}
|
|
300
|
+
|
|
301
|
+
interface MSIConfig extends Partial<IAppBuilderLib['config']['msi']> {
|
|
302
|
+
// whether or not auto-updates should be enabled for this artifacts
|
|
303
|
+
autoUpdatesEnabled?: boolean;
|
|
304
|
+
}
|