@todesktop/shared 7.66.0 → 7.67.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.
@@ -106,14 +106,14 @@ export interface DesktopifyAppWindow {
106
106
  * Allows user to `Cmd+F` or `Edit>Find` to search for text on page
107
107
  */
108
108
  isFindInPageEnabled?: boolean;
109
- /**
110
- * Whether the window is in kiosk mode
111
- */
112
- kiosk?: boolean;
113
109
  /**
114
110
  * Inital visibility of window
115
111
  */
116
112
  visibility: "visible" | "hidden" | "show-when-contents-loaded";
113
+ /**
114
+ * MacOS option for whether the window should be visible on all workspaces
115
+ */
116
+ visibleOnAllWorkspaces: boolean;
117
117
  /**
118
118
  * Does the window have a minimum width. Default is `false`
119
119
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.66.0",
3
+ "version": "7.67.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -208,14 +208,14 @@ export interface DesktopifyAppWindow {
208
208
  * Allows user to `Cmd+F` or `Edit>Find` to search for text on page
209
209
  */
210
210
  isFindInPageEnabled?: boolean;
211
- /**
212
- * Whether the window is in kiosk mode
213
- */
214
- kiosk?: boolean;
215
211
  /**
216
212
  * Inital visibility of window
217
213
  */
218
214
  visibility: "visible" | "hidden" | "show-when-contents-loaded";
215
+ /**
216
+ * MacOS option for whether the window should be visible on all workspaces
217
+ */
218
+ visibleOnAllWorkspaces: boolean;
219
219
  /**
220
220
  * Does the window have a minimum width. Default is `false`
221
221
  */