@todesktop/shared 7.44.0 → 7.47.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/desktopify.d.ts +1 -0
- package/lib/toDesktop.d.ts +1 -0
- package/package.json +3 -2
- package/src/desktopify.ts +1 -0
- package/src/toDesktop.ts +1 -0
package/lib/desktopify.d.ts
CHANGED
package/lib/toDesktop.d.ts
CHANGED
|
@@ -264,6 +264,7 @@ export interface IApp {
|
|
|
264
264
|
isWebSecurityDisabled?: boolean;
|
|
265
265
|
isBackgroundThrottlingPrevented?: boolean;
|
|
266
266
|
isGoogleOAuthExternal?: boolean;
|
|
267
|
+
isTitleStatic?: boolean;
|
|
267
268
|
shouldMakeSameDomainAnExternalLink?: boolean;
|
|
268
269
|
shouldUseRealUserAgent?: boolean;
|
|
269
270
|
extraBrowserWindowOptions?: string;
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@todesktop/shared",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.47.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
9
9
|
"build": "rm -f ./lib/* && tsc",
|
|
10
|
-
"prepublishOnly": "npm run build"
|
|
10
|
+
"prepublishOnly": "npm run build",
|
|
11
|
+
"bump": "npm version minor && git push && npm publish"
|
|
11
12
|
},
|
|
12
13
|
"author": "Dave Jeffery <dave@davejeffery.com>",
|
|
13
14
|
"license": "UNLICENSED",
|
package/src/desktopify.ts
CHANGED
package/src/toDesktop.ts
CHANGED
|
@@ -296,6 +296,7 @@ export interface IApp {
|
|
|
296
296
|
isWebSecurityDisabled?: boolean;
|
|
297
297
|
isBackgroundThrottlingPrevented?: boolean;
|
|
298
298
|
isGoogleOAuthExternal?: boolean;
|
|
299
|
+
isTitleStatic?: boolean;
|
|
299
300
|
shouldMakeSameDomainAnExternalLink?: boolean;
|
|
300
301
|
shouldUseRealUserAgent?: boolean;
|
|
301
302
|
extraBrowserWindowOptions?: string;
|