@bigfootai/bigfoot-types 4.9.7 → 4.9.8
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 +2 -1
- package/model.ts +4 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1105,9 +1105,10 @@ 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
|
-
blockType: String!
|
1111
1112
|
metadataType: String
|
1112
1113
|
}`;
|
1113
1114
|
exports.DashboardQL = `
|
package/model.ts
CHANGED
@@ -1922,15 +1922,17 @@ 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
|
-
blockType: String!
|
1928
1929
|
metadataType: String
|
1929
1930
|
}`;
|
1930
1931
|
export interface BlockData {
|
1932
|
+
name: string;
|
1933
|
+
blockType: BlockType;
|
1931
1934
|
title?: string;
|
1932
1935
|
document?: string;
|
1933
|
-
blockType: BlockType;
|
1934
1936
|
metadataType?: string;
|
1935
1937
|
}
|
1936
1938
|
|