@todesktop/shared 7.186.20 → 7.186.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.
@@ -32,7 +32,9 @@ export declare enum BuildStatus {
32
32
  cancelled = "cancelled"
33
33
  }
34
34
  export declare type Arch = 'ia32' | 'x64' | 'arm64';
35
- export declare type MacArch = 'ia32' | 'x64' | 'arm64' | 'universal';
35
+ export declare type MacArch = 'x64' | 'arm64' | 'universal';
36
+ export declare type LinuxArch = 'x64' | 'arm64';
37
+ export declare type WindowsArch = 'ia32' | 'x64' | 'arm64' | 'universal';
36
38
  export declare type LinuxArtifactName = 'appImage' | 'deb' | 'rpm' | 'snap';
37
39
  export declare type MacArtifactName = 'dmg' | 'zip' | 'installer';
38
40
  export declare type WindowsArtifactName = 'msi' | 'nsis' | 'nsis-web' | 'nsis-web-7z' | 'appx';
@@ -143,13 +145,13 @@ export interface CustomManifest {
143
145
  version: SemanticVersion;
144
146
  }
145
147
  export interface LinuxCustomManifest extends CustomManifest {
146
- artifacts: Record<LinuxArtifactName, Record<Arch, CustomManifestArtifactDetails | null> | null>;
148
+ artifacts: Record<LinuxArtifactName, Record<LinuxArch, CustomManifestArtifactDetails | null> | null>;
147
149
  }
148
150
  export interface MacCustomManifest extends CustomManifest {
149
151
  artifacts: Record<MacArtifactName, Record<MacArch, CustomManifestArtifactDetails | null> | null>;
150
152
  }
151
153
  export interface WindowsCustomManifest extends CustomManifest {
152
- artifacts: Record<WindowsArtifactName, Record<Arch, CustomManifestArtifactDetails | null> | null>;
154
+ artifacts: Record<WindowsArtifactName, Record<WindowsArch, CustomManifestArtifactDetails | null> | null>;
153
155
  }
154
156
  export interface SmokeTestProgress {
155
157
  appLaunched?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.186.20",
3
+ "version": "7.186.21",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -48,7 +48,9 @@ export enum BuildStatus {
48
48
  }
49
49
 
50
50
  export type Arch = 'ia32' | 'x64' | 'arm64';
51
- export type MacArch = 'ia32' | 'x64' | 'arm64' | 'universal';
51
+ export type MacArch = 'x64' | 'arm64' | 'universal';
52
+ export type LinuxArch = 'x64' | 'arm64';
53
+ export type WindowsArch = 'ia32' | 'x64' | 'arm64' | 'universal';
52
54
  export type LinuxArtifactName = 'appImage' | 'deb' | 'rpm' | 'snap';
53
55
  export type MacArtifactName = 'dmg' | 'zip' | 'installer';
54
56
  export type WindowsArtifactName =
@@ -206,7 +208,7 @@ export interface CustomManifest {
206
208
  export interface LinuxCustomManifest extends CustomManifest {
207
209
  artifacts: Record<
208
210
  LinuxArtifactName,
209
- Record<Arch, CustomManifestArtifactDetails | null> | null
211
+ Record<LinuxArch, CustomManifestArtifactDetails | null> | null
210
212
  >;
211
213
  }
212
214
 
@@ -220,7 +222,7 @@ export interface MacCustomManifest extends CustomManifest {
220
222
  export interface WindowsCustomManifest extends CustomManifest {
221
223
  artifacts: Record<
222
224
  WindowsArtifactName,
223
- Record<Arch, CustomManifestArtifactDetails | null> | null
225
+ Record<WindowsArch, CustomManifestArtifactDetails | null> | null
224
226
  >;
225
227
  }
226
228