@oslo-flanders/core 1.0.7 → 1.0.9
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.
package/lib/enums/InputFormat.js
CHANGED
|
@@ -4,6 +4,6 @@ exports.InputFormat = void 0;
|
|
|
4
4
|
var InputFormat;
|
|
5
5
|
(function (InputFormat) {
|
|
6
6
|
InputFormat["AccessDB"] = "accessdb";
|
|
7
|
-
InputFormat["
|
|
7
|
+
InputFormat["SQLite"] = "sqlite";
|
|
8
8
|
})(InputFormat = exports.InputFormat || (exports.InputFormat = {}));
|
|
9
9
|
//# sourceMappingURL=InputFormat.js.map
|
package/lib/store/QuadStore.d.ts
CHANGED
|
@@ -142,13 +142,13 @@ export declare class QuadStore {
|
|
|
142
142
|
getScope(subject: RDF.Term, graph?: RDF.Term | null): RDF.NamedNode | undefined;
|
|
143
143
|
/**
|
|
144
144
|
* Finds the shacl:minCardinality for a given subject
|
|
145
|
-
* @param subject The RDF.Term to find the shacl:
|
|
145
|
+
* @param subject The RDF.Term to find the shacl:minCardinality for
|
|
146
146
|
* @returns An RDF.Literal or undefined if not found
|
|
147
147
|
*/
|
|
148
148
|
getMinCardinality(subject: RDF.Term, graph?: RDF.Term | null): RDF.Literal | undefined;
|
|
149
149
|
/**
|
|
150
150
|
* Finds the shacl:maxCardinality for a given subject
|
|
151
|
-
* @param subject The RDF.Term to find the shacl:
|
|
151
|
+
* @param subject The RDF.Term to find the shacl:maxCardinality for
|
|
152
152
|
* @returns An RDF.Literal or undefined if not found
|
|
153
153
|
*/
|
|
154
154
|
getMaxCardinality(subject: RDF.Term, graph?: RDF.Term | null): RDF.Literal | undefined;
|
package/lib/store/QuadStore.js
CHANGED
|
@@ -269,7 +269,7 @@ let QuadStore = class QuadStore {
|
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
271
|
* Finds the shacl:minCardinality for a given subject
|
|
272
|
-
* @param subject The RDF.Term to find the shacl:
|
|
272
|
+
* @param subject The RDF.Term to find the shacl:minCardinality for
|
|
273
273
|
* @returns An RDF.Literal or undefined if not found
|
|
274
274
|
*/
|
|
275
275
|
getMinCardinality(subject, graph = null) {
|
|
@@ -277,7 +277,7 @@ let QuadStore = class QuadStore {
|
|
|
277
277
|
}
|
|
278
278
|
/**
|
|
279
279
|
* Finds the shacl:maxCardinality for a given subject
|
|
280
|
-
* @param subject The RDF.Term to find the shacl:
|
|
280
|
+
* @param subject The RDF.Term to find the shacl:maxCardinality for
|
|
281
281
|
* @returns An RDF.Literal or undefined if not found
|
|
282
282
|
*/
|
|
283
283
|
getMaxCardinality(subject, graph = null) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslo-flanders/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Core interfaces and utilities",
|
|
5
5
|
"author": "Digitaal Vlaanderen <https://data.vlaanderen.be/id/organisatie/OVO002949>",
|
|
6
6
|
"homepage": "https://github.com/informatievlaanderen/OSLO-UML-Transformer/tree/main/packages/oslo-core#readme",
|