@bigfootai/bigfoot-types 4.9.8 → 4.9.9
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/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -1926,6 +1926,7 @@ type BlockData {
|
|
1926
1926
|
blockType: String!
|
1927
1927
|
title: String
|
1928
1928
|
document: String
|
1929
|
+
htmlContent: String
|
1929
1930
|
metadataType: String
|
1930
1931
|
}`;
|
1931
1932
|
export interface BlockData {
|
@@ -1933,6 +1934,7 @@ export interface BlockData {
|
|
1933
1934
|
blockType: BlockType;
|
1934
1935
|
title?: string;
|
1935
1936
|
document?: string;
|
1937
|
+
htmlContent?: string;
|
1936
1938
|
metadataType?: string;
|
1937
1939
|
}
|
1938
1940
|
|