@todesktop/shared 7.153.0 → 7.155.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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.153.0",
3
+ "version": "7.155.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
  };