@todesktop/shared 7.188.79 → 7.188.81

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
@@ -169,6 +169,7 @@ export interface ToDesktopJson {
169
169
  version?: string;
170
170
  };
171
171
  nsisInclude?: FilePath;
172
+ publisherName?: string[];
172
173
  };
173
174
  yarnVersion?: string;
174
175
  }
@@ -140,6 +140,7 @@ export interface IUser extends Schemable {
140
140
  isOldAccountThatNeedsNewPassword?: boolean;
141
141
  accessToken?: string;
142
142
  isAdmin?: boolean;
143
+ isImpersonator?: boolean;
143
144
  featureFlags?: FeatureFlags;
144
145
  disableShouldCodeSign?: boolean;
145
146
  allowedIPs?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.79",
3
+ "version": "7.188.81",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -183,6 +183,7 @@ export interface ToDesktopJson {
183
183
  version?: string;
184
184
  };
185
185
  nsisInclude?: FilePath;
186
+ publisherName?: string[];
186
187
  };
187
188
  yarnVersion?: string;
188
189
  }
package/src/toDesktop.ts CHANGED
@@ -156,6 +156,7 @@ export interface IUser extends Schemable {
156
156
  isOldAccountThatNeedsNewPassword?: boolean;
157
157
  accessToken?: string;
158
158
  isAdmin?: boolean;
159
+ isImpersonator?: boolean;
159
160
  featureFlags?: FeatureFlags;
160
161
  disableShouldCodeSign?: boolean;
161
162
  allowedIPs?: string[];