@todesktop/shared 7.189.6 → 7.189.7

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
@@ -196,6 +196,10 @@ export type CustomMacCodeSign = {
196
196
  } | {
197
197
  type: 'hsm';
198
198
  };
199
+ export type CustomLinuxPGPKey = {
200
+ $key: string;
201
+ $password?: string;
202
+ };
199
203
  export type CustomMacNotarization = CustomNotarizationApiKeyAuth | CustomNotarizationPasswordHsmAuth;
200
204
  export interface CustomNotarizationApiKeyAuth {
201
205
  type: 'hsm-api';
@@ -238,6 +242,7 @@ export interface BaseApp extends Schemable {
238
242
  customDomain?: string;
239
243
  customMacCodeSign?: CustomMacCodeSign;
240
244
  customNotarization?: CustomMacNotarization;
245
+ customLinuxPGPKey?: CustomLinuxPGPKey;
241
246
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
242
247
  macHsmCertNames?: Record<MacTarget, string>;
243
248
  windowsHsmCertNames?: Record<WindowsTarget, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.6",
3
+ "version": "7.189.7",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -217,6 +217,11 @@ export type CustomMacCodeSign =
217
217
  type: 'hsm';
218
218
  };
219
219
 
220
+ export type CustomLinuxPGPKey = {
221
+ $key: string;
222
+ $password?: string;
223
+ };
224
+
220
225
  export type CustomMacNotarization =
221
226
  | CustomNotarizationApiKeyAuth
222
227
  | CustomNotarizationPasswordHsmAuth;
@@ -271,6 +276,7 @@ export interface BaseApp extends Schemable {
271
276
  customDomain?: string;
272
277
  customMacCodeSign?: CustomMacCodeSign;
273
278
  customNotarization?: CustomMacNotarization;
279
+ customLinuxPGPKey?: CustomLinuxPGPKey;
274
280
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
275
281
  macHsmCertNames?: Record<MacTarget, string>;
276
282
  windowsHsmCertNames?: Record<WindowsTarget, string>;