@bigfootai/bigfoot-types 5.0.21 → 5.0.22
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 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1076,8 +1076,9 @@ type Dashboard {${exports.BusinessObjectFields}
|
|
1076
1076
|
blockData: [BlockData]
|
1077
1077
|
}`;
|
1078
1078
|
class Dashboard extends BusinessObject {
|
1079
|
-
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId, dashboardMetadata) {
|
1079
|
+
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId, dashboardMetadata, tagId) {
|
1080
1080
|
super(tenantIdCreated, editors, sharingTags, BlockType.Dashboard, provider, application, uri, externalId);
|
1081
|
+
this.tagId = tagId;
|
1081
1082
|
this.blockData = [];
|
1082
1083
|
// Go through the block descriptions and create the block data entries
|
1083
1084
|
for (const blockDescription of dashboardMetadata.blockDescriptions) {
|
package/model.ts
CHANGED
@@ -1839,6 +1839,7 @@ type Dashboard {${BusinessObjectFields}
|
|
1839
1839
|
}`;
|
1840
1840
|
export class Dashboard extends BusinessObject {
|
1841
1841
|
blockData: BlockData[];
|
1842
|
+
tagId: string;
|
1842
1843
|
|
1843
1844
|
constructor(
|
1844
1845
|
tenantIdCreated: string,
|
@@ -1848,7 +1849,8 @@ export class Dashboard extends BusinessObject {
|
|
1848
1849
|
application: string,
|
1849
1850
|
uri: string,
|
1850
1851
|
externalId: string,
|
1851
|
-
dashboardMetadata: DashboardMetadata
|
1852
|
+
dashboardMetadata: DashboardMetadata,
|
1853
|
+
tagId: string
|
1852
1854
|
) {
|
1853
1855
|
super(
|
1854
1856
|
tenantIdCreated,
|
@@ -1861,6 +1863,7 @@ export class Dashboard extends BusinessObject {
|
|
1861
1863
|
externalId
|
1862
1864
|
);
|
1863
1865
|
|
1866
|
+
this.tagId = tagId;
|
1864
1867
|
this.blockData = [];
|
1865
1868
|
// Go through the block descriptions and create the block data entries
|
1866
1869
|
for (const blockDescription of dashboardMetadata.blockDescriptions) {
|