@isoftdata/utility-dashboard-backend 1.5.4 → 1.5.6

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 (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -49,6 +49,7 @@ const loadChartData = async(mysqlConnection, { name, query: queryObject, formatt
49
49
  if (chartWrapper?.chartType === 'Table') {
50
50
  return {
51
51
  ...theRest,
52
+ supertype,
52
53
  chartWrapper,
53
54
  table: { ...table, ...dataTable }, // combine the data and any table setting overrides
54
55
  formatting: processedFormatting,
@@ -56,6 +57,7 @@ const loadChartData = async(mysqlConnection, { name, query: queryObject, formatt
56
57
  }
57
58
  return {
58
59
  ...theRest,
60
+ supertype,
59
61
  chartWrapper: {
60
62
  ...chartWrapper,
61
63
  dataTable,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isoftdata/utility-dashboard-backend",
3
- "version": "1.5.4",
3
+ "version": "1.5.6",
4
4
  "description": "A utility for formatting chart and report data to be usable by the frontend dashboard component.",
5
5
  "main": "index.js",
6
6
  "scripts": {