@todesktop/shared 7.188.55 → 7.188.56
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 +5 -1
- package/package.json +1 -1
- package/src/desktopify2.ts +5 -1
package/lib/desktopify2.d.ts
CHANGED
|
@@ -390,9 +390,13 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
|
|
|
390
390
|
*/
|
|
391
391
|
shouldMakeSameDomainAnExternalLink?: boolean;
|
|
392
392
|
/**
|
|
393
|
-
* Enables push notifications
|
|
393
|
+
* Enables push notifications — uses `electron-push-receiver`
|
|
394
394
|
*/
|
|
395
395
|
enablePushNotifications?: boolean;
|
|
396
|
+
/**
|
|
397
|
+
* Enables NEW push notifications — uses `@cuj1559/electron-push-receiver`
|
|
398
|
+
*/
|
|
399
|
+
enableNewPushNotifications?: boolean;
|
|
396
400
|
/**
|
|
397
401
|
* Disable error reporting (Sentry)
|
|
398
402
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -525,9 +525,13 @@ export interface DesktopifyApp2<Plugin = DesktopAppPlugin> {
|
|
|
525
525
|
*/
|
|
526
526
|
shouldMakeSameDomainAnExternalLink?: boolean;
|
|
527
527
|
/**
|
|
528
|
-
* Enables push notifications
|
|
528
|
+
* Enables push notifications — uses `electron-push-receiver`
|
|
529
529
|
*/
|
|
530
530
|
enablePushNotifications?: boolean;
|
|
531
|
+
/**
|
|
532
|
+
* Enables NEW push notifications — uses `@cuj1559/electron-push-receiver`
|
|
533
|
+
*/
|
|
534
|
+
enableNewPushNotifications?: boolean;
|
|
531
535
|
/**
|
|
532
536
|
* Disable error reporting (Sentry)
|
|
533
537
|
*/
|