@zazuko/query-rdf-data-cube
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -0,1 +1,11 @@ | ||
<a name="0.4.1"></a> | ||
## [0.4.1](https://github.com/zazuko/query-rdf-data-cube/compare/v0.4.0...v0.4.1) (2019-11-18) | ||
### Bug Fixes | ||
* **query:** enhance query.execute return type ([d2dba1c](https://github.com/zazuko/query-rdf-data-cube/commit/d2dba1c)) | ||
<a name="0.4.0"></a> | ||
@@ -2,0 +12,0 @@ # [0.4.0](https://github.com/zazuko/query-rdf-data-cube/compare/v0.3.1...v0.4.0) (2019-10-31) |
@@ -12,2 +12,6 @@ import { Literal, NamedNode } from "rdf-js"; | ||
declare type SelectsArr = Array<[string, Component]>; | ||
declare type QueryResult = Promise<Array<Record<string, { | ||
value: Literal | NamedNode; | ||
label?: Literal; | ||
}>>>; | ||
export interface QueryOptions extends BaseOptions { | ||
@@ -142,3 +146,3 @@ } | ||
*/ | ||
execute(): Promise<any[]>; | ||
execute(): QueryResult; | ||
/** | ||
@@ -145,0 +149,0 @@ * Retrieve all the possible values a [[Component]] ([[Dimension]], [[Measure]], [[Attribute]]) can have. |
@@ -12,2 +12,6 @@ import { Literal, NamedNode } from "rdf-js"; | ||
declare type SelectsArr = Array<[string, Component]>; | ||
declare type QueryResult = Promise<Array<Record<string, { | ||
value: Literal | NamedNode; | ||
label?: Literal; | ||
}>>>; | ||
export interface QueryOptions extends BaseOptions { | ||
@@ -142,3 +146,3 @@ } | ||
*/ | ||
execute(): Promise<any[]>; | ||
execute(): QueryResult; | ||
/** | ||
@@ -145,0 +149,0 @@ * Retrieve all the possible values a [[Component]] ([[Dimension]], [[Measure]], [[Attribute]]) can have. |
{ | ||
"name": "@zazuko/query-rdf-data-cube", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "Query (or introspect) [RDF Data Cubes](https://www.w3.org/TR/vocab-data-cube/) with a JavaScript API, without writing SPARQL.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
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
237218
6109