@todesktop/shared 7.188.20 → 7.188.21
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/desktopify.d.ts +1 -1
- package/package.json +1 -1
- package/src/desktopify.ts +1 -1
package/lib/desktopify.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export declare type MacArch = 'x64' | 'arm64' | 'universal';
|
|
|
45
45
|
export declare type LinuxArch = 'x64' | 'arm64';
|
|
46
46
|
export declare type WindowsArch = 'ia32' | 'x64' | 'arm64' | 'universal';
|
|
47
47
|
export declare type LinuxArtifactName = 'appImage' | 'deb' | 'rpm' | 'snap';
|
|
48
|
-
export declare type MacArtifactName = 'dmg' | 'zip' | 'installer';
|
|
48
|
+
export declare type MacArtifactName = 'dmg' | 'zip' | 'installer' | 'mas';
|
|
49
49
|
export declare type WindowsArtifactName = 'msi' | 'nsis' | 'nsis-web' | 'nsis-web-7z' | 'appx';
|
|
50
50
|
declare type ArtifactDownload = Record<Arch, {
|
|
51
51
|
size: number;
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -62,7 +62,7 @@ export type MacArch = 'x64' | 'arm64' | 'universal';
|
|
|
62
62
|
export type LinuxArch = 'x64' | 'arm64';
|
|
63
63
|
export type WindowsArch = 'ia32' | 'x64' | 'arm64' | 'universal';
|
|
64
64
|
export type LinuxArtifactName = 'appImage' | 'deb' | 'rpm' | 'snap';
|
|
65
|
-
export type MacArtifactName = 'dmg' | 'zip' | 'installer';
|
|
65
|
+
export type MacArtifactName = 'dmg' | 'zip' | 'installer' | 'mas';
|
|
66
66
|
export type WindowsArtifactName =
|
|
67
67
|
| 'msi'
|
|
68
68
|
| 'nsis'
|