@todesktop/shared 7.188.32 → 7.188.34
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 +2 -0
- package/package.json +1 -1
- package/src/desktopify.ts +2 -0
package/lib/desktopify.d.ts
CHANGED
|
@@ -185,9 +185,11 @@ export interface WindowsCustomManifest extends CustomManifest {
|
|
|
185
185
|
}
|
|
186
186
|
export interface SmokeTestProgress {
|
|
187
187
|
abState?: SmokeTestState;
|
|
188
|
+
abSkipReason?: string;
|
|
188
189
|
appLaunched?: boolean;
|
|
189
190
|
appUpdated?: boolean;
|
|
190
191
|
bcState?: SmokeTestState;
|
|
192
|
+
buildAId?: string;
|
|
191
193
|
code?: string;
|
|
192
194
|
message?: string;
|
|
193
195
|
performance?: {
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -262,9 +262,11 @@ export interface WindowsCustomManifest extends CustomManifest {
|
|
|
262
262
|
|
|
263
263
|
export interface SmokeTestProgress {
|
|
264
264
|
abState?: SmokeTestState;
|
|
265
|
+
abSkipReason?: string;
|
|
265
266
|
appLaunched?: boolean;
|
|
266
267
|
appUpdated?: boolean;
|
|
267
268
|
bcState?: SmokeTestState;
|
|
269
|
+
buildAId?: string;
|
|
268
270
|
code?: string; // string currently, since it's still a subject to change
|
|
269
271
|
message?: string;
|
|
270
272
|
performance?: {
|