@todesktop/shared 7.99.0 → 7.100.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
+ targetWindowId?: string;
15
16
  actionType?: "jsEvent" | "role";
16
17
  }
17
18
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.99.0",
3
+ "version": "7.100.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -34,6 +34,7 @@ export interface DesktopifyMenuItemConstructorOptions
34
34
  role?: MenuItemConstructorOptions["role"] | todesktopRoles;
35
35
  useSystemLabel?: boolean;
36
36
  event?: string;
37
+ targetWindowId?: string;
37
38
  actionType?: "jsEvent" | "role";
38
39
  }
39
40