@bigfootai/bigfoot-types 5.1.14 → 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.
- package/model.js +1 -0
- package/model.ts +3 -0
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -1878,6 +1878,7 @@ type Dashboard {${BusinessObjectFields}
|
|
1878
1878
|
blockData: [BlockData]
|
1879
1879
|
}`;
|
1880
1880
|
export class Dashboard extends BusinessObject {
|
1881
|
+
metadata: DashboardMetadata;
|
1881
1882
|
blockData: BlockData[];
|
1882
1883
|
tagId: string;
|
1883
1884
|
|
@@ -1914,6 +1915,8 @@ export class Dashboard extends BusinessObject {
|
|
1914
1915
|
metadataType: blockDescription.metadataType,
|
1915
1916
|
});
|
1916
1917
|
}
|
1918
|
+
|
1919
|
+
this.metadata = dashboardMetadata;
|
1917
1920
|
}
|
1918
1921
|
}
|
1919
1922
|
//// DASHBOARD END
|