@todesktop/shared 7.189.15 → 7.189.17

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
@@ -181,7 +181,8 @@ export interface ToDesktopJson {
181
181
  }
182
182
  export declare enum WindowsHSMCertType {
183
183
  ev = "ev",
184
- file = "file"
184
+ file = "file",
185
+ azureTrustedSigning = "azureTrustedSigning"
185
186
  }
186
187
  export interface CustomWindowsCodeSignFile {
187
188
  certType: string;
package/lib/base.js CHANGED
@@ -18,4 +18,5 @@ var WindowsHSMCertType;
18
18
  (function (WindowsHSMCertType) {
19
19
  WindowsHSMCertType["ev"] = "ev";
20
20
  WindowsHSMCertType["file"] = "file";
21
+ WindowsHSMCertType["azureTrustedSigning"] = "azureTrustedSigning";
21
22
  })(WindowsHSMCertType || (exports.WindowsHSMCertType = WindowsHSMCertType = {}));
@@ -174,17 +174,4 @@ export interface CiInput {
174
174
  userId: string;
175
175
  contextUserId: string;
176
176
  accessToken: string;
177
- azureTrustedSigning?: {
178
- credentials: {
179
- AZURE_TENANT_ID: string;
180
- AZURE_CLIENT_ID: string;
181
- AZURE_CLIENT_SECRET: string;
182
- };
183
- settings: {
184
- certificateProfileName: string;
185
- publisherName: string;
186
- endpoint: string;
187
- codeSigningAccountName: string;
188
- };
189
- };
190
177
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.189.15",
3
+ "version": "7.189.17",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -197,6 +197,7 @@ export interface ToDesktopJson {
197
197
  export enum WindowsHSMCertType {
198
198
  ev = 'ev',
199
199
  file = 'file',
200
+ azureTrustedSigning = 'azureTrustedSigning',
200
201
  }
201
202
 
202
203
  export interface CustomWindowsCodeSignFile {
package/src/toDesktop.ts CHANGED
@@ -203,17 +203,4 @@ export interface CiInput {
203
203
  userId: string;
204
204
  contextUserId: string;
205
205
  accessToken: string;
206
- azureTrustedSigning?: {
207
- credentials: {
208
- AZURE_TENANT_ID: string;
209
- AZURE_CLIENT_ID: string;
210
- AZURE_CLIENT_SECRET: string;
211
- };
212
- settings: {
213
- certificateProfileName: string;
214
- publisherName: string;
215
- endpoint: string;
216
- codeSigningAccountName: string;
217
- };
218
- };
219
206
  }