@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.
Files changed (3) hide show
  1. package/model.js +1 -0
  2. package/model.ts +3 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1112,6 +1112,7 @@ class Dashboard extends BusinessObject {
1112
1112
  metadataType: blockDescription.metadataType,
1113
1113
  });
1114
1114
  }
1115
+ this.metadata = dashboardMetadata;
1115
1116
  }
1116
1117
  }
1117
1118
  exports.Dashboard = Dashboard;
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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.14",
4
+ "version": "5.1.15",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",