@todesktop/shared 7.184.14 → 7.184.15

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.
@@ -35,7 +35,7 @@ export declare type Arch = "ia32" | "x64" | "arm64";
35
35
  export declare type MacArch = "ia32" | "x64" | "arm64" | "universal";
36
36
  export declare type LinuxArtifactName = "appImage" | "deb" | "rpm" | "snap";
37
37
  export declare type MacArtifactName = "dmg" | "zip" | "installer";
38
- export declare type WindowsArtifactName = "msi" | "nsis" | "nsis-web" | "appx";
38
+ export declare type WindowsArtifactName = "msi" | "nsis" | "nsis-web" | "nsis-web-7z" | "appx";
39
39
  declare type ArtifactDownload = Record<Arch, {
40
40
  size: number;
41
41
  standardUrl: URL;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.184.14",
3
+ "version": "7.184.15",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -50,7 +50,12 @@ export type Arch = "ia32" | "x64" | "arm64";
50
50
  export type MacArch = "ia32" | "x64" | "arm64" | "universal";
51
51
  export type LinuxArtifactName = "appImage" | "deb" | "rpm" | "snap";
52
52
  export type MacArtifactName = "dmg" | "zip" | "installer";
53
- export type WindowsArtifactName = "msi" | "nsis" | "nsis-web" | "appx";
53
+ export type WindowsArtifactName =
54
+ | "msi"
55
+ | "nsis"
56
+ | "nsis-web"
57
+ | "nsis-web-7z"
58
+ | "appx";
54
59
 
55
60
  type ArtifactDownload = Record<
56
61
  Arch,