@todesktop/shared 7.184.28 → 7.185.0

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
@@ -90,6 +90,7 @@ export interface IAppMeta {
90
90
  icon?: FilePath;
91
91
  };
92
92
  nodeVersion?: string;
93
+ npmVersion?: string;
93
94
  packageManager?: 'npm' | 'yarn' | 'pnpm';
94
95
  productName?: string;
95
96
  schemaVersion: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.184.28",
3
+ "version": "7.185.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -102,6 +102,7 @@ export interface IAppMeta {
102
102
  icon?: FilePath;
103
103
  };
104
104
  nodeVersion?: string;
105
+ npmVersion?: string;
105
106
  packageManager?: 'npm' | 'yarn' | 'pnpm';
106
107
  productName?: string;
107
108
  schemaVersion: number;