@twin.org/standards-dublin-core 0.0.3-next.41 → 0.0.3-next.43
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IDublinCorePeriodOfTime.js","sourceRoot":"","sources":["../../../src/models/IDublinCorePeriodOfTime.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type {
|
|
1
|
+
{"version":3,"file":"IDublinCorePeriodOfTime.js","sourceRoot":"","sources":["../../../src/models/IDublinCorePeriodOfTime.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { DublinCoreClasses } from \"./dublinCoreClasses.js\";\n\n/**\n * Interface for Dublin Core Terms Period of Time.\n * An interval of time that is named or defined by its start and end dates.\n * @see https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/PeriodOfTime\n */\nexport interface IDublinCorePeriodOfTime {\n\t/**\n\t * The type identifier for PeriodOfTime.\n\t */\n\t\"@type\"?: typeof DublinCoreClasses.PeriodOfTime;\n\n\t/**\n\t * The start date of the period.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:period_start_date\n\t */\n\t\"dcat:startDate\"?: string;\n\n\t/**\n\t * The end date of the period.\n\t * @see https://www.w3.org/TR/vocab-dcat-3/#Property:period_end_date\n\t */\n\t\"dcat:endDate\"?: string;\n\n\t/**\n\t * The beginning of a period or interval.\n\t * @see https://www.w3.org/TR/owl-time/#time:hasBeginning\n\t */\n\t\"time:hasBeginning\"?: string;\n\n\t/**\n\t * The end of a period or interval.\n\t * @see https://www.w3.org/TR/owl-time/#time:hasEnd\n\t */\n\t\"time:hasEnd\"?: string;\n}\n"]}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
2
1
|
import type { DublinCoreClasses } from "./dublinCoreClasses.js";
|
|
3
2
|
/**
|
|
4
3
|
* Interface for Dublin Core Terms Period of Time.
|
|
5
4
|
* An interval of time that is named or defined by its start and end dates.
|
|
6
5
|
* @see https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/PeriodOfTime
|
|
7
6
|
*/
|
|
8
|
-
export interface IDublinCorePeriodOfTime
|
|
7
|
+
export interface IDublinCorePeriodOfTime {
|
|
9
8
|
/**
|
|
10
9
|
* The type identifier for PeriodOfTime.
|
|
11
10
|
*/
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/standards-dublin-core - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.43](https://github.com/twinfoundation/standards/compare/standards-dublin-core-v0.0.3-next.42...standards-dublin-core-v0.0.3-next.43) (2026-02-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **standards-dublin-core:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.42](https://github.com/twinfoundation/standards/compare/standards-dublin-core-v0.0.3-next.41...standards-dublin-core-v0.0.3-next.42) (2026-02-25)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* remove IJsonLdNodeObject base interfaces ([#172](https://github.com/twinfoundation/standards/issues/172)) ([8ff8d7a](https://github.com/twinfoundation/standards/commit/8ff8d7a2892d626879b76ba5da912469ff899954))
|
|
16
|
+
|
|
3
17
|
## [0.0.3-next.41](https://github.com/twinfoundation/standards/compare/standards-dublin-core-v0.0.3-next.40...standards-dublin-core-v0.0.3-next.41) (2026-02-23)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -7,14 +7,6 @@ An interval of time that is named or defined by its start and end dates.
|
|
|
7
7
|
|
|
8
8
|
https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/PeriodOfTime
|
|
9
9
|
|
|
10
|
-
## Extends
|
|
11
|
-
|
|
12
|
-
- `IJsonLdNodeObject`
|
|
13
|
-
|
|
14
|
-
## Indexable
|
|
15
|
-
|
|
16
|
-
\[`key`: `string`\]: `string` \| `number` \| `boolean` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinition` \| `IJsonLdContextDefinitionElement`[] \| `string`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
|
|
17
|
-
|
|
18
10
|
## Properties
|
|
19
11
|
|
|
20
12
|
### @type?
|
|
@@ -23,10 +15,6 @@ https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#http://purl.or
|
|
|
23
15
|
|
|
24
16
|
The type identifier for PeriodOfTime.
|
|
25
17
|
|
|
26
|
-
#### Overrides
|
|
27
|
-
|
|
28
|
-
`IJsonLdNodeObject.@type`
|
|
29
|
-
|
|
30
18
|
***
|
|
31
19
|
|
|
32
20
|
### dcat:startDate?
|