@todesktop/shared 7.189.7 → 7.189.9

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 CHANGED
@@ -159,6 +159,7 @@ export interface ToDesktopJson {
159
159
  rebuildLibrary?: 'app-builder' | '@electron/rebuild';
160
160
  schemaVersion: number;
161
161
  snap?: IAppBuilderLib['config']['snap'];
162
+ updateUrlBase?: string;
162
163
  uploadSizeLimit?: number;
163
164
  useCachedDependencies?: boolean;
164
165
  windows?: {
@@ -242,7 +243,7 @@ export interface BaseApp extends Schemable {
242
243
  customDomain?: string;
243
244
  customMacCodeSign?: CustomMacCodeSign;
244
245
  customNotarization?: CustomMacNotarization;
245
- customLinuxPGPKey?: CustomLinuxPGPKey;
246
+ customLinuxPgpKey?: CustomLinuxPGPKey;
246
247
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
247
248
  macHsmCertNames?: Record<MacTarget, string>;
248
249
  windowsHsmCertNames?: Record<WindowsTarget, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.7",
3
+ "version": "7.189.9",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -173,6 +173,7 @@ export interface ToDesktopJson {
173
173
  rebuildLibrary?: 'app-builder' | '@electron/rebuild';
174
174
  schemaVersion: number;
175
175
  snap?: IAppBuilderLib['config']['snap'];
176
+ updateUrlBase?: string;
176
177
  uploadSizeLimit?: number;
177
178
  useCachedDependencies?: boolean;
178
179
  windows?: {
@@ -276,7 +277,7 @@ export interface BaseApp extends Schemable {
276
277
  customDomain?: string;
277
278
  customMacCodeSign?: CustomMacCodeSign;
278
279
  customNotarization?: CustomMacNotarization;
279
- customLinuxPGPKey?: CustomLinuxPGPKey;
280
+ customLinuxPgpKey?: CustomLinuxPGPKey;
280
281
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
281
282
  macHsmCertNames?: Record<MacTarget, string>;
282
283
  windowsHsmCertNames?: Record<WindowsTarget, string>;