@todesktop/shared 7.188.58 → 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
@@ -233,7 +233,7 @@ export interface BaseApp extends Schemable {
233
233
  parent?: {
234
234
  id: string;
235
235
  relationshipToParent: string;
236
- };
236
+ } | null;
237
237
  subscription?: {
238
238
  status: string;
239
239
  subscriptionId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.58",
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
@@ -264,10 +264,7 @@ export interface BaseApp extends Schemable {
264
264
  meta?: IAppMeta;
265
265
  // this property is dynamically resolved at queueBuild in cloud functions
266
266
  parentApp?: BaseApp;
267
- parent?: {
268
- id: string;
269
- relationshipToParent: string;
270
- };
267
+ parent?: { id: string; relationshipToParent: string } | null;
271
268
  subscription?: {
272
269
  status: string;
273
270
  subscriptionId: string;