@todesktop/shared 7.188.80 → 7.188.82

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.
@@ -45,7 +45,6 @@ exports.allowedBrowserWindowConstructorOptions = [
45
45
  'titleBarStyle',
46
46
  'trafficLightPosition',
47
47
  // "roundedCorners",
48
- 'fullscreenWindowTitle',
49
48
  'thickFrame',
50
49
  'type',
51
50
  'vibrancy',
@@ -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.80",
3
+ "version": "7.188.82",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "author": "Dave Jeffery <dave@davejeffery.com>",
18
18
  "license": "UNLICENSED",
19
19
  "dependencies": {
20
- "@todesktop/client-electron-types": "^27.0.2",
20
+ "@todesktop/client-electron-types": "^28.0.0",
21
21
  "@types/debug": "^4.1.1",
22
22
  "@types/node": "^16.4.12",
23
23
  "is-regex": "^1.0.4",
@@ -194,7 +194,6 @@ export const allowedBrowserWindowConstructorOptions: Readonly<
194
194
  'titleBarStyle',
195
195
  'trafficLightPosition',
196
196
  // "roundedCorners",
197
- 'fullscreenWindowTitle',
198
197
  'thickFrame',
199
198
  'type',
200
199
  'vibrancy',
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[];