@todesktop/shared 7.188.26 → 7.188.28
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 +13 -4
- package/package.json +1 -1
- package/src/desktopify.ts +13 -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 {
|
|
@@ -192,6 +195,12 @@ export interface SmokeTestProgress {
|
|
|
192
195
|
screenshot?: string;
|
|
193
196
|
state: SmokeTestState;
|
|
194
197
|
updatedAppHasNoMainErrors?: boolean;
|
|
198
|
+
vm: {
|
|
199
|
+
agentVersion: string;
|
|
200
|
+
cpu?: string;
|
|
201
|
+
image: string;
|
|
202
|
+
imageVersion: string;
|
|
203
|
+
};
|
|
195
204
|
}
|
|
196
205
|
export interface SmokeTestPerformance {
|
|
197
206
|
/**
|
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<
|
|
@@ -269,6 +272,12 @@ export interface SmokeTestProgress {
|
|
|
269
272
|
screenshot?: string;
|
|
270
273
|
state: SmokeTestState;
|
|
271
274
|
updatedAppHasNoMainErrors?: boolean;
|
|
275
|
+
vm: {
|
|
276
|
+
agentVersion: string;
|
|
277
|
+
cpu?: string; // win only
|
|
278
|
+
image: string;
|
|
279
|
+
imageVersion: string;
|
|
280
|
+
};
|
|
272
281
|
}
|
|
273
282
|
|
|
274
283
|
export interface SmokeTestPerformance {
|