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