@todesktop/shared 7.181.0 → 7.183.0
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/base.d.ts +1 -0
- package/lib/desktopify2.d.ts +5 -0
- package/package.json +1 -1
- package/src/base.ts +1 -0
- package/src/desktopify2.ts +6 -0
package/lib/base.d.ts
CHANGED
package/lib/desktopify2.d.ts
CHANGED
|
@@ -387,6 +387,11 @@ export interface DesktopifyApp2 {
|
|
|
387
387
|
* File assets that get bundled with the app and are available offline
|
|
388
388
|
*/
|
|
389
389
|
fileAssetDetailsList?: FileAssetDetails[];
|
|
390
|
+
/**
|
|
391
|
+
* Whether the app should have full access to Electron APIs
|
|
392
|
+
* @default false
|
|
393
|
+
*/
|
|
394
|
+
shouldHaveFullAccessToElectronAPIs?: boolean;
|
|
390
395
|
}
|
|
391
396
|
export interface IApp2 extends BaseApp {
|
|
392
397
|
desktopApp?: DesktopifyApp2;
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -512,6 +512,12 @@ export interface DesktopifyApp2 {
|
|
|
512
512
|
* File assets that get bundled with the app and are available offline
|
|
513
513
|
*/
|
|
514
514
|
fileAssetDetailsList?: FileAssetDetails[];
|
|
515
|
+
|
|
516
|
+
/**
|
|
517
|
+
* Whether the app should have full access to Electron APIs
|
|
518
|
+
* @default false
|
|
519
|
+
*/
|
|
520
|
+
shouldHaveFullAccessToElectronAPIs?: boolean;
|
|
515
521
|
}
|
|
516
522
|
|
|
517
523
|
export interface IApp2 extends BaseApp {
|