@bigfootai/bigfoot-types 5.1.14 → 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 +3 -0
- package/model.ts +5 -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) {
|
@@ -1112,6 +1114,7 @@ class Dashboard extends BusinessObject {
|
|
1112
1114
|
metadataType: blockDescription.metadataType,
|
1113
1115
|
});
|
1114
1116
|
}
|
1117
|
+
this.metadata = dashboardMetadata;
|
1115
1118
|
}
|
1116
1119
|
}
|
1117
1120
|
exports.Dashboard = Dashboard;
|
package/model.ts
CHANGED
@@ -1875,9 +1875,12 @@ 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 {
|
1883
|
+
metadata: DashboardMetadata;
|
1881
1884
|
blockData: BlockData[];
|
1882
1885
|
tagId: string;
|
1883
1886
|
|
@@ -1914,6 +1917,8 @@ export class Dashboard extends BusinessObject {
|
|
1914
1917
|
metadataType: blockDescription.metadataType,
|
1915
1918
|
});
|
1916
1919
|
}
|
1920
|
+
|
1921
|
+
this.metadata = dashboardMetadata;
|
1917
1922
|
}
|
1918
1923
|
}
|
1919
1924
|
//// DASHBOARD END
|