@comunica/actor-query-operation-distinct-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.
@@ -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,12 +115,28 @@
115
115
  "comment": "Actor that must be registered in the bus before this actor."
116
116
  }
117
117
  ],
118
- "memberKeys": [
119
- "mediatorHashBindings",
120
- "constructor",
121
- "testOperation",
122
- "runOperation",
123
- "newHashFilter"
118
+ "memberFields": [
119
+ {
120
+ "@id": "caqodh:components/ActorQueryOperationDistinctHash.jsonld#ActorQueryOperationDistinctHash__member_mediatorHashBindings",
121
+ "memberFieldName": "mediatorHashBindings",
122
+ "range": "cc:components/Mediator.jsonld#Mediator"
123
+ },
124
+ {
125
+ "@id": "caqodh:components/ActorQueryOperationDistinctHash.jsonld#ActorQueryOperationDistinctHash__member_constructor",
126
+ "memberFieldName": "constructor"
127
+ },
128
+ {
129
+ "@id": "caqodh:components/ActorQueryOperationDistinctHash.jsonld#ActorQueryOperationDistinctHash__member_testOperation",
130
+ "memberFieldName": "testOperation"
131
+ },
132
+ {
133
+ "@id": "caqodh:components/ActorQueryOperationDistinctHash.jsonld#ActorQueryOperationDistinctHash__member_runOperation",
134
+ "memberFieldName": "runOperation"
135
+ },
136
+ {
137
+ "@id": "caqodh:components/ActorQueryOperationDistinctHash.jsonld#ActorQueryOperationDistinctHash__member_newHashFilter",
138
+ "memberFieldName": "newHashFilter"
139
+ }
124
140
  ],
125
141
  "constructorArguments": [
126
142
  {
@@ -168,8 +184,11 @@
168
184
  "cbqo:components/ActorQueryOperationTypedMediated.jsonld#IActorQueryOperationTypedMediatedArgs"
169
185
  ],
170
186
  "parameters": [],
171
- "memberKeys": [
172
- "mediatorHashBindings"
187
+ "memberFields": [
188
+ {
189
+ "@id": "caqodh:components/ActorQueryOperationDistinctHash.jsonld#IActorQueryOperationDistinctHashArgs__member_mediatorHashBindings",
190
+ "memberFieldName": "mediatorHashBindings"
191
+ }
173
192
  ],
174
193
  "constructorArguments": []
175
194
  }
@@ -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
  "caqodh": "npmd:@comunica/actor-query-operation-distinct-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-distinct-hash",
3
- "version": "2.0.1-alpha.9.0",
3
+ "version": "2.0.1",
4
4
  "description": "A distinct-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
  "sparqlalgebrajs": "^4.0.0"
39
39
  },
40
40
  "scripts": {
@@ -42,5 +42,5 @@
42
42
  "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
43
43
  "build:components": "componentsjs-generator"
44
44
  },
45
- "gitHead": "a6642f00830bd9ea3f2f39a10b07362b9f518610"
45
+ "gitHead": "4c66bfaa44f73786bc7403504e5fe571181430c7"
46
46
  }