@todesktop/shared 7.188.8 → 7.188.9

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
@@ -61,6 +61,7 @@ export interface IAppMeta {
61
61
  bucket: string;
62
62
  key: string;
63
63
  url: string;
64
+ hash?: string;
64
65
  };
65
66
  windows?: IAppBuildProgress;
66
67
  };
@@ -120,6 +121,7 @@ export interface ToDesktopJson {
120
121
  filesForDistribution?: string[];
121
122
  icon: FilePath;
122
123
  id: string;
124
+ includeSubNodeModules?: boolean;
123
125
  linux?: {
124
126
  category?: string;
125
127
  icon?: FilePath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.8",
3
+ "version": "7.188.9",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -72,6 +72,7 @@ export interface IAppMeta {
72
72
  bucket: string;
73
73
  key: string;
74
74
  url: string;
75
+ hash?: string;
75
76
  };
76
77
  windows?: IAppBuildProgress;
77
78
  };
@@ -132,6 +133,7 @@ export interface ToDesktopJson {
132
133
  filesForDistribution?: string[];
133
134
  icon: FilePath;
134
135
  id: string;
136
+ includeSubNodeModules?: boolean;
135
137
  linux?: {
136
138
  category?: string;
137
139
  icon?: FilePath;