@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.
- package/lib/desktopify.d.ts +5 -3
- package/package.json +1 -1
- package/src/desktopify.ts +5 -3
package/lib/desktopify.d.ts
CHANGED
|
@@ -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 = '
|
|
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<
|
|
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<
|
|
154
|
+
artifacts: Record<WindowsArtifactName, Record<WindowsArch, CustomManifestArtifactDetails | null> | null>;
|
|
153
155
|
}
|
|
154
156
|
export interface SmokeTestProgress {
|
|
155
157
|
appLaunched?: boolean;
|
package/package.json
CHANGED
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 = '
|
|
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<
|
|
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<
|
|
225
|
+
Record<WindowsArch, CustomManifestArtifactDetails | null> | null
|
|
224
226
|
>;
|
|
225
227
|
}
|
|
226
228
|
|