@twin.org/dataspace-models 0.0.3-next.25 → 0.0.3-next.27
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/entities/dataspaceAppDataset.js +76 -0
- package/dist/es/entities/dataspaceAppDataset.js.map +1 -0
- package/dist/es/index.js +24 -11
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IActivityLogDetails.js.map +1 -1
- package/dist/es/models/IActivityLogEntry.js.map +1 -1
- package/dist/es/models/IActivityTask.js.map +1 -1
- package/dist/es/models/{IActivityLogDates.js → IActivityTaskEntry.js} +1 -1
- package/dist/es/models/IActivityTaskEntry.js.map +1 -0
- package/dist/es/models/IExecutionPayload.js.map +1 -1
- package/dist/es/models/activityTaskStatus.js +25 -0
- package/dist/es/models/activityTaskStatus.js.map +1 -0
- package/dist/es/models/api/IActivityStreamNotifyResponse.js +2 -0
- package/dist/es/models/api/IActivityStreamNotifyResponse.js.map +1 -0
- package/dist/es/models/api/controlPlane/IAppDatasetCreateRequest.js +2 -0
- package/dist/es/models/api/controlPlane/IAppDatasetCreateRequest.js.map +1 -0
- package/dist/es/models/api/controlPlane/IAppDatasetCreateResponse.js +2 -0
- package/dist/es/models/api/controlPlane/IAppDatasetCreateResponse.js.map +1 -0
- package/dist/es/models/api/controlPlane/IAppDatasetDeleteRequest.js +4 -0
- package/dist/es/models/api/controlPlane/IAppDatasetDeleteRequest.js.map +1 -0
- package/dist/es/models/{ITaskApp.js → api/controlPlane/IAppDatasetGetRequest.js} +1 -1
- package/dist/es/models/api/controlPlane/IAppDatasetGetRequest.js.map +1 -0
- package/dist/es/models/api/controlPlane/IAppDatasetGetResponse.js +2 -0
- package/dist/es/models/api/controlPlane/IAppDatasetGetResponse.js.map +1 -0
- package/dist/es/models/api/controlPlane/IAppDatasetListRequest.js +4 -0
- package/dist/es/models/api/controlPlane/IAppDatasetListRequest.js.map +1 -0
- package/dist/es/models/api/controlPlane/IAppDatasetListResponse.js +2 -0
- package/dist/es/models/api/controlPlane/IAppDatasetListResponse.js.map +1 -0
- package/dist/es/models/api/controlPlane/IAppDatasetUpdateRequest.js +2 -0
- package/dist/es/models/api/controlPlane/IAppDatasetUpdateRequest.js.map +1 -0
- package/dist/es/models/app/IActivityQuery.js.map +1 -1
- package/dist/es/models/app/IDataspaceApp.js.map +1 -1
- package/dist/es/models/app/IProcessingGroupOptions.js +4 -0
- package/dist/es/models/app/IProcessingGroupOptions.js.map +1 -0
- package/dist/es/models/controlPlane/IDataspaceAppDataset.js +2 -0
- package/dist/es/models/controlPlane/IDataspaceAppDataset.js.map +1 -0
- package/dist/es/models/controlPlane/IDataspaceControlPlaneComponent.js.map +1 -1
- package/dist/es/models/dataPlane/IDataspaceDataPlaneComponent.js.map +1 -1
- package/dist/es/models/dataspaceTransferFormat.js +28 -0
- package/dist/es/models/dataspaceTransferFormat.js.map +1 -0
- package/dist/es/models/dataspaceTypes.js +3 -0
- package/dist/es/models/dataspaceTypes.js.map +1 -1
- package/dist/types/entities/dataspaceAppDataset.d.ts +42 -0
- package/dist/types/index.d.ts +24 -11
- package/dist/types/models/IActivityLogDetails.d.ts +0 -4
- package/dist/types/models/IActivityLogEntry.d.ts +3 -27
- package/dist/types/models/IActivityTask.d.ts +2 -2
- package/dist/types/models/IActivityTaskEntry.d.ts +39 -0
- package/dist/types/models/IExecutionPayload.d.ts +2 -2
- package/dist/types/models/activityTaskStatus.d.ts +25 -0
- package/dist/types/models/api/IActivityStreamNotifyResponse.d.ts +23 -0
- package/dist/types/models/api/controlPlane/IAppDatasetCreateRequest.d.ts +31 -0
- package/dist/types/models/api/controlPlane/IAppDatasetCreateResponse.d.ts +16 -0
- package/dist/types/models/api/controlPlane/IAppDatasetDeleteRequest.d.ts +14 -0
- package/dist/types/models/api/controlPlane/IAppDatasetGetRequest.d.ts +14 -0
- package/dist/types/models/api/controlPlane/IAppDatasetGetResponse.d.ts +10 -0
- package/dist/types/models/api/controlPlane/IAppDatasetListRequest.d.ts +18 -0
- package/dist/types/models/api/controlPlane/IAppDatasetListResponse.d.ts +19 -0
- package/dist/types/models/api/controlPlane/IAppDatasetUpdateRequest.d.ts +29 -0
- package/dist/types/models/app/IActivityQuery.d.ts +4 -0
- package/dist/types/models/app/IDataspaceApp.d.ts +17 -3
- package/dist/types/models/app/IProcessingGroupOptions.d.ts +18 -0
- package/dist/types/models/controlPlane/IDataspaceAppDataset.d.ts +26 -0
- package/dist/types/models/controlPlane/IDataspaceControlPlaneComponent.d.ts +42 -1
- package/dist/types/models/dataPlane/IDataspaceDataPlaneComponent.d.ts +2 -2
- package/dist/types/models/dataspaceTransferFormat.d.ts +28 -0
- package/dist/types/models/dataspaceTypes.d.ts +3 -0
- package/docs/changelog.md +81 -66
- package/docs/reference/classes/DataspaceAppDataset.md +80 -0
- package/docs/reference/index.md +17 -2
- package/docs/reference/interfaces/IActivityLogDetails.md +0 -8
- package/docs/reference/interfaces/IActivityLogEntry.md +3 -39
- package/docs/reference/interfaces/IActivityQuery.md +8 -0
- package/docs/reference/interfaces/IActivityStreamNotifyResponse.md +33 -0
- package/docs/reference/interfaces/IActivityTask.md +1 -1
- package/docs/reference/interfaces/IActivityTaskEntry.md +67 -0
- package/docs/reference/interfaces/IAppDatasetCreateRequest.md +37 -0
- package/docs/reference/interfaces/IAppDatasetCreateResponse.md +23 -0
- package/docs/reference/interfaces/IAppDatasetDeleteRequest.md +17 -0
- package/docs/reference/interfaces/IAppDatasetGetRequest.md +17 -0
- package/docs/reference/interfaces/IAppDatasetGetResponse.md +11 -0
- package/docs/reference/interfaces/IAppDatasetListRequest.md +23 -0
- package/docs/reference/interfaces/IAppDatasetListResponse.md +23 -0
- package/docs/reference/interfaces/IAppDatasetUpdateRequest.md +38 -0
- package/docs/reference/interfaces/IDataspaceApp.md +36 -4
- package/docs/reference/interfaces/IDataspaceAppDataset.md +43 -0
- package/docs/reference/interfaces/IDataspaceControlPlaneComponent.md +142 -0
- package/docs/reference/interfaces/IDataspaceDataPlaneComponent.md +3 -3
- package/docs/reference/interfaces/IExecutionPayload.md +3 -3
- package/docs/reference/interfaces/IProcessingGroupOptions.md +28 -0
- package/docs/reference/type-aliases/ActivityTaskStatus.md +5 -0
- package/docs/reference/type-aliases/DataspaceTransferFormat.md +5 -0
- package/docs/reference/variables/ActivityTaskStatus.md +31 -0
- package/docs/reference/variables/DataspaceTransferFormat.md +32 -0
- package/docs/reference/variables/DataspaceTypes.md +2 -0
- package/package.json +3 -3
- package/dist/es/models/IActivityLogDates.js.map +0 -1
- package/dist/es/models/ITaskApp.js.map +0 -1
- package/dist/types/models/IActivityLogDates.d.ts +0 -13
- package/dist/types/models/ITaskApp.d.ts +0 -13
- package/docs/reference/interfaces/IActivityLogDates.md +0 -19
- package/docs/reference/interfaces/ITaskApp.md +0 -19
package/docs/changelog.md
CHANGED
|
@@ -1,238 +1,253 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [0.0.3-next.27](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.26...dataspace-models-v0.0.3-next.27) (2026-05-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add dataspace transfer format ([#111](https://github.com/iotaledger/twin-dataspace/issues/111)) ([f59ff5e](https://github.com/iotaledger/twin-dataspace/commit/f59ff5ef10d261d1cebbf5c6bb0689e74a10738a))
|
|
9
|
+
* endpoint encryption + getDatasetTargets multi-target fix ([#112](https://github.com/iotaledger/twin-dataspace/issues/112)) ([3288941](https://github.com/iotaledger/twin-dataspace/commit/328894113c19c7402f7d00dfa77b6a97ae40ca91))
|
|
10
|
+
|
|
11
|
+
## [0.0.3-next.26](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.25...dataspace-models-v0.0.3-next.26) (2026-04-14)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* add inline tasks and concurrent options ([#104](https://github.com/iotaledger/twin-dataspace/issues/104)) ([2227a21](https://github.com/iotaledger/twin-dataspace/commit/2227a212d906f58ba77850c79bb20bf2cb7195a8))
|
|
17
|
+
|
|
18
|
+
## [0.0.3-next.25](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.24...dataspace-models-v0.0.3-next.25) (2026-04-10)
|
|
4
19
|
|
|
5
20
|
|
|
6
21
|
### Miscellaneous Chores
|
|
7
22
|
|
|
8
23
|
* **dataspace-models:** Synchronize repo versions
|
|
9
24
|
|
|
10
|
-
## [0.0.3-next.24](https://github.com/
|
|
25
|
+
## [0.0.3-next.24](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.23...dataspace-models-v0.0.3-next.24) (2026-03-31)
|
|
11
26
|
|
|
12
27
|
|
|
13
28
|
### Miscellaneous Chores
|
|
14
29
|
|
|
15
30
|
* **dataspace-models:** Synchronize repo versions
|
|
16
31
|
|
|
17
|
-
## [0.0.3-next.23](https://github.com/
|
|
32
|
+
## [0.0.3-next.23](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.22...dataspace-models-v0.0.3-next.23) (2026-03-25)
|
|
18
33
|
|
|
19
34
|
|
|
20
35
|
### Miscellaneous Chores
|
|
21
36
|
|
|
22
37
|
* **dataspace-models:** Synchronize repo versions
|
|
23
38
|
|
|
24
|
-
## [0.0.3-next.22](https://github.com/
|
|
39
|
+
## [0.0.3-next.22](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.21...dataspace-models-v0.0.3-next.22) (2026-03-20)
|
|
25
40
|
|
|
26
41
|
|
|
27
42
|
### Miscellaneous Chores
|
|
28
43
|
|
|
29
44
|
* **dataspace-models:** Synchronize repo versions
|
|
30
45
|
|
|
31
|
-
## [0.0.3-next.21](https://github.com/
|
|
46
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.20...dataspace-models-v0.0.3-next.21) (2026-03-17)
|
|
32
47
|
|
|
33
48
|
|
|
34
49
|
### Features
|
|
35
50
|
|
|
36
|
-
* improve open-api examples ([1368dbe](https://github.com/
|
|
51
|
+
* improve open-api examples ([1368dbe](https://github.com/iotaledger/twin-dataspace/commit/1368dbed5c36e074b4854942304a19b9ce51e088))
|
|
37
52
|
|
|
38
|
-
## [0.0.3-next.20](https://github.com/
|
|
53
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.19...dataspace-models-v0.0.3-next.20) (2026-03-17)
|
|
39
54
|
|
|
40
55
|
|
|
41
56
|
### Miscellaneous Chores
|
|
42
57
|
|
|
43
58
|
* **dataspace-models:** Synchronize repo versions
|
|
44
59
|
|
|
45
|
-
## [0.0.3-next.19](https://github.com/
|
|
60
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.18...dataspace-models-v0.0.3-next.19) (2026-03-12)
|
|
46
61
|
|
|
47
62
|
|
|
48
63
|
### Features
|
|
49
64
|
|
|
50
|
-
* improve validation ([#82](https://github.com/
|
|
65
|
+
* improve validation ([#82](https://github.com/iotaledger/twin-dataspace/issues/82)) ([8bfaf7b](https://github.com/iotaledger/twin-dataspace/commit/8bfaf7b830f89b63575f8a51ee96bd8ac4da02f4))
|
|
51
66
|
|
|
52
|
-
## [0.0.3-next.18](https://github.com/
|
|
67
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.17...dataspace-models-v0.0.3-next.18) (2026-03-09)
|
|
53
68
|
|
|
54
69
|
|
|
55
70
|
### Features
|
|
56
71
|
|
|
57
|
-
* resolve DSP transfer flow bugs for cross-node communication ([#76](https://github.com/
|
|
72
|
+
* resolve DSP transfer flow bugs for cross-node communication ([#76](https://github.com/iotaledger/twin-dataspace/issues/76)) ([506a45c](https://github.com/iotaledger/twin-dataspace/commit/506a45c94e63d5f958b1fc7131adfe452c3e2974))
|
|
58
73
|
|
|
59
|
-
## [0.0.3-next.17](https://github.com/
|
|
74
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.16...dataspace-models-v0.0.3-next.17) (2026-03-06)
|
|
60
75
|
|
|
61
76
|
|
|
62
77
|
### Features
|
|
63
78
|
|
|
64
|
-
* docs update ([8b44c7a](https://github.com/
|
|
65
|
-
* types update ([77c338e](https://github.com/
|
|
79
|
+
* docs update ([8b44c7a](https://github.com/iotaledger/twin-dataspace/commit/8b44c7a75afb8d377a6f606616f8a78d58439ab4))
|
|
80
|
+
* types update ([77c338e](https://github.com/iotaledger/twin-dataspace/commit/77c338e9244dcc7e3d597fdb06229513b1f13eac))
|
|
66
81
|
|
|
67
82
|
|
|
68
83
|
### Bug Fixes
|
|
69
84
|
|
|
70
|
-
* avoid compaction of incoming activities ([#77](https://github.com/
|
|
85
|
+
* avoid compaction of incoming activities ([#77](https://github.com/iotaledger/twin-dataspace/issues/77)) ([ff43d6a](https://github.com/iotaledger/twin-dataspace/commit/ff43d6a3e1563eb9cb185501134b2a53ae88787c))
|
|
71
86
|
|
|
72
|
-
## [0.0.3-next.16](https://github.com/
|
|
87
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.15...dataspace-models-v0.0.3-next.16) (2026-03-02)
|
|
73
88
|
|
|
74
89
|
|
|
75
90
|
### Miscellaneous Chores
|
|
76
91
|
|
|
77
92
|
* **dataspace-models:** Synchronize repo versions
|
|
78
93
|
|
|
79
|
-
## [0.0.3-next.15](https://github.com/
|
|
94
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.14...dataspace-models-v0.0.3-next.15) (2026-03-02)
|
|
80
95
|
|
|
81
96
|
|
|
82
97
|
### Features
|
|
83
98
|
|
|
84
|
-
* unification of the data exchange and the data space connector ([#57](https://github.com/
|
|
99
|
+
* unification of the data exchange and the data space connector ([#57](https://github.com/iotaledger/twin-dataspace/issues/57)) ([df2644d](https://github.com/iotaledger/twin-dataspace/commit/df2644d989471e07dadd83d27bef736179e31bf4))
|
|
85
100
|
|
|
86
|
-
## [0.0.3-next.12](https://github.com/
|
|
101
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.11...dataspace-models-v0.0.3-next.12) (2026-01-22)
|
|
87
102
|
|
|
88
103
|
|
|
89
104
|
### Features
|
|
90
105
|
|
|
91
|
-
* allow retry of failed activities instead of treating as duplicates ([#53](https://github.com/
|
|
106
|
+
* allow retry of failed activities instead of treating as duplicates ([#53](https://github.com/iotaledger/twin-dataspace/issues/53)) ([363dddc](https://github.com/iotaledger/twin-dataspace/commit/363dddc0ba14a50cf1d6f233d17f19c6110fbd47))
|
|
92
107
|
|
|
93
|
-
## [0.0.3-next.11](https://github.com/
|
|
108
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.10...dataspace-models-v0.0.3-next.11) (2026-01-22)
|
|
94
109
|
|
|
95
110
|
|
|
96
111
|
### Miscellaneous Chores
|
|
97
112
|
|
|
98
113
|
* **dataspace-models:** Synchronize repo versions
|
|
99
114
|
|
|
100
|
-
## [0.0.3-next.10](https://github.com/
|
|
115
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.9...dataspace-models-v0.0.3-next.10) (2026-01-19)
|
|
101
116
|
|
|
102
117
|
|
|
103
118
|
### Features
|
|
104
119
|
|
|
105
|
-
* replace registerApp with factory pattern ([#51](https://github.com/
|
|
120
|
+
* replace registerApp with factory pattern ([#51](https://github.com/iotaledger/twin-dataspace/issues/51)) ([a7ef328](https://github.com/iotaledger/twin-dataspace/commit/a7ef32873f5781f7b1f8aa3670f5fb612dd17018))
|
|
106
121
|
|
|
107
|
-
## [0.0.3-next.9](https://github.com/
|
|
122
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.8...dataspace-models-v0.0.3-next.9) (2026-01-19)
|
|
108
123
|
|
|
109
124
|
|
|
110
125
|
### Features
|
|
111
126
|
|
|
112
|
-
* update data space connector to use trust service ([#47](https://github.com/
|
|
113
|
-
* update order of trustPayload parameter ([0656ddd](https://github.com/
|
|
127
|
+
* update data space connector to use trust service ([#47](https://github.com/iotaledger/twin-dataspace/issues/47)) ([41c5113](https://github.com/iotaledger/twin-dataspace/commit/41c5113512cdc477c2f9508b27dfaff84529d841))
|
|
128
|
+
* update order of trustPayload parameter ([0656ddd](https://github.com/iotaledger/twin-dataspace/commit/0656ddd328accda0370d979a6cb5f947071e700b))
|
|
114
129
|
|
|
115
|
-
## [0.0.3-next.8](https://github.com/
|
|
130
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.7...dataspace-models-v0.0.3-next.8) (2026-01-16)
|
|
116
131
|
|
|
117
132
|
|
|
118
133
|
### Miscellaneous Chores
|
|
119
134
|
|
|
120
135
|
* **dataspace-models:** Synchronize repo versions
|
|
121
136
|
|
|
122
|
-
## [0.0.3-next.7](https://github.com/
|
|
137
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.6...dataspace-models-v0.0.3-next.7) (2026-01-16)
|
|
123
138
|
|
|
124
139
|
|
|
125
140
|
### Features
|
|
126
141
|
|
|
127
|
-
* implement Link headers for pagination ([#43](https://github.com/
|
|
142
|
+
* implement Link headers for pagination ([#43](https://github.com/iotaledger/twin-dataspace/issues/43)) ([ce2a31f](https://github.com/iotaledger/twin-dataspace/commit/ce2a31fab1b5a1338d34b8514e96a203705c68d1))
|
|
128
143
|
|
|
129
|
-
## [0.0.3-next.6](https://github.com/
|
|
144
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.5...dataspace-models-v0.0.3-next.6) (2026-01-15)
|
|
130
145
|
|
|
131
146
|
|
|
132
147
|
### Features
|
|
133
148
|
|
|
134
|
-
* update contexts and namespaces ([#41](https://github.com/
|
|
149
|
+
* update contexts and namespaces ([#41](https://github.com/iotaledger/twin-dataspace/issues/41)) ([cad79f9](https://github.com/iotaledger/twin-dataspace/commit/cad79f9f18c0b1bc4a4604a951c28db1d1068f5e))
|
|
135
150
|
|
|
136
|
-
## [0.0.3-next.5](https://github.com/
|
|
151
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.4...dataspace-models-v0.0.3-next.5) (2026-01-07)
|
|
137
152
|
|
|
138
153
|
|
|
139
154
|
### Miscellaneous Chores
|
|
140
155
|
|
|
141
156
|
* **dataspace-models:** Synchronize repo versions
|
|
142
157
|
|
|
143
|
-
## [0.0.3-next.4](https://github.com/
|
|
158
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.3...dataspace-models-v0.0.3-next.4) (2026-01-06)
|
|
144
159
|
|
|
145
160
|
|
|
146
161
|
### Features
|
|
147
162
|
|
|
148
|
-
* rfc 004 implementation ([#34](https://github.com/
|
|
149
|
-
* update standards dependencies ([8534ad7](https://github.com/
|
|
163
|
+
* rfc 004 implementation ([#34](https://github.com/iotaledger/twin-dataspace/issues/34)) ([3920a45](https://github.com/iotaledger/twin-dataspace/commit/3920a456f744610885c33cb0960e0448aea71a44))
|
|
164
|
+
* update standards dependencies ([8534ad7](https://github.com/iotaledger/twin-dataspace/commit/8534ad74b996610ed5994b5213c857989c2bf57a))
|
|
150
165
|
|
|
151
|
-
## [0.0.3-next.3](https://github.com/
|
|
166
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.2...dataspace-models-v0.0.3-next.3) (2025-12-01)
|
|
152
167
|
|
|
153
168
|
|
|
154
169
|
### Features
|
|
155
170
|
|
|
156
|
-
* update background task service ([c907578](https://github.com/
|
|
171
|
+
* update background task service ([c907578](https://github.com/iotaledger/twin-dataspace/commit/c907578c4ff5906c62b37d788a078d99fe8a59dc))
|
|
157
172
|
|
|
158
|
-
## [0.0.3-next.2](https://github.com/
|
|
173
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.1...dataspace-models-v0.0.3-next.2) (2025-11-28)
|
|
159
174
|
|
|
160
175
|
|
|
161
176
|
### Miscellaneous Chores
|
|
162
177
|
|
|
163
178
|
* **dataspace-models:** Synchronize repo versions
|
|
164
179
|
|
|
165
|
-
## [0.0.3-next.1](https://github.com/
|
|
180
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.0...dataspace-models-v0.0.3-next.1) (2025-11-12)
|
|
166
181
|
|
|
167
182
|
|
|
168
183
|
### Features
|
|
169
184
|
|
|
170
|
-
* add context id features ([#26](https://github.com/
|
|
171
|
-
* add rest and socket clients ([950bf70](https://github.com/
|
|
172
|
-
* add validate-locales ([c0b08a7](https://github.com/
|
|
173
|
-
* dataspace ([#2](https://github.com/
|
|
174
|
-
* eslint migration to flat config ([b84e875](https://github.com/
|
|
175
|
-
* first bootstrap ([2a5bab8](https://github.com/
|
|
176
|
-
* query interface data space connector ([#18](https://github.com/
|
|
177
|
-
* update framework components ([4d9ca95](https://github.com/
|
|
178
|
-
* use new engine extensions config ([80bdb5b](https://github.com/
|
|
185
|
+
* add context id features ([#26](https://github.com/iotaledger/twin-dataspace/issues/26)) ([6429a16](https://github.com/iotaledger/twin-dataspace/commit/6429a160dac9499304fdfb93a9dbdce37277ca7d))
|
|
186
|
+
* add rest and socket clients ([950bf70](https://github.com/iotaledger/twin-dataspace/commit/950bf705e6df4e709bbbe58e93968510067b9ddc))
|
|
187
|
+
* add validate-locales ([c0b08a7](https://github.com/iotaledger/twin-dataspace/commit/c0b08a73268f9fd3eb6ac3079b49d1ab0c01f118))
|
|
188
|
+
* dataspace ([#2](https://github.com/iotaledger/twin-dataspace/issues/2)) ([c2ac651](https://github.com/iotaledger/twin-dataspace/commit/c2ac651ceb6f35e46bd5eac97ac648bb1ee9dc0c))
|
|
189
|
+
* eslint migration to flat config ([b84e875](https://github.com/iotaledger/twin-dataspace/commit/b84e87530aa249891618096ab6e072b21ff9f63a))
|
|
190
|
+
* first bootstrap ([2a5bab8](https://github.com/iotaledger/twin-dataspace/commit/2a5bab8bc1e2313f0de4d201e842a9fe7c7bab49))
|
|
191
|
+
* query interface data space connector ([#18](https://github.com/iotaledger/twin-dataspace/issues/18)) ([b12eca1](https://github.com/iotaledger/twin-dataspace/commit/b12eca124a8f46d290c168e364b7ed4bf72001d8))
|
|
192
|
+
* update framework components ([4d9ca95](https://github.com/iotaledger/twin-dataspace/commit/4d9ca95879bd6cae9d031595292b6a872bf5b5fd))
|
|
193
|
+
* use new engine extensions config ([80bdb5b](https://github.com/iotaledger/twin-dataspace/commit/80bdb5b298b65b5b22fa9927a0ad031cb9a3534d))
|
|
179
194
|
|
|
180
|
-
## [0.0.1-next.8](https://github.com/
|
|
195
|
+
## [0.0.1-next.8](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.1-next.7...dataspace-models-v0.0.1-next.8) (2025-10-09)
|
|
181
196
|
|
|
182
197
|
|
|
183
198
|
### Features
|
|
184
199
|
|
|
185
|
-
* add validate-locales ([c0b08a7](https://github.com/
|
|
200
|
+
* add validate-locales ([c0b08a7](https://github.com/iotaledger/twin-dataspace/commit/c0b08a73268f9fd3eb6ac3079b49d1ab0c01f118))
|
|
186
201
|
|
|
187
|
-
## [0.0.1-next.7](https://github.com/
|
|
202
|
+
## [0.0.1-next.7](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.1-next.6...dataspace-models-v0.0.1-next.7) (2025-10-02)
|
|
188
203
|
|
|
189
204
|
|
|
190
205
|
### Features
|
|
191
206
|
|
|
192
|
-
* use new engine extensions config ([80bdb5b](https://github.com/
|
|
207
|
+
* use new engine extensions config ([80bdb5b](https://github.com/iotaledger/twin-dataspace/commit/80bdb5b298b65b5b22fa9927a0ad031cb9a3534d))
|
|
193
208
|
|
|
194
|
-
## [0.0.1-next.6](https://github.com/
|
|
209
|
+
## [0.0.1-next.6](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.1-next.5...dataspace-models-v0.0.1-next.6) (2025-09-29)
|
|
195
210
|
|
|
196
211
|
|
|
197
212
|
### Miscellaneous Chores
|
|
198
213
|
|
|
199
214
|
* **dataspace-models:** Synchronize repo versions
|
|
200
215
|
|
|
201
|
-
## [0.0.1-next.5](https://github.com/
|
|
216
|
+
## [0.0.1-next.5](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.1-next.4...dataspace-models-v0.0.1-next.5) (2025-09-29)
|
|
202
217
|
|
|
203
218
|
|
|
204
219
|
### Features
|
|
205
220
|
|
|
206
|
-
* update framework components ([4d9ca95](https://github.com/
|
|
221
|
+
* update framework components ([4d9ca95](https://github.com/iotaledger/twin-dataspace/commit/4d9ca95879bd6cae9d031595292b6a872bf5b5fd))
|
|
207
222
|
|
|
208
|
-
## [0.0.1-next.4](https://github.com/
|
|
223
|
+
## [0.0.1-next.4](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.1-next.3...dataspace-models-v0.0.1-next.4) (2025-08-29)
|
|
209
224
|
|
|
210
225
|
|
|
211
226
|
### Features
|
|
212
227
|
|
|
213
|
-
* eslint migration to flat config ([b84e875](https://github.com/
|
|
228
|
+
* eslint migration to flat config ([b84e875](https://github.com/iotaledger/twin-dataspace/commit/b84e87530aa249891618096ab6e072b21ff9f63a))
|
|
214
229
|
|
|
215
|
-
## [0.0.1-next.3](https://github.com/
|
|
230
|
+
## [0.0.1-next.3](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.1-next.2...dataspace-models-v0.0.1-next.3) (2025-08-25)
|
|
216
231
|
|
|
217
232
|
|
|
218
233
|
### Miscellaneous Chores
|
|
219
234
|
|
|
220
235
|
* **dataspace-models:** Synchronize repo versions
|
|
221
236
|
|
|
222
|
-
## [0.0.1-next.2](https://github.com/
|
|
237
|
+
## [0.0.1-next.2](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.1-next.1...dataspace-models-v0.0.1-next.2) (2025-08-25)
|
|
223
238
|
|
|
224
239
|
|
|
225
240
|
### Features
|
|
226
241
|
|
|
227
|
-
* add rest and socket clients ([950bf70](https://github.com/
|
|
228
|
-
* dataspace ([#2](https://github.com/
|
|
229
|
-
* first bootstrap ([2a5bab8](https://github.com/
|
|
242
|
+
* add rest and socket clients ([950bf70](https://github.com/iotaledger/twin-dataspace/commit/950bf705e6df4e709bbbe58e93968510067b9ddc))
|
|
243
|
+
* dataspace ([#2](https://github.com/iotaledger/twin-dataspace/issues/2)) ([c2ac651](https://github.com/iotaledger/twin-dataspace/commit/c2ac651ceb6f35e46bd5eac97ac648bb1ee9dc0c))
|
|
244
|
+
* first bootstrap ([2a5bab8](https://github.com/iotaledger/twin-dataspace/commit/2a5bab8bc1e2313f0de4d201e842a9fe7c7bab49))
|
|
230
245
|
|
|
231
|
-
## [0.0.1-next.1](https://github.com/
|
|
246
|
+
## [0.0.1-next.1](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.1-next.0...dataspace-models-v0.0.1-next.1) (2025-08-25)
|
|
232
247
|
|
|
233
248
|
|
|
234
249
|
### Features
|
|
235
250
|
|
|
236
|
-
* add rest and socket clients ([950bf70](https://github.com/
|
|
237
|
-
* dataspace ([#2](https://github.com/
|
|
238
|
-
* first bootstrap ([2a5bab8](https://github.com/
|
|
251
|
+
* add rest and socket clients ([950bf70](https://github.com/iotaledger/twin-dataspace/commit/950bf705e6df4e709bbbe58e93968510067b9ddc))
|
|
252
|
+
* dataspace ([#2](https://github.com/iotaledger/twin-dataspace/issues/2)) ([c2ac651](https://github.com/iotaledger/twin-dataspace/commit/c2ac651ceb6f35e46bd5eac97ac648bb1ee9dc0c))
|
|
253
|
+
* first bootstrap ([2a5bab8](https://github.com/iotaledger/twin-dataspace/commit/2a5bab8bc1e2313f0de4d201e842a9fe7c7bab49))
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Class: DataspaceAppDataset
|
|
2
|
+
|
|
3
|
+
Tenant-supplied Dataset shape persisted by the Control Plane.
|
|
4
|
+
|
|
5
|
+
## Constructors
|
|
6
|
+
|
|
7
|
+
### Constructor
|
|
8
|
+
|
|
9
|
+
> **new DataspaceAppDataset**(): `DataspaceAppDataset`
|
|
10
|
+
|
|
11
|
+
#### Returns
|
|
12
|
+
|
|
13
|
+
`DataspaceAppDataset`
|
|
14
|
+
|
|
15
|
+
## Properties
|
|
16
|
+
|
|
17
|
+
### id {#id}
|
|
18
|
+
|
|
19
|
+
> **id**: `string`
|
|
20
|
+
|
|
21
|
+
The unique identifier for the dataset.
|
|
22
|
+
|
|
23
|
+
***
|
|
24
|
+
|
|
25
|
+
### nodeIdentity {#nodeidentity}
|
|
26
|
+
|
|
27
|
+
> **nodeIdentity**: `string`
|
|
28
|
+
|
|
29
|
+
The identity of the node that owns this entity (required for sync).
|
|
30
|
+
|
|
31
|
+
***
|
|
32
|
+
|
|
33
|
+
### tenantId? {#tenantid}
|
|
34
|
+
|
|
35
|
+
> `optional` **tenantId?**: `string`
|
|
36
|
+
|
|
37
|
+
The tenant that owns this dataset, captured from the request context at
|
|
38
|
+
write time. Optional — single-tenant nodes (no `TWIN_TENANT_ENABLED`)
|
|
39
|
+
register datasets without a tenant context, in which case federated catalogue stores
|
|
40
|
+
the dataset with no `tenantId` and URL-baking is skipped.
|
|
41
|
+
|
|
42
|
+
***
|
|
43
|
+
|
|
44
|
+
### appId {#appid}
|
|
45
|
+
|
|
46
|
+
> **appId**: `string`
|
|
47
|
+
|
|
48
|
+
The dataspace app that this dataset belongs to. Matches the app's
|
|
49
|
+
registered name in `DataspaceAppFactory` (typically the app's URI).
|
|
50
|
+
Used as the join key when dispatching to an app's optional
|
|
51
|
+
`datasetsHandled` override.
|
|
52
|
+
|
|
53
|
+
***
|
|
54
|
+
|
|
55
|
+
### dataset {#dataset}
|
|
56
|
+
|
|
57
|
+
> **dataset**: `object`
|
|
58
|
+
|
|
59
|
+
The user-controlled JSON-LD dataset payload. Stored as an
|
|
60
|
+
opaque object and validated/populated at publish time.
|
|
61
|
+
|
|
62
|
+
#### Index Signature
|
|
63
|
+
|
|
64
|
+
\[`key`: `string`\]: `unknown`
|
|
65
|
+
|
|
66
|
+
***
|
|
67
|
+
|
|
68
|
+
### dateCreated {#datecreated}
|
|
69
|
+
|
|
70
|
+
> **dateCreated**: `string`
|
|
71
|
+
|
|
72
|
+
Creation timestamp (ISO string format).
|
|
73
|
+
|
|
74
|
+
***
|
|
75
|
+
|
|
76
|
+
### dateModified {#datemodified}
|
|
77
|
+
|
|
78
|
+
> **dateModified**: `string`
|
|
79
|
+
|
|
80
|
+
Last update timestamp (ISO string format).
|
package/docs/reference/index.md
CHANGED
|
@@ -3,30 +3,39 @@
|
|
|
3
3
|
## Classes
|
|
4
4
|
|
|
5
5
|
- [DataspaceDataTypes](classes/DataspaceDataTypes.md)
|
|
6
|
+
- [DataspaceAppDataset](classes/DataspaceAppDataset.md)
|
|
6
7
|
- [TransferProcess](classes/TransferProcess.md)
|
|
7
8
|
|
|
8
9
|
## Interfaces
|
|
9
10
|
|
|
10
|
-
- [IActivityLogDates](interfaces/IActivityLogDates.md)
|
|
11
11
|
- [IActivityLogDetails](interfaces/IActivityLogDetails.md)
|
|
12
12
|
- [IActivityLogEntry](interfaces/IActivityLogEntry.md)
|
|
13
13
|
- [IActivityLogStatusNotification](interfaces/IActivityLogStatusNotification.md)
|
|
14
14
|
- [IActivityTask](interfaces/IActivityTask.md)
|
|
15
|
+
- [IActivityTaskEntry](interfaces/IActivityTaskEntry.md)
|
|
15
16
|
- [IDataAssetItemList](interfaces/IDataAssetItemList.md)
|
|
16
17
|
- [IDataAssetItemListResult](interfaces/IDataAssetItemListResult.md)
|
|
17
18
|
- [IDataspaceActivity](interfaces/IDataspaceActivity.md)
|
|
18
19
|
- [IEntitySet](interfaces/IEntitySet.md)
|
|
19
20
|
- [IExecutionPayload](interfaces/IExecutionPayload.md)
|
|
20
21
|
- [IFilteringQuery](interfaces/IFilteringQuery.md)
|
|
21
|
-
- [ITaskApp](interfaces/ITaskApp.md)
|
|
22
22
|
- [IActivityLogEntryGetRequest](interfaces/IActivityLogEntryGetRequest.md)
|
|
23
23
|
- [IActivityLogEntryGetResponse](interfaces/IActivityLogEntryGetResponse.md)
|
|
24
24
|
- [IActivityLogStatusNotificationPayload](interfaces/IActivityLogStatusNotificationPayload.md)
|
|
25
25
|
- [IActivityLogStatusRequest](interfaces/IActivityLogStatusRequest.md)
|
|
26
26
|
- [IActivityStreamNotifyRequest](interfaces/IActivityStreamNotifyRequest.md)
|
|
27
|
+
- [IActivityStreamNotifyResponse](interfaces/IActivityStreamNotifyResponse.md)
|
|
27
28
|
- [IDataAssetEntitiesResponse](interfaces/IDataAssetEntitiesResponse.md)
|
|
28
29
|
- [IDataAssetGetEntitiesRequest](interfaces/IDataAssetGetEntitiesRequest.md)
|
|
29
30
|
- [IDataAssetQueryRequest](interfaces/IDataAssetQueryRequest.md)
|
|
31
|
+
- [IAppDatasetCreateRequest](interfaces/IAppDatasetCreateRequest.md)
|
|
32
|
+
- [IAppDatasetCreateResponse](interfaces/IAppDatasetCreateResponse.md)
|
|
33
|
+
- [IAppDatasetDeleteRequest](interfaces/IAppDatasetDeleteRequest.md)
|
|
34
|
+
- [IAppDatasetGetRequest](interfaces/IAppDatasetGetRequest.md)
|
|
35
|
+
- [IAppDatasetGetResponse](interfaces/IAppDatasetGetResponse.md)
|
|
36
|
+
- [IAppDatasetListRequest](interfaces/IAppDatasetListRequest.md)
|
|
37
|
+
- [IAppDatasetListResponse](interfaces/IAppDatasetListResponse.md)
|
|
38
|
+
- [IAppDatasetUpdateRequest](interfaces/IAppDatasetUpdateRequest.md)
|
|
30
39
|
- [ICompleteTransferRequest](interfaces/ICompleteTransferRequest.md)
|
|
31
40
|
- [ICompleteTransferResponse](interfaces/ICompleteTransferResponse.md)
|
|
32
41
|
- [IGetTransferProcessRequest](interfaces/IGetTransferProcessRequest.md)
|
|
@@ -43,7 +52,9 @@
|
|
|
43
52
|
- [IDataAssetEntitiesRequest](interfaces/IDataAssetEntitiesRequest.md)
|
|
44
53
|
- [IDataAssetQuery](interfaces/IDataAssetQuery.md)
|
|
45
54
|
- [IDataspaceApp](interfaces/IDataspaceApp.md)
|
|
55
|
+
- [IProcessingGroupOptions](interfaces/IProcessingGroupOptions.md)
|
|
46
56
|
- [IQueryDataAssetRequest](interfaces/IQueryDataAssetRequest.md)
|
|
57
|
+
- [IDataspaceAppDataset](interfaces/IDataspaceAppDataset.md)
|
|
47
58
|
- [IDataspaceControlPlaneComponent](interfaces/IDataspaceControlPlaneComponent.md)
|
|
48
59
|
- [IDataspaceControlPlaneResolverComponent](interfaces/IDataspaceControlPlaneResolverComponent.md)
|
|
49
60
|
- [INegotiationCallback](interfaces/INegotiationCallback.md)
|
|
@@ -55,17 +66,21 @@
|
|
|
55
66
|
## Type Aliases
|
|
56
67
|
|
|
57
68
|
- [ActivityProcessingStatus](type-aliases/ActivityProcessingStatus.md)
|
|
69
|
+
- [ActivityTaskStatus](type-aliases/ActivityTaskStatus.md)
|
|
58
70
|
- [IDataRequest](type-aliases/IDataRequest.md)
|
|
59
71
|
- [DataRequestType](type-aliases/DataRequestType.md)
|
|
60
72
|
- [TransferProcessRole](type-aliases/TransferProcessRole.md)
|
|
61
73
|
- [DataspaceContexts](type-aliases/DataspaceContexts.md)
|
|
74
|
+
- [DataspaceTransferFormat](type-aliases/DataspaceTransferFormat.md)
|
|
62
75
|
- [DataspaceTypes](type-aliases/DataspaceTypes.md)
|
|
63
76
|
|
|
64
77
|
## Variables
|
|
65
78
|
|
|
66
79
|
- [DataspaceAppFactory](variables/DataspaceAppFactory.md)
|
|
67
80
|
- [ActivityProcessingStatus](variables/ActivityProcessingStatus.md)
|
|
81
|
+
- [ActivityTaskStatus](variables/ActivityTaskStatus.md)
|
|
68
82
|
- [DataRequestType](variables/DataRequestType.md)
|
|
69
83
|
- [TransferProcessRole](variables/TransferProcessRole.md)
|
|
70
84
|
- [DataspaceContexts](variables/DataspaceContexts.md)
|
|
85
|
+
- [DataspaceTransferFormat](variables/DataspaceTransferFormat.md)
|
|
71
86
|
- [DataspaceTypes](variables/DataspaceTypes.md)
|
|
@@ -68,18 +68,6 @@ The last update date of this object.
|
|
|
68
68
|
|
|
69
69
|
***
|
|
70
70
|
|
|
71
|
-
### retryCount? {#retrycount}
|
|
72
|
-
|
|
73
|
-
> `optional` **retryCount?**: `number`
|
|
74
|
-
|
|
75
|
-
Number of times this activity has been retried.
|
|
76
|
-
|
|
77
|
-
#### Inherited from
|
|
78
|
-
|
|
79
|
-
[`IActivityLogDetails`](IActivityLogDetails.md).[`retryCount`](IActivityLogDetails.md#retrycount)
|
|
80
|
-
|
|
81
|
-
***
|
|
82
|
-
|
|
83
71
|
### status {#status}
|
|
84
72
|
|
|
85
73
|
> **status**: [`ActivityProcessingStatus`](../type-aliases/ActivityProcessingStatus.md)
|
|
@@ -88,32 +76,8 @@ Status of the Activity Processing.
|
|
|
88
76
|
|
|
89
77
|
***
|
|
90
78
|
|
|
91
|
-
###
|
|
92
|
-
|
|
93
|
-
> `optional` **pendingTasks?**: [`ITaskApp`](ITaskApp.md)[]
|
|
94
|
-
|
|
95
|
-
The pending tasks that have to be run to process the Activity.
|
|
96
|
-
|
|
97
|
-
***
|
|
98
|
-
|
|
99
|
-
### runningTasks? {#runningtasks}
|
|
100
|
-
|
|
101
|
-
> `optional` **runningTasks?**: [`ITaskApp`](ITaskApp.md) & [`IActivityLogDates`](IActivityLogDates.md)[]
|
|
102
|
-
|
|
103
|
-
The running tasks that are processing the Activity.
|
|
104
|
-
|
|
105
|
-
***
|
|
106
|
-
|
|
107
|
-
### finalizedTasks? {#finalizedtasks}
|
|
108
|
-
|
|
109
|
-
> `optional` **finalizedTasks?**: [`ITaskApp`](ITaskApp.md) & [`IActivityLogDates`](IActivityLogDates.md) & `object`[]
|
|
110
|
-
|
|
111
|
-
The tasks that have already finalized.
|
|
112
|
-
|
|
113
|
-
***
|
|
114
|
-
|
|
115
|
-
### inErrorTasks? {#inerrortasks}
|
|
79
|
+
### tasks? {#tasks}
|
|
116
80
|
|
|
117
|
-
> `optional` **
|
|
81
|
+
> `optional` **tasks?**: [`IActivityTaskEntry`](IActivityTaskEntry.md)[]
|
|
118
82
|
|
|
119
|
-
The tasks that
|
|
83
|
+
The tasks that have to be run to process the Activity.
|
|
@@ -25,3 +25,11 @@ FQN of the Object Type.
|
|
|
25
25
|
> `optional` **targetType?**: `string`
|
|
26
26
|
|
|
27
27
|
FQN of the target type.
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### processingGroupId? {#processinggroupid}
|
|
32
|
+
|
|
33
|
+
> `optional` **processingGroupId?**: `string`
|
|
34
|
+
|
|
35
|
+
The processing group id for this query, used to determine which tasks can be processed in parallel.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Interface: IActivityStreamNotifyResponse
|
|
2
|
+
|
|
3
|
+
Activity Stream Notify Response.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### statusCode {#statuscode}
|
|
8
|
+
|
|
9
|
+
> **statusCode**: `102` \| `201`
|
|
10
|
+
|
|
11
|
+
The status code indicating the result of the notification processing. It can be either:
|
|
12
|
+
- `201 Created` if the notification was processed inline and a new activity log entry was created.
|
|
13
|
+
- `102 Processing` if the notification was accepted for processing but has not been completed yet.
|
|
14
|
+
|
|
15
|
+
***
|
|
16
|
+
|
|
17
|
+
### headers? {#headers}
|
|
18
|
+
|
|
19
|
+
> `optional` **headers?**: `object`
|
|
20
|
+
|
|
21
|
+
Optional headers.
|
|
22
|
+
|
|
23
|
+
#### location?
|
|
24
|
+
|
|
25
|
+
> `optional` **location?**: `string`
|
|
26
|
+
|
|
27
|
+
***
|
|
28
|
+
|
|
29
|
+
### body? {#body}
|
|
30
|
+
|
|
31
|
+
> `optional` **body?**: [`IActivityLogEntry`](IActivityLogEntry.md)
|
|
32
|
+
|
|
33
|
+
The Activity log entry if the notification was processed inline.
|