@todesktop/shared 7.90.0 → 7.91.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.
@@ -12,6 +12,7 @@ export interface DesktopifyMenuItemConstructorOptions extends Omit<MenuItemConst
12
12
  role?: MenuItemConstructorOptions["role"] | todesktopRoles;
13
13
  useSystemLabel?: boolean;
14
14
  event?: string;
15
+ actionType?: "jsEvent" | "role";
15
16
  }
16
17
  /**
17
18
  * Toggle Window Tray Action
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.90.0",
3
+ "version": "7.91.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -29,6 +29,7 @@ export interface DesktopifyMenuItemConstructorOptions
29
29
  role?: MenuItemConstructorOptions["role"] | todesktopRoles;
30
30
  useSystemLabel?: boolean;
31
31
  event?: string;
32
+ actionType?: "jsEvent" | "role";
32
33
  }
33
34
 
34
35
  /**