@todesktop/shared 7.188.42 → 7.188.44

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.
@@ -162,6 +162,10 @@ export interface DesktopifyAppWindow {
162
162
  * Disables default rightClick menu
163
163
  */
164
164
  disableContextMenu: boolean;
165
+ /**
166
+ * Disables the menu item for opening a link in a new app window
167
+ */
168
+ disableContextMenuOpenInWindow: boolean;
165
169
  /**
166
170
  * Allows user to `Cmd+F` or `Edit>Find` to search for text on page
167
171
  */
@@ -389,6 +393,10 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
389
393
  * Enables push notifications
390
394
  */
391
395
  enablePushNotifications?: boolean;
396
+ /**
397
+ * Disable error reporting (Sentry)
398
+ */
399
+ disableErrorTracking?: boolean;
392
400
  /**
393
401
  * Sets theme for Electron UI elements and css.
394
402
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.42",
3
+ "version": "7.188.44",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -288,6 +288,10 @@ export interface DesktopifyAppWindow {
288
288
  * Disables default rightClick menu
289
289
  */
290
290
  disableContextMenu: boolean;
291
+ /**
292
+ * Disables the menu item for opening a link in a new app window
293
+ */
294
+ disableContextMenuOpenInWindow: boolean;
291
295
  /**
292
296
  * Allows user to `Cmd+F` or `Edit>Find` to search for text on page
293
297
  */
@@ -524,6 +528,10 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
524
528
  * Enables push notifications
525
529
  */
526
530
  enablePushNotifications?: boolean;
531
+ /**
532
+ * Disable error reporting (Sentry)
533
+ */
534
+ disableErrorTracking?: boolean;
527
535
  /**
528
536
  * Sets theme for Electron UI elements and css.
529
537
  *