@todesktop/shared 7.186.2 → 7.186.4

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
@@ -88,6 +88,7 @@ export interface IAppMeta {
88
88
  entitlements?: FilePath;
89
89
  extendInfo?: IAppBuilderLib['config']['mac']['extendInfo'];
90
90
  icon?: FilePath;
91
+ requirements?: FilePath;
91
92
  };
92
93
  nodeVersion?: string;
93
94
  npmVersion?: string;
@@ -126,7 +127,7 @@ export interface IAppMeta {
126
127
  isAppChanged?: boolean;
127
128
  isFrameBlocked?: boolean;
128
129
  isHttps?: boolean;
129
- latestBuildId?: string;
130
+ latestReleaseBuildId?: string;
130
131
  publishedVersions: {
131
132
  desktopify?: string;
132
133
  electron?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.186.2",
3
+ "version": "7.186.4",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -100,6 +100,7 @@ export interface IAppMeta {
100
100
  entitlements?: FilePath;
101
101
  extendInfo?: IAppBuilderLib['config']['mac']['extendInfo'];
102
102
  icon?: FilePath;
103
+ requirements?: FilePath;
103
104
  };
104
105
  nodeVersion?: string;
105
106
  npmVersion?: string;
@@ -138,7 +139,7 @@ export interface IAppMeta {
138
139
  isAppChanged?: boolean;
139
140
  isFrameBlocked?: boolean;
140
141
  isHttps?: boolean;
141
- latestBuildId?: string;
142
+ latestReleaseBuildId?: string;
142
143
  publishedVersions: {
143
144
  desktopify?: string;
144
145
  electron?: string;