@todesktop/shared 7.186.4 → 7.186.6

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
@@ -54,7 +54,7 @@ export interface IAppMeta {
54
54
  appId?: string;
55
55
  appFiles?: string[];
56
56
  appPath?: FilePath;
57
- appProtocolScheme?: string;
57
+ appProtocolScheme?: string | string[];
58
58
  asar?: boolean;
59
59
  asarUnpack?: boolean | string[];
60
60
  copyright?: 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.4",
3
+ "version": "7.186.6",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -66,7 +66,7 @@ export interface IAppMeta {
66
66
  appId?: string;
67
67
  appFiles?: string[];
68
68
  appPath?: FilePath;
69
- appProtocolScheme?: string;
69
+ appProtocolScheme?: string | string[];
70
70
  asar?: boolean;
71
71
  asarUnpack?: boolean | string[];
72
72
  copyright?: 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
  */