@todesktop/shared 7.188.14 → 7.188.16
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 -1
- package/lib/desktopify.js +1 -0
- package/lib/toDesktop.d.ts +1 -0
- package/package.json +1 -1
- package/src/desktopify.ts +1 -0
- package/src/toDesktop.ts +1 -0
package/lib/desktopify.d.ts
CHANGED
|
@@ -37,7 +37,8 @@ export declare enum AnalysisStatus {
|
|
|
37
37
|
downloading = "downloading",
|
|
38
38
|
extracting = "extracting",
|
|
39
39
|
analyzing = "analyzing",
|
|
40
|
-
done = "done"
|
|
40
|
+
done = "done",
|
|
41
|
+
error = "error"
|
|
41
42
|
}
|
|
42
43
|
export declare type Arch = 'ia32' | 'x64' | 'arm64' | 'universal';
|
|
43
44
|
export declare type MacArch = 'x64' | 'arm64' | 'universal';
|
package/lib/desktopify.js
CHANGED
|
@@ -30,6 +30,7 @@ var AnalysisStatus;
|
|
|
30
30
|
AnalysisStatus["extracting"] = "extracting";
|
|
31
31
|
AnalysisStatus["analyzing"] = "analyzing";
|
|
32
32
|
AnalysisStatus["done"] = "done";
|
|
33
|
+
AnalysisStatus["error"] = "error";
|
|
33
34
|
})(AnalysisStatus = exports.AnalysisStatus || (exports.AnalysisStatus = {}));
|
|
34
35
|
var ManifestCategory;
|
|
35
36
|
(function (ManifestCategory) {
|
package/lib/toDesktop.d.ts
CHANGED
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED