@comunica/actor-query-operation-from-quad 2.0.1-alpha.9.0 → 2.0.1
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.
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
},
|
|
74
74
|
"default": {
|
|
75
75
|
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_default_bus",
|
|
76
|
-
"@type": "
|
|
76
|
+
"@type": "cbqo:components/BusQueryOperation.jsonld#BusQueryOperation"
|
|
77
77
|
},
|
|
78
78
|
"comment": "The bus this actor subscribes to."
|
|
79
79
|
},
|
|
@@ -111,18 +111,51 @@
|
|
|
111
111
|
"comment": "Actor that must be registered in the bus before this actor."
|
|
112
112
|
}
|
|
113
113
|
],
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
114
|
+
"memberFields": [
|
|
115
|
+
{
|
|
116
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_FACTORY",
|
|
117
|
+
"memberFieldName": "FACTORY"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_ALGEBRA_TYPES",
|
|
121
|
+
"memberFieldName": "ALGEBRA_TYPES"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_constructor",
|
|
125
|
+
"memberFieldName": "constructor"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_copyOperation",
|
|
129
|
+
"memberFieldName": "copyOperation"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_applyOperationDefaultGraph",
|
|
133
|
+
"memberFieldName": "applyOperationDefaultGraph"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_applyOperationNamedGraph",
|
|
137
|
+
"memberFieldName": "applyOperationNamedGraph"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_joinOperations",
|
|
141
|
+
"memberFieldName": "joinOperations"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_unionOperations",
|
|
145
|
+
"memberFieldName": "unionOperations"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_createOperation",
|
|
149
|
+
"memberFieldName": "createOperation"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_testOperation",
|
|
153
|
+
"memberFieldName": "testOperation"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"@id": "caqofq:components/ActorQueryOperationFromQuad.jsonld#ActorQueryOperationFromQuad__member_runOperation",
|
|
157
|
+
"memberFieldName": "runOperation"
|
|
158
|
+
}
|
|
126
159
|
],
|
|
127
160
|
"constructorArguments": [
|
|
128
161
|
{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"@context": [
|
|
3
|
-
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^
|
|
3
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^5.0.0/components/context.jsonld",
|
|
4
4
|
{
|
|
5
5
|
"npmd": "https://linkedsoftwaredependencies.org/bundles/npm/",
|
|
6
6
|
"caqofq": "npmd:@comunica/actor-query-operation-from-quad/^2.0.0/",
|
package/lib/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comunica/actor-query-operation-from-quad",
|
|
3
|
-
"version": "2.0.1
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "A from query-operation actor",
|
|
5
5
|
"lsd:module": true,
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"lib/**/*.js"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@comunica/bus-query-operation": "2.0.1
|
|
35
|
-
"@comunica/core": "2.0.1
|
|
36
|
-
"@comunica/types": "2.0.1
|
|
34
|
+
"@comunica/bus-query-operation": "^2.0.1",
|
|
35
|
+
"@comunica/core": "^2.0.1",
|
|
36
|
+
"@comunica/types": "^2.0.1",
|
|
37
37
|
"@rdfjs/types": "*",
|
|
38
38
|
"sparqlalgebrajs": "^4.0.0"
|
|
39
39
|
},
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
|
|
43
43
|
"build:components": "componentsjs-generator"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "4c66bfaa44f73786bc7403504e5fe571181430c7"
|
|
46
46
|
}
|