@todesktop/shared 7.189.3 → 7.189.5
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 +2 -0
- package/package.json +1 -1
- package/src/desktopify.ts +2 -0
package/lib/desktopify.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ export interface PlatformBuild {
|
|
|
70
70
|
codeSignSkipReason?: CodeSignSkipReason;
|
|
71
71
|
desktopifyVersion?: SemanticVersion;
|
|
72
72
|
didCodeSign: boolean;
|
|
73
|
+
didUseCachedDependencies?: boolean;
|
|
73
74
|
downloadUrl?: URL;
|
|
74
75
|
electronVersionUsed?: SemanticVersion;
|
|
75
76
|
endedAt: ISODate;
|
|
@@ -148,6 +149,7 @@ export interface Build {
|
|
|
148
149
|
todesktopRuntimeVersionUsed?: SemanticVersion;
|
|
149
150
|
universalDownloadUrl?: URL;
|
|
150
151
|
url?: URL;
|
|
152
|
+
useCachedDependencies?: boolean;
|
|
151
153
|
versionControlInfo?: {
|
|
152
154
|
branchName: string;
|
|
153
155
|
commitDate: string;
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -106,6 +106,7 @@ export interface PlatformBuild {
|
|
|
106
106
|
codeSignSkipReason?: CodeSignSkipReason;
|
|
107
107
|
desktopifyVersion?: SemanticVersion;
|
|
108
108
|
didCodeSign: boolean;
|
|
109
|
+
didUseCachedDependencies?: boolean;
|
|
109
110
|
downloadUrl?: URL;
|
|
110
111
|
electronVersionUsed?: SemanticVersion;
|
|
111
112
|
endedAt: ISODate;
|
|
@@ -193,6 +194,7 @@ export interface Build {
|
|
|
193
194
|
// TODO: total progress percentage?
|
|
194
195
|
universalDownloadUrl?: URL;
|
|
195
196
|
url?: URL;
|
|
197
|
+
useCachedDependencies?: boolean;
|
|
196
198
|
versionControlInfo?: {
|
|
197
199
|
branchName: string;
|
|
198
200
|
commitDate: string;
|