@todesktop/shared 7.184.25 → 7.184.26

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.
@@ -408,6 +408,10 @@ export interface DesktopifyApp2 {
408
408
  * @default false
409
409
  */
410
410
  isSecure?: boolean;
411
+ /**
412
+ * Prevents the window contents from being captured by other apps.
413
+ */
414
+ shouldProtectContent?: boolean;
411
415
  }
412
416
  export interface IApp2 extends BaseApp {
413
417
  desktopApp: DesktopifyApp2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.184.25",
3
+ "version": "7.184.26",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -538,6 +538,11 @@ export interface DesktopifyApp2 {
538
538
  * @default false
539
539
  */
540
540
  isSecure?: boolean;
541
+
542
+ /**
543
+ * Prevents the window contents from being captured by other apps.
544
+ */
545
+ shouldProtectContent?: boolean;
541
546
  }
542
547
 
543
548
  export interface IApp2 extends BaseApp {