@bigfootai/bigfoot-types 5.1.15 → 5.1.16
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 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1096,7 +1096,9 @@ type BlockData {
|
|
1096
1096
|
}`;
|
1097
1097
|
exports.DashboardQL = `
|
1098
1098
|
type Dashboard {${exports.BusinessObjectFields}
|
1099
|
+
metadata: DashboardMetadata
|
1099
1100
|
blockData: [BlockData]
|
1101
|
+
tagId: String
|
1100
1102
|
}`;
|
1101
1103
|
class Dashboard extends BusinessObject {
|
1102
1104
|
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId, dashboardMetadata, tagId) {
|
package/model.ts
CHANGED
@@ -1875,7 +1875,9 @@ export interface BlockData {
|
|
1875
1875
|
|
1876
1876
|
export const DashboardQL = `
|
1877
1877
|
type Dashboard {${BusinessObjectFields}
|
1878
|
+
metadata: DashboardMetadata
|
1878
1879
|
blockData: [BlockData]
|
1880
|
+
tagId: String
|
1879
1881
|
}`;
|
1880
1882
|
export class Dashboard extends BusinessObject {
|
1881
1883
|
metadata: DashboardMetadata;
|