@todesktop/shared 7.188.7 → 7.188.8
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 +1 -6
- package/package.json +1 -1
- package/src/base.ts +1 -6
package/lib/base.d.ts
CHANGED
|
@@ -195,12 +195,7 @@ export interface BaseApp extends Schemable {
|
|
|
195
195
|
appModelId?: string;
|
|
196
196
|
customDomain?: string;
|
|
197
197
|
customMacCodeSign?: CustomMacCodeSign;
|
|
198
|
-
customNotarization?:
|
|
199
|
-
appleId: string;
|
|
200
|
-
appleIdPassword: string;
|
|
201
|
-
ascProvider?: string;
|
|
202
|
-
teamId?: string;
|
|
203
|
-
};
|
|
198
|
+
customNotarization?: CustomMacNotarization;
|
|
204
199
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
|
205
200
|
meta?: IAppMeta;
|
|
206
201
|
subscription?: {
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -219,12 +219,7 @@ export interface BaseApp extends Schemable {
|
|
|
219
219
|
appModelId?: string;
|
|
220
220
|
customDomain?: string;
|
|
221
221
|
customMacCodeSign?: CustomMacCodeSign;
|
|
222
|
-
customNotarization?:
|
|
223
|
-
appleId: string;
|
|
224
|
-
appleIdPassword: string;
|
|
225
|
-
ascProvider?: string;
|
|
226
|
-
teamId?: string;
|
|
227
|
-
};
|
|
222
|
+
customNotarization?: CustomMacNotarization;
|
|
228
223
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
|
229
224
|
|
|
230
225
|
meta?: IAppMeta;
|