@todesktop/shared 7.188.10 → 7.188.11

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.
@@ -146,6 +146,7 @@ export interface IUser extends Schemable {
146
146
  isAdmin?: boolean;
147
147
  featureFlags?: FeatureFlags;
148
148
  disableShouldCodeSign?: boolean;
149
+ allowedIPs?: string[];
149
150
  }
150
151
  export interface FeatureFlags {
151
152
  desktopAppPlugins: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.10",
3
+ "version": "7.188.11",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/toDesktop.ts CHANGED
@@ -162,6 +162,7 @@ export interface IUser extends Schemable {
162
162
  isAdmin?: boolean;
163
163
  featureFlags?: FeatureFlags;
164
164
  disableShouldCodeSign?: boolean;
165
+ allowedIPs?: string[];
165
166
  }
166
167
 
167
168
  export interface FeatureFlags {