@chatpanel/events 0.48.0 → 0.49.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/index.js CHANGED
@@ -208,3 +208,6 @@ export {
208
208
  checkoutUrl, planOf, planLabel, isPro, isTeam, can, tierFor, withinFreeLimit,
209
209
  verifyEntitlement, licenseFromPayload, needsRecheck,
210
210
  } from './entitlement.js';
211
+
212
+ // One markdown renderer for every client — escaped first, link policy injected.
213
+ export { renderMarkdown, defaultLinkPolicy } from './markdown-render.js';
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatpanel/events",
3
- "version": "0.48.0",
3
+ "version": "0.49.0",
4
4
  "description": "The canonical ChatPanel event-log and capability contracts — typed durable facts, clock-free deterministic linearization, schema upcasting, and the invariants the replay harness asserts. Pure, dependency-free ESM shared by the ChatPanel extension, gateway and bridge.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -26,6 +26,7 @@
26
26
  "./loop.js": "./loop.js",
27
27
  "./manifest.js": "./manifest.js",
28
28
  "./markdown-authoring.js": "./markdown-authoring.js",
29
+ "./markdown-render.js": "./markdown-render.js",
29
30
  "./mcp-errors.js": "./mcp-errors.js",
30
31
  "./media-transcript.js": "./media-transcript.js",
31
32
  "./meeting-analyzers.js": "./meeting-analyzers.js",
@@ -97,6 +98,7 @@
97
98
  "loop.js",
98
99
  "manifest.js",
99
100
  "markdown-authoring.js",
101
+ "markdown-render.js",
100
102
  "mcp-errors.js",
101
103
  "media-transcript.js",
102
104
  "meeting-analyzers.js",