@todesktop/shared 7.188.8 → 7.188.10

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;
@@ -100,6 +100,7 @@ export interface Build {
100
100
  electronVersionUsed?: SemanticVersion;
101
101
  environmentVariables?: IApp['environmentVariables'];
102
102
  errorMessage?: string;
103
+ hash?: string;
103
104
  icon?: string;
104
105
  id: string;
105
106
  isBeingCancelled?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.8",
3
+ "version": "7.188.10",
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;
package/src/desktopify.ts CHANGED
@@ -140,6 +140,7 @@ export interface Build {
140
140
  electronVersionUsed?: SemanticVersion;
141
141
  environmentVariables?: IApp['environmentVariables'];
142
142
  errorMessage?: string;
143
+ hash?: string;
143
144
  icon?: string;
144
145
  id: string;
145
146
  isBeingCancelled?: boolean;