@comunica/actor-query-operation-reduced-hash 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.
@@ -82,7 +82,7 @@
82
82
  },
83
83
  "default": {
84
84
  "@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_default_bus",
85
- "@type": "cc:components/Bus.jsonld#Bus"
85
+ "@type": "cbqo:components/BusQueryOperation.jsonld#BusQueryOperation"
86
86
  },
87
87
  "comment": "The bus this actor subscribes to."
88
88
  },
@@ -120,13 +120,33 @@
120
120
  "comment": "Actor that must be registered in the bus before this actor."
121
121
  }
122
122
  ],
123
- "memberKeys": [
124
- "mediatorHashBindings",
125
- "cacheSize",
126
- "constructor",
127
- "testOperation",
128
- "runOperation",
129
- "newHashFilter"
123
+ "memberFields": [
124
+ {
125
+ "@id": "caqorh:components/ActorQueryOperationReducedHash.jsonld#ActorQueryOperationReducedHash__member_mediatorHashBindings",
126
+ "memberFieldName": "mediatorHashBindings",
127
+ "range": "cc:components/Mediator.jsonld#Mediator"
128
+ },
129
+ {
130
+ "@id": "caqorh:components/ActorQueryOperationReducedHash.jsonld#ActorQueryOperationReducedHash__member_cacheSize",
131
+ "memberFieldName": "cacheSize",
132
+ "range": "xsd:number"
133
+ },
134
+ {
135
+ "@id": "caqorh:components/ActorQueryOperationReducedHash.jsonld#ActorQueryOperationReducedHash__member_constructor",
136
+ "memberFieldName": "constructor"
137
+ },
138
+ {
139
+ "@id": "caqorh:components/ActorQueryOperationReducedHash.jsonld#ActorQueryOperationReducedHash__member_testOperation",
140
+ "memberFieldName": "testOperation"
141
+ },
142
+ {
143
+ "@id": "caqorh:components/ActorQueryOperationReducedHash.jsonld#ActorQueryOperationReducedHash__member_runOperation",
144
+ "memberFieldName": "runOperation"
145
+ },
146
+ {
147
+ "@id": "caqorh:components/ActorQueryOperationReducedHash.jsonld#ActorQueryOperationReducedHash__member_newHashFilter",
148
+ "memberFieldName": "newHashFilter"
149
+ }
130
150
  ],
131
151
  "constructorArguments": [
132
152
  {
@@ -180,9 +200,15 @@
180
200
  "cbqo:components/ActorQueryOperationTypedMediated.jsonld#IActorQueryOperationTypedMediatedArgs"
181
201
  ],
182
202
  "parameters": [],
183
- "memberKeys": [
184
- "mediatorHashBindings",
185
- "cacheSize"
203
+ "memberFields": [
204
+ {
205
+ "@id": "caqorh:components/ActorQueryOperationReducedHash.jsonld#IActorQueryOperationReducedHashArgs__member_mediatorHashBindings",
206
+ "memberFieldName": "mediatorHashBindings"
207
+ },
208
+ {
209
+ "@id": "caqorh:components/ActorQueryOperationReducedHash.jsonld#IActorQueryOperationReducedHashArgs__member_cacheSize",
210
+ "memberFieldName": "cacheSize"
211
+ }
186
212
  ],
187
213
  "constructorArguments": []
188
214
  }
@@ -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
  "caqorh": "npmd:@comunica/actor-query-operation-reduced-hash/^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-query-operation-reduced-hash",
3
- "version": "2.0.1-alpha.9.0",
3
+ "version": "2.0.1",
4
4
  "description": "A reduced-hash query-operation actor",
5
5
  "lsd:module": true,
6
6
  "main": "lib/index.js",
@@ -31,10 +31,10 @@
31
31
  "lib/**/*.js"
32
32
  ],
33
33
  "dependencies": {
34
- "@comunica/bus-hash-bindings": "2.0.1-alpha.9.0",
35
- "@comunica/bus-query-operation": "2.0.1-alpha.9.0",
36
- "@comunica/core": "2.0.1-alpha.9.0",
37
- "@comunica/types": "2.0.1-alpha.9.0",
34
+ "@comunica/bus-hash-bindings": "^2.0.1",
35
+ "@comunica/bus-query-operation": "^2.0.1",
36
+ "@comunica/core": "^2.0.1",
37
+ "@comunica/types": "^2.0.1",
38
38
  "@types/lru-cache": "^5.1.0",
39
39
  "lru-cache": "^6.0.0",
40
40
  "sparqlalgebrajs": "^4.0.0"
@@ -44,5 +44,5 @@
44
44
  "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
45
45
  "build:components": "componentsjs-generator"
46
46
  },
47
- "gitHead": "a6642f00830bd9ea3f2f39a10b07362b9f518610"
47
+ "gitHead": "4c66bfaa44f73786bc7403504e5fe571181430c7"
48
48
  }