@todesktop/shared 7.189.14 → 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 +3 -1
- package/package.json +1 -1
- package/src/base.ts +3 -1
package/lib/base.d.ts
CHANGED
|
@@ -194,11 +194,13 @@ export interface CustomWindowsCodeSignEV {
|
|
|
194
194
|
hsmCertName: string;
|
|
195
195
|
}
|
|
196
196
|
export interface CustomWindowsCodeSignAzureTrustedSigning {
|
|
197
|
-
certType: '
|
|
197
|
+
certType: 'azureTrustedSigning';
|
|
198
198
|
azureCredentialsStored: boolean;
|
|
199
199
|
azureBaseSettings: {
|
|
200
|
+
$azureClientSecretRef: string;
|
|
200
201
|
clientId: string;
|
|
201
202
|
tenantId: string;
|
|
203
|
+
codeSigningAccountName: string;
|
|
202
204
|
subscriptionId: string;
|
|
203
205
|
resourceGroupName: string;
|
|
204
206
|
};
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -212,11 +212,13 @@ export interface CustomWindowsCodeSignEV {
|
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
export interface CustomWindowsCodeSignAzureTrustedSigning {
|
|
215
|
-
certType: '
|
|
215
|
+
certType: 'azureTrustedSigning';
|
|
216
216
|
azureCredentialsStored: boolean;
|
|
217
217
|
azureBaseSettings: {
|
|
218
|
+
$azureClientSecretRef: string;
|
|
218
219
|
clientId: string;
|
|
219
220
|
tenantId: string;
|
|
221
|
+
codeSigningAccountName: string;
|
|
220
222
|
subscriptionId: string;
|
|
221
223
|
resourceGroupName: string;
|
|
222
224
|
};
|