@todesktop/shared 7.188.69 → 7.188.71

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
@@ -232,6 +232,13 @@ export interface BaseApp extends Schemable {
232
232
  customMacCodeSign?: CustomMacCodeSign;
233
233
  customNotarization?: CustomMacNotarization;
234
234
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
235
+ hsmCertNames?: {
236
+ mac: string;
237
+ macInstaller: string;
238
+ mas: string;
239
+ masInstaller: string;
240
+ masDev: string;
241
+ };
235
242
  meta?: IAppMeta;
236
243
  parentApp?: BaseApp;
237
244
  parent?: {
@@ -165,8 +165,5 @@ export interface CiInput {
165
165
  buildId?: string;
166
166
  userId: string;
167
167
  contextUserId: string;
168
- auth: {
169
- email: string;
170
- accessToken: string;
171
- };
168
+ accessToken: string;
172
169
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.69",
3
+ "version": "7.188.71",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -265,6 +265,13 @@ export interface BaseApp extends Schemable {
265
265
  customMacCodeSign?: CustomMacCodeSign;
266
266
  customNotarization?: CustomMacNotarization;
267
267
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
268
+ hsmCertNames?: {
269
+ mac: string;
270
+ macInstaller: string;
271
+ mas: string;
272
+ masInstaller: string;
273
+ masDev: string;
274
+ };
268
275
 
269
276
  meta?: IAppMeta;
270
277
  // this property is dynamically resolved at queueBuild in cloud functions
package/src/toDesktop.ts CHANGED
@@ -189,8 +189,5 @@ export interface CiInput {
189
189
  buildId?: string;
190
190
  userId: string;
191
191
  contextUserId: string;
192
- auth: {
193
- email: string;
194
- accessToken: string;
195
- };
192
+ accessToken: string;
196
193
  }