@warlock.js/notifications 4.2.4 → 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 +1 -1
- package/llms-full.txt +1 -1
- package/package.json +5 -5
- package/skills/configure-notifications/SKILL.md +1 -1
package/CHANGELOG.md
CHANGED
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.
|
|
20
|
-
"@warlock.js/cascade": "4.2.
|
|
21
|
-
"@warlock.js/core": "4.2.
|
|
22
|
-
"@warlock.js/logger": "4.2.
|
|
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.
|
|
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
|
|