@todesktop/shared 7.152.0 → 7.154.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
@@ -93,6 +93,12 @@ export interface IAppMeta {
93
93
  snap?: IAppBuilderLib["config"]["snap"];
94
94
  windows?: {
95
95
  icon?: FilePath;
96
+ nsisCustomBinary?: {
97
+ checksum?: string;
98
+ debugLogging?: boolean;
99
+ url?: string;
100
+ version?: string;
101
+ };
96
102
  nsisInclude?: FilePath;
97
103
  };
98
104
  };
@@ -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.152.0",
3
+ "version": "7.154.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -100,6 +100,12 @@ export interface IAppMeta {
100
100
  snap?: IAppBuilderLib["config"]["snap"];
101
101
  windows?: {
102
102
  icon?: FilePath;
103
+ nsisCustomBinary?: {
104
+ checksum?: string;
105
+ debugLogging?: boolean;
106
+ url?: string;
107
+ version?: string;
108
+ }
103
109
  nsisInclude?: FilePath;
104
110
  };
105
111
  };
@@ -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