@todesktop/shared 7.188.42 → 7.188.43
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/desktopify2.d.ts +4 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +4 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -389,6 +389,10 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
|
|
|
389
389
|
* Enables push notifications
|
|
390
390
|
*/
|
|
391
391
|
enablePushNotifications?: boolean;
|
|
392
|
+
/**
|
|
393
|
+
* Disable error reporting (Sentry)
|
|
394
|
+
*/
|
|
395
|
+
disableErrorTracking?: boolean;
|
|
392
396
|
/**
|
|
393
397
|
* Sets theme for Electron UI elements and css.
|
|
394
398
|
*
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -524,6 +524,10 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
|
|
|
524
524
|
* Enables push notifications
|
|
525
525
|
*/
|
|
526
526
|
enablePushNotifications?: boolean;
|
|
527
|
+
/**
|
|
528
|
+
* Disable error reporting (Sentry)
|
|
529
|
+
*/
|
|
530
|
+
disableErrorTracking?: boolean;
|
|
527
531
|
/**
|
|
528
532
|
* Sets theme for Electron UI elements and css.
|
|
529
533
|
*
|