@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.
@@ -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
- description: string;
152
- gzip: string;
153
- name: string;
154
- size: number;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.25",
3
+ "version": "7.188.27",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
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
- description: string;
198
- gzip: string;
199
- name: string;
200
- size: number;
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<