@todesktop/shared 7.196.0 → 7.196.1
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/CHANGELOG.md +7 -0
- package/lib/cjs/base.d.ts +4 -0
- package/lib/esm/base.d.ts +4 -0
- package/package.json +1 -1
- package/src/base.ts +4 -0
package/CHANGELOG.md
CHANGED
package/lib/cjs/base.d.ts
CHANGED
|
@@ -295,6 +295,9 @@ export interface BaseApp extends Schemable {
|
|
|
295
295
|
customMacCodeSign?: CustomMacCodeSign;
|
|
296
296
|
customNotarization?: CustomMacNotarization;
|
|
297
297
|
customWindowsCodeSign?: CustomWindowsCodeSignAzureTrustedSigning | CustomWindowsCodeSignEV | CustomWindowsCodeSignFile;
|
|
298
|
+
debConfig?: {
|
|
299
|
+
installAptSources?: boolean;
|
|
300
|
+
};
|
|
298
301
|
domainVerificationCode?: string;
|
|
299
302
|
id: string;
|
|
300
303
|
macHsmCertNames?: Record<MacTarget, string>;
|
|
@@ -334,6 +337,7 @@ export interface BaseApp extends Schemable {
|
|
|
334
337
|
login?: string;
|
|
335
338
|
};
|
|
336
339
|
subscription?: Subscription;
|
|
340
|
+
useTdCert?: boolean;
|
|
337
341
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|
|
338
342
|
}
|
|
339
343
|
export type Subscription = {
|
package/lib/esm/base.d.ts
CHANGED
|
@@ -295,6 +295,9 @@ export interface BaseApp extends Schemable {
|
|
|
295
295
|
customMacCodeSign?: CustomMacCodeSign;
|
|
296
296
|
customNotarization?: CustomMacNotarization;
|
|
297
297
|
customWindowsCodeSign?: CustomWindowsCodeSignAzureTrustedSigning | CustomWindowsCodeSignEV | CustomWindowsCodeSignFile;
|
|
298
|
+
debConfig?: {
|
|
299
|
+
installAptSources?: boolean;
|
|
300
|
+
};
|
|
298
301
|
domainVerificationCode?: string;
|
|
299
302
|
id: string;
|
|
300
303
|
macHsmCertNames?: Record<MacTarget, string>;
|
|
@@ -334,6 +337,7 @@ export interface BaseApp extends Schemable {
|
|
|
334
337
|
login?: string;
|
|
335
338
|
};
|
|
336
339
|
subscription?: Subscription;
|
|
340
|
+
useTdCert?: boolean;
|
|
337
341
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|
|
338
342
|
}
|
|
339
343
|
export type Subscription = {
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -337,6 +337,9 @@ export interface BaseApp extends Schemable {
|
|
|
337
337
|
| CustomWindowsCodeSignAzureTrustedSigning
|
|
338
338
|
| CustomWindowsCodeSignEV
|
|
339
339
|
| CustomWindowsCodeSignFile;
|
|
340
|
+
debConfig?: {
|
|
341
|
+
installAptSources?: boolean;
|
|
342
|
+
};
|
|
340
343
|
domainVerificationCode?: string;
|
|
341
344
|
id: string;
|
|
342
345
|
|
|
@@ -374,6 +377,7 @@ export interface BaseApp extends Schemable {
|
|
|
374
377
|
shouldCreateSnapFiles?: boolean;
|
|
375
378
|
snapStore?: { description?: string; login?: string };
|
|
376
379
|
subscription?: Subscription;
|
|
380
|
+
useTdCert?: boolean;
|
|
377
381
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|
|
378
382
|
}
|
|
379
383
|
|