@todesktop/shared 7.48.0 → 7.49.0

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.
@@ -180,5 +180,6 @@ export interface DesktopifyApp {
180
180
  themeSourceMac?: "system" | "light" | "dark";
181
181
  crashReporter?: string;
182
182
  companyName?: string;
183
+ pollForAppUpdatesEveryXMinutes?: number;
183
184
  }
184
185
  export {};
@@ -300,6 +300,7 @@ export interface IApp {
300
300
  trayIcon?: string;
301
301
  url: string;
302
302
  windowOptions: IWindowOptions;
303
+ pollForAppUpdatesEveryXMinutes?: number;
303
304
  }
304
305
  export interface IUser {
305
306
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.48.0",
3
+ "version": "7.49.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -293,4 +293,5 @@ export interface DesktopifyApp {
293
293
  themeSourceMac?: "system" | "light" | "dark";
294
294
  crashReporter?: string;
295
295
  companyName?: string;
296
+ pollForAppUpdatesEveryXMinutes?: number;
296
297
  }
package/src/toDesktop.ts CHANGED
@@ -331,6 +331,7 @@ export interface IApp {
331
331
  trayIcon?: string;
332
332
  url: string;
333
333
  windowOptions: IWindowOptions;
334
+ pollForAppUpdatesEveryXMinutes?: number;
334
335
  }
335
336
 
336
337
  export interface IUser {