@todesktop/shared 7.159.0 → 7.160.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.
@@ -104,7 +104,7 @@ export interface Build {
104
104
  standardUniversalDownloadUrl?: URL;
105
105
  startedAt: ISODate;
106
106
  status: BuildStatus;
107
- todesktopRuntimeVersionSpecified: SemanticVersion;
107
+ todesktopRuntimeVersionSpecified?: SemanticVersion;
108
108
  universalDownloadUrl?: URL;
109
109
  url?: URL;
110
110
  versionControlInfo?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.159.0",
3
+ "version": "7.160.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -145,7 +145,7 @@ export interface Build {
145
145
  standardUniversalDownloadUrl?: URL;
146
146
  startedAt: ISODate;
147
147
  status: BuildStatus;
148
- todesktopRuntimeVersionSpecified: SemanticVersion;
148
+ todesktopRuntimeVersionSpecified?: SemanticVersion;
149
149
  // TODO: total progress percentage?
150
150
  universalDownloadUrl?: URL;
151
151
  url?: URL;