@todesktop/shared 7.188.26 → 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 +7 -4
- package/package.json +1 -1
- package/src/desktopify.ts +7 -4
package/lib/desktopify.d.ts
CHANGED
|
@@ -149,10 +149,13 @@ export interface Build {
|
|
|
149
149
|
windows?: PlatformBuild;
|
|
150
150
|
}
|
|
151
151
|
export declare type BundlePhobiaItem = {
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
152
|
+
result: {
|
|
153
|
+
description: string;
|
|
154
|
+
gzip: string;
|
|
155
|
+
name: string;
|
|
156
|
+
size: number;
|
|
157
|
+
} | null;
|
|
158
|
+
error: string | null;
|
|
156
159
|
};
|
|
157
160
|
export declare type ComputedBuildProperties = Pick<Build, 'desktopifyVersion' | 'electronVersionUsed' | 'endedAt' | 'errorMessage' | 'releasedAt' | 'standardUniversalDownloadUrl' | 'startedAt' | 'status' | 'universalDownloadUrl'>;
|
|
158
161
|
export declare enum ManifestCategory {
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -195,10 +195,13 @@ export interface Build {
|
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
export type BundlePhobiaItem = {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
198
|
+
result: {
|
|
199
|
+
description: string;
|
|
200
|
+
gzip: string;
|
|
201
|
+
name: string;
|
|
202
|
+
size: number;
|
|
203
|
+
} | null;
|
|
204
|
+
error: string | null;
|
|
202
205
|
};
|
|
203
206
|
|
|
204
207
|
export type ComputedBuildProperties = Pick<
|