@twin.org/standards-w3c-vcard 0.0.3-next.15 → 0.0.3-next.17

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.
@@ -6,10 +6,18 @@
6
6
  // eslint-disable-next-line @typescript-eslint/naming-convention
7
7
  export const VCardContexts = {
8
8
  /**
9
- * The namespace for VCard.
10
- * Based on W3C VCard Ontology.
11
- * @see http://www.w3.org/2006/vcard/ns#
9
+ * The canonical RDF namespace URI.
12
10
  */
13
- Namespace: "http://www.w3.org/2006/vcard/ns#"
11
+ Namespace: "http://www.w3.org/2006/vcard/ns#",
12
+ /**
13
+ * The value to use in @context.
14
+ * Note: Context matches Namespace (both include trailing hash) as per vCard specification.
15
+ * The vCard JSON-LD context URL format includes a trailing hash.
16
+ */
17
+ Context: "http://www.w3.org/2006/vcard/ns#",
18
+ /**
19
+ * The JSON-LD Context URL.
20
+ */
21
+ JsonLdContext: "http://www.w3.org/2006/vcard/ns#"
14
22
  };
15
23
  //# sourceMappingURL=vcardContexts.js.map
@@ -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,SAAS,EAAE,kCAAkC;CACpC,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 namespace for VCard.\n\t * Based on W3C VCard Ontology.\n\t * @see http://www.w3.org/2006/vcard/ns#\n\t */\n\tNamespace: \"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"]}
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;;OAEG;IACH,SAAS,EAAE,kCAAkC;IAE7C;;;;OAIG;IACH,OAAO,EAAE,kCAAkC;IAE3C;;OAEG;IACH,aAAa,EAAE,kCAAkC;CACxC,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 canonical RDF namespace URI.\n\t */\n\tNamespace: \"http://www.w3.org/2006/vcard/ns#\",\n\n\t/**\n\t * The value to use in @context.\n\t * Note: Context matches Namespace (both include trailing hash) as per vCard specification.\n\t * The vCard JSON-LD context URL format includes a trailing hash.\n\t */\n\tContext: \"http://www.w3.org/2006/vcard/ns#\",\n\n\t/**\n\t * The JSON-LD Context URL.\n\t */\n\tJsonLdContext: \"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"]}
@@ -3,11 +3,19 @@
3
3
  */
4
4
  export declare const VCardContexts: {
5
5
  /**
6
- * The namespace for VCard.
7
- * Based on W3C VCard Ontology.
8
- * @see http://www.w3.org/2006/vcard/ns#
6
+ * The canonical RDF namespace URI.
9
7
  */
10
8
  readonly Namespace: "http://www.w3.org/2006/vcard/ns#";
9
+ /**
10
+ * The value to use in @context.
11
+ * Note: Context matches Namespace (both include trailing hash) as per vCard specification.
12
+ * The vCard JSON-LD context URL format includes a trailing hash.
13
+ */
14
+ readonly Context: "http://www.w3.org/2006/vcard/ns#";
15
+ /**
16
+ * The JSON-LD Context URL.
17
+ */
18
+ readonly JsonLdContext: "http://www.w3.org/2006/vcard/ns#";
11
19
  };
12
20
  /**
13
21
  * 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.17](https://github.com/twinfoundation/standards/compare/standards-w3c-vcard-v0.0.3-next.16...standards-w3c-vcard-v0.0.3-next.17) (2026-01-21)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * updating the missing packages ([#114](https://github.com/twinfoundation/standards/issues/114)) ([90b03f8](https://github.com/twinfoundation/standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
9
+
10
+ ## [0.0.3-next.16](https://github.com/twinfoundation/standards/compare/standards-w3c-vcard-v0.0.3-next.15...standards-w3c-vcard-v0.0.3-next.16) (2026-01-19)
11
+
12
+
13
+ ### Miscellaneous Chores
14
+
15
+ * **standards-w3c-vcard:** Synchronize repo versions
16
+
3
17
  ## [0.0.3-next.15](https://github.com/twinfoundation/standards/compare/standards-w3c-vcard-v0.0.3-next.14...standards-w3c-vcard-v0.0.3-next.15) (2026-01-16)
4
18
 
5
19
 
@@ -10,9 +10,18 @@ The contexts for VCard.
10
10
 
11
11
  > `readonly` **Namespace**: `"http://www.w3.org/2006/vcard/ns#"` = `"http://www.w3.org/2006/vcard/ns#"`
12
12
 
13
- The namespace for VCard.
14
- Based on W3C VCard Ontology.
13
+ The canonical RDF namespace URI.
15
14
 
16
- #### See
15
+ ### Context
17
16
 
18
- http://www.w3.org/2006/vcard/ns#
17
+ > `readonly` **Context**: `"http://www.w3.org/2006/vcard/ns#"` = `"http://www.w3.org/2006/vcard/ns#"`
18
+
19
+ The value to use in @context.
20
+ Note: Context matches Namespace (both include trailing hash) as per vCard specification.
21
+ The vCard JSON-LD context URL format includes a trailing hash.
22
+
23
+ ### JsonLdContext
24
+
25
+ > `readonly` **JsonLdContext**: `"http://www.w3.org/2006/vcard/ns#"` = `"http://www.w3.org/2006/vcard/ns#"`
26
+
27
+ The JSON-LD Context URL.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/standards-w3c-vcard",
3
- "version": "0.0.3-next.15",
3
+ "version": "0.0.3-next.17",
4
4
  "description": "Models which define the structure of W3C VCard Standard",
5
5
  "repository": {
6
6
  "type": "git",