@todesktop/shared 7.188.57 → 7.188.59

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,10 +229,11 @@ 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;
235
- };
236
+ } | null;
236
237
  subscription?: {
237
238
  status: string;
238
239
  subscriptionId: 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.59",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -262,10 +262,9 @@ export interface BaseApp extends Schemable {
262
262
  customWindowsCodeSign?: CustomWindowsCodeSignFile | CustomWindowsCodeSignEV;
263
263
 
264
264
  meta?: IAppMeta;
265
- parent?: {
266
- id: string;
267
- relationshipToParent: string;
268
- };
265
+ // this property is dynamically resolved at queueBuild in cloud functions
266
+ parentApp?: BaseApp;
267
+ parent?: { id: string; relationshipToParent: string } | null;
269
268
  subscription?: {
270
269
  status: string;
271
270
  subscriptionId: string;