@todesktop/shared 7.186.22 → 7.186.24

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/base.d.ts CHANGED
@@ -134,6 +134,7 @@ export interface ToDesktopJson {
134
134
  packageManager?: 'npm' | 'yarn' | 'pnpm';
135
135
  pnpmVersion?: string;
136
136
  productName?: string;
137
+ rebuildLibrary?: 'app-builder' | '@electron/rebuild';
137
138
  schemaVersion: number;
138
139
  snap?: IAppBuilderLib['config']['snap'];
139
140
  uploadSizeLimit?: number;
@@ -31,7 +31,7 @@ export declare enum BuildStatus {
31
31
  succeeded = "succeeded",
32
32
  cancelled = "cancelled"
33
33
  }
34
- export declare type Arch = 'ia32' | 'x64' | 'arm64';
34
+ export declare type Arch = 'ia32' | 'x64' | 'arm64' | 'universal';
35
35
  export declare type MacArch = 'x64' | 'arm64' | 'universal';
36
36
  export declare type LinuxArch = 'x64' | 'arm64';
37
37
  export declare type WindowsArch = 'ia32' | 'x64' | 'arm64' | 'universal';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.186.22",
3
+ "version": "7.186.24",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -147,6 +147,7 @@ export interface ToDesktopJson {
147
147
  packageManager?: 'npm' | 'yarn' | 'pnpm';
148
148
  pnpmVersion?: string;
149
149
  productName?: string;
150
+ rebuildLibrary?: 'app-builder' | '@electron/rebuild';
150
151
  schemaVersion: number;
151
152
  snap?: IAppBuilderLib['config']['snap'];
152
153
  uploadSizeLimit?: number;
package/src/desktopify.ts CHANGED
@@ -47,7 +47,7 @@ export enum BuildStatus {
47
47
  cancelled = 'cancelled',
48
48
  }
49
49
 
50
- export type Arch = 'ia32' | 'x64' | 'arm64';
50
+ export type Arch = 'ia32' | 'x64' | 'arm64' | 'universal';
51
51
  export type MacArch = 'x64' | 'arm64' | 'universal';
52
52
  export type LinuxArch = 'x64' | 'arm64';
53
53
  export type WindowsArch = 'ia32' | 'x64' | 'arm64' | 'universal';