@todesktop/shared 7.188.7 → 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;
@@ -195,12 +197,7 @@ export interface BaseApp extends Schemable {
195
197
  appModelId?: string;
196
198
  customDomain?: string;
197
199
  customMacCodeSign?: CustomMacCodeSign;
198
- customNotarization?: {
199
- appleId: string;
200
- appleIdPassword: string;
201
- ascProvider?: string;
202
- teamId?: string;
203
- };
200
+ customNotarization?: CustomMacNotarization;
204
201
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
205
202
  meta?: IAppMeta;
206
203
  subscription?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.7",
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;
@@ -219,12 +221,7 @@ export interface BaseApp extends Schemable {
219
221
  appModelId?: string;
220
222
  customDomain?: string;
221
223
  customMacCodeSign?: CustomMacCodeSign;
222
- customNotarization?: {
223
- appleId: string;
224
- appleIdPassword: string;
225
- ascProvider?: string;
226
- teamId?: string;
227
- };
224
+ customNotarization?: CustomMacNotarization;
228
225
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
229
226
 
230
227
  meta?: IAppMeta;