@todesktop/shared 7.186.18 → 7.186.20
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 +5 -4
- package/lib/desktopify.d.ts +1 -0
- package/package.json +1 -1
- package/src/base.ts +5 -4
- package/src/desktopify.ts +1 -0
package/lib/base.d.ts
CHANGED
|
@@ -190,19 +190,20 @@ export interface BaseApp extends Schemable {
|
|
|
190
190
|
planId: string;
|
|
191
191
|
};
|
|
192
192
|
shouldCreate32BitWindowsArtifacts?: boolean;
|
|
193
|
-
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
194
|
-
shouldCreateAppXFiles?: boolean;
|
|
195
193
|
shouldCreateAppImages?: boolean;
|
|
194
|
+
shouldCreateAppleSiliconAssets?: boolean;
|
|
195
|
+
shouldCreateAppXFiles?: boolean;
|
|
196
|
+
shouldCreateArm64LinuxArtifacts?: boolean;
|
|
197
|
+
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
196
198
|
shouldCreateDebianPackages?: boolean;
|
|
197
199
|
shouldCreateDMGs?: boolean;
|
|
198
|
-
|
|
200
|
+
shouldCreateMacUniversalInstaller?: boolean;
|
|
199
201
|
shouldCreateMacZipInstallers?: boolean;
|
|
200
202
|
shouldCreateMSIInstallers?: boolean;
|
|
201
203
|
shouldCreateNSISInstallers?: boolean;
|
|
202
204
|
shouldCreateNSISWebInstaller?: boolean;
|
|
203
205
|
shouldCreateRPMPackages?: boolean;
|
|
204
206
|
shouldCreateSnapFiles?: boolean;
|
|
205
|
-
shouldCreateMacUniversalInstaller?: boolean;
|
|
206
207
|
appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
|
|
207
208
|
nsisConfig?: Partial<IAppBuilderLib['config']['nsis']>;
|
|
208
209
|
snapStore?: {
|
package/lib/desktopify.d.ts
CHANGED
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -212,19 +212,20 @@ export interface BaseApp extends Schemable {
|
|
|
212
212
|
|
|
213
213
|
// artifacts
|
|
214
214
|
shouldCreate32BitWindowsArtifacts?: boolean;
|
|
215
|
-
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
216
|
-
shouldCreateAppXFiles?: boolean;
|
|
217
215
|
shouldCreateAppImages?: boolean;
|
|
216
|
+
shouldCreateAppleSiliconAssets?: boolean;
|
|
217
|
+
shouldCreateAppXFiles?: boolean;
|
|
218
|
+
shouldCreateArm64LinuxArtifacts?: boolean;
|
|
219
|
+
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
218
220
|
shouldCreateDebianPackages?: boolean;
|
|
219
221
|
shouldCreateDMGs?: boolean;
|
|
220
|
-
|
|
222
|
+
shouldCreateMacUniversalInstaller?: boolean;
|
|
221
223
|
shouldCreateMacZipInstallers?: boolean;
|
|
222
224
|
shouldCreateMSIInstallers?: boolean;
|
|
223
225
|
shouldCreateNSISInstallers?: boolean;
|
|
224
226
|
shouldCreateNSISWebInstaller?: boolean;
|
|
225
227
|
shouldCreateRPMPackages?: boolean;
|
|
226
228
|
shouldCreateSnapFiles?: boolean;
|
|
227
|
-
shouldCreateMacUniversalInstaller?: boolean;
|
|
228
229
|
|
|
229
230
|
// artifact configs
|
|
230
231
|
appxConfig?: Partial<IAppBuilderLib['config']['appx']>;
|
package/src/desktopify.ts
CHANGED