@todesktop/shared 7.188.72 → 7.188.73

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
@@ -233,7 +233,8 @@ export interface BaseApp extends Schemable {
233
233
  customMacCodeSign?: CustomMacCodeSign;
234
234
  customNotarization?: CustomMacNotarization;
235
235
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
236
- hsmCertNames?: Record<MacTarget | WindowsTarget, string>;
236
+ macHsmCertNames?: Record<MacTarget, string>;
237
+ windowsHsmCertNames?: Record<WindowsTarget, string>;
237
238
  meta?: IAppMeta;
238
239
  parentApp?: BaseApp;
239
240
  parent?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.72",
3
+ "version": "7.188.73",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -266,7 +266,8 @@ export interface BaseApp extends Schemable {
266
266
  customMacCodeSign?: CustomMacCodeSign;
267
267
  customNotarization?: CustomMacNotarization;
268
268
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
269
- hsmCertNames?: Record<MacTarget | WindowsTarget, string>;
269
+ macHsmCertNames?: Record<MacTarget, string>;
270
+ windowsHsmCertNames?: Record<WindowsTarget, string>;
270
271
 
271
272
  meta?: IAppMeta;
272
273
  // this property is dynamically resolved at queueBuild in cloud functions