@twin.org/data-framework 0.0.1-next.5 → 0.0.1-next.7

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.
@@ -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
  */
@@ -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
  */
@@ -2,6 +2,10 @@
2
2
  * The types of framework data.
3
3
  */
4
4
  export declare const FrameworkTypes: {
5
+ /**
6
+ * Context Root.
7
+ */
8
+ readonly ContextRoot: "https://schema.twindev.org/framework/";
5
9
  /**
6
10
  * Represents a urn.
7
11
  */
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/data-framework - Changelog
2
2
 
3
- ## v0.0.1-next.5
3
+ ## v0.0.1-next.7
4
4
 
5
5
  - Initial Release
@@ -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.5",
3
+ "version": "0.0.1-next.7",
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.5",
19
- "@twin.org/data-json-ld": "0.0.1-next.5",
18
+ "@twin.org/data-core": "0.0.1-next.7",
19
+ "@twin.org/data-json-ld": "0.0.1-next.7",
20
20
  "@twin.org/entity": "next",
21
21
  "@twin.org/nameof": "next",
22
22
  "@types/json-schema": "7.0.15"