@todesktop/shared 7.184.23 → 7.184.25

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.
@@ -402,6 +402,12 @@ export interface DesktopifyApp2 {
402
402
  * @default false
403
403
  */
404
404
  shouldHaveFullAccessToElectronAPIs?: boolean;
405
+ /**
406
+ * Whether the app is secure i.e. using valid code signing certificates.
407
+ * Note: This value is not persisted in firestore, and is instead written locally at build time.
408
+ * @default false
409
+ */
410
+ isSecure?: boolean;
405
411
  }
406
412
  export interface IApp2 extends BaseApp {
407
413
  desktopApp: DesktopifyApp2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.184.23",
3
+ "version": "7.184.25",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -531,6 +531,13 @@ export interface DesktopifyApp2 {
531
531
  * @default false
532
532
  */
533
533
  shouldHaveFullAccessToElectronAPIs?: boolean;
534
+
535
+ /**
536
+ * Whether the app is secure i.e. using valid code signing certificates.
537
+ * Note: This value is not persisted in firestore, and is instead written locally at build time.
538
+ * @default false
539
+ */
540
+ isSecure?: boolean;
534
541
  }
535
542
 
536
543
  export interface IApp2 extends BaseApp {