@twin.org/standards-w3c-vcard 0.0.3-next.1 → 0.0.3-next.3
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":"vcardContexts.js","sourceRoot":"","sources":["../../../src/models/vcardContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,aAAa,GAAG;IAC5B;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"vcardContexts.js","sourceRoot":"","sources":["../../../src/models/vcardContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,aAAa,GAAG;IAC5B;;;;OAIG;IACH,WAAW,EAAE,kCAAkC;CACtC,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The contexts for VCard.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const VCardContexts = {\n\t/**\n\t * The context root for VCard.\n\t * Based on W3C VCard Ontology.\n\t * @see http://www.w3.org/2006/vcard/ns#\n\t */\n\tContextRoot: \"http://www.w3.org/2006/vcard/ns#\"\n} as const;\n\n/**\n * The contexts for VCard.\n */\nexport type VCardContexts = (typeof VCardContexts)[keyof typeof VCardContexts];\n"]}
|
|
@@ -7,7 +7,7 @@ export declare const VCardContexts: {
|
|
|
7
7
|
* Based on W3C VCard Ontology.
|
|
8
8
|
* @see http://www.w3.org/2006/vcard/ns#
|
|
9
9
|
*/
|
|
10
|
-
readonly
|
|
10
|
+
readonly ContextRoot: "http://www.w3.org/2006/vcard/ns#";
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
13
13
|
* The contexts for VCard.
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/standards-w3c-vcard - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.3](https://github.com/twinfoundation/standards/compare/standards-w3c-vcard-v0.0.3-next.2...standards-w3c-vcard-v0.0.3-next.3) (2025-11-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add w3c dcat standards package ([#68](https://github.com/twinfoundation/standards/issues/68)) ([85746c6](https://github.com/twinfoundation/standards/commit/85746c673464498a52e9c30ce498fd88b81a7434))
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.2](https://github.com/twinfoundation/standards/compare/standards-w3c-vcard-v0.0.3-next.1...standards-w3c-vcard-v0.0.3-next.2) (2025-11-11)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* **standards-w3c-vcard:** Synchronize repo versions
|
|
16
|
+
|
|
3
17
|
## [0.0.3-next.1](https://github.com/twinfoundation/standards/compare/standards-w3c-vcard-v0.0.3-next.0...standards-w3c-vcard-v0.0.3-next.1) (2025-11-10)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -6,9 +6,9 @@ The contexts for VCard.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### ContextRoot
|
|
10
10
|
|
|
11
|
-
> `readonly` **
|
|
11
|
+
> `readonly` **ContextRoot**: `"http://www.w3.org/2006/vcard/ns#"` = `"http://www.w3.org/2006/vcard/ns#"`
|
|
12
12
|
|
|
13
13
|
The context root for VCard.
|
|
14
14
|
Based on W3C VCard Ontology.
|