@todesktop/shared 7.155.0 → 7.156.0

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.
@@ -378,6 +378,6 @@ export interface DesktopifyApp2 {
378
378
  fileAssetDetailsList?: FileAssetDetails[];
379
379
  }
380
380
  export interface IApp2 extends BaseApp {
381
- desktopApp: DesktopifyApp2;
381
+ desktopApp?: DesktopifyApp2;
382
382
  }
383
383
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.155.0",
3
+ "version": "7.156.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -504,5 +504,6 @@ export interface DesktopifyApp2 {
504
504
  }
505
505
 
506
506
  export interface IApp2 extends BaseApp {
507
- desktopApp: DesktopifyApp2;
507
+ // Old apps don't have the `desktopApp` property so let's not assume it exists
508
+ desktopApp?: DesktopifyApp2;
508
509
  }