@twin.org/synchronised-storage-models 0.0.3-next.5 → 0.0.3-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.
- package/dist/es/models/ISyncChange.js.map +1 -1
- package/dist/es/models/ISyncChangeSet.js.map +1 -1
- package/dist/es/models/ISyncRequest.js.map +1 -1
- package/dist/es/models/ISynchronisedEntity.js.map +1 -1
- package/dist/es/models/ISynchronisedEntityCore.js.map +1 -1
- package/dist/es/models/synchronisedStorageContexts.js +11 -3
- package/dist/es/models/synchronisedStorageContexts.js.map +1 -1
- package/dist/types/models/ISyncChange.d.ts +2 -0
- package/dist/types/models/ISyncChangeSet.d.ts +7 -2
- package/dist/types/models/ISyncRequest.d.ts +3 -2
- package/dist/types/models/ISynchronisedEntity.d.ts +2 -1
- package/dist/types/models/ISynchronisedEntityCore.d.ts +1 -0
- package/dist/types/models/synchronisedStorageContexts.d.ts +11 -3
- package/docs/changelog.md +14 -0
- package/docs/reference/interfaces/ISyncChange.md +2 -0
- package/docs/reference/interfaces/ISyncChangeSet.md +7 -2
- package/docs/reference/interfaces/ISyncRequest.md +3 -2
- package/docs/reference/interfaces/ISynchronisedEntity.md +4 -2
- package/docs/reference/interfaces/ISynchronisedEntityCore.md +1 -0
- package/docs/reference/type-aliases/SynchronisedStorageContexts.md +1 -1
- package/docs/reference/variables/SynchronisedStorageContexts.md +14 -2
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISyncChange.js","sourceRoot":"","sources":["../../../src/models/ISyncChange.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ISynchronisedEntityCore } from \"./ISynchronisedEntityCore.js\";\nimport type { SyncChangeOperation } from \"./syncChangeOperation.js\";\n\n/**\n * The object definition for a sync change.\n */\nexport interface ISyncChange {\n\t/**\n\t * Operation.\n\t */\n\toperation: SyncChangeOperation;\n\n\t/**\n\t * The item id.\n\t */\n\tid: string;\n\n\t/**\n\t * The entity to set.\n\t */\n\tentity?: ISynchronisedEntityCore;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ISyncChange.js","sourceRoot":"","sources":["../../../src/models/ISyncChange.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ISynchronisedEntityCore } from \"./ISynchronisedEntityCore.js\";\nimport type { SyncChangeOperation } from \"./syncChangeOperation.js\";\n\n/**\n * The object definition for a sync change.\n */\nexport interface ISyncChange {\n\t/**\n\t * Operation.\n\t * json-ld type:schema:Text\n\t */\n\toperation: SyncChangeOperation;\n\n\t/**\n\t * The item id.\n\t */\n\tid: string;\n\n\t/**\n\t * The entity to set.\n\t * json-ld type:json\n\t */\n\tentity?: ISynchronisedEntityCore;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISyncChangeSet.js","sourceRoot":"","sources":["../../../src/models/ISyncChangeSet.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ISyncChange } from \"./ISyncChange.js\";\nimport type { SynchronisedStorageContexts } from \"./synchronisedStorageContexts.js\";\nimport type { SynchronisedStorageTypes } from \"./synchronisedStorageTypes.js\";\n\n/**\n * The object definition for a sync change set.\n */\nexport interface ISyncChangeSet {\n\t/**\n\t * The LD Context for the change set.\n\t */\n\t\"@context\": typeof SynchronisedStorageContexts.
|
|
1
|
+
{"version":3,"file":"ISyncChangeSet.js","sourceRoot":"","sources":["../../../src/models/ISyncChangeSet.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ISyncChange } from \"./ISyncChange.js\";\nimport type { SynchronisedStorageContexts } from \"./synchronisedStorageContexts.js\";\nimport type { SynchronisedStorageTypes } from \"./synchronisedStorageTypes.js\";\n\n/**\n * The object definition for a sync change set.\n */\nexport interface ISyncChangeSet {\n\t/**\n\t * The LD Context for the change set.\n\t */\n\t\"@context\": typeof SynchronisedStorageContexts.Context;\n\n\t/**\n\t * The LD Type for the change set.\n\t */\n\ttype: typeof SynchronisedStorageTypes.ChangeSet;\n\n\t/**\n\t * The id of the change set.\n\t */\n\tid: string;\n\n\t/**\n\t * The storage key of the change set. This is used to identify the entities being synchronised.\n\t * json-ld type:schema:identifier\n\t */\n\tstorageKey: string;\n\n\t/**\n\t * The date the change set was created.\n\t * json-ld namespace:schema\n\t */\n\tdateCreated: string;\n\n\t/**\n\t * The date the change set was last modified.\n\t * json-ld namespace:schema\n\t */\n\tdateModified: string;\n\n\t/**\n\t * The identity of the node that created the change set.\n\t * json-ld namespace:twin-common\n\t */\n\tnodeIdentity: string;\n\n\t/**\n\t * The changes to apply after a snapshot.\n\t * json-ld type:json\n\t */\n\tchanges: ISyncChange[];\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISyncRequest.js","sourceRoot":"","sources":["../../../src/models/ISyncRequest.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { SynchronisedStorageContexts } from \"./synchronisedStorageContexts.js\";\nimport type { SynchronisedStorageTypes } from \"./synchronisedStorageTypes.js\";\n\n/**\n * The object definition for a sync request.\n */\nexport interface ISyncRequest {\n\t/**\n\t * The LD Context for the request.\n\t */\n\t\"@context\": typeof SynchronisedStorageContexts.
|
|
1
|
+
{"version":3,"file":"ISyncRequest.js","sourceRoot":"","sources":["../../../src/models/ISyncRequest.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { SynchronisedStorageContexts } from \"./synchronisedStorageContexts.js\";\nimport type { SynchronisedStorageTypes } from \"./synchronisedStorageTypes.js\";\n\n/**\n * The object definition for a sync request.\n */\nexport interface ISyncRequest {\n\t/**\n\t * The LD Context for the request.\n\t */\n\t\"@context\": typeof SynchronisedStorageContexts.Context;\n\n\t/**\n\t * The LD Type for the request.\n\t */\n\ttype: typeof SynchronisedStorageTypes.SyncRequest;\n\n\t/**\n\t * The identity of the node that created the request.\n\t * json-ld namespace:twin-common\n\t */\n\tnodeIdentity: string;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISynchronisedEntity.js","sourceRoot":"","sources":["../../../src/models/ISynchronisedEntity.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ISynchronisedEntityCore } from \"./ISynchronisedEntityCore.js\";\n\n/**\n * The base definition for synchronised entries.\n */\nexport interface ISynchronisedEntity extends ISynchronisedEntityCore {\n\t/**\n\t * The id of the entry.\n\t */\n\tid: string;\n\n\t/**\n\t * The identity of the node that owns the entry.\n\t */\n\
|
|
1
|
+
{"version":3,"file":"ISynchronisedEntity.js","sourceRoot":"","sources":["../../../src/models/ISynchronisedEntity.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { ISynchronisedEntityCore } from \"./ISynchronisedEntityCore.js\";\n\n/**\n * The base definition for synchronised entries.\n */\nexport interface ISynchronisedEntity extends ISynchronisedEntityCore {\n\t/**\n\t * The id of the entry.\n\t */\n\tid: string;\n\n\t/**\n\t * The identity of the node that owns the entry.\n\t * json-ld namespace:twin-common\n\t */\n\tnodeIdentity: string;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISynchronisedEntityCore.js","sourceRoot":"","sources":["../../../src/models/ISynchronisedEntityCore.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The base definition for synchronised entries.\n */\nexport interface ISynchronisedEntityCore {\n\t/**\n\t * The date the entry was modified.\n\t */\n\tdateModified: string;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ISynchronisedEntityCore.js","sourceRoot":"","sources":["../../../src/models/ISynchronisedEntityCore.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The base definition for synchronised entries.\n */\nexport interface ISynchronisedEntityCore {\n\t/**\n\t * The date the entry was modified.\n\t * json-ld namespace:schema\n\t */\n\tdateModified: string;\n}\n"]}
|
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
// Copyright 2024 IOTA Stiftung.
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0.
|
|
3
3
|
/**
|
|
4
|
-
* The Contexts concerning
|
|
4
|
+
* The Contexts concerning Synchronised Storage.
|
|
5
5
|
*/
|
|
6
6
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
7
7
|
export const SynchronisedStorageContexts = {
|
|
8
8
|
/**
|
|
9
|
-
* The namespace.
|
|
9
|
+
* The canonical RDF namespace URI for Synchronised Storage.
|
|
10
10
|
*/
|
|
11
|
-
Namespace: "https://schema.twindev.org/synchronised-storage/"
|
|
11
|
+
Namespace: "https://schema.twindev.org/synchronised-storage/",
|
|
12
|
+
/**
|
|
13
|
+
* The value to use in context for Synchronised Storage.
|
|
14
|
+
*/
|
|
15
|
+
Context: "https://schema.twindev.org/synchronised-storage/",
|
|
16
|
+
/**
|
|
17
|
+
* The JSON-LD Context URL for Synchronised Storage.
|
|
18
|
+
*/
|
|
19
|
+
JsonLdContext: "https://schema.twindev.org/synchronised-storage/types.jsonld"
|
|
12
20
|
};
|
|
13
21
|
//# sourceMappingURL=synchronisedStorageContexts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"synchronisedStorageContexts.js","sourceRoot":"","sources":["../../../src/models/synchronisedStorageContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,2BAA2B,GAAG;IAC1C;;OAEG;IACH,SAAS,EAAE,kDAAkD;
|
|
1
|
+
{"version":3,"file":"synchronisedStorageContexts.js","sourceRoot":"","sources":["../../../src/models/synchronisedStorageContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,2BAA2B,GAAG;IAC1C;;OAEG;IACH,SAAS,EAAE,kDAAkD;IAE7D;;OAEG;IACH,OAAO,EAAE,kDAAkD;IAE3D;;OAEG;IACH,aAAa,EAAE,8DAA8D;CACpE,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The Contexts concerning Synchronised Storage.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const SynchronisedStorageContexts = {\n\t/**\n\t * The canonical RDF namespace URI for Synchronised Storage.\n\t */\n\tNamespace: \"https://schema.twindev.org/synchronised-storage/\",\n\n\t/**\n\t * The value to use in context for Synchronised Storage.\n\t */\n\tContext: \"https://schema.twindev.org/synchronised-storage/\",\n\n\t/**\n\t * The JSON-LD Context URL for Synchronised Storage.\n\t */\n\tJsonLdContext: \"https://schema.twindev.org/synchronised-storage/types.jsonld\"\n} as const;\n\n/**\n * The Contexts concerning Synchronised Storage.\n */\nexport type SynchronisedStorageContexts =\n\t(typeof SynchronisedStorageContexts)[keyof typeof SynchronisedStorageContexts];\n"]}
|
|
@@ -6,6 +6,7 @@ import type { SyncChangeOperation } from "./syncChangeOperation.js";
|
|
|
6
6
|
export interface ISyncChange {
|
|
7
7
|
/**
|
|
8
8
|
* Operation.
|
|
9
|
+
* json-ld type:schema:Text
|
|
9
10
|
*/
|
|
10
11
|
operation: SyncChangeOperation;
|
|
11
12
|
/**
|
|
@@ -14,6 +15,7 @@ export interface ISyncChange {
|
|
|
14
15
|
id: string;
|
|
15
16
|
/**
|
|
16
17
|
* The entity to set.
|
|
18
|
+
* json-ld type:json
|
|
17
19
|
*/
|
|
18
20
|
entity?: ISynchronisedEntityCore;
|
|
19
21
|
}
|
|
@@ -8,7 +8,7 @@ export interface ISyncChangeSet {
|
|
|
8
8
|
/**
|
|
9
9
|
* The LD Context for the change set.
|
|
10
10
|
*/
|
|
11
|
-
"@context": typeof SynchronisedStorageContexts.
|
|
11
|
+
"@context": typeof SynchronisedStorageContexts.Context;
|
|
12
12
|
/**
|
|
13
13
|
* The LD Type for the change set.
|
|
14
14
|
*/
|
|
@@ -19,22 +19,27 @@ export interface ISyncChangeSet {
|
|
|
19
19
|
id: string;
|
|
20
20
|
/**
|
|
21
21
|
* The storage key of the change set. This is used to identify the entities being synchronised.
|
|
22
|
+
* json-ld type:schema:identifier
|
|
22
23
|
*/
|
|
23
24
|
storageKey: string;
|
|
24
25
|
/**
|
|
25
26
|
* The date the change set was created.
|
|
27
|
+
* json-ld namespace:schema
|
|
26
28
|
*/
|
|
27
29
|
dateCreated: string;
|
|
28
30
|
/**
|
|
29
31
|
* The date the change set was last modified.
|
|
32
|
+
* json-ld namespace:schema
|
|
30
33
|
*/
|
|
31
34
|
dateModified: string;
|
|
32
35
|
/**
|
|
33
36
|
* The identity of the node that created the change set.
|
|
37
|
+
* json-ld namespace:twin-common
|
|
34
38
|
*/
|
|
35
|
-
|
|
39
|
+
nodeIdentity: string;
|
|
36
40
|
/**
|
|
37
41
|
* The changes to apply after a snapshot.
|
|
42
|
+
* json-ld type:json
|
|
38
43
|
*/
|
|
39
44
|
changes: ISyncChange[];
|
|
40
45
|
}
|
|
@@ -7,13 +7,14 @@ export interface ISyncRequest {
|
|
|
7
7
|
/**
|
|
8
8
|
* The LD Context for the request.
|
|
9
9
|
*/
|
|
10
|
-
"@context": typeof SynchronisedStorageContexts.
|
|
10
|
+
"@context": typeof SynchronisedStorageContexts.Context;
|
|
11
11
|
/**
|
|
12
12
|
* The LD Type for the request.
|
|
13
13
|
*/
|
|
14
14
|
type: typeof SynchronisedStorageTypes.SyncRequest;
|
|
15
15
|
/**
|
|
16
16
|
* The identity of the node that created the request.
|
|
17
|
+
* json-ld namespace:twin-common
|
|
17
18
|
*/
|
|
18
|
-
|
|
19
|
+
nodeIdentity: string;
|
|
19
20
|
}
|
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* The Contexts concerning
|
|
2
|
+
* The Contexts concerning Synchronised Storage.
|
|
3
3
|
*/
|
|
4
4
|
export declare const SynchronisedStorageContexts: {
|
|
5
5
|
/**
|
|
6
|
-
* The namespace.
|
|
6
|
+
* The canonical RDF namespace URI for Synchronised Storage.
|
|
7
7
|
*/
|
|
8
8
|
readonly Namespace: "https://schema.twindev.org/synchronised-storage/";
|
|
9
|
+
/**
|
|
10
|
+
* The value to use in context for Synchronised Storage.
|
|
11
|
+
*/
|
|
12
|
+
readonly Context: "https://schema.twindev.org/synchronised-storage/";
|
|
13
|
+
/**
|
|
14
|
+
* The JSON-LD Context URL for Synchronised Storage.
|
|
15
|
+
*/
|
|
16
|
+
readonly JsonLdContext: "https://schema.twindev.org/synchronised-storage/types.jsonld";
|
|
9
17
|
};
|
|
10
18
|
/**
|
|
11
|
-
* The Contexts concerning
|
|
19
|
+
* The Contexts concerning Synchronised Storage.
|
|
12
20
|
*/
|
|
13
21
|
export type SynchronisedStorageContexts = (typeof SynchronisedStorageContexts)[keyof typeof SynchronisedStorageContexts];
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.7](https://github.com/twinfoundation/synchronised-storage/compare/synchronised-storage-models-v0.0.3-next.6...synchronised-storage-models-v0.0.3-next.7) (2026-01-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* json ld contexts ([#36](https://github.com/twinfoundation/synchronised-storage/issues/36)) ([3a87a9f](https://github.com/twinfoundation/synchronised-storage/commit/3a87a9fb16d21baf672e44b4e8914cf1937b1d6a))
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.6](https://github.com/twinfoundation/synchronised-storage/compare/synchronised-storage-models-v0.0.3-next.5...synchronised-storage-models-v0.0.3-next.6) (2026-01-22)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* update contexts ([#34](https://github.com/twinfoundation/synchronised-storage/issues/34)) ([7be9caf](https://github.com/twinfoundation/synchronised-storage/commit/7be9caf3da63f8afefd625650150bed171a1d045))
|
|
16
|
+
|
|
3
17
|
## [0.0.3-next.5](https://github.com/twinfoundation/synchronised-storage/compare/synchronised-storage-models-v0.0.3-next.4...synchronised-storage-models-v0.0.3-next.5) (2026-01-19)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -9,6 +9,7 @@ The object definition for a sync change.
|
|
|
9
9
|
> **operation**: [`SyncChangeOperation`](../type-aliases/SyncChangeOperation.md)
|
|
10
10
|
|
|
11
11
|
Operation.
|
|
12
|
+
json-ld type:schema:Text
|
|
12
13
|
|
|
13
14
|
***
|
|
14
15
|
|
|
@@ -25,3 +26,4 @@ The item id.
|
|
|
25
26
|
> `optional` **entity**: [`ISynchronisedEntityCore`](ISynchronisedEntityCore.md)
|
|
26
27
|
|
|
27
28
|
The entity to set.
|
|
29
|
+
json-ld type:json
|
|
@@ -33,6 +33,7 @@ The id of the change set.
|
|
|
33
33
|
> **storageKey**: `string`
|
|
34
34
|
|
|
35
35
|
The storage key of the change set. This is used to identify the entities being synchronised.
|
|
36
|
+
json-ld type:schema:identifier
|
|
36
37
|
|
|
37
38
|
***
|
|
38
39
|
|
|
@@ -41,6 +42,7 @@ The storage key of the change set. This is used to identify the entities being s
|
|
|
41
42
|
> **dateCreated**: `string`
|
|
42
43
|
|
|
43
44
|
The date the change set was created.
|
|
45
|
+
json-ld namespace:schema
|
|
44
46
|
|
|
45
47
|
***
|
|
46
48
|
|
|
@@ -49,14 +51,16 @@ The date the change set was created.
|
|
|
49
51
|
> **dateModified**: `string`
|
|
50
52
|
|
|
51
53
|
The date the change set was last modified.
|
|
54
|
+
json-ld namespace:schema
|
|
52
55
|
|
|
53
56
|
***
|
|
54
57
|
|
|
55
|
-
###
|
|
58
|
+
### nodeIdentity
|
|
56
59
|
|
|
57
|
-
> **
|
|
60
|
+
> **nodeIdentity**: `string`
|
|
58
61
|
|
|
59
62
|
The identity of the node that created the change set.
|
|
63
|
+
json-ld namespace:twin-common
|
|
60
64
|
|
|
61
65
|
***
|
|
62
66
|
|
|
@@ -65,3 +69,4 @@ The identity of the node that created the change set.
|
|
|
65
69
|
> **changes**: [`ISyncChange`](ISyncChange.md)[]
|
|
66
70
|
|
|
67
71
|
The changes to apply after a snapshot.
|
|
72
|
+
json-ld type:json
|
|
@@ -16,11 +16,12 @@ The id of the entry.
|
|
|
16
16
|
|
|
17
17
|
***
|
|
18
18
|
|
|
19
|
-
###
|
|
19
|
+
### nodeIdentity
|
|
20
20
|
|
|
21
|
-
>
|
|
21
|
+
> **nodeIdentity**: `string`
|
|
22
22
|
|
|
23
23
|
The identity of the node that owns the entry.
|
|
24
|
+
json-ld namespace:twin-common
|
|
24
25
|
|
|
25
26
|
***
|
|
26
27
|
|
|
@@ -29,6 +30,7 @@ The identity of the node that owns the entry.
|
|
|
29
30
|
> **dateModified**: `string`
|
|
30
31
|
|
|
31
32
|
The date the entry was modified.
|
|
33
|
+
json-ld namespace:schema
|
|
32
34
|
|
|
33
35
|
#### Inherited from
|
|
34
36
|
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
|
|
3
3
|
> **SynchronisedStorageContexts** = *typeof* [`SynchronisedStorageContexts`](../variables/SynchronisedStorageContexts.md)\[keyof *typeof* [`SynchronisedStorageContexts`](../variables/SynchronisedStorageContexts.md)\]
|
|
4
4
|
|
|
5
|
-
The Contexts concerning
|
|
5
|
+
The Contexts concerning Synchronised Storage.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> `const` **SynchronisedStorageContexts**: `object`
|
|
4
4
|
|
|
5
|
-
The Contexts concerning
|
|
5
|
+
The Contexts concerning Synchronised Storage.
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
@@ -10,4 +10,16 @@ The Contexts concerning SynchronisedStorage.
|
|
|
10
10
|
|
|
11
11
|
> `readonly` **Namespace**: `"https://schema.twindev.org/synchronised-storage/"` = `"https://schema.twindev.org/synchronised-storage/"`
|
|
12
12
|
|
|
13
|
-
The namespace.
|
|
13
|
+
The canonical RDF namespace URI for Synchronised Storage.
|
|
14
|
+
|
|
15
|
+
### Context
|
|
16
|
+
|
|
17
|
+
> `readonly` **Context**: `"https://schema.twindev.org/synchronised-storage/"` = `"https://schema.twindev.org/synchronised-storage/"`
|
|
18
|
+
|
|
19
|
+
The value to use in context for Synchronised Storage.
|
|
20
|
+
|
|
21
|
+
### JsonLdContext
|
|
22
|
+
|
|
23
|
+
> `readonly` **JsonLdContext**: `"https://schema.twindev.org/synchronised-storage/types.jsonld"` = `"https://schema.twindev.org/synchronised-storage/types.jsonld"`
|
|
24
|
+
|
|
25
|
+
The JSON-LD Context URL for Synchronised Storage.
|
package/package.json
CHANGED