@todesktop/shared 7.69.0 → 7.70.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.
@@ -39,6 +39,7 @@ export declare type DesktopifyAppTrayAction = DesktopifyAppTrayToggleMenuAction
39
39
  export interface DesktopifyAppTray {
40
40
  id: string;
41
41
  icon: string;
42
+ bundledIcon: string;
42
43
  rightClick: DesktopifyAppTrayAction;
43
44
  leftClick: DesktopifyAppTrayAction;
44
45
  }
@@ -287,6 +287,7 @@ export interface IApp extends BaseApp {
287
287
  shouldReuseRendererProcess?: boolean;
288
288
  snapStore?: {
289
289
  login?: string;
290
+ description?: string;
290
291
  };
291
292
  themeSource?: "system" | "light" | "dark";
292
293
  themeSourceMac?: "system" | "light" | "dark";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.69.0",
3
+ "version": "7.70.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -64,6 +64,7 @@ export type DesktopifyAppTrayAction =
64
64
  export interface DesktopifyAppTray {
65
65
  id: string;
66
66
  icon: string;
67
+ bundledIcon: string;
67
68
  rightClick: DesktopifyAppTrayAction;
68
69
  leftClick: DesktopifyAppTrayAction;
69
70
  }
package/src/toDesktop.ts CHANGED
@@ -316,7 +316,7 @@ export interface IApp extends BaseApp {
316
316
  shouldLaunchAtStartupByDefault?: boolean;
317
317
  shouldOnlySendAbsolutelyNecessaryRequests?: boolean;
318
318
  shouldReuseRendererProcess?: boolean;
319
- snapStore?: { login?: string };
319
+ snapStore?: { login?: string; description?: string };
320
320
  themeSource?: "system" | "light" | "dark";
321
321
  themeSourceMac?: "system" | "light" | "dark";
322
322
  toggleVisibilityKeyboardShortcut?: ISwitchableValue<string>;