@dotcms/types 1.1.1-next.4 → 1.1.1-next.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotcms/types",
3
- "version": "1.1.1-next.4",
3
+ "version": "1.1.1-next.6",
4
4
  "keywords": [
5
5
  "dotCMS",
6
6
  "CMS",
@@ -9,7 +9,7 @@ export interface BlockEditorMark {
9
9
  attrs: Record<string, string>;
10
10
  }
11
11
  /**
12
- * Represents a Content Node used by the Block Editor
12
+ * Represents a Node in the Block Editor
13
13
  *
14
14
  * @export
15
15
  * @interface BlockEditorNode
@@ -26,13 +26,3 @@ export interface BlockEditorNode {
26
26
  /** Optional text content */
27
27
  text?: string;
28
28
  }
29
- /**
30
- * Represents a Block in the Block Editor
31
- *
32
- * @export
33
- * @interface BlockEditorContent
34
- */
35
- export interface BlockEditorContent {
36
- content?: BlockEditorNode[];
37
- type: string;
38
- }