@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.
- package/lib/desktopify2.d.ts +6 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +7 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -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
package/src/desktopify2.ts
CHANGED
|
@@ -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 {
|