@cubejs-client/core 0.30.4 → 0.30.60

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
@@ -815,7 +815,7 @@ declare module '@cubejs-client/core' {
815
815
 
816
816
  type QueryArrayRecordType<T extends DeeplyReadonly<Query[]>> =
817
817
  T extends readonly [infer First, ...infer Rest]
818
- ? SingleQueryRecordType<First> | QueryArrayRecordType<Rest>
818
+ ? SingleQueryRecordType<First> | QueryArrayRecordType<Rest & DeeplyReadonly<Query[]>>
819
819
  : never;
820
820
 
821
821
  // If we can't infer any members at all, then return any.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-client/core",
3
- "version": "0.30.4",
3
+ "version": "0.30.60",
4
4
  "engines": {},
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,8 +13,6 @@
13
13
  "types": "index.d.ts",
14
14
  "author": "Cube Dev, Inc.",
15
15
  "dependencies": {
16
- "@babel/plugin-transform-runtime": "^7.17.0",
17
- "@babel/runtime": "^7.1.2",
18
16
  "core-js": "^3.6.5",
19
17
  "cross-fetch": "^3.0.2",
20
18
  "dayjs": "^1.10.4",
@@ -37,6 +35,7 @@
37
35
  "devDependencies": {
38
36
  "@babel/core": "^7.3.3",
39
37
  "@babel/preset-env": "^7.3.1",
38
+ "@babel/runtime": "^7.1.2",
40
39
  "@types/jest": "^26.0.9",
41
40
  "@types/moment-range": "^4.0.0",
42
41
  "babel-jest": "^26.0.1",
@@ -46,5 +45,5 @@
46
45
  "eslint-plugin-node": "^5.2.1",
47
46
  "jest": "^26.0.1"
48
47
  },
49
- "gitHead": "b7df8f6a3cfe104e639e0f7607868afa193ed0a3"
48
+ "gitHead": "7ec87645cf0063257e527a83ea91f77551ad607c"
50
49
  }
package/src/index.js CHANGED
@@ -367,5 +367,5 @@ class CubejsApi {
367
367
 
368
368
  export default (apiToken, options) => new CubejsApi(apiToken, options);
369
369
 
370
- export { CubejsApi, HttpTransport, ResultSet };
370
+ export { CubejsApi, HttpTransport, ResultSet, RequestError };
371
371
  export * from './utils';