@todesktop/shared 7.68.0 → 7.69.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.
@@ -239,6 +239,11 @@ export interface DesktopifyApp2 {
239
239
  * @unused
240
240
  */
241
241
  pollForAppUpdatesEveryXMinutes?: number;
242
+ /**
243
+ * An array of plugin modules. Can work with semver specificity
244
+ * e.g. ["@todesktop/plugin-foo", "@todesktop/plugin-baz@1.0.0"]
245
+ */
246
+ plugins?: string[];
242
247
  /**
243
248
  * The app's windows
244
249
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.68.0",
3
+ "version": "7.69.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -215,7 +215,7 @@ export interface DesktopifyAppWindow {
215
215
  /**
216
216
  * MacOS option for whether the window should be visible on all workspaces
217
217
  */
218
- visibleOnAllWorkspaces: boolean;
218
+ visibleOnAllWorkspaces: boolean;
219
219
  /**
220
220
  * Does the window have a minimum width. Default is `false`
221
221
  */
@@ -346,6 +346,11 @@ export interface DesktopifyApp2 {
346
346
  * @unused
347
347
  */
348
348
  pollForAppUpdatesEveryXMinutes?: number;
349
+ /**
350
+ * An array of plugin modules. Can work with semver specificity
351
+ * e.g. ["@todesktop/plugin-foo", "@todesktop/plugin-baz@1.0.0"]
352
+ */
353
+ plugins?: string[];
349
354
  /**
350
355
  * The app's windows
351
356
  */