@cubejs-client/core 1.6.34 → 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 +4 -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
|
@@ -1465,14 +1465,18 @@
|
|
|
1465
1465
|
shortTitle = _ref25.shortTitle,
|
|
1466
1466
|
type = _ref25.type,
|
|
1467
1467
|
format = _ref25.format,
|
|
1468
|
-
meta = _ref25.meta
|
|
1468
|
+
meta = _ref25.meta,
|
|
1469
|
+
currency = _ref25.currency,
|
|
1470
|
+
granularity = _ref25.granularity;
|
|
1469
1471
|
return {
|
|
1470
1472
|
key: key,
|
|
1471
1473
|
title: title,
|
|
1472
1474
|
shortTitle: shortTitle,
|
|
1473
1475
|
type: type,
|
|
1474
1476
|
format: format,
|
|
1475
|
-
meta: meta
|
|
1477
|
+
meta: meta,
|
|
1478
|
+
currency: currency,
|
|
1479
|
+
granularity: granularity === null || granularity === void 0 ? void 0 : granularity.name
|
|
1476
1480
|
};
|
|
1477
1481
|
};
|
|
1478
1482
|
var pivot = this.pivot(normalizedPivotConfig);
|