@todesktop/shared 7.71.0 → 7.72.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 +1 -0
- package/package.json +1 -1
- package/src/toDesktop.ts +1 -0
package/lib/toDesktop.d.ts
CHANGED
|
@@ -272,6 +272,7 @@ export interface IApp extends BaseApp {
|
|
|
272
272
|
runtimeEnvs?: string;
|
|
273
273
|
secret?: string;
|
|
274
274
|
shouldCreate32BitWindowsArtifacts?: boolean;
|
|
275
|
+
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
275
276
|
shouldCreateAppXFiles?: boolean;
|
|
276
277
|
shouldCreateAppImages?: boolean;
|
|
277
278
|
shouldCreateDebianPackages?: boolean;
|
package/package.json
CHANGED
package/src/toDesktop.ts
CHANGED
|
@@ -303,6 +303,7 @@ export interface IApp extends BaseApp {
|
|
|
303
303
|
runtimeEnvs?: string;
|
|
304
304
|
secret?: string; // support old schema versions
|
|
305
305
|
shouldCreate32BitWindowsArtifacts?: boolean;
|
|
306
|
+
shouldCreateArm64WindowsArtifacts?: boolean;
|
|
306
307
|
shouldCreateAppXFiles?: boolean;
|
|
307
308
|
shouldCreateAppImages?: boolean;
|
|
308
309
|
shouldCreateDebianPackages?: boolean;
|