@twin.org/standards-gaia-x 0.0.3-next.50 → 0.0.3-next.52

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # TWIN Standards Gaia-x
1
+ # TWIN Standards Gaia-X
2
2
 
3
- Models which define the structure of [Gaia-x](https://docs.gaia-x.eu/ontology/development/).
3
+ This package provides data models for [Gaia-X ontology concepts](https://docs.gaia-x.eu/ontology/development/), enabling interoperable representation of federated data space concepts.
4
4
 
5
5
  ## Installation
6
6
 
package/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @twin.org/standards-gaia-x - Changelog
2
2
 
3
+ ## [0.0.3-next.52](https://github.com/twinfoundation/standards/compare/standards-gaia-x-v0.0.3-next.51...standards-gaia-x-v0.0.3-next.52) (2026-03-10)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **standards-gaia-x:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.51 to 0.0.3-next.52
16
+
17
+ ## [0.0.3-next.51](https://github.com/twinfoundation/standards/compare/standards-gaia-x-v0.0.3-next.50...standards-gaia-x-v0.0.3-next.51) (2026-03-10)
18
+
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * **standards-gaia-x:** Synchronize repo versions
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @twin.org/standards-w3c-odrl bumped from 0.0.3-next.50 to 0.0.3-next.51
30
+
3
31
  ## [0.0.3-next.50](https://github.com/twinfoundation/standards/compare/standards-gaia-x-v0.0.3-next.49...standards-gaia-x-v0.0.3-next.50) (2026-03-09)
4
32
 
5
33
 
package/docs/examples.md CHANGED
@@ -1 +1,25 @@
1
- # @twin.org/standards-gaia-x - Examples
1
+ # Standards Gaia-X Examples
2
+
3
+ These snippets register data types and model a service offering entity for exchange across participants.
4
+
5
+ ## GaiaXDataTypes
6
+
7
+ ```typescript
8
+ import {
9
+ GaiaXContexts,
10
+ GaiaXDataTypes,
11
+ GaiaXTypes,
12
+ type IGaiaXServiceOffering
13
+ } from '@twin.org/standards-gaia-x';
14
+
15
+ GaiaXDataTypes.registerTypes();
16
+
17
+ const offering: IGaiaXServiceOffering = {
18
+ '@context': GaiaXContexts.Context,
19
+ type: GaiaXTypes.ServiceOffering,
20
+ id: 'urn:gx:service:catalogue-api',
21
+ name: 'Catalogue API'
22
+ };
23
+
24
+ console.log(offering.type); // gx:ServiceOffering
25
+ ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@twin.org/standards-gaia-x",
3
- "version": "0.0.3-next.50",
4
- "description": "Models which define the structure of Gaia-x",
3
+ "version": "0.0.3-next.52",
4
+ "description": "Data models for Gaia-X ontology concepts.",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/twinfoundation/standards.git",
@@ -17,7 +17,7 @@
17
17
  "@twin.org/core": "next",
18
18
  "@twin.org/data-core": "next",
19
19
  "@twin.org/data-json-ld": "next",
20
- "@twin.org/standards-w3c-odrl": "0.0.3-next.50"
20
+ "@twin.org/standards-w3c-odrl": "0.0.3-next.52"
21
21
  },
22
22
  "main": "./dist/es/index.js",
23
23
  "types": "./dist/types/index.d.ts",