@todesktop/shared 7.154.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
@@ -96,7 +96,7 @@ export interface IAppMeta {
96
96
  nsisCustomBinary?: {
97
97
  checksum?: string;
98
98
  debugLogging?: boolean;
99
- url?: string;
99
+ url: string;
100
100
  version?: string;
101
101
  };
102
102
  nsisInclude?: FilePath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.154.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
@@ -103,7 +103,7 @@ export interface IAppMeta {
103
103
  nsisCustomBinary?: {
104
104
  checksum?: string;
105
105
  debugLogging?: boolean;
106
- url?: string;
106
+ url: string;
107
107
  version?: string;
108
108
  }
109
109
  nsisInclude?: FilePath;