@todesktop/shared 7.186.7 → 7.186.9

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.
@@ -110,6 +110,7 @@ export interface Build {
110
110
  startedAt: ISODate;
111
111
  status: BuildStatus;
112
112
  todesktopRuntimeVersionSpecified?: SemanticVersion;
113
+ todesktopRuntimeVersionUsed?: SemanticVersion;
113
114
  universalDownloadUrl?: URL;
114
115
  url?: URL;
115
116
  versionControlInfo?: {
@@ -140,7 +140,7 @@ export interface DesktopifyAppWindow {
140
140
  /**
141
141
  * The type of window
142
142
  */
143
- type: 'menubar' | 'app' | 'panel';
143
+ type: 'menubar' | 'app' | 'panel' | 'desktop';
144
144
  /**
145
145
  * Keyboard shortcut to toggle window visibility
146
146
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.186.7",
3
+ "version": "7.186.9",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -150,6 +150,7 @@ export interface Build {
150
150
  startedAt: ISODate;
151
151
  status: BuildStatus;
152
152
  todesktopRuntimeVersionSpecified?: SemanticVersion;
153
+ todesktopRuntimeVersionUsed?: SemanticVersion;
153
154
  // TODO: total progress percentage?
154
155
  universalDownloadUrl?: URL;
155
156
  url?: URL;
@@ -265,7 +265,7 @@ export interface DesktopifyAppWindow {
265
265
  /**
266
266
  * The type of window
267
267
  */
268
- type: 'menubar' | 'app' | 'panel';
268
+ type: 'menubar' | 'app' | 'panel' | 'desktop';
269
269
  /**
270
270
  * Keyboard shortcut to toggle window visibility
271
271
  */