@todesktop/shared 7.151.0 → 7.153.0

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
@@ -86,6 +86,7 @@ export interface IAppMeta {
86
86
  extendInfo?: IAppBuilderLib["config"]["mac"]["extendInfo"];
87
87
  icon?: FilePath;
88
88
  };
89
+ nodeVersion?: string;
89
90
  packageManager?: "npm" | "yarn" | "pnpm";
90
91
  productName?: string;
91
92
  schemaVersion: number;
@@ -192,7 +192,7 @@ export interface DesktopifyAppWindow {
192
192
  /**
193
193
  * The path to the file to load if `shouldUseFileInsteadOfUrl` is `true`.
194
194
  */
195
- file: string;
195
+ file?: string;
196
196
  }
197
197
  export interface DesktopifyApp2 {
198
198
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.151.0",
3
+ "version": "7.153.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -93,6 +93,7 @@ export interface IAppMeta {
93
93
  extendInfo?: IAppBuilderLib["config"]["mac"]["extendInfo"];
94
94
  icon?: FilePath;
95
95
  };
96
+ nodeVersion?: string;
96
97
  packageManager?: "npm" | "yarn" | "pnpm";
97
98
  productName?: string;
98
99
  schemaVersion: number;
@@ -313,7 +313,7 @@ export interface DesktopifyAppWindow {
313
313
  /**
314
314
  * The path to the file to load if `shouldUseFileInsteadOfUrl` is `true`.
315
315
  */
316
- file: string;
316
+ file?: string;
317
317
  }
318
318
  // TODO: Look into hasMinHeight, etc
319
319