@comunica/bus-rdf-join 2.7.0 → 2.8.0
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/lib/ActorRdfJoin.d.ts +2 -2
- package/package.json +9 -9
package/lib/ActorRdfJoin.d.ts
CHANGED
|
@@ -167,7 +167,7 @@ export interface IActorRdfJoinInternalOptions {
|
|
|
167
167
|
/**
|
|
168
168
|
* Represents a logical join type.
|
|
169
169
|
*/
|
|
170
|
-
export
|
|
170
|
+
export type LogicalJoinType = 'inner' | 'optional' | 'minus';
|
|
171
171
|
export interface IActionRdfJoin extends IAction {
|
|
172
172
|
/**
|
|
173
173
|
* The logical join type.
|
|
@@ -188,4 +188,4 @@ export interface IActorRdfJoinOutputInner {
|
|
|
188
188
|
*/
|
|
189
189
|
physicalPlanMetadata?: any;
|
|
190
190
|
}
|
|
191
|
-
export
|
|
191
|
+
export type MediatorRdfJoin = Mediate<IActionRdfJoin, IQueryOperationResultBindings, IMediatorTypeJoinCoefficients>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comunica/bus-rdf-join",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"description": "A comunica bus for rdf-join events.",
|
|
5
5
|
"lsd:module": true,
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"lib/**/*.js.map"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@comunica/bus-query-operation": "^2.
|
|
35
|
-
"@comunica/bus-rdf-join-selectivity": "^2.
|
|
36
|
-
"@comunica/context-entries": "^2.
|
|
37
|
-
"@comunica/core": "^2.
|
|
38
|
-
"@comunica/mediatortype-join-coefficients": "^2.
|
|
39
|
-
"@comunica/metadata": "^2.
|
|
40
|
-
"@comunica/types": "^2.
|
|
34
|
+
"@comunica/bus-query-operation": "^2.8.0",
|
|
35
|
+
"@comunica/bus-rdf-join-selectivity": "^2.8.0",
|
|
36
|
+
"@comunica/context-entries": "^2.8.0",
|
|
37
|
+
"@comunica/core": "^2.8.0",
|
|
38
|
+
"@comunica/mediatortype-join-coefficients": "^2.8.0",
|
|
39
|
+
"@comunica/metadata": "^2.8.0",
|
|
40
|
+
"@comunica/types": "^2.8.0",
|
|
41
41
|
"@rdfjs/types": "*",
|
|
42
42
|
"rdf-data-factory": "^1.1.1",
|
|
43
43
|
"rdf-string": "^1.6.1"
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
|
|
48
48
|
"build:components": "componentsjs-generator"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "2459c84cb0ddc959436d8742f1f7b2805ce09825"
|
|
51
51
|
}
|