@todesktop/shared 7.184.24 → 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.
- package/lib/desktopify2.d.ts +2 -2
- package/package.json +1 -1
- package/src/desktopify2.ts +2 -2
package/lib/desktopify2.d.ts
CHANGED
|
@@ -403,11 +403,11 @@ export interface DesktopifyApp2 {
|
|
|
403
403
|
*/
|
|
404
404
|
shouldHaveFullAccessToElectronAPIs?: boolean;
|
|
405
405
|
/**
|
|
406
|
-
* Whether the app is using
|
|
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
|
-
|
|
410
|
+
isSecure?: boolean;
|
|
411
411
|
}
|
|
412
412
|
export interface IApp2 extends BaseApp {
|
|
413
413
|
desktopApp: DesktopifyApp2;
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -533,11 +533,11 @@ export interface DesktopifyApp2 {
|
|
|
533
533
|
shouldHaveFullAccessToElectronAPIs?: boolean;
|
|
534
534
|
|
|
535
535
|
/**
|
|
536
|
-
* Whether the app is using
|
|
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
|
-
|
|
540
|
+
isSecure?: boolean;
|
|
541
541
|
}
|
|
542
542
|
|
|
543
543
|
export interface IApp2 extends BaseApp {
|