@todesktop/shared 7.186.3 → 7.186.5

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/base.d.ts CHANGED
@@ -127,7 +127,7 @@ export interface IAppMeta {
127
127
  isAppChanged?: boolean;
128
128
  isFrameBlocked?: boolean;
129
129
  isHttps?: boolean;
130
- latestBuildId?: string;
130
+ latestReleaseBuildId?: string;
131
131
  publishedVersions: {
132
132
  desktopify?: string;
133
133
  electron?: string;
@@ -121,6 +121,10 @@ export interface DesktopifyAppWindow {
121
121
  * A unique window id
122
122
  */
123
123
  id: string;
124
+ /**
125
+ * A *mutable* window object id
126
+ */
127
+ objectId?: string;
124
128
  /**
125
129
  * The window name. Only visible to developer
126
130
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.186.3",
3
+ "version": "7.186.5",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -139,7 +139,7 @@ export interface IAppMeta {
139
139
  isAppChanged?: boolean;
140
140
  isFrameBlocked?: boolean;
141
141
  isHttps?: boolean;
142
- latestBuildId?: string;
142
+ latestReleaseBuildId?: string;
143
143
  publishedVersions: {
144
144
  desktopify?: string;
145
145
  electron?: string;
@@ -244,6 +244,10 @@ export interface DesktopifyAppWindow {
244
244
  * A unique window id
245
245
  */
246
246
  id: string;
247
+ /**
248
+ * A *mutable* window object id
249
+ */
250
+ objectId?: string;
247
251
  /**
248
252
  * The window name. Only visible to developer
249
253
  */