@todesktop/shared 7.188.5 → 7.188.6

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.
@@ -106,6 +106,7 @@ export interface Build {
106
106
  linux?: PlatformBuild;
107
107
  mac?: PlatformBuild;
108
108
  onBuildFinishedWebhook?: string;
109
+ projectConfig?: string;
109
110
  releasedAt?: ISODate;
110
111
  shouldCodeSign: boolean;
111
112
  shouldRelease: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.5",
3
+ "version": "7.188.6",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -146,6 +146,7 @@ export interface Build {
146
146
  linux?: PlatformBuild;
147
147
  mac?: PlatformBuild;
148
148
  onBuildFinishedWebhook?: string;
149
+ projectConfig?: string; // Stringified version of todesktop.json
149
150
  releasedAt?: ISODate;
150
151
  shouldCodeSign: boolean;
151
152
  shouldRelease: boolean;