@todesktop/shared 7.188.69 → 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 +7 -0
- package/lib/toDesktop.d.ts +1 -4
- package/package.json +1 -1
- package/src/base.ts +7 -0
- package/src/toDesktop.ts +1 -4
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/lib/toDesktop.d.ts
CHANGED
package/package.json
CHANGED
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
|