@todesktop/shared 7.38.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 +11 -0
- package/package.json +1 -1
- package/src/toDesktop.ts +11 -0
package/lib/toDesktop.d.ts
CHANGED
|
@@ -113,10 +113,19 @@ export interface IAppMeta {
|
|
|
113
113
|
copyright?: string;
|
|
114
114
|
dmg?: {
|
|
115
115
|
background?: FilePath;
|
|
116
|
+
artifactName?: string;
|
|
117
|
+
backgroundColor?: string;
|
|
118
|
+
iconSize?: number;
|
|
119
|
+
iconTextSize?: number;
|
|
120
|
+
title?: string;
|
|
121
|
+
contents?: IAppBuilderLib["config"]["dmg"]["contents"];
|
|
122
|
+
window?: IAppBuilderLib["config"]["dmg"]["window"];
|
|
116
123
|
};
|
|
117
124
|
extraContentFiles?: ExtraFileReference[];
|
|
118
125
|
electronMirror?: string;
|
|
126
|
+
electronVersion?: string;
|
|
119
127
|
extraResources?: ExtraFileReference[];
|
|
128
|
+
fileAssociations?: IAppBuilderLib["config"]["fileAssociations"];
|
|
120
129
|
filesForDistribution?: string[];
|
|
121
130
|
icon: FilePath;
|
|
122
131
|
id: string;
|
|
@@ -203,6 +212,7 @@ export interface CustomMacCodeSign {
|
|
|
203
212
|
export interface CustomNotarization {
|
|
204
213
|
appleId: string;
|
|
205
214
|
appleIdPassword: string;
|
|
215
|
+
ascProvider?: string;
|
|
206
216
|
}
|
|
207
217
|
export declare enum WindowsHSMCertType {
|
|
208
218
|
ev = "ev",
|
|
@@ -231,6 +241,7 @@ export interface IApp {
|
|
|
231
241
|
customNotarization?: {
|
|
232
242
|
appleId: string;
|
|
233
243
|
appleIdPassword: string;
|
|
244
|
+
ascProvider?: string;
|
|
234
245
|
};
|
|
235
246
|
customUserAgent?: ISwitchableValue<string>;
|
|
236
247
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|
package/package.json
CHANGED
package/src/toDesktop.ts
CHANGED
|
@@ -136,10 +136,19 @@ export interface IAppMeta {
|
|
|
136
136
|
copyright?: string;
|
|
137
137
|
dmg?: {
|
|
138
138
|
background?: FilePath;
|
|
139
|
+
artifactName?: string;
|
|
140
|
+
backgroundColor?: string;
|
|
141
|
+
iconSize?: number;
|
|
142
|
+
iconTextSize?: number;
|
|
143
|
+
title?: string;
|
|
144
|
+
contents?: IAppBuilderLib["config"]["dmg"]["contents"];
|
|
145
|
+
window?: IAppBuilderLib["config"]["dmg"]["window"];
|
|
139
146
|
};
|
|
140
147
|
extraContentFiles?: ExtraFileReference[];
|
|
141
148
|
electronMirror?: string;
|
|
149
|
+
electronVersion?: string;
|
|
142
150
|
extraResources?: ExtraFileReference[];
|
|
151
|
+
fileAssociations?: IAppBuilderLib["config"]["fileAssociations"];
|
|
143
152
|
filesForDistribution?: string[];
|
|
144
153
|
icon: FilePath;
|
|
145
154
|
id: string;
|
|
@@ -232,6 +241,7 @@ export interface CustomMacCodeSign {
|
|
|
232
241
|
export interface CustomNotarization {
|
|
233
242
|
appleId: string;
|
|
234
243
|
appleIdPassword: string;
|
|
244
|
+
ascProvider?: string;
|
|
235
245
|
}
|
|
236
246
|
|
|
237
247
|
export enum WindowsHSMCertType {
|
|
@@ -265,6 +275,7 @@ export interface IApp {
|
|
|
265
275
|
customNotarization?: {
|
|
266
276
|
appleId: string;
|
|
267
277
|
appleIdPassword: string;
|
|
278
|
+
ascProvider?: string;
|
|
268
279
|
};
|
|
269
280
|
customUserAgent?: ISwitchableValue<string>;
|
|
270
281
|
customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
|