@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 +2 -1
- package/package.json +1 -1
- package/src/base.ts +2 -1
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
|
-
|
|
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
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
|
-
|
|
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
|