@todesktop/shared 7.184.24 → 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.
@@ -403,11 +403,15 @@ export interface DesktopifyApp2 {
403
403
  */
404
404
  shouldHaveFullAccessToElectronAPIs?: boolean;
405
405
  /**
406
- * Whether the app is using a valid code signing certificates.
406
+ * Whether the app is secure i.e. using valid code signing certificates.
407
407
  * Note: This value is not persisted in firestore, and is instead written locally at build time.
408
408
  * @default false
409
409
  */
410
- isUsingValidCustomCertificates?: boolean;
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.24",
3
+ "version": "7.184.26",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -533,11 +533,16 @@ export interface DesktopifyApp2 {
533
533
  shouldHaveFullAccessToElectronAPIs?: boolean;
534
534
 
535
535
  /**
536
- * Whether the app is using a valid code signing certificates.
536
+ * Whether the app is secure i.e. using valid code signing certificates.
537
537
  * Note: This value is not persisted in firestore, and is instead written locally at build time.
538
538
  * @default false
539
539
  */
540
- isUsingValidCustomCertificates?: boolean;
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 {