@todesktop/shared 7.186.7 → 7.186.9
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/desktopify2.d.ts +1 -1
- package/package.json +1 -1
- package/src/desktopify.ts +1 -0
- package/src/desktopify2.ts +1 -1
package/lib/desktopify.d.ts
CHANGED
|
@@ -110,6 +110,7 @@ export interface Build {
|
|
|
110
110
|
startedAt: ISODate;
|
|
111
111
|
status: BuildStatus;
|
|
112
112
|
todesktopRuntimeVersionSpecified?: SemanticVersion;
|
|
113
|
+
todesktopRuntimeVersionUsed?: SemanticVersion;
|
|
113
114
|
universalDownloadUrl?: URL;
|
|
114
115
|
url?: URL;
|
|
115
116
|
versionControlInfo?: {
|
package/lib/desktopify2.d.ts
CHANGED
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -150,6 +150,7 @@ export interface Build {
|
|
|
150
150
|
startedAt: ISODate;
|
|
151
151
|
status: BuildStatus;
|
|
152
152
|
todesktopRuntimeVersionSpecified?: SemanticVersion;
|
|
153
|
+
todesktopRuntimeVersionUsed?: SemanticVersion;
|
|
153
154
|
// TODO: total progress percentage?
|
|
154
155
|
universalDownloadUrl?: URL;
|
|
155
156
|
url?: URL;
|
package/src/desktopify2.ts
CHANGED