@todesktop/shared 7.184.3 → 7.184.4
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 +1 -1
- package/package.json +2 -2
- package/src/desktopify.ts +1 -5
package/lib/desktopify.d.ts
CHANGED
|
@@ -150,7 +150,7 @@ export interface SmokeTestProgress {
|
|
|
150
150
|
message?: string;
|
|
151
151
|
progress: number;
|
|
152
152
|
screenshot?: string;
|
|
153
|
-
state:
|
|
153
|
+
state: "progress" | "done" | "error" | "skipped";
|
|
154
154
|
updatedAppHasNoMainErrors?: boolean;
|
|
155
155
|
}
|
|
156
156
|
export declare const hasBuildKickedOff: (build: Build) => boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@todesktop/shared",
|
|
3
|
-
"version": "7.184.
|
|
3
|
+
"version": "7.184.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"author": "Dave Jeffery <dave@davejeffery.com>",
|
|
15
15
|
"license": "UNLICENSED",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@todesktop/client-electron-types": "^
|
|
17
|
+
"@todesktop/client-electron-types": "^23.1.1",
|
|
18
18
|
"@types/debug": "^4.1.1",
|
|
19
19
|
"@types/node": "^16.4.12",
|
|
20
20
|
"@types/yup": "^0.26.9",
|
package/src/desktopify.ts
CHANGED
|
@@ -7,10 +7,6 @@ import {
|
|
|
7
7
|
// packages since it's too large
|
|
8
8
|
// @ts-ignore
|
|
9
9
|
} from "app-builder-lib";
|
|
10
|
-
import {
|
|
11
|
-
MenuItemConstructorOptions,
|
|
12
|
-
BrowserWindowConstructorOptions,
|
|
13
|
-
} from "@todesktop/client-electron-types";
|
|
14
10
|
|
|
15
11
|
type appBuilderLib = PackagerOptions & PublishOptions;
|
|
16
12
|
export interface IAppBuilderLib extends appBuilderLib {
|
|
@@ -224,7 +220,7 @@ export interface SmokeTestProgress {
|
|
|
224
220
|
message?: string;
|
|
225
221
|
progress: number;
|
|
226
222
|
screenshot?: string;
|
|
227
|
-
state:
|
|
223
|
+
state: "progress" | "done" | "error" | "skipped";
|
|
228
224
|
updatedAppHasNoMainErrors?: boolean;
|
|
229
225
|
}
|
|
230
226
|
|