@todesktop/shared 7.32.0 → 7.35.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/toDesktop.d.ts +3 -0
- package/package.json +1 -1
- package/src/toDesktop.ts +3 -0
package/lib/toDesktop.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ export interface IAppMeta {
|
|
|
123
123
|
mac?: {
|
|
124
124
|
additionalBinariesToSign?: FilePath[];
|
|
125
125
|
category?: string;
|
|
126
|
+
dmgBackground?: FilePath;
|
|
126
127
|
entitlements?: FilePath;
|
|
127
128
|
extendInfo?: IAppBuilderLib["config"]["mac"]["extendInfo"];
|
|
128
129
|
icon?: FilePath;
|
|
@@ -239,6 +240,8 @@ export interface IApp {
|
|
|
239
240
|
internalUrls?: ISwitchableValue<string>;
|
|
240
241
|
isContextMenuDisabled: boolean;
|
|
241
242
|
isDevToolsDisabled: boolean;
|
|
243
|
+
isFindInPageEnabled?: boolean;
|
|
244
|
+
isNativeWindowOpenDisabled?: boolean;
|
|
242
245
|
isSingleInstance?: boolean;
|
|
243
246
|
isWebSecurityDisabled?: boolean;
|
|
244
247
|
isBackgroundThrottlingPrevented?: boolean;
|
package/package.json
CHANGED
package/src/toDesktop.ts
CHANGED
|
@@ -146,6 +146,7 @@ export interface IAppMeta {
|
|
|
146
146
|
mac?: {
|
|
147
147
|
additionalBinariesToSign?: FilePath[];
|
|
148
148
|
category?: string;
|
|
149
|
+
dmgBackground?: FilePath;
|
|
149
150
|
entitlements?: FilePath;
|
|
150
151
|
extendInfo?: IAppBuilderLib["config"]["mac"]["extendInfo"];
|
|
151
152
|
icon?: FilePath;
|
|
@@ -271,6 +272,8 @@ export interface IApp {
|
|
|
271
272
|
internalUrls?: ISwitchableValue<string>;
|
|
272
273
|
isContextMenuDisabled: boolean;
|
|
273
274
|
isDevToolsDisabled: boolean;
|
|
275
|
+
isFindInPageEnabled?: boolean;
|
|
276
|
+
isNativeWindowOpenDisabled?: boolean;
|
|
274
277
|
isSingleInstance?: boolean;
|
|
275
278
|
isWebSecurityDisabled?: boolean;
|
|
276
279
|
isBackgroundThrottlingPrevented?: boolean;
|