@twin.org/data-framework 0.0.1-next.5 → 0.0.1-next.6
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/cjs/index.cjs
CHANGED
|
@@ -10,6 +10,10 @@ var dataCore = require('@twin.org/data-core');
|
|
|
10
10
|
*/
|
|
11
11
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
12
12
|
const FrameworkTypes = {
|
|
13
|
+
/**
|
|
14
|
+
* Context Root.
|
|
15
|
+
*/
|
|
16
|
+
ContextRoot: "https://schema.twindev.org/framework/",
|
|
13
17
|
/**
|
|
14
18
|
* Represents a urn.
|
|
15
19
|
*/
|
package/dist/esm/index.mjs
CHANGED
|
@@ -8,6 +8,10 @@ import { DataTypeHandlerFactory } from '@twin.org/data-core';
|
|
|
8
8
|
*/
|
|
9
9
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
10
10
|
const FrameworkTypes = {
|
|
11
|
+
/**
|
|
12
|
+
* Context Root.
|
|
13
|
+
*/
|
|
14
|
+
ContextRoot: "https://schema.twindev.org/framework/",
|
|
11
15
|
/**
|
|
12
16
|
* Represents a urn.
|
|
13
17
|
*/
|
package/docs/changelog.md
CHANGED
|
@@ -6,6 +6,12 @@ The types of framework data.
|
|
|
6
6
|
|
|
7
7
|
## Type declaration
|
|
8
8
|
|
|
9
|
+
### ContextRoot
|
|
10
|
+
|
|
11
|
+
> `readonly` **ContextRoot**: `"https://schema.twindev.org/framework/"` = `"https://schema.twindev.org/framework/"`
|
|
12
|
+
|
|
13
|
+
Context Root.
|
|
14
|
+
|
|
9
15
|
### Urn
|
|
10
16
|
|
|
11
17
|
> `readonly` **Urn**: `"https://schema.twindev.org/framework/URN"` = `"https://schema.twindev.org/framework/URN"`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/data-framework",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.6",
|
|
4
4
|
"description": "Models which define the structure of framework types",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@twin.org/core": "next",
|
|
18
|
-
"@twin.org/data-core": "0.0.1-next.
|
|
19
|
-
"@twin.org/data-json-ld": "0.0.1-next.
|
|
18
|
+
"@twin.org/data-core": "0.0.1-next.6",
|
|
19
|
+
"@twin.org/data-json-ld": "0.0.1-next.6",
|
|
20
20
|
"@twin.org/entity": "next",
|
|
21
21
|
"@twin.org/nameof": "next",
|
|
22
22
|
"@types/json-schema": "7.0.15"
|