@todesktop/shared 7.69.0 → 7.72.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
  }
@@ -233,6 +233,7 @@ export interface IApp extends BaseApp {
233
233
  appPkgName?: string;
234
234
  appProtocol?: ISwitchableValue<string>;
235
235
  appType?: string;
236
+ appxConfig?: Partial<IAppBuilderLib["config"]["appx"]>;
236
237
  cssToInject?: string;
237
238
  customMacCodeSign?: CustomMacCodeSign;
238
239
  customDomain?: string;
@@ -271,6 +272,7 @@ export interface IApp extends BaseApp {
271
272
  runtimeEnvs?: string;
272
273
  secret?: string;
273
274
  shouldCreate32BitWindowsArtifacts?: boolean;
275
+ shouldCreateArm64WindowsArtifacts?: boolean;
274
276
  shouldCreateAppXFiles?: boolean;
275
277
  shouldCreateAppImages?: boolean;
276
278
  shouldCreateDebianPackages?: boolean;
@@ -287,6 +289,7 @@ export interface IApp extends BaseApp {
287
289
  shouldReuseRendererProcess?: boolean;
288
290
  snapStore?: {
289
291
  login?: string;
292
+ description?: string;
290
293
  };
291
294
  themeSource?: "system" | "light" | "dark";
292
295
  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.72.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
@@ -266,6 +266,7 @@ export interface IApp extends BaseApp {
266
266
  appPkgName?: string;
267
267
  appProtocol?: ISwitchableValue<string>;
268
268
  appType?: string;
269
+ appxConfig?: Partial<IAppBuilderLib["config"]["appx"]>;
269
270
  cssToInject?: string;
270
271
  customMacCodeSign?: CustomMacCodeSign;
271
272
  customDomain?: string;
@@ -302,6 +303,7 @@ export interface IApp extends BaseApp {
302
303
  runtimeEnvs?: string;
303
304
  secret?: string; // support old schema versions
304
305
  shouldCreate32BitWindowsArtifacts?: boolean;
306
+ shouldCreateArm64WindowsArtifacts?: boolean;
305
307
  shouldCreateAppXFiles?: boolean;
306
308
  shouldCreateAppImages?: boolean;
307
309
  shouldCreateDebianPackages?: boolean;
@@ -316,7 +318,7 @@ export interface IApp extends BaseApp {
316
318
  shouldLaunchAtStartupByDefault?: boolean;
317
319
  shouldOnlySendAbsolutelyNecessaryRequests?: boolean;
318
320
  shouldReuseRendererProcess?: boolean;
319
- snapStore?: { login?: string };
321
+ snapStore?: { login?: string; description?: string };
320
322
  themeSource?: "system" | "light" | "dark";
321
323
  themeSourceMac?: "system" | "light" | "dark";
322
324
  toggleVisibilityKeyboardShortcut?: ISwitchableValue<string>;