@warlock.js/notifications 4.2.3 → 4.2.5

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/CHANGELOG.md CHANGED
@@ -16,6 +16,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
16
16
 
17
17
  ## 4.2.0
18
18
 
19
- ### Added
19
+ ### New
20
20
 
21
21
  - Shipped Warlock.js Notifications Package.
package/llms-full.txt CHANGED
@@ -15,7 +15,7 @@ description: 'Wire `@warlock.js/notifications` via a declarative `src/config/not
15
15
 
16
16
  `src/config/notifications.ts` exports a `NotificationConfig` as its default; the notifications connector registers it at boot and the dispatcher reads from it on every send. The file is **declarative** — you never call `setNotificationConfig` yourself (the connector does, the same way the rest of `src/config/*.ts` is wired).
17
17
 
18
- > `npx warlock add notifications` ejects this file pre-wired (mail + in-app) alongside the `Notification` model + migration. Edit the ejected config to taste — the sections below are the full surface.
18
+ > `npx warlock add notifications` ejects this file pre-wired (mail + in-app) alongside the `Notification` model + migration and the recipient-scoped read/dismiss routes + controllers. Edit the ejected config to taste — the sections below are the full surface.
19
19
 
20
20
  ## Minimal
21
21
 
package/package.json CHANGED
@@ -16,12 +16,12 @@
16
16
  "url": "https://github.com/warlockjs/notifications"
17
17
  },
18
18
  "dependencies": {
19
- "@warlock.js/cache": "4.2.3",
20
- "@warlock.js/cascade": "4.2.3",
21
- "@warlock.js/core": "4.2.3",
22
- "@warlock.js/logger": "4.2.3"
19
+ "@warlock.js/cache": "4.2.5",
20
+ "@warlock.js/cascade": "4.2.5",
21
+ "@warlock.js/core": "4.2.5",
22
+ "@warlock.js/logger": "4.2.5"
23
23
  },
24
- "version": "4.2.3",
24
+ "version": "4.2.5",
25
25
  "main": "./cjs/index.cjs",
26
26
  "module": "./esm/index.mjs",
27
27
  "types": "./esm/index.d.mts",
@@ -7,7 +7,7 @@ description: 'Wire `@warlock.js/notifications` via a declarative `src/config/not
7
7
 
8
8
  `src/config/notifications.ts` exports a `NotificationConfig` as its default; the notifications connector registers it at boot and the dispatcher reads from it on every send. The file is **declarative** — you never call `setNotificationConfig` yourself (the connector does, the same way the rest of `src/config/*.ts` is wired).
9
9
 
10
- > `npx warlock add notifications` ejects this file pre-wired (mail + in-app) alongside the `Notification` model + migration. Edit the ejected config to taste — the sections below are the full surface.
10
+ > `npx warlock add notifications` ejects this file pre-wired (mail + in-app) alongside the `Notification` model + migration and the recipient-scoped read/dismiss routes + controllers. Edit the ejected config to taste — the sections below are the full surface.
11
11
 
12
12
  ## Minimal
13
13