@cubejs-client/core
Advanced tools
Comparing version 0.28.1 to 0.28.6
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.28.6](https://github.com/cube-js/cube.js/compare/v0.28.5...v0.28.6) (2021-07-22) | ||
### Features | ||
* **@cubejs-client/ngx:** async CubejsClient initialization ([#2876](https://github.com/cube-js/cube.js/issues/2876)) ([bba3a01](https://github.com/cube-js/cube.js/commit/bba3a01d2a072093509633f2d26e8df9677f940c)) | ||
## [0.28.1](https://github.com/cube-js/cube.js/compare/v0.28.0...v0.28.1) (2021-07-19) | ||
@@ -8,0 +19,0 @@ |
@@ -847,3 +847,6 @@ /** | ||
type DryRunResponse = { | ||
/** | ||
* @deprecated use DryRunResponse | ||
*/ | ||
type TDryRunResponse = { | ||
queryType: QueryType; | ||
@@ -856,2 +859,9 @@ normalizedQueries: Query[]; | ||
export type DryRunResponse = { | ||
queryType: QueryType; | ||
normalizedQueries: Query[]; | ||
pivotQuery: PivotQuery; | ||
queryOrder: Array<{ [k: string]: QueryOrder }>; | ||
}; | ||
export type Cube = { | ||
@@ -858,0 +868,0 @@ name: string; |
{ | ||
"name": "@cubejs-client/core", | ||
"version": "0.28.1", | ||
"version": "0.28.6", | ||
"engines": {}, | ||
@@ -48,3 +48,3 @@ "repository": { | ||
}, | ||
"gitHead": "6396e7e5ab94fdc02169ae4e078284d8d1e2a239" | ||
"gitHead": "453a92cd048b64cdc5281bcdb417e1f0daa41d64" | ||
} |
@@ -1,2 +0,2 @@ | ||
import { v4 as uuid } from 'uuid'; | ||
import { v4 as uuidv4 } from 'uuid'; | ||
import ResultSet from './ResultSet'; | ||
@@ -46,3 +46,3 @@ import SqlQuery from './SqlQuery'; | ||
request(method, params) { | ||
return this.transport.request(method, { baseRequestId: uuid(), ...params }); | ||
return this.transport.request(method, { baseRequestId: uuidv4(), ...params }); | ||
} | ||
@@ -49,0 +49,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1818345
20616