@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 +1 -1
- package/package.json +1 -1
- package/src/base.ts +1 -4
package/lib/base.d.ts
CHANGED
package/package.json
CHANGED
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;
|