Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@zazuko/query-rdf-data-cube

Package Overview
Dependencies
Maintainers
4
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zazuko/query-rdf-data-cube - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

10

CHANGELOG.md

@@ -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)

6

dist/es/query.d.ts

@@ -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.

2

package.json
{
"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": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc