@todesktop/shared 7.188.70 → 7.188.72
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 -0
- package/package.json +1 -1
- package/src/base.ts +2 -0
package/lib/base.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CIRunner, ExtraFileReference, FilePath, IAppBuilderLib, PlatformName, Release } from './desktopify';
|
|
2
|
+
import { MacTarget, WindowsTarget } from './hsm';
|
|
2
3
|
export interface Schemable {
|
|
3
4
|
schemaVersion?: number;
|
|
4
5
|
}
|
|
@@ -232,6 +233,7 @@ export interface BaseApp extends Schemable {
|
|
|
232
233
|
customMacCodeSign?: CustomMacCodeSign;
|
|
233
234
|
customNotarization?: CustomMacNotarization;
|
|
234
235
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
|
236
|
+
hsmCertNames?: Record<MacTarget | WindowsTarget, string>;
|
|
235
237
|
meta?: IAppMeta;
|
|
236
238
|
parentApp?: BaseApp;
|
|
237
239
|
parent?: {
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
PlatformName,
|
|
7
7
|
Release,
|
|
8
8
|
} from './desktopify';
|
|
9
|
+
import { MacTarget, WindowsTarget } from './hsm';
|
|
9
10
|
export interface Schemable {
|
|
10
11
|
schemaVersion?: number;
|
|
11
12
|
}
|
|
@@ -265,6 +266,7 @@ export interface BaseApp extends Schemable {
|
|
|
265
266
|
customMacCodeSign?: CustomMacCodeSign;
|
|
266
267
|
customNotarization?: CustomMacNotarization;
|
|
267
268
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
|
269
|
+
hsmCertNames?: Record<MacTarget | WindowsTarget, string>;
|
|
268
270
|
|
|
269
271
|
meta?: IAppMeta;
|
|
270
272
|
// this property is dynamically resolved at queueBuild in cloud functions
|