@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.
- package/lib/toDesktop.d.ts +2 -0
- package/package.json +1 -1
- package/src/toDesktop.ts +2 -0
package/lib/toDesktop.d.ts
CHANGED
|
@@ -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
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;
|