@twin.org/standards-dublin-core 0.0.3-next.10 → 0.0.3-next.12
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/es/dataTypes/dublinCoreDataTypes.js +2 -2
- package/dist/es/dataTypes/dublinCoreDataTypes.js.map +1 -1
- package/dist/es/models/dublinCoreContexts.js +6 -6
- package/dist/es/models/dublinCoreContexts.js.map +1 -1
- package/dist/types/models/dublinCoreContexts.d.ts +6 -6
- package/docs/changelog.md +14 -0
- package/docs/reference/variables/DublinCoreContexts.md +10 -10
- package/package.json +1 -1
|
@@ -10,8 +10,8 @@ export class DublinCoreDataTypes {
|
|
|
10
10
|
* Register the JSON-LD Redirects.
|
|
11
11
|
*/
|
|
12
12
|
static registerRedirects() {
|
|
13
|
-
JsonLdProcessor.addRedirect(/https?:\/\/purl.org\/dc\/terms\/?/, DublinCoreContexts.
|
|
14
|
-
JsonLdProcessor.addRedirect(/https?:\/\/purl.org\/dc\/dcmitype\/?/, DublinCoreContexts.
|
|
13
|
+
JsonLdProcessor.addRedirect(/https?:\/\/purl.org\/dc\/terms\/?/, DublinCoreContexts.JsonLdContextTerms);
|
|
14
|
+
JsonLdProcessor.addRedirect(/https?:\/\/purl.org\/dc\/dcmitype\/?/, DublinCoreContexts.JsonLdContextDcmiType);
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
//# sourceMappingURL=dublinCoreDataTypes.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dublinCoreDataTypes.js","sourceRoot":"","sources":["../../../src/dataTypes/dublinCoreDataTypes.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE;;GAEG;AACH,MAAM,OAAO,mBAAmB;IAC/B;;OAEG;IACI,MAAM,CAAC,iBAAiB;QAC9B,eAAe,CAAC,WAAW,CAC1B,mCAAmC,EACnC,kBAAkB,CAAC,
|
|
1
|
+
{"version":3,"file":"dublinCoreDataTypes.js","sourceRoot":"","sources":["../../../src/dataTypes/dublinCoreDataTypes.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE;;GAEG;AACH,MAAM,OAAO,mBAAmB;IAC/B;;OAEG;IACI,MAAM,CAAC,iBAAiB;QAC9B,eAAe,CAAC,WAAW,CAC1B,mCAAmC,EACnC,kBAAkB,CAAC,kBAAkB,CACrC,CAAC;QACF,eAAe,CAAC,WAAW,CAC1B,sCAAsC,EACtC,kBAAkB,CAAC,qBAAqB,CACxC,CAAC;IACH,CAAC;CACD","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { JsonLdProcessor } from \"@twin.org/data-json-ld\";\nimport { DublinCoreContexts } from \"../models/dublinCoreContexts.js\";\n\n/**\n * Handle all the data types for Dublin Core.\n */\nexport class DublinCoreDataTypes {\n\t/**\n\t * Register the JSON-LD Redirects.\n\t */\n\tpublic static registerRedirects(): void {\n\t\tJsonLdProcessor.addRedirect(\n\t\t\t/https?:\\/\\/purl.org\\/dc\\/terms\\/?/,\n\t\t\tDublinCoreContexts.JsonLdContextTerms\n\t\t);\n\t\tJsonLdProcessor.addRedirect(\n\t\t\t/https?:\\/\\/purl.org\\/dc\\/dcmitype\\/?/,\n\t\t\tDublinCoreContexts.JsonLdContextDcmiType\n\t\t);\n\t}\n}\n"]}
|
|
@@ -9,19 +9,19 @@ export const DublinCoreContexts = {
|
|
|
9
9
|
* The LD context for Dublin Core Terms vocabulary.
|
|
10
10
|
* @see https://www.dublincore.org/specifications/dublin-core/dcmi-terms/
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
NamespaceTerms: "http://purl.org/dc/terms/",
|
|
13
13
|
/**
|
|
14
14
|
* The LD context for Dublin Core DCMI Types vocabulary.
|
|
15
15
|
* @see https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-7
|
|
16
16
|
*/
|
|
17
|
-
|
|
17
|
+
NamespaceDcmiType: "http://purl.org/dc/dcmitype/",
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* JSON-LD Context URL for terms
|
|
20
20
|
*/
|
|
21
|
-
|
|
21
|
+
JsonLdContextTerms: "https://schema.twindev.org/dublin-core/terms.jsonld",
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* JSON-LD Context URL for DCMI Types
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
JsonLdContextDcmiType: "https://schema.twindev.org/dublin-core/dcmitype.jsonld"
|
|
26
26
|
};
|
|
27
27
|
//# sourceMappingURL=dublinCoreContexts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dublinCoreContexts.js","sourceRoot":"","sources":["../../../src/models/dublinCoreContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,kBAAkB,GAAG;IACjC;;;OAGG;IACH,
|
|
1
|
+
{"version":3,"file":"dublinCoreContexts.js","sourceRoot":"","sources":["../../../src/models/dublinCoreContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,kBAAkB,GAAG;IACjC;;;OAGG;IACH,cAAc,EAAE,2BAA2B;IAE3C;;;OAGG;IACH,iBAAiB,EAAE,8BAA8B;IAEjD;;OAEG;IACH,kBAAkB,EAAE,qDAAqD;IAEzE;;OAEG;IACH,qBAAqB,EAAE,wDAAwD;CACtE,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The contexts for Dublin Core.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const DublinCoreContexts = {\n\t/**\n\t * The LD context for Dublin Core Terms vocabulary.\n\t * @see https://www.dublincore.org/specifications/dublin-core/dcmi-terms/\n\t */\n\tNamespaceTerms: \"http://purl.org/dc/terms/\",\n\n\t/**\n\t * The LD context for Dublin Core DCMI Types vocabulary.\n\t * @see https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-7\n\t */\n\tNamespaceDcmiType: \"http://purl.org/dc/dcmitype/\",\n\n\t/**\n\t * JSON-LD Context URL for terms\n\t */\n\tJsonLdContextTerms: \"https://schema.twindev.org/dublin-core/terms.jsonld\",\n\n\t/**\n\t * JSON-LD Context URL for DCMI Types\n\t */\n\tJsonLdContextDcmiType: \"https://schema.twindev.org/dublin-core/dcmitype.jsonld\"\n} as const;\n\n/**\n * The contexts for Dublin Core.\n */\nexport type DublinCoreContexts = (typeof DublinCoreContexts)[keyof typeof DublinCoreContexts];\n"]}
|
|
@@ -6,20 +6,20 @@ export declare const DublinCoreContexts: {
|
|
|
6
6
|
* The LD context for Dublin Core Terms vocabulary.
|
|
7
7
|
* @see https://www.dublincore.org/specifications/dublin-core/dcmi-terms/
|
|
8
8
|
*/
|
|
9
|
-
readonly
|
|
9
|
+
readonly NamespaceTerms: "http://purl.org/dc/terms/";
|
|
10
10
|
/**
|
|
11
11
|
* The LD context for Dublin Core DCMI Types vocabulary.
|
|
12
12
|
* @see https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-7
|
|
13
13
|
*/
|
|
14
|
-
readonly
|
|
14
|
+
readonly NamespaceDcmiType: "http://purl.org/dc/dcmitype/";
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* JSON-LD Context URL for terms
|
|
17
17
|
*/
|
|
18
|
-
readonly
|
|
18
|
+
readonly JsonLdContextTerms: "https://schema.twindev.org/dublin-core/terms.jsonld";
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* JSON-LD Context URL for DCMI Types
|
|
21
21
|
*/
|
|
22
|
-
readonly
|
|
22
|
+
readonly JsonLdContextDcmiType: "https://schema.twindev.org/dublin-core/dcmitype.jsonld";
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
25
25
|
* The contexts for Dublin Core.
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/standards-dublin-core - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.12](https://github.com/twinfoundation/standards/compare/standards-dublin-core-v0.0.3-next.11...standards-dublin-core-v0.0.3-next.12) (2026-01-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **standards-dublin-core:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.11](https://github.com/twinfoundation/standards/compare/standards-dublin-core-v0.0.3-next.10...standards-dublin-core-v0.0.3-next.11) (2026-01-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* improved namespaces and contexts ([#102](https://github.com/twinfoundation/standards/issues/102)) ([c74c370](https://github.com/twinfoundation/standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
16
|
+
|
|
3
17
|
## [0.0.3-next.10](https://github.com/twinfoundation/standards/compare/standards-dublin-core-v0.0.3-next.9...standards-dublin-core-v0.0.3-next.10) (2026-01-13)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -6,9 +6,9 @@ The contexts for Dublin Core.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### NamespaceTerms
|
|
10
10
|
|
|
11
|
-
> `readonly` **
|
|
11
|
+
> `readonly` **NamespaceTerms**: `"http://purl.org/dc/terms/"` = `"http://purl.org/dc/terms/"`
|
|
12
12
|
|
|
13
13
|
The LD context for Dublin Core Terms vocabulary.
|
|
14
14
|
|
|
@@ -16,9 +16,9 @@ The LD context for Dublin Core Terms vocabulary.
|
|
|
16
16
|
|
|
17
17
|
https://www.dublincore.org/specifications/dublin-core/dcmi-terms/
|
|
18
18
|
|
|
19
|
-
###
|
|
19
|
+
### NamespaceDcmiType
|
|
20
20
|
|
|
21
|
-
> `readonly` **
|
|
21
|
+
> `readonly` **NamespaceDcmiType**: `"http://purl.org/dc/dcmitype/"` = `"http://purl.org/dc/dcmitype/"`
|
|
22
22
|
|
|
23
23
|
The LD context for Dublin Core DCMI Types vocabulary.
|
|
24
24
|
|
|
@@ -26,14 +26,14 @@ The LD context for Dublin Core DCMI Types vocabulary.
|
|
|
26
26
|
|
|
27
27
|
https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-7
|
|
28
28
|
|
|
29
|
-
###
|
|
29
|
+
### JsonLdContextTerms
|
|
30
30
|
|
|
31
|
-
> `readonly` **
|
|
31
|
+
> `readonly` **JsonLdContextTerms**: `"https://schema.twindev.org/dublin-core/terms.jsonld"` = `"https://schema.twindev.org/dublin-core/terms.jsonld"`
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
JSON-LD Context URL for terms
|
|
34
34
|
|
|
35
|
-
###
|
|
35
|
+
### JsonLdContextDcmiType
|
|
36
36
|
|
|
37
|
-
> `readonly` **
|
|
37
|
+
> `readonly` **JsonLdContextDcmiType**: `"https://schema.twindev.org/dublin-core/dcmitype.jsonld"` = `"https://schema.twindev.org/dublin-core/dcmitype.jsonld"`
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
JSON-LD Context URL for DCMI Types
|