@oml/owl 0.11.0 → 0.12.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.
@@ -152,7 +152,7 @@ export function deriveSelectQueryFromShacl(shaclSource, graphIri) {
152
152
  path: column.path,
153
153
  variable: unique,
154
154
  sourceVariable,
155
- name: column.name
155
+ name: column.name,
156
156
  };
157
157
  });
158
158
  const selectVars = [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oml/owl",
3
3
  "description": "The semantic web specific package",
4
- "version": "0.11.0",
4
+ "version": "0.12.0",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": ">=20.10.0",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@comunica/query-sparql": "^5.1.3",
37
- "@oml/language": "0.11.0",
37
+ "@oml/language": "0.12.0",
38
38
  "langium": "^4.2.1",
39
39
  "n3": "^2.0.1",
40
40
  "shacl-engine": "^1.1.0",
@@ -208,7 +208,7 @@ export function deriveSelectQueryFromShacl(shaclSource: string, graphIri: string
208
208
  path: column.path,
209
209
  variable: unique,
210
210
  sourceVariable,
211
- name: column.name
211
+ name: column.name,
212
212
  };
213
213
  });
214
214