@todesktop/shared 7.40.0 → 7.41.0

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.
@@ -212,6 +212,7 @@ export interface CustomMacCodeSign {
212
212
  export interface CustomNotarization {
213
213
  appleId: string;
214
214
  appleIdPassword: string;
215
+ ascProvider?: string;
215
216
  }
216
217
  export declare enum WindowsHSMCertType {
217
218
  ev = "ev",
@@ -240,6 +241,7 @@ export interface IApp {
240
241
  customNotarization?: {
241
242
  appleId: string;
242
243
  appleIdPassword: string;
244
+ ascProvider?: string;
243
245
  };
244
246
  customUserAgent?: ISwitchableValue<string>;
245
247
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.40.0",
3
+ "version": "7.41.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/toDesktop.ts CHANGED
@@ -241,6 +241,7 @@ export interface CustomMacCodeSign {
241
241
  export interface CustomNotarization {
242
242
  appleId: string;
243
243
  appleIdPassword: string;
244
+ ascProvider?: string;
244
245
  }
245
246
 
246
247
  export enum WindowsHSMCertType {
@@ -274,6 +275,7 @@ export interface IApp {
274
275
  customNotarization?: {
275
276
  appleId: string;
276
277
  appleIdPassword: string;
278
+ ascProvider?: string;
277
279
  };
278
280
  customUserAgent?: ISwitchableValue<string>;
279
281
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;