@todesktop/shared 7.188.31 → 7.188.33
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 +5 -1
- package/package.json +1 -1
- package/src/desktopify.ts +5 -1
package/lib/desktopify.d.ts
CHANGED
|
@@ -188,9 +188,13 @@ export interface SmokeTestProgress {
|
|
|
188
188
|
appLaunched?: boolean;
|
|
189
189
|
appUpdated?: boolean;
|
|
190
190
|
bcState?: SmokeTestState;
|
|
191
|
+
buildAId?: string;
|
|
191
192
|
code?: string;
|
|
192
193
|
message?: string;
|
|
193
|
-
performance?:
|
|
194
|
+
performance?: {
|
|
195
|
+
ab?: SmokeTestPerformance;
|
|
196
|
+
bc: SmokeTestPerformance;
|
|
197
|
+
};
|
|
194
198
|
progress: number;
|
|
195
199
|
screenshot?: string;
|
|
196
200
|
state: SmokeTestState;
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -265,9 +265,13 @@ export interface SmokeTestProgress {
|
|
|
265
265
|
appLaunched?: boolean;
|
|
266
266
|
appUpdated?: boolean;
|
|
267
267
|
bcState?: SmokeTestState;
|
|
268
|
+
buildAId?: string;
|
|
268
269
|
code?: string; // string currently, since it's still a subject to change
|
|
269
270
|
message?: string;
|
|
270
|
-
performance?:
|
|
271
|
+
performance?: {
|
|
272
|
+
ab?: SmokeTestPerformance;
|
|
273
|
+
bc: SmokeTestPerformance;
|
|
274
|
+
};
|
|
271
275
|
progress: number;
|
|
272
276
|
screenshot?: string;
|
|
273
277
|
state: SmokeTestState;
|