@todesktop/shared 7.188.9 → 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.
@@ -100,6 +100,7 @@ export interface Build {
100
100
  electronVersionUsed?: SemanticVersion;
101
101
  environmentVariables?: IApp['environmentVariables'];
102
102
  errorMessage?: string;
103
+ hash?: string;
103
104
  icon?: string;
104
105
  id: string;
105
106
  isBeingCancelled?: boolean;
@@ -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.9",
3
+ "version": "7.188.11",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -140,6 +140,7 @@ export interface Build {
140
140
  electronVersionUsed?: SemanticVersion;
141
141
  environmentVariables?: IApp['environmentVariables'];
142
142
  errorMessage?: string;
143
+ hash?: string;
143
144
  icon?: string;
144
145
  id: string;
145
146
  isBeingCancelled?: boolean;
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 {