@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.
Files changed (3) hide show
  1. package/model.js +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1109,6 +1109,7 @@ type BlockData {
1109
1109
  blockType: String!
1110
1110
  title: String
1111
1111
  document: String
1112
+ htmlContent: String
1112
1113
  metadataType: String
1113
1114
  }`;
1114
1115
  exports.DashboardQL = `
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
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.9.8",
4
+ "version": "4.9.9",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",