@cubejs-client/core 0.34.0 → 0.34.9

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/index.d.ts CHANGED
@@ -153,6 +153,9 @@ declare module '@cubejs-client/core' {
153
153
  sortedDimensions: string[];
154
154
  sortedTimeDimensions: [[string, string]];
155
155
  measureToLeafMeasures?: Record<string, LeafMeasure[]>;
156
+ ownedDimensions: string[];
157
+ ownedTimeDimensionsAsIs: [[string, string | null]];
158
+ ownedTimeDimensionsWithRollupGranularity: [[string, string]];
156
159
  };
157
160
 
158
161
  export type PreAggregationType = 'rollup' | 'rollupJoin' | 'rollupLambda' | 'originalSql';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-client/core",
3
- "version": "0.34.0",
3
+ "version": "0.34.9",
4
4
  "engines": {},
5
5
  "repository": {
6
6
  "type": "git",
@@ -45,5 +45,5 @@
45
45
  "eslint-plugin-node": "^5.2.1",
46
46
  "jest": "^26.0.1"
47
47
  },
48
- "gitHead": "55e796e52bd276f839c5fa842b9eb821d363e77e"
48
+ "gitHead": "9c2ceb36b8663483a7c97c195f55c42fc1701dc9"
49
49
  }
package/src/index.js CHANGED
@@ -375,5 +375,5 @@ class CubejsApi {
375
375
 
376
376
  export default (apiToken, options) => new CubejsApi(apiToken, options);
377
377
 
378
- export { CubejsApi, HttpTransport, ResultSet, RequestError, Meta };
378
+ export { CubejsApi, CubejsApi as CubeApi, HttpTransport, ResultSet, RequestError, Meta };
379
379
  export * from './utils';