@comunica/actor-abstract-path 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.
@@ -77,7 +77,7 @@
77
77
  },
78
78
  "default": {
79
79
  "@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_default_bus",
80
- "@type": "cc:components/Bus.jsonld#Bus"
80
+ "@type": "cbqo:components/BusQueryOperation.jsonld#BusQueryOperation"
81
81
  },
82
82
  "comment": "The bus this actor subscribes to."
83
83
  },
@@ -115,17 +115,51 @@
115
115
  "comment": "Actor that must be registered in the bus before this actor."
116
116
  }
117
117
  ],
118
- "memberKeys": [
119
- "FACTORY",
120
- "predicateType",
121
- "constructor",
122
- "testOperation",
123
- "generateVariable",
124
- "isPathArbitraryLengthDistinct",
125
- "predicateStarGraphVariable",
126
- "getObjectsPredicateStarEval",
127
- "getObjectsPredicateStar",
128
- "getSubjectAndObjectBindingsPredicateStar"
118
+ "memberFields": [
119
+ {
120
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_FACTORY",
121
+ "memberFieldName": "FACTORY",
122
+ "range": {
123
+ "@type": "ParameterRangeWildcard"
124
+ }
125
+ },
126
+ {
127
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_predicateType",
128
+ "memberFieldName": "predicateType",
129
+ "range": "xsd:string"
130
+ },
131
+ {
132
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_constructor",
133
+ "memberFieldName": "constructor"
134
+ },
135
+ {
136
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_testOperation",
137
+ "memberFieldName": "testOperation"
138
+ },
139
+ {
140
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_generateVariable",
141
+ "memberFieldName": "generateVariable"
142
+ },
143
+ {
144
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_isPathArbitraryLengthDistinct",
145
+ "memberFieldName": "isPathArbitraryLengthDistinct"
146
+ },
147
+ {
148
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_predicateStarGraphVariable",
149
+ "memberFieldName": "predicateStarGraphVariable"
150
+ },
151
+ {
152
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_getObjectsPredicateStarEval",
153
+ "memberFieldName": "getObjectsPredicateStarEval"
154
+ },
155
+ {
156
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_getObjectsPredicateStar",
157
+ "memberFieldName": "getObjectsPredicateStar"
158
+ },
159
+ {
160
+ "@id": "caap:components/ActorAbstractPath.jsonld#ActorAbstractPath__member_getSubjectAndObjectBindingsPredicateStar",
161
+ "memberFieldName": "getSubjectAndObjectBindingsPredicateStar"
162
+ }
129
163
  ],
130
164
  "constructorArguments": [
131
165
  {
@@ -167,9 +201,15 @@
167
201
  "@type": "AbstractClass",
168
202
  "requireElement": "IPathResultStream",
169
203
  "parameters": [],
170
- "memberKeys": [
171
- "bindingsStream",
172
- "metadata"
204
+ "memberFields": [
205
+ {
206
+ "@id": "caap:components/ActorAbstractPath.jsonld#IPathResultStream__member_bindingsStream",
207
+ "memberFieldName": "bindingsStream"
208
+ },
209
+ {
210
+ "@id": "caap:components/ActorAbstractPath.jsonld#IPathResultStream__member_metadata",
211
+ "memberFieldName": "metadata"
212
+ }
173
213
  ],
174
214
  "constructorArguments": []
175
215
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "@context": [
3
- "https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^4.0.0/components/context.jsonld",
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
  "caap": "npmd:@comunica/actor-abstract-path/^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.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
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-abstract-path",
3
- "version": "2.0.1-alpha.9.0",
3
+ "version": "2.0.1",
4
4
  "description": "An abstract actor for handling mediatypes",
5
5
  "lsd:module": true,
6
6
  "main": "lib/index.js",
@@ -31,15 +31,15 @@
31
31
  "lib/**/*.js"
32
32
  ],
33
33
  "dependencies": {
34
- "@comunica/bindings-factory": "2.0.1-alpha.9.0",
35
- "@comunica/bus-query-operation": "2.0.1-alpha.9.0",
36
- "@comunica/bus-rdf-join": "2.0.1-alpha.9.0",
37
- "@comunica/context-entries": "2.0.1-alpha.9.0",
38
- "@comunica/core": "2.0.1-alpha.9.0",
39
- "@comunica/mediatortype-join-coefficients": "2.0.1-alpha.9.0",
40
- "@comunica/types": "2.0.1-alpha.9.0",
34
+ "@comunica/bindings-factory": "^2.0.1",
35
+ "@comunica/bus-query-operation": "^2.0.1",
36
+ "@comunica/bus-rdf-join": "^2.0.1",
37
+ "@comunica/context-entries": "^2.0.1",
38
+ "@comunica/core": "^2.0.1",
39
+ "@comunica/mediatortype-join-coefficients": "^2.0.1",
40
+ "@comunica/types": "^2.0.1",
41
41
  "@rdfjs/types": "*",
42
- "asynciterator": "^3.2.1",
42
+ "asynciterator": "^3.3.0",
43
43
  "rdf-data-factory": "^1.0.3",
44
44
  "rdf-string": "^1.5.0",
45
45
  "sparqlalgebrajs": "^4.0.0"
@@ -49,5 +49,5 @@
49
49
  "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
50
50
  "build:components": "componentsjs-generator"
51
51
  },
52
- "gitHead": "a6642f00830bd9ea3f2f39a10b07362b9f518610"
52
+ "gitHead": "4c66bfaa44f73786bc7403504e5fe571181430c7"
53
53
  }