@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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @todesktop/shared
2
2
 
3
+ ## 7.196.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3d6da7a: Add support for `app.useTdCert` flag to use ToDesktop code signing
8
+ certificates for Mac and Windows builds
9
+
3
10
  ## 7.196.0
4
11
 
5
12
  ### Minor Changes
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.196.0",
3
+ "version": "7.196.1",
4
4
  "description": "",
5
5
  "sideEffects": false,
6
6
  "main": "./lib/cjs/index.js",
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