@todesktop/shared 7.186.11 → 7.186.13
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/desktopify2.d.ts +1 -2
- package/package.json +1 -1
- package/src/desktopify2.ts +1 -2
package/lib/desktopify2.d.ts
CHANGED
|
@@ -212,7 +212,6 @@ export interface DesktopifyAppWindow {
|
|
|
212
212
|
export declare type AutoUpdateConfiguration = {
|
|
213
213
|
autoUpdater: boolean;
|
|
214
214
|
shouldAutoCheckOnLaunch: boolean;
|
|
215
|
-
simulateLocalAutoUpdates: boolean;
|
|
216
215
|
shouldAutoCheckInterval: boolean;
|
|
217
216
|
autoCheckIntervalMins: number;
|
|
218
217
|
updateReadyAction: {
|
|
@@ -237,7 +236,7 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
|
|
|
237
236
|
/**
|
|
238
237
|
* Configure auto updates
|
|
239
238
|
*/
|
|
240
|
-
autoUpdates
|
|
239
|
+
autoUpdates: AutoUpdateConfiguration;
|
|
241
240
|
/**
|
|
242
241
|
* App identifier
|
|
243
242
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -342,7 +342,6 @@ export interface DesktopifyAppWindow {
|
|
|
342
342
|
export type AutoUpdateConfiguration = {
|
|
343
343
|
autoUpdater: boolean;
|
|
344
344
|
shouldAutoCheckOnLaunch: boolean;
|
|
345
|
-
simulateLocalAutoUpdates: boolean;
|
|
346
345
|
shouldAutoCheckInterval: boolean;
|
|
347
346
|
autoCheckIntervalMins: number;
|
|
348
347
|
updateReadyAction: {
|
|
@@ -368,7 +367,7 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
|
|
|
368
367
|
/**
|
|
369
368
|
* Configure auto updates
|
|
370
369
|
*/
|
|
371
|
-
autoUpdates
|
|
370
|
+
autoUpdates: AutoUpdateConfiguration;
|
|
372
371
|
|
|
373
372
|
/**
|
|
374
373
|
* App identifier
|