@todesktop/shared 7.188.70 → 7.188.71

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
@@ -232,6 +232,13 @@ export interface BaseApp extends Schemable {
232
232
  customMacCodeSign?: CustomMacCodeSign;
233
233
  customNotarization?: CustomMacNotarization;
234
234
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
235
+ hsmCertNames?: {
236
+ mac: string;
237
+ macInstaller: string;
238
+ mas: string;
239
+ masInstaller: string;
240
+ masDev: string;
241
+ };
235
242
  meta?: IAppMeta;
236
243
  parentApp?: BaseApp;
237
244
  parent?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.70",
3
+ "version": "7.188.71",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -265,6 +265,13 @@ export interface BaseApp extends Schemable {
265
265
  customMacCodeSign?: CustomMacCodeSign;
266
266
  customNotarization?: CustomMacNotarization;
267
267
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
268
+ hsmCertNames?: {
269
+ mac: string;
270
+ macInstaller: string;
271
+ mas: string;
272
+ masInstaller: string;
273
+ masDev: string;
274
+ };
268
275
 
269
276
  meta?: IAppMeta;
270
277
  // this property is dynamically resolved at queueBuild in cloud functions