dochub-sdk 0.1.85 → 0.1.86

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.
@@ -45,6 +45,7 @@ export enum DocHubEditorType {
45
45
  */
46
46
  export type DocHubEditorFileContext = {
47
47
  type: DocHubEditorType.file,
48
+ title?: string;
48
49
  meta: IDocHubFileEditorContext
49
50
  }
50
51
 
@@ -53,6 +54,7 @@ export type DocHubEditorFileContext = {
53
54
  */
54
55
  export type DocHubEditorObjectContext = {
55
56
  type: DocHubEditorType.object,
57
+ title?: string;
56
58
  meta: IDocHubObjectEditorContext
57
59
  }
58
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.85",
3
+ "version": "0.1.86",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",