@k-msg/analytics 0.20.0 → 0.21.1

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -75,6 +75,7 @@ await analytics.init();
75
75
  ## Notes
76
76
 
77
77
  - `@k-msg/analytics` does not create its own database. It reads from the `kmsg_delivery_tracking` table written by `DeliveryTrackingService`.
78
+ - Tracking SQL schema now disables the `raw` column by default (`storeRaw: false`); enable it in the tracking store only when needed.
78
79
  - For production usage, prefer a durable store (`SqliteDeliveryTrackingStore` or `BunSqlDeliveryTrackingStore`).
79
80
  - Runtime diagnostics in analytics modules use `@k-msg/core` logger (no direct `console.*` in runtime paths).
80
81
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k-msg/analytics",
3
- "version": "0.20.0",
3
+ "version": "0.21.1",
4
4
  "packageManager": "bun@1.3.8",
5
5
  "description": "Analytics and reporting engine for message tracking and insights",
6
6
  "type": "module",
@@ -35,9 +35,9 @@
35
35
  "publish": "bun publish --access public"
36
36
  },
37
37
  "dependencies": {
38
- "@k-msg/core": "0.20.0",
38
+ "@k-msg/core": "0.21.1",
39
39
  "zod": "^4.0.14",
40
- "@k-msg/messaging": "0.20.0"
40
+ "@k-msg/messaging": "0.21.1"
41
41
  },
42
42
  "devDependencies": {
43
43
  "typescript": "^5.7.2",