@todesktop/shared 7.188.29 → 7.188.30

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
@@ -141,6 +141,9 @@ export interface ToDesktopJson {
141
141
  };
142
142
  mas?: {
143
143
  type?: 'development' | 'distribution';
144
+ entitlements?: FilePath;
145
+ entitlementsInherit?: FilePath;
146
+ provisioningProfile?: FilePath;
144
147
  };
145
148
  nodeVersion?: string;
146
149
  npmVersion?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.29",
3
+ "version": "7.188.30",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -153,6 +153,9 @@ export interface ToDesktopJson {
153
153
  };
154
154
  mas?: {
155
155
  type?: 'development' | 'distribution'; // defaults to development
156
+ entitlements?: FilePath;
157
+ entitlementsInherit?: FilePath;
158
+ provisioningProfile?: FilePath;
156
159
  };
157
160
  nodeVersion?: string;
158
161
  npmVersion?: string;