@typerighter/rpc-client 0.30.3 → 0.30.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/dist/index.d.ts CHANGED
@@ -28,6 +28,7 @@ export interface TdFileMetadata {
28
28
  export interface TdHeading {
29
29
  level: number;
30
30
  title: string;
31
+ titleHtml: string;
31
32
  slug: string;
32
33
  }
33
34
  export interface TdSidebarItem {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@typerighter/rpc-client",
4
- "version": "0.30.3",
4
+ "version": "0.30.5",
5
5
  "description": "JSON-RPC client for Typedown over TCP/stdio.",
6
6
  "repository": {
7
7
  "type": "git",
package/src/index.ts CHANGED
@@ -38,6 +38,7 @@ export interface TdFileMetadata {
38
38
  export interface TdHeading {
39
39
  level: number;
40
40
  title: string;
41
+ titleHtml: string;
41
42
  slug: string;
42
43
  }
43
44