@todesktop/shared 7.189.13 → 7.189.15
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 +19 -1
- package/package.json +1 -1
- package/src/base.ts +23 -1
package/lib/base.d.ts
CHANGED
|
@@ -193,6 +193,24 @@ export interface CustomWindowsCodeSignEV {
|
|
|
193
193
|
hsmCertType: WindowsHSMCertType.ev;
|
|
194
194
|
hsmCertName: string;
|
|
195
195
|
}
|
|
196
|
+
export interface CustomWindowsCodeSignAzureTrustedSigning {
|
|
197
|
+
certType: 'azureTrustedSigning';
|
|
198
|
+
azureCredentialsStored: boolean;
|
|
199
|
+
azureBaseSettings: {
|
|
200
|
+
$azureClientSecretRef: string;
|
|
201
|
+
clientId: string;
|
|
202
|
+
tenantId: string;
|
|
203
|
+
codeSigningAccountName: string;
|
|
204
|
+
subscriptionId: string;
|
|
205
|
+
resourceGroupName: string;
|
|
206
|
+
};
|
|
207
|
+
azureSettings?: {
|
|
208
|
+
accountUri: string;
|
|
209
|
+
certificateProfileId: string;
|
|
210
|
+
certificateProfileName: string;
|
|
211
|
+
publisherName: string;
|
|
212
|
+
};
|
|
213
|
+
}
|
|
196
214
|
export type CustomMacCodeSign = {
|
|
197
215
|
type: 'url';
|
|
198
216
|
certName: string;
|
|
@@ -249,7 +267,7 @@ export interface BaseApp extends Schemable {
|
|
|
249
267
|
customMacCodeSign?: CustomMacCodeSign;
|
|
250
268
|
customNotarization?: CustomMacNotarization;
|
|
251
269
|
customLinuxPgpKey?: CustomLinuxPGPKey;
|
|
252
|
-
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
|
270
|
+
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV | CustomWindowsCodeSignAzureTrustedSigning;
|
|
253
271
|
macHsmCertNames?: Record<MacTarget, string>;
|
|
254
272
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|
|
255
273
|
meta?: IAppMeta;
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -211,6 +211,25 @@ export interface CustomWindowsCodeSignEV {
|
|
|
211
211
|
hsmCertName: string;
|
|
212
212
|
}
|
|
213
213
|
|
|
214
|
+
export interface CustomWindowsCodeSignAzureTrustedSigning {
|
|
215
|
+
certType: 'azureTrustedSigning';
|
|
216
|
+
azureCredentialsStored: boolean;
|
|
217
|
+
azureBaseSettings: {
|
|
218
|
+
$azureClientSecretRef: string;
|
|
219
|
+
clientId: string;
|
|
220
|
+
tenantId: string;
|
|
221
|
+
codeSigningAccountName: string;
|
|
222
|
+
subscriptionId: string;
|
|
223
|
+
resourceGroupName: string;
|
|
224
|
+
};
|
|
225
|
+
azureSettings?: {
|
|
226
|
+
accountUri: string;
|
|
227
|
+
certificateProfileId: string;
|
|
228
|
+
certificateProfileName: string;
|
|
229
|
+
publisherName: string;
|
|
230
|
+
};
|
|
231
|
+
}
|
|
232
|
+
|
|
214
233
|
export type CustomMacCodeSign =
|
|
215
234
|
| {
|
|
216
235
|
type: 'url';
|
|
@@ -283,7 +302,10 @@ export interface BaseApp extends Schemable {
|
|
|
283
302
|
customMacCodeSign?: CustomMacCodeSign;
|
|
284
303
|
customNotarization?: CustomMacNotarization;
|
|
285
304
|
customLinuxPgpKey?: CustomLinuxPGPKey;
|
|
286
|
-
customWindowsCodeSign?:
|
|
305
|
+
customWindowsCodeSign?:
|
|
306
|
+
| CustomWindowsCodeSignFile
|
|
307
|
+
| CustomWindowsCodeSignEV
|
|
308
|
+
| CustomWindowsCodeSignAzureTrustedSigning;
|
|
287
309
|
macHsmCertNames?: Record<MacTarget, string>;
|
|
288
310
|
windowsHsmCertNames?: Record<WindowsTarget, string>;
|
|
289
311
|
|