@pi-unipi/core 2.0.3 → 2.0.4
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/events.ts +2 -0
- package/package.json +1 -1
package/events.ts
CHANGED
|
@@ -409,6 +409,8 @@ export interface UnipiNotificationSentEvent {
|
|
|
409
409
|
platforms: string[];
|
|
410
410
|
/** Whether all platforms succeeded */
|
|
411
411
|
success: boolean;
|
|
412
|
+
/** Platforms where notification was suppressed (e.g. window focused) */
|
|
413
|
+
suppressedPlatforms?: string[];
|
|
412
414
|
/** ISO timestamp */
|
|
413
415
|
timestamp: string;
|
|
414
416
|
}
|