@porulle/plugin-notifications 0.1.0 → 0.5.0
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
- package/src/index.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { PreferenceService } from "./services/preference-service.js";
|
|
|
7
7
|
export { PrintService } from "./services/print-service.js";
|
|
8
8
|
export { consoleSMSAdapter, consolePushAdapter, consolePrintAdapter } from "./adapters/console.js";
|
|
9
9
|
/**
|
|
10
|
-
* Notifications Plugin
|
|
10
|
+
* Notifications Plugin
|
|
11
11
|
*
|
|
12
12
|
* Provides:
|
|
13
13
|
* - Notification template CRUD with Handlebars-style rendering
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ export { PreferenceService } from "./services/preference-service.js";
|
|
|
9
9
|
export { PrintService } from "./services/print-service.js";
|
|
10
10
|
export { consoleSMSAdapter, consolePushAdapter, consolePrintAdapter } from "./adapters/console.js";
|
|
11
11
|
/**
|
|
12
|
-
* Notifications Plugin
|
|
12
|
+
* Notifications Plugin
|
|
13
13
|
*
|
|
14
14
|
* Provides:
|
|
15
15
|
* - Notification template CRUD with Handlebars-style rendering
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porulle/plugin-notifications",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@hono/zod-openapi": "^1.2.2",
|
|
26
|
-
"@porulle/core": "
|
|
26
|
+
"@porulle/core": "^0.5.0",
|
|
27
27
|
"hono": "^4.12.5"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@
|
|
31
|
-
"@
|
|
30
|
+
"@porulle/eslint-config": "*",
|
|
31
|
+
"@porulle/typescript-config": "*",
|
|
32
32
|
"@types/node": "^24.5.2",
|
|
33
33
|
"typescript": "5.9.2",
|
|
34
34
|
"vitest": "^3.2.4"
|
package/src/index.ts
CHANGED
|
@@ -16,7 +16,7 @@ export { PrintService } from "./services/print-service.js";
|
|
|
16
16
|
export { consoleSMSAdapter, consolePushAdapter, consolePrintAdapter } from "./adapters/console.js";
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
* Notifications Plugin
|
|
19
|
+
* Notifications Plugin
|
|
20
20
|
*
|
|
21
21
|
* Provides:
|
|
22
22
|
* - Notification template CRUD with Handlebars-style rendering
|