@lde/dataset-registry-client 0.7.4 → 0.7.6
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/dist/dcat.d.ts +1 -1
- package/dist/dcat.d.ts.map +1 -1
- package/dist/dcat.js +49 -4
- package/package.json +6 -5
package/dist/dcat.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const dcat: import("ldkit/namespaces").NamespaceInterface<{
|
|
2
2
|
readonly iri: "http://www.w3.org/ns/dcat#";
|
|
3
3
|
readonly prefix: "dcat:";
|
|
4
|
-
readonly terms: readonly ["Dataset", "Distribution", "accessURL", "compressFormat", "keyword", "mediaType", "
|
|
4
|
+
readonly terms: readonly ["Catalog", "CatalogRecord", "DataService", "Dataset", "DatasetSeries", "Distribution", "Relationship", "Resource", "Role", "accessService", "accessURL", "bbox", "byteSize", "catalog", "centroid", "compressFormat", "contactPoint", "dataset", "distribution", "downloadURL", "endDate", "endpointDescription", "endpointURL", "first", "hadRole", "hasCurrentVersion", "hasVersion", "inCatalog", "inSeries", "isDistributionOf", "isVersionOf", "keyword", "landingPage", "last", "mediaType", "next", "nextVersion", "packageFormat", "prev", "previousVersion", "qualifiedRelation", "record", "resource", "seriesMember", "servesDataset", "service", "spatialResolutionInMeters", "startDate", "temporalResolution", "theme", "themeTaxonomy", "version"];
|
|
5
5
|
}>;
|
|
6
6
|
//# sourceMappingURL=dcat.d.ts.map
|
package/dist/dcat.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dcat.d.ts","sourceRoot":"","sources":["../src/dcat.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dcat.d.ts","sourceRoot":"","sources":["../src/dcat.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI;;;;EA2DN,CAAC"}
|
package/dist/dcat.js
CHANGED
|
@@ -1,17 +1,62 @@
|
|
|
1
1
|
import { createNamespace } from 'ldkit/namespaces';
|
|
2
|
+
// Full DCAT 3 vocabulary – https://www.w3.org/TR/vocab-dcat-3/
|
|
2
3
|
export const dcat = createNamespace({
|
|
3
4
|
iri: 'http://www.w3.org/ns/dcat#',
|
|
4
5
|
prefix: 'dcat:',
|
|
5
6
|
terms: [
|
|
7
|
+
// Classes
|
|
8
|
+
'Catalog',
|
|
9
|
+
'CatalogRecord',
|
|
10
|
+
'DataService',
|
|
6
11
|
'Dataset',
|
|
12
|
+
'DatasetSeries',
|
|
7
13
|
'Distribution',
|
|
14
|
+
'Relationship',
|
|
15
|
+
'Resource',
|
|
16
|
+
'Role',
|
|
17
|
+
// Properties
|
|
18
|
+
'accessService',
|
|
8
19
|
'accessURL',
|
|
9
|
-
'
|
|
10
|
-
'keyword',
|
|
11
|
-
'mediaType',
|
|
20
|
+
'bbox',
|
|
12
21
|
'byteSize',
|
|
22
|
+
'catalog',
|
|
23
|
+
'centroid',
|
|
24
|
+
'compressFormat',
|
|
25
|
+
'contactPoint',
|
|
26
|
+
'dataset',
|
|
13
27
|
'distribution',
|
|
14
|
-
'modified',
|
|
15
28
|
'downloadURL',
|
|
29
|
+
'endDate',
|
|
30
|
+
'endpointDescription',
|
|
31
|
+
'endpointURL',
|
|
32
|
+
'first',
|
|
33
|
+
'hadRole',
|
|
34
|
+
'hasCurrentVersion',
|
|
35
|
+
'hasVersion',
|
|
36
|
+
'inCatalog',
|
|
37
|
+
'inSeries',
|
|
38
|
+
'isDistributionOf',
|
|
39
|
+
'isVersionOf',
|
|
40
|
+
'keyword',
|
|
41
|
+
'landingPage',
|
|
42
|
+
'last',
|
|
43
|
+
'mediaType',
|
|
44
|
+
'next',
|
|
45
|
+
'nextVersion',
|
|
46
|
+
'packageFormat',
|
|
47
|
+
'prev',
|
|
48
|
+
'previousVersion',
|
|
49
|
+
'qualifiedRelation',
|
|
50
|
+
'record',
|
|
51
|
+
'resource',
|
|
52
|
+
'seriesMember',
|
|
53
|
+
'servesDataset',
|
|
54
|
+
'service',
|
|
55
|
+
'spatialResolutionInMeters',
|
|
56
|
+
'startDate',
|
|
57
|
+
'temporalResolution',
|
|
58
|
+
'theme',
|
|
59
|
+
'themeTaxonomy',
|
|
60
|
+
'version',
|
|
16
61
|
],
|
|
17
62
|
});
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lde/dataset-registry-client",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.6",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "git+https://github.com/ldelements/lde.git",
|
|
6
6
|
"directory": "packages/dataset-registry-client"
|
|
7
7
|
},
|
|
8
|
+
"license": "MIT",
|
|
8
9
|
"type": "module",
|
|
9
10
|
"exports": {
|
|
10
11
|
"./package.json": "./package.json",
|
|
@@ -23,10 +24,10 @@
|
|
|
23
24
|
"!**/*.tsbuildinfo"
|
|
24
25
|
],
|
|
25
26
|
"dependencies": {
|
|
26
|
-
"@lde/dataset": "0.7.
|
|
27
|
-
"@traqula/generator-sparql-1-1": "^1.0.
|
|
28
|
-
"@traqula/parser-sparql-1-1": "^1.0.
|
|
29
|
-
"@traqula/rules-sparql-1-1": "^1.0.
|
|
27
|
+
"@lde/dataset": "0.7.3",
|
|
28
|
+
"@traqula/generator-sparql-1-1": "^1.0.7",
|
|
29
|
+
"@traqula/parser-sparql-1-1": "^1.0.4",
|
|
30
|
+
"@traqula/rules-sparql-1-1": "^1.0.4",
|
|
30
31
|
"ldkit": "^2.6.0",
|
|
31
32
|
"tslib": "^2.3.0"
|
|
32
33
|
},
|