@todesktop/shared 7.188.25 → 7.188.27
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 +8 -4
- package/package.json +1 -1
- package/src/desktopify.ts +8 -4
package/lib/desktopify.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ export interface Build {
|
|
|
123
123
|
staticAnalysis?: {
|
|
124
124
|
status: AnalysisStatus;
|
|
125
125
|
result?: string;
|
|
126
|
+
error?: string;
|
|
126
127
|
};
|
|
127
128
|
dependencyAnalysis?: {
|
|
128
129
|
status: AnalysisStatus;
|
|
@@ -148,10 +149,13 @@ export interface Build {
|
|
|
148
149
|
windows?: PlatformBuild;
|
|
149
150
|
}
|
|
150
151
|
export declare type BundlePhobiaItem = {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
152
|
+
result: {
|
|
153
|
+
description: string;
|
|
154
|
+
gzip: string;
|
|
155
|
+
name: string;
|
|
156
|
+
size: number;
|
|
157
|
+
} | null;
|
|
158
|
+
error: string | null;
|
|
155
159
|
};
|
|
156
160
|
export declare type ComputedBuildProperties = Pick<Build, 'desktopifyVersion' | 'electronVersionUsed' | 'endedAt' | 'errorMessage' | 'releasedAt' | 'standardUniversalDownloadUrl' | 'startedAt' | 'status' | 'universalDownloadUrl'>;
|
|
157
161
|
export declare enum ManifestCategory {
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -164,6 +164,7 @@ export interface Build {
|
|
|
164
164
|
status: AnalysisStatus;
|
|
165
165
|
// `result` is a stringified JSON object
|
|
166
166
|
result?: string;
|
|
167
|
+
error?: string;
|
|
167
168
|
};
|
|
168
169
|
dependencyAnalysis?: {
|
|
169
170
|
status: AnalysisStatus;
|
|
@@ -194,10 +195,13 @@ export interface Build {
|
|
|
194
195
|
}
|
|
195
196
|
|
|
196
197
|
export type BundlePhobiaItem = {
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
198
|
+
result: {
|
|
199
|
+
description: string;
|
|
200
|
+
gzip: string;
|
|
201
|
+
name: string;
|
|
202
|
+
size: number;
|
|
203
|
+
} | null;
|
|
204
|
+
error: string | null;
|
|
201
205
|
};
|
|
202
206
|
|
|
203
207
|
export type ComputedBuildProperties = Pick<
|