@todesktop/shared 7.188.46 → 7.188.47

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