chore(release): release 3.0.3 with iOS notification diagnostics

Bump to 3.0.3 and add bridge-safe getPendingNotifications,
getDeliveredNotifications, and getNotificationSettings for local
notification debug panels.
This commit is contained in:
Jose Olarte III
2026-05-22 16:48:12 +08:00
parent 7f7d65cae6
commit f82c427108
3 changed files with 11 additions and 3 deletions

View File

@@ -5,6 +5,14 @@ All notable changes to the Daily Notification Plugin will be documented in this
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [3.0.3] - 2026-05-22
### Added
- **iOS**: `getDeliveredNotifications` and `getNotificationSettings` diagnostics APIs for debug panels (bridge-safe, local notification state only).
- **iOS**: `getPendingNotifications` now includes `triggerTimestamp` and `triggerDateIso`; always resolves with serializable values.
- **TypeScript**: `PendingNotificationsResult`, `DeliveredNotificationsResult`, `NotificationCenterSettingsSnapshot`, and related definitions/web stubs.
## [3.0.2] - 2026-05-05 ## [3.0.2] - 2026-05-05
### Changed ### Changed

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@timesafari/daily-notification-plugin", "name": "@timesafari/daily-notification-plugin",
"version": "3.0.2", "version": "3.0.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@timesafari/daily-notification-plugin", "name": "@timesafari/daily-notification-plugin",
"version": "3.0.2", "version": "3.0.3",
"license": "MIT", "license": "MIT",
"workspaces": [ "workspaces": [
"packages/*" "packages/*"

View File

@@ -1,6 +1,6 @@
{ {
"name": "@timesafari/daily-notification-plugin", "name": "@timesafari/daily-notification-plugin",
"version": "3.0.2", "version": "3.0.3",
"description": "TimeSafari Daily Notification Plugin - Enterprise-grade daily notification functionality with dual scheduling, callback support, TTL-at-fire logic, and comprehensive observability across Mobile (Capacitor) and Desktop (Electron) platforms", "description": "TimeSafari Daily Notification Plugin - Enterprise-grade daily notification functionality with dual scheduling, callback support, TTL-at-fire logic, and comprehensive observability across Mobile (Capacitor) and Desktop (Electron) platforms",
"main": "dist/plugin.js", "main": "dist/plugin.js",
"module": "dist/esm/index.js", "module": "dist/esm/index.js",