@twin.org/standards-gaia-x 0.0.3-next.16 → 0.0.3-next.18
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/models/gaiaXContextType.js.map +1 -1
- package/dist/es/models/gaiaXContexts.js +12 -2
- package/dist/es/models/gaiaXContexts.js.map +1 -1
- package/dist/types/models/gaiaXContextType.d.ts +3 -3
- package/dist/types/models/gaiaXContexts.d.ts +11 -1
- package/docs/changelog.md +28 -0
- package/docs/reference/type-aliases/GaiaXContextType.md +1 -1
- package/docs/reference/variables/GaiaXContexts.md +15 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gaiaXContextType.js","sourceRoot":"","sources":["../../../src/models/gaiaXContextType.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IJsonLdContextDefinitionElement } from \"@twin.org/data-json-ld\";\nimport type { GaiaXContexts } from \"./gaiaXContexts.js\";\n\n/**\n * The Gaia-X JSON-LD context type.\n */\nexport type GaiaXContextType =\n\t| typeof GaiaXContexts.
|
|
1
|
+
{"version":3,"file":"gaiaXContextType.js","sourceRoot":"","sources":["../../../src/models/gaiaXContextType.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IJsonLdContextDefinitionElement } from \"@twin.org/data-json-ld\";\nimport type { GaiaXContexts } from \"./gaiaXContexts.js\";\n\n/**\n * The Gaia-X JSON-LD context type.\n */\nexport type GaiaXContextType =\n\t| typeof GaiaXContexts.Context\n\t| [\n\t\t\t...IJsonLdContextDefinitionElement[],\n\t\t\ttypeof GaiaXContexts.Context,\n\t\t\tIJsonLdContextDefinitionElement\n\t ]\n\t| [\n\t\t\tIJsonLdContextDefinitionElement,\n\t\t\ttypeof GaiaXContexts.Context,\n\t\t\t...IJsonLdContextDefinitionElement[]\n\t ];\n"]}
|
|
@@ -6,8 +6,18 @@
|
|
|
6
6
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
7
7
|
export const GaiaXContexts = {
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The canonical RDF namespace URI.
|
|
10
10
|
*/
|
|
11
|
-
Namespace: "https://schema.twindev.org/gaia-x-loire/"
|
|
11
|
+
Namespace: "https://schema.twindev.org/gaia-x-loire/",
|
|
12
|
+
/**
|
|
13
|
+
* The value to use in @context.
|
|
14
|
+
* Note: Context matches Namespace (both include trailing slash) as per Gaia-X specification.
|
|
15
|
+
* The Gaia-X JSON-LD context URL format includes a trailing slash.
|
|
16
|
+
*/
|
|
17
|
+
Context: "https://schema.twindev.org/gaia-x-loire/",
|
|
18
|
+
/**
|
|
19
|
+
* The JSON-LD Context URL.
|
|
20
|
+
*/
|
|
21
|
+
JsonLdContext: "https://schema.twindev.org/gaia-x-loire/types.jsonld"
|
|
12
22
|
};
|
|
13
23
|
//# sourceMappingURL=gaiaXContexts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gaiaXContexts.js","sourceRoot":"","sources":["../../../src/models/gaiaXContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,aAAa,GAAG;IAC5B;;OAEG;IACH,SAAS,EAAE,0CAA0C;
|
|
1
|
+
{"version":3,"file":"gaiaXContexts.js","sourceRoot":"","sources":["../../../src/models/gaiaXContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,aAAa,GAAG;IAC5B;;OAEG;IACH,SAAS,EAAE,0CAA0C;IAErD;;;;OAIG;IACH,OAAO,EAAE,0CAA0C;IAEnD;;OAEG;IACH,aAAa,EAAE,sDAAsD;CAC5D,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The Contexts concerning Gaia-X.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const GaiaXContexts = {\n\t/**\n\t * The canonical RDF namespace URI.\n\t */\n\tNamespace: \"https://schema.twindev.org/gaia-x-loire/\",\n\n\t/**\n\t * The value to use in @context.\n\t * Note: Context matches Namespace (both include trailing slash) as per Gaia-X specification.\n\t * The Gaia-X JSON-LD context URL format includes a trailing slash.\n\t */\n\tContext: \"https://schema.twindev.org/gaia-x-loire/\",\n\n\t/**\n\t * The JSON-LD Context URL.\n\t */\n\tJsonLdContext: \"https://schema.twindev.org/gaia-x-loire/types.jsonld\"\n} as const;\n\n/**\n * The Contexts concerning Gaia-X.\n */\nexport type GaiaXContexts = (typeof GaiaXContexts)[keyof typeof GaiaXContexts];\n"]}
|
|
@@ -3,12 +3,12 @@ import type { GaiaXContexts } from "./gaiaXContexts.js";
|
|
|
3
3
|
/**
|
|
4
4
|
* The Gaia-X JSON-LD context type.
|
|
5
5
|
*/
|
|
6
|
-
export type GaiaXContextType = typeof GaiaXContexts.
|
|
6
|
+
export type GaiaXContextType = typeof GaiaXContexts.Context | [
|
|
7
7
|
...IJsonLdContextDefinitionElement[],
|
|
8
|
-
typeof GaiaXContexts.
|
|
8
|
+
typeof GaiaXContexts.Context,
|
|
9
9
|
IJsonLdContextDefinitionElement
|
|
10
10
|
] | [
|
|
11
11
|
IJsonLdContextDefinitionElement,
|
|
12
|
-
typeof GaiaXContexts.
|
|
12
|
+
typeof GaiaXContexts.Context,
|
|
13
13
|
...IJsonLdContextDefinitionElement[]
|
|
14
14
|
];
|
|
@@ -3,9 +3,19 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const GaiaXContexts: {
|
|
5
5
|
/**
|
|
6
|
-
* The
|
|
6
|
+
* The canonical RDF namespace URI.
|
|
7
7
|
*/
|
|
8
8
|
readonly Namespace: "https://schema.twindev.org/gaia-x-loire/";
|
|
9
|
+
/**
|
|
10
|
+
* The value to use in @context.
|
|
11
|
+
* Note: Context matches Namespace (both include trailing slash) as per Gaia-X specification.
|
|
12
|
+
* The Gaia-X JSON-LD context URL format includes a trailing slash.
|
|
13
|
+
*/
|
|
14
|
+
readonly Context: "https://schema.twindev.org/gaia-x-loire/";
|
|
15
|
+
/**
|
|
16
|
+
* The JSON-LD Context URL.
|
|
17
|
+
*/
|
|
18
|
+
readonly JsonLdContext: "https://schema.twindev.org/gaia-x-loire/types.jsonld";
|
|
9
19
|
};
|
|
10
20
|
/**
|
|
11
21
|
* The Contexts concerning Gaia-X.
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @twin.org/standards-gaia-x - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.18](https://github.com/twinfoundation/standards/compare/standards-gaia-x-v0.0.3-next.17...standards-gaia-x-v0.0.3-next.18) (2026-01-21)
|
|
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.17 to 0.0.3-next.18
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.17](https://github.com/twinfoundation/standards/compare/standards-gaia-x-v0.0.3-next.16...standards-gaia-x-v0.0.3-next.17) (2026-01-21)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* updating the missing packages ([#114](https://github.com/twinfoundation/standards/issues/114)) ([90b03f8](https://github.com/twinfoundation/standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
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.16 to 0.0.3-next.17
|
|
30
|
+
|
|
3
31
|
## [0.0.3-next.16](https://github.com/twinfoundation/standards/compare/standards-gaia-x-v0.0.3-next.15...standards-gaia-x-v0.0.3-next.16) (2026-01-19)
|
|
4
32
|
|
|
5
33
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Type Alias: GaiaXContextType
|
|
2
2
|
|
|
3
|
-
> **GaiaXContextType** = *typeof* [`
|
|
3
|
+
> **GaiaXContextType** = *typeof* [`Context`](../variables/GaiaXContexts.md#context) \| \[`...IJsonLdContextDefinitionElement[]`, *typeof* [`Context`](../variables/GaiaXContexts.md#context), `IJsonLdContextDefinitionElement`\] \| \[`IJsonLdContextDefinitionElement`, *typeof* [`Context`](../variables/GaiaXContexts.md#context), `...IJsonLdContextDefinitionElement[]`\]
|
|
4
4
|
|
|
5
5
|
The Gaia-X JSON-LD context type.
|
|
@@ -10,4 +10,18 @@ The Contexts concerning Gaia-X.
|
|
|
10
10
|
|
|
11
11
|
> `readonly` **Namespace**: `"https://schema.twindev.org/gaia-x-loire/"` = `"https://schema.twindev.org/gaia-x-loire/"`
|
|
12
12
|
|
|
13
|
-
The
|
|
13
|
+
The canonical RDF namespace URI.
|
|
14
|
+
|
|
15
|
+
### Context
|
|
16
|
+
|
|
17
|
+
> `readonly` **Context**: `"https://schema.twindev.org/gaia-x-loire/"` = `"https://schema.twindev.org/gaia-x-loire/"`
|
|
18
|
+
|
|
19
|
+
The value to use in @context.
|
|
20
|
+
Note: Context matches Namespace (both include trailing slash) as per Gaia-X specification.
|
|
21
|
+
The Gaia-X JSON-LD context URL format includes a trailing slash.
|
|
22
|
+
|
|
23
|
+
### JsonLdContext
|
|
24
|
+
|
|
25
|
+
> `readonly` **JsonLdContext**: `"https://schema.twindev.org/gaia-x-loire/types.jsonld"` = `"https://schema.twindev.org/gaia-x-loire/types.jsonld"`
|
|
26
|
+
|
|
27
|
+
The JSON-LD Context URL.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/standards-gaia-x",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.18",
|
|
4
4
|
"description": "Models which define the structure of Gaia-x",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "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.
|
|
20
|
+
"@twin.org/standards-w3c-odrl": "0.0.3-next.18"
|
|
21
21
|
},
|
|
22
22
|
"main": "./dist/es/index.js",
|
|
23
23
|
"types": "./dist/types/index.d.ts",
|