@todesktop/shared 7.43.0 → 7.46.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 +2 -1
- package/package.json +3 -2
- package/src/desktopify.ts +1 -0
- package/src/toDesktop.ts +2 -1
package/lib/desktopify.d.ts
CHANGED
package/lib/toDesktop.d.ts
CHANGED
|
@@ -184,6 +184,7 @@ export interface IAppMeta {
|
|
|
184
184
|
[WindowsEVOnboardingSteps.hasGeneratedCert]: boolean;
|
|
185
185
|
[WindowsEVOnboardingSteps.hasUploadedCert]: boolean;
|
|
186
186
|
};
|
|
187
|
+
forceVersionNumber?: string;
|
|
187
188
|
}
|
|
188
189
|
export interface IAppPublishedVersions {
|
|
189
190
|
electron?: string;
|
|
@@ -263,11 +264,11 @@ export interface IApp {
|
|
|
263
264
|
isWebSecurityDisabled?: boolean;
|
|
264
265
|
isBackgroundThrottlingPrevented?: boolean;
|
|
265
266
|
isGoogleOAuthExternal?: boolean;
|
|
267
|
+
isTitleStatic?: boolean;
|
|
266
268
|
shouldMakeSameDomainAnExternalLink?: boolean;
|
|
267
269
|
shouldUseRealUserAgent?: boolean;
|
|
268
270
|
extraBrowserWindowOptions?: string;
|
|
269
271
|
enablePushNotifications?: boolean;
|
|
270
|
-
forceVersionNumber?: string;
|
|
271
272
|
isTransitioningFromSquirrelWindows?: boolean;
|
|
272
273
|
jsToInject?: string;
|
|
273
274
|
menubarIcon?: string;
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@todesktop/shared",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.46.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
|
@@ -207,6 +207,7 @@ export interface IAppMeta {
|
|
|
207
207
|
[WindowsEVOnboardingSteps.hasGeneratedCert]: boolean;
|
|
208
208
|
[WindowsEVOnboardingSteps.hasUploadedCert]: boolean;
|
|
209
209
|
};
|
|
210
|
+
forceVersionNumber?: string;
|
|
210
211
|
}
|
|
211
212
|
|
|
212
213
|
export interface IAppPublishedVersions {
|
|
@@ -295,11 +296,11 @@ export interface IApp {
|
|
|
295
296
|
isWebSecurityDisabled?: boolean;
|
|
296
297
|
isBackgroundThrottlingPrevented?: boolean;
|
|
297
298
|
isGoogleOAuthExternal?: boolean;
|
|
299
|
+
isTitleStatic?: boolean;
|
|
298
300
|
shouldMakeSameDomainAnExternalLink?: boolean;
|
|
299
301
|
shouldUseRealUserAgent?: boolean;
|
|
300
302
|
extraBrowserWindowOptions?: string;
|
|
301
303
|
enablePushNotifications?: boolean;
|
|
302
|
-
forceVersionNumber?: string;
|
|
303
304
|
|
|
304
305
|
isTransitioningFromSquirrelWindows?: boolean;
|
|
305
306
|
jsToInject?: string;
|