@todesktop/shared 7.188.57 → 7.188.58

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
@@ -229,6 +229,7 @@ export interface BaseApp extends Schemable {
229
229
  customNotarization?: CustomMacNotarization;
230
230
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
231
231
  meta?: IAppMeta;
232
+ parentApp?: BaseApp;
232
233
  parent?: {
233
234
  id: string;
234
235
  relationshipToParent: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.57",
3
+ "version": "7.188.58",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -262,6 +262,8 @@ export interface BaseApp extends Schemable {
262
262
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
263
263
 
264
264
  meta?: IAppMeta;
265
+ // this property is dynamically resolved at queueBuild in cloud functions
266
+ parentApp?: BaseApp;
265
267
  parent?: {
266
268
  id: string;
267
269
  relationshipToParent: string;