@twin.org/dataspace-data-plane-service 0.0.3-next.26 → 0.0.3-next.28
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/dataspaceDataPlaneRoutes.js +2 -4
- package/dist/es/dataspaceDataPlaneRoutes.js.map +1 -1
- package/dist/es/dataspaceDataPlaneService.js +20 -19
- package/dist/es/dataspaceDataPlaneService.js.map +1 -1
- package/dist/es/models/IDataspaceDataPlaneServiceConstructorOptions.js.map +1 -1
- package/dist/types/models/IDataspaceDataPlaneServiceConstructorOptions.d.ts +5 -0
- package/docs/changelog.md +139 -105
- package/docs/open-api/spec.json +1 -1
- package/docs/reference/interfaces/IDataspaceDataPlaneServiceConstructorOptions.md +14 -0
- package/package.json +5 -5
|
@@ -89,6 +89,20 @@ transfer-process
|
|
|
89
89
|
|
|
90
90
|
***
|
|
91
91
|
|
|
92
|
+
### dataspaceAppDatasetEntityStorageType? {#dataspaceappdatasetentitystoragetype}
|
|
93
|
+
|
|
94
|
+
> `optional` **dataspaceAppDatasetEntityStorageType?**: `string`
|
|
95
|
+
|
|
96
|
+
The entity storage type for Dataspace App Dataset entities.
|
|
97
|
+
|
|
98
|
+
#### Default
|
|
99
|
+
|
|
100
|
+
```ts
|
|
101
|
+
dataspace-app-dataset
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
***
|
|
105
|
+
|
|
92
106
|
### partitionContextIds? {#partitioncontextids}
|
|
93
107
|
|
|
94
108
|
> `optional` **partitionContextIds?**: `string`[]
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/dataspace-data-plane-service",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.28",
|
|
4
4
|
"description": "Processes activities and data requests while enforcing transfer and policy constraints in the data plane.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/
|
|
7
|
+
"url": "git+https://github.com/iotaledger/dataspace.git",
|
|
8
8
|
"directory": "packages/dataspace-data-plane-service"
|
|
9
9
|
},
|
|
10
10
|
"author": "jose.cantera@iota.org",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"@twin.org/crypto": "next",
|
|
22
22
|
"@twin.org/data-core": "next",
|
|
23
23
|
"@twin.org/data-json-ld": "next",
|
|
24
|
-
"@twin.org/dataspace-app-runner": "0.0.3-next.
|
|
25
|
-
"@twin.org/dataspace-models": "0.0.3-next.
|
|
24
|
+
"@twin.org/dataspace-app-runner": "0.0.3-next.28",
|
|
25
|
+
"@twin.org/dataspace-models": "0.0.3-next.28",
|
|
26
26
|
"@twin.org/engine-models": "next",
|
|
27
27
|
"@twin.org/entity": "next",
|
|
28
28
|
"@twin.org/entity-storage-models": "next",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"integration"
|
|
69
69
|
],
|
|
70
70
|
"bugs": {
|
|
71
|
-
"url": "git+https://github.com/
|
|
71
|
+
"url": "git+https://github.com/iotaledger/dataspace/issues"
|
|
72
72
|
},
|
|
73
73
|
"homepage": "https://twindev.org"
|
|
74
74
|
}
|