@todesktop/shared 7.189.5 → 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 +6 -0
- package/package.json +1 -1
- package/src/base.ts +7 -0
package/lib/base.d.ts
CHANGED
|
@@ -130,6 +130,7 @@ export interface ToDesktopJson {
|
|
|
130
130
|
linux?: {
|
|
131
131
|
category?: string;
|
|
132
132
|
icon?: FilePath;
|
|
133
|
+
imageVersion?: string;
|
|
133
134
|
noSandbox?: boolean;
|
|
134
135
|
};
|
|
135
136
|
mac?: {
|
|
@@ -195,6 +196,10 @@ export type CustomMacCodeSign = {
|
|
|
195
196
|
} | {
|
|
196
197
|
type: 'hsm';
|
|
197
198
|
};
|
|
199
|
+
export type CustomLinuxPGPKey = {
|
|
200
|
+
$key: string;
|
|
201
|
+
$password?: string;
|
|
202
|
+
};
|
|
198
203
|
export type CustomMacNotarization = CustomNotarizationApiKeyAuth | CustomNotarizationPasswordHsmAuth;
|
|
199
204
|
export interface CustomNotarizationApiKeyAuth {
|
|
200
205
|
type: 'hsm-api';
|
|
@@ -237,6 +242,7 @@ export interface BaseApp extends Schemable {
|
|
|
237
242
|
customDomain?: string;
|
|
238
243
|
customMacCodeSign?: CustomMacCodeSign;
|
|
239
244
|
customNotarization?: CustomMacNotarization;
|
|
245
|
+
customLinuxPGPKey?: CustomLinuxPGPKey;
|
|
240
246
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
|
241
247
|
macHsmCertNames?: Record<MacTarget, string>;
|
|
242
248
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -144,6 +144,7 @@ export interface ToDesktopJson {
|
|
|
144
144
|
linux?: {
|
|
145
145
|
category?: string;
|
|
146
146
|
icon?: FilePath;
|
|
147
|
+
imageVersion?: string;
|
|
147
148
|
noSandbox?: boolean;
|
|
148
149
|
};
|
|
149
150
|
mac?: {
|
|
@@ -216,6 +217,11 @@ export type CustomMacCodeSign =
|
|
|
216
217
|
type: 'hsm';
|
|
217
218
|
};
|
|
218
219
|
|
|
220
|
+
export type CustomLinuxPGPKey = {
|
|
221
|
+
$key: string;
|
|
222
|
+
$password?: string;
|
|
223
|
+
};
|
|
224
|
+
|
|
219
225
|
export type CustomMacNotarization =
|
|
220
226
|
| CustomNotarizationApiKeyAuth
|
|
221
227
|
| CustomNotarizationPasswordHsmAuth;
|
|
@@ -270,6 +276,7 @@ export interface BaseApp extends Schemable {
|
|
|
270
276
|
customDomain?: string;
|
|
271
277
|
customMacCodeSign?: CustomMacCodeSign;
|
|
272
278
|
customNotarization?: CustomMacNotarization;
|
|
279
|
+
customLinuxPGPKey?: CustomLinuxPGPKey;
|
|
273
280
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
|
274
281
|
macHsmCertNames?: Record<MacTarget, string>;
|
|
275
282
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|