@todesktop/shared 7.184.2 → 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.
@@ -150,7 +150,7 @@ export interface SmokeTestProgress {
150
150
  message?: string;
151
151
  progress: number;
152
152
  screenshot?: string;
153
- state: 'progress' | 'done' | 'error' | 'skipped';
153
+ state: "progress" | "done" | "error" | "skipped";
154
154
  updatedAppHasNoMainErrors?: boolean;
155
155
  }
156
156
  export declare const hasBuildKickedOff: (build: Build) => boolean;
@@ -73,6 +73,7 @@ export declare type DesktopifyAppTrayNoAction = {
73
73
  export declare type DesktopifyAppTrayAction = DesktopifyAppTrayToggleMenuAction | DesktopifyAppTrayToggleWindowAction | DesktopifyAppTrayNoAction;
74
74
  export interface DesktopifyAppTray {
75
75
  id: string;
76
+ objectId?: string;
76
77
  icon?: string;
77
78
  useSeparateIcons?: boolean;
78
79
  windowsIcon?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.184.2",
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": "^13.1.8",
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: 'progress' | 'done' | 'error' | 'skipped';
223
+ state: "progress" | "done" | "error" | "skipped";
228
224
  updatedAppHasNoMainErrors?: boolean;
229
225
  }
230
226
 
@@ -114,6 +114,7 @@ export type DesktopifyAppTrayAction =
114
114
 
115
115
  export interface DesktopifyAppTray {
116
116
  id: string;
117
+ objectId?: string;
117
118
  icon?: string;
118
119
  useSeparateIcons?: boolean;
119
120
  windowsIcon?: string;