@bigfootai/bigfoot-types 5.1.13 → 5.1.15
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.
@@ -24,11 +24,10 @@ exports.AccountOverview = {
|
|
24
24
|
blockType: model_1.BlockType.Record,
|
25
25
|
},
|
26
26
|
{
|
27
|
-
name: '
|
28
|
-
title: '
|
29
|
-
description: 'A list of
|
27
|
+
name: 'team',
|
28
|
+
title: 'Team',
|
29
|
+
description: 'A list of people associated with the account',
|
30
30
|
tagType: model_1.TagType.Person,
|
31
|
-
blockType: model_1.BlockType.Table,
|
32
31
|
},
|
33
32
|
{
|
34
33
|
name: 'opportunities',
|
@@ -25,11 +25,10 @@ export const AccountOverview: DashboardMetadata = {
|
|
25
25
|
blockType: BlockType.Record,
|
26
26
|
},
|
27
27
|
{
|
28
|
-
name: '
|
29
|
-
title: '
|
30
|
-
description: 'A list of
|
28
|
+
name: 'team',
|
29
|
+
title: 'Team',
|
30
|
+
description: 'A list of people associated with the account',
|
31
31
|
tagType: TagType.Person,
|
32
|
-
blockType: BlockType.Table,
|
33
32
|
},
|
34
33
|
{
|
35
34
|
name: 'opportunities',
|
package/model.js
CHANGED
@@ -1087,11 +1087,12 @@ exports.Document = Document;
|
|
1087
1087
|
exports.BlockDataQL = `
|
1088
1088
|
type BlockData {
|
1089
1089
|
name: String!
|
1090
|
-
blockType: String
|
1090
|
+
blockType: String
|
1091
1091
|
title: String
|
1092
1092
|
document: String
|
1093
1093
|
htmlContent: String
|
1094
1094
|
metadataType: String
|
1095
|
+
tagType: String
|
1095
1096
|
}`;
|
1096
1097
|
exports.DashboardQL = `
|
1097
1098
|
type Dashboard {${exports.BusinessObjectFields}
|
@@ -1111,6 +1112,7 @@ class Dashboard extends BusinessObject {
|
|
1111
1112
|
metadataType: blockDescription.metadataType,
|
1112
1113
|
});
|
1113
1114
|
}
|
1115
|
+
this.metadata = dashboardMetadata;
|
1114
1116
|
}
|
1115
1117
|
}
|
1116
1118
|
exports.Dashboard = Dashboard;
|
package/model.ts
CHANGED
@@ -1856,19 +1856,21 @@ export class Document extends BusinessObject {
|
|
1856
1856
|
export const BlockDataQL = `
|
1857
1857
|
type BlockData {
|
1858
1858
|
name: String!
|
1859
|
-
blockType: String
|
1859
|
+
blockType: String
|
1860
1860
|
title: String
|
1861
1861
|
document: String
|
1862
1862
|
htmlContent: String
|
1863
1863
|
metadataType: String
|
1864
|
+
tagType: String
|
1864
1865
|
}`;
|
1865
1866
|
export interface BlockData {
|
1866
1867
|
name: string;
|
1867
|
-
blockType
|
1868
|
+
blockType?: BlockType;
|
1868
1869
|
title?: string;
|
1869
1870
|
document?: string;
|
1870
1871
|
htmlContent?: string;
|
1871
1872
|
metadataType?: string;
|
1873
|
+
tagType?: TagType;
|
1872
1874
|
}
|
1873
1875
|
|
1874
1876
|
export const DashboardQL = `
|
@@ -1876,6 +1878,7 @@ type Dashboard {${BusinessObjectFields}
|
|
1876
1878
|
blockData: [BlockData]
|
1877
1879
|
}`;
|
1878
1880
|
export class Dashboard extends BusinessObject {
|
1881
|
+
metadata: DashboardMetadata;
|
1879
1882
|
blockData: BlockData[];
|
1880
1883
|
tagId: string;
|
1881
1884
|
|
@@ -1912,6 +1915,8 @@ export class Dashboard extends BusinessObject {
|
|
1912
1915
|
metadataType: blockDescription.metadataType,
|
1913
1916
|
});
|
1914
1917
|
}
|
1918
|
+
|
1919
|
+
this.metadata = dashboardMetadata;
|
1915
1920
|
}
|
1916
1921
|
}
|
1917
1922
|
//// DASHBOARD END
|