@todesktop/shared 7.184.7 → 7.184.9

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
@@ -142,6 +142,8 @@ export interface IAppMeta {
142
142
  }
143
143
  export interface BaseApp extends Schemable {
144
144
  id: string;
145
+ appModelId?: string;
146
+ customDomain?: string;
145
147
  meta?: IAppMeta;
146
148
  subscription?: {
147
149
  status: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.184.7",
3
+ "version": "7.184.9",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -150,6 +150,8 @@ export interface IAppMeta {
150
150
 
151
151
  export interface BaseApp extends Schemable {
152
152
  id: string;
153
+ appModelId?: string;
154
+ customDomain?: string;
153
155
  meta?: IAppMeta;
154
156
  subscription?: {
155
157
  status: string;