@todesktop/shared 7.188.34 → 7.188.36

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 CHANGED
@@ -144,6 +144,7 @@ export interface ToDesktopJson {
144
144
  entitlements?: FilePath;
145
145
  entitlementsInherit?: FilePath;
146
146
  provisioningProfile?: FilePath;
147
+ x64ArchFiles?: string;
147
148
  };
148
149
  nodeVersion?: string;
149
150
  npmVersion?: string;
@@ -109,6 +109,7 @@ export interface Build {
109
109
  linux?: PlatformBuild;
110
110
  mac?: PlatformBuild;
111
111
  onBuildFinishedWebhook?: string;
112
+ partiallyReleasedAt?: ISODate;
112
113
  projectConfig?: string;
113
114
  releasedAt?: ISODate;
114
115
  shouldCodeSign: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.34",
3
+ "version": "7.188.36",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -156,6 +156,7 @@ export interface ToDesktopJson {
156
156
  entitlements?: FilePath;
157
157
  entitlementsInherit?: FilePath;
158
158
  provisioningProfile?: FilePath;
159
+ x64ArchFiles?: string;
159
160
  };
160
161
  nodeVersion?: string;
161
162
  npmVersion?: string;
package/src/desktopify.ts CHANGED
@@ -149,6 +149,7 @@ export interface Build {
149
149
  linux?: PlatformBuild;
150
150
  mac?: PlatformBuild;
151
151
  onBuildFinishedWebhook?: string;
152
+ partiallyReleasedAt?: ISODate;
152
153
  projectConfig?: string; // Stringified version of todesktop.json
153
154
  releasedAt?: ISODate;
154
155
  shouldCodeSign: boolean;