@cubejs-client/core 1.6.33 → 1.6.35
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/dist/cubejs-client-core.cjs.js +6 -2
- package/dist/cubejs-client-core.cjs.js.map +1 -1
- package/dist/cubejs-client-core.umd.js +6 -2
- package/dist/cubejs-client-core.umd.js.map +1 -1
- package/dist/src/ResultSet.d.ts.map +1 -1
- package/dist/src/ResultSet.js +4 -2
- package/dist/src/format.d.ts.map +1 -1
- package/dist/src/format.js +20 -1
- package/dist/src/types.d.ts +17 -0
- package/dist/src/types.d.ts.map +1 -1
- package/dist/test/ResultSet.test.js +6 -0
- package/dist/test/format.test.js +15 -1
- package/package.json +19 -6
|
@@ -1570,14 +1570,18 @@ var ResultSet = /*#__PURE__*/function () {
|
|
|
1570
1570
|
shortTitle = _ref25.shortTitle,
|
|
1571
1571
|
type = _ref25.type,
|
|
1572
1572
|
format = _ref25.format,
|
|
1573
|
-
meta = _ref25.meta
|
|
1573
|
+
meta = _ref25.meta,
|
|
1574
|
+
currency = _ref25.currency,
|
|
1575
|
+
granularity = _ref25.granularity;
|
|
1574
1576
|
return {
|
|
1575
1577
|
key: key,
|
|
1576
1578
|
title: title,
|
|
1577
1579
|
shortTitle: shortTitle,
|
|
1578
1580
|
type: type,
|
|
1579
1581
|
format: format,
|
|
1580
|
-
meta: meta
|
|
1582
|
+
meta: meta,
|
|
1583
|
+
currency: currency,
|
|
1584
|
+
granularity: granularity === null || granularity === void 0 ? void 0 : granularity.name
|
|
1581
1585
|
};
|
|
1582
1586
|
};
|
|
1583
1587
|
var pivot = this.pivot(normalizedPivotConfig);
|