@bigfootai/bigfoot-types 4.9.7 → 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 +3 -1
- package/model.ts +6 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1105,9 +1105,11 @@ exports.Document = Document;
|
|
1105
1105
|
//// DASHBOARD START
|
1106
1106
|
exports.BlockDataQL = `
|
1107
1107
|
type BlockData {
|
1108
|
+
name: String!
|
1109
|
+
blockType: String!
|
1108
1110
|
title: String
|
1109
1111
|
document: String
|
1110
|
-
|
1112
|
+
htmlContent: String
|
1111
1113
|
metadataType: String
|
1112
1114
|
}`;
|
1113
1115
|
exports.DashboardQL = `
|
package/model.ts
CHANGED
@@ -1922,15 +1922,19 @@ export class Document extends BusinessObject {
|
|
1922
1922
|
//// DASHBOARD START
|
1923
1923
|
export const BlockDataQL = `
|
1924
1924
|
type BlockData {
|
1925
|
+
name: String!
|
1926
|
+
blockType: String!
|
1925
1927
|
title: String
|
1926
1928
|
document: String
|
1927
|
-
|
1929
|
+
htmlContent: String
|
1928
1930
|
metadataType: String
|
1929
1931
|
}`;
|
1930
1932
|
export interface BlockData {
|
1933
|
+
name: string;
|
1934
|
+
blockType: BlockType;
|
1931
1935
|
title?: string;
|
1932
1936
|
document?: string;
|
1933
|
-
|
1937
|
+
htmlContent?: string;
|
1934
1938
|
metadataType?: string;
|
1935
1939
|
}
|
1936
1940
|
|