@todesktop/shared 7.186.8 → 7.186.10
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 +2 -1
- package/package.json +1 -1
- package/src/desktopify2.ts +2 -1
package/lib/desktopify2.d.ts
CHANGED
|
@@ -140,7 +140,7 @@ export interface DesktopifyAppWindow {
|
|
|
140
140
|
/**
|
|
141
141
|
* The type of window
|
|
142
142
|
*/
|
|
143
|
-
type: 'menubar' | 'app' | 'panel';
|
|
143
|
+
type: 'menubar' | 'app' | 'panel' | 'desktop';
|
|
144
144
|
/**
|
|
145
145
|
* Keyboard shortcut to toggle window visibility
|
|
146
146
|
*/
|
|
@@ -213,6 +213,7 @@ export declare type AutoUpdateConfiguration = {
|
|
|
213
213
|
autoUpdater: boolean;
|
|
214
214
|
shouldAutoCheckOnLaunch: boolean;
|
|
215
215
|
simulateLocalAutoUpdates: boolean;
|
|
216
|
+
shouldAutoCheckInterval: boolean;
|
|
216
217
|
autoCheckIntervalMins: number;
|
|
217
218
|
updateReadyAction: {
|
|
218
219
|
showInstallAndRestartPrompt: {
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -265,7 +265,7 @@ export interface DesktopifyAppWindow {
|
|
|
265
265
|
/**
|
|
266
266
|
* The type of window
|
|
267
267
|
*/
|
|
268
|
-
type: 'menubar' | 'app' | 'panel';
|
|
268
|
+
type: 'menubar' | 'app' | 'panel' | 'desktop';
|
|
269
269
|
/**
|
|
270
270
|
* Keyboard shortcut to toggle window visibility
|
|
271
271
|
*/
|
|
@@ -343,6 +343,7 @@ export type AutoUpdateConfiguration = {
|
|
|
343
343
|
autoUpdater: boolean;
|
|
344
344
|
shouldAutoCheckOnLaunch: boolean;
|
|
345
345
|
simulateLocalAutoUpdates: boolean;
|
|
346
|
+
shouldAutoCheckInterval: boolean;
|
|
346
347
|
autoCheckIntervalMins: number;
|
|
347
348
|
updateReadyAction: {
|
|
348
349
|
showInstallAndRestartPrompt: {
|