@twin.org/dataspace-models 0.0.3-next.19 → 0.0.3-next.21

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.
Files changed (53) hide show
  1. package/docs/changelog.md +14 -0
  2. package/docs/reference/classes/DataspaceDataTypes.md +1 -1
  3. package/docs/reference/classes/TransferProcess.md +15 -15
  4. package/docs/reference/interfaces/IActivityLogDates.md +2 -2
  5. package/docs/reference/interfaces/IActivityLogDetails.md +6 -6
  6. package/docs/reference/interfaces/IActivityLogEntry.md +11 -11
  7. package/docs/reference/interfaces/IActivityLogEntryGetRequest.md +1 -1
  8. package/docs/reference/interfaces/IActivityLogEntryGetResponse.md +1 -1
  9. package/docs/reference/interfaces/IActivityLogStatusNotification.md +3 -3
  10. package/docs/reference/interfaces/IActivityLogStatusNotificationPayload.md +1 -1
  11. package/docs/reference/interfaces/IActivityLogStatusRequest.md +1 -1
  12. package/docs/reference/interfaces/IActivityQuery.md +3 -3
  13. package/docs/reference/interfaces/IActivityStreamNotifyRequest.md +1 -1
  14. package/docs/reference/interfaces/IActivityTask.md +2 -2
  15. package/docs/reference/interfaces/ICompleteTransferRequest.md +3 -3
  16. package/docs/reference/interfaces/ICompleteTransferResponse.md +2 -2
  17. package/docs/reference/interfaces/IDataAssetEntitiesRequest.md +3 -3
  18. package/docs/reference/interfaces/IDataAssetEntitiesResponse.md +2 -2
  19. package/docs/reference/interfaces/IDataAssetGetEntitiesRequest.md +2 -2
  20. package/docs/reference/interfaces/IDataAssetItemList.md +3 -3
  21. package/docs/reference/interfaces/IDataAssetItemListResult.md +2 -2
  22. package/docs/reference/interfaces/IDataAssetQuery.md +1 -1
  23. package/docs/reference/interfaces/IDataAssetQueryRequest.md +3 -3
  24. package/docs/reference/interfaces/IDataspaceActivity.md +2 -2
  25. package/docs/reference/interfaces/IDataspaceApp.md +5 -5
  26. package/docs/reference/interfaces/IDataspaceControlPlaneComponent.md +11 -11
  27. package/docs/reference/interfaces/IDataspaceControlPlaneResolverComponent.md +2 -2
  28. package/docs/reference/interfaces/IDataspaceDataPlaneComponent.md +6 -6
  29. package/docs/reference/interfaces/IEntitySet.md +2 -2
  30. package/docs/reference/interfaces/IExecutionPayload.md +3 -3
  31. package/docs/reference/interfaces/IFilteringQuery.md +3 -3
  32. package/docs/reference/interfaces/IGetTransferProcessRequest.md +2 -2
  33. package/docs/reference/interfaces/IGetTransferProcessResponse.md +2 -2
  34. package/docs/reference/interfaces/INegotiationCallback.md +3 -3
  35. package/docs/reference/interfaces/IQueryDataAssetRequest.md +3 -3
  36. package/docs/reference/interfaces/IRequestTransferRequest.md +2 -2
  37. package/docs/reference/interfaces/IRequestTransferResponse.md +2 -2
  38. package/docs/reference/interfaces/IStartTransferRequest.md +3 -3
  39. package/docs/reference/interfaces/IStartTransferResponse.md +2 -2
  40. package/docs/reference/interfaces/ISuspendTransferRequest.md +3 -3
  41. package/docs/reference/interfaces/ISuspendTransferResponse.md +2 -2
  42. package/docs/reference/interfaces/ITaskApp.md +2 -2
  43. package/docs/reference/interfaces/ITerminateTransferRequest.md +3 -3
  44. package/docs/reference/interfaces/ITerminateTransferResponse.md +2 -2
  45. package/docs/reference/interfaces/ITransferContext.md +9 -9
  46. package/docs/reference/interfaces/ITransferContextResponse.md +1 -1
  47. package/docs/reference/interfaces/ITransferProcess.md +15 -15
  48. package/docs/reference/variables/ActivityProcessingStatus.md +5 -5
  49. package/docs/reference/variables/DataRequestType.md +2 -2
  50. package/docs/reference/variables/DataspaceContexts.md +1 -1
  51. package/docs/reference/variables/DataspaceTypes.md +1 -1
  52. package/docs/reference/variables/TransferProcessRole.md +2 -2
  53. package/package.json +1 -1
@@ -8,7 +8,7 @@ Interface describes a Dataspace App.
8
8
 
9
9
  ## Methods
10
10
 
11
- ### activitiesHandled()
11
+ ### activitiesHandled() {#activitieshandled}
12
12
 
13
13
  > **activitiesHandled**(): [`IActivityQuery`](IActivityQuery.md)[]
14
14
 
@@ -22,7 +22,7 @@ A query that describes the set of activities handled by the App.
22
22
 
23
23
  ***
24
24
 
25
- ### datasetsHandled()
25
+ ### datasetsHandled() {#datasetshandled}
26
26
 
27
27
  > **datasetsHandled**(): `Promise`\<`IDataspaceProtocolDataset`[]\>
28
28
 
@@ -36,7 +36,7 @@ The Dataspace Protocol compliant datasets handled by the App.
36
36
 
37
37
  ***
38
38
 
39
- ### supportedQueryTypes()
39
+ ### supportedQueryTypes() {#supportedquerytypes}
40
40
 
41
41
  > **supportedQueryTypes**(): `string`[]
42
42
 
@@ -50,7 +50,7 @@ The types of queries supported by the Dataspace App to retrieve data.
50
50
 
51
51
  ***
52
52
 
53
- ### handleActivity()?
53
+ ### handleActivity()? {#handleactivity}
54
54
 
55
55
  > `optional` **handleActivity**\<`T`\>(`activity`): `Promise`\<`T`\>
56
56
 
@@ -78,7 +78,7 @@ The result of executing the Activity.
78
78
 
79
79
  ***
80
80
 
81
- ### handleDataRequest()?
81
+ ### handleDataRequest()? {#handledatarequest}
82
82
 
83
83
  > `optional` **handleDataRequest**(`dataRequest`, `cursor?`, `limit?`): `Promise`\<\{ `data`: `IJsonLdDocument`; `cursor?`: `string`; \}\>
84
84
 
@@ -16,7 +16,7 @@ DSP 2025-1 Specification: https://eclipse-dataspace-protocol-base.github.io/Data
16
16
 
17
17
  ## Methods
18
18
 
19
- ### registerNegotiationCallback()
19
+ ### registerNegotiationCallback() {#registernegotiationcallback}
20
20
 
21
21
  > **registerNegotiationCallback**(`key`, `callback`): `void`
22
22
 
@@ -44,7 +44,7 @@ The callback interface to register.
44
44
 
45
45
  ***
46
46
 
47
- ### unregisterNegotiationCallback()
47
+ ### unregisterNegotiationCallback() {#unregisternegotiationcallback}
48
48
 
49
49
  > **unregisterNegotiationCallback**(`key`): `void`
50
50
 
@@ -64,7 +64,7 @@ The key used when registering the callback.
64
64
 
65
65
  ***
66
66
 
67
- ### negotiateAgreement()
67
+ ### negotiateAgreement() {#negotiateagreement}
68
68
 
69
69
  > **negotiateAgreement**(`datasetId`, `offerId`, `providerEndpoint`, `publicOrigin`, `trustPayload`): `Promise`\<\{ `negotiationId`: `string`; \}\>
70
70
 
@@ -119,7 +119,7 @@ The negotiation ID for tracking. Use registered callback for completion.
119
119
 
120
120
  ***
121
121
 
122
- ### getNegotiation()
122
+ ### getNegotiation() {#getnegotiation}
123
123
 
124
124
  > **getNegotiation**(`negotiationId`, `trustPayload`): `Promise`\<`IDataspaceProtocolContractNegotiation` \| `IDataspaceProtocolContractNegotiationError`\>
125
125
 
@@ -154,7 +154,7 @@ DSP ContractNegotiation with current state, or error.
154
154
 
155
155
  ***
156
156
 
157
- ### getNegotiationHistory()
157
+ ### getNegotiationHistory() {#getnegotiationhistory}
158
158
 
159
159
  > **getNegotiationHistory**(`state`, `cursor`, `trustPayload`): `Promise`\<\{ `negotiations`: `object`[]; `cursor?`: `string`; `count`: `number`; \}\>
160
160
 
@@ -192,7 +192,7 @@ List of negotiation history entries with pagination cursor.
192
192
 
193
193
  ***
194
194
 
195
- ### requestTransfer()
195
+ ### requestTransfer() {#requesttransfer}
196
196
 
197
197
  > **requestTransfer**(`request`, `trustPayload`): `Promise`\<`IDataspaceProtocolTransferProcess` \| `IDataspaceProtocolTransferError`\>
198
198
 
@@ -229,7 +229,7 @@ both consumerPid and providerPid, or TransferError if the operation fails.
229
229
 
230
230
  ***
231
231
 
232
- ### startTransfer()
232
+ ### startTransfer() {#starttransfer}
233
233
 
234
234
  > **startTransfer**(`message`, `publicOrigin`, `trustPayload`): `Promise`\<`IDataspaceProtocolTransferError` \| `IDataspaceProtocolTransferStartMessage`\>
235
235
 
@@ -269,7 +269,7 @@ Transfer Start Message (DSP compliant) with dataAddress for PULL transfers, or T
269
269
 
270
270
  ***
271
271
 
272
- ### completeTransfer()
272
+ ### completeTransfer() {#completetransfer}
273
273
 
274
274
  > **completeTransfer**(`message`, `trustPayload`): `Promise`\<`IDataspaceProtocolTransferProcess` \| `IDataspaceProtocolTransferError`\>
275
275
 
@@ -303,7 +303,7 @@ Transfer Process (DSP compliant) with state COMPLETED, or TransferError if the o
303
303
 
304
304
  ***
305
305
 
306
- ### suspendTransfer()
306
+ ### suspendTransfer() {#suspendtransfer}
307
307
 
308
308
  > **suspendTransfer**(`message`, `trustPayload`): `Promise`\<`IDataspaceProtocolTransferProcess` \| `IDataspaceProtocolTransferError`\>
309
309
 
@@ -337,7 +337,7 @@ Transfer Process (DSP compliant) with state SUSPENDED, or TransferError if the o
337
337
 
338
338
  ***
339
339
 
340
- ### terminateTransfer()
340
+ ### terminateTransfer() {#terminatetransfer}
341
341
 
342
342
  > **terminateTransfer**(`message`, `trustPayload`): `Promise`\<`IDataspaceProtocolTransferProcess` \| `IDataspaceProtocolTransferError`\>
343
343
 
@@ -371,7 +371,7 @@ Transfer Process (DSP compliant) with state TERMINATED, or TransferError if the
371
371
 
372
372
  ***
373
373
 
374
- ### getTransferProcess()
374
+ ### getTransferProcess() {#gettransferprocess}
375
375
 
376
376
  > **getTransferProcess**(`pid`, `trustPayload`): `Promise`\<`IDataspaceProtocolTransferProcess` \| `IDataspaceProtocolTransferError`\>
377
377
 
@@ -16,7 +16,7 @@ accessible via ComponentFactory.get() for local, in-process service access.
16
16
 
17
17
  ## Methods
18
18
 
19
- ### resolveConsumerPid()
19
+ ### resolveConsumerPid() {#resolveconsumerpid}
20
20
 
21
21
  > **resolveConsumerPid**(`consumerPid`, `trustPayload`): `Promise`\<[`ITransferContext`](ITransferContext.md)\>
22
22
 
@@ -64,7 +64,7 @@ GeneralError if Transfer Process is terminated or Agreement lookup fails.
64
64
 
65
65
  ***
66
66
 
67
- ### resolveProviderPid()
67
+ ### resolveProviderPid() {#resolveproviderpid}
68
68
 
69
69
  > **resolveProviderPid**(`providerPid`, `trustPayload`): `Promise`\<[`ITransferContext`](ITransferContext.md)\>
70
70
 
@@ -9,7 +9,7 @@ Implements the Data Plane functionality for the Eclipse Dataspace Protocol.
9
9
 
10
10
  ## Methods
11
11
 
12
- ### notifyActivity()
12
+ ### notifyActivity() {#notifyactivity}
13
13
 
14
14
  > **notifyActivity**(`activity`): `Promise`\<`string`\>
15
15
 
@@ -31,7 +31,7 @@ The Activity's identifier.
31
31
 
32
32
  ***
33
33
 
34
- ### subscribeToActivityLog()
34
+ ### subscribeToActivityLog() {#subscribetoactivitylog}
35
35
 
36
36
  > **subscribeToActivityLog**(`callback`, `subscriptionId?`): `Promise`\<`string`\>
37
37
 
@@ -59,7 +59,7 @@ The subscription Id.
59
59
 
60
60
  ***
61
61
 
62
- ### unSubscribeToActivityLog()
62
+ ### unSubscribeToActivityLog() {#unsubscribetoactivitylog}
63
63
 
64
64
  > **unSubscribeToActivityLog**(`subscriptionId`): `Promise`\<`void`\>
65
65
 
@@ -81,7 +81,7 @@ The subscription Id.
81
81
 
82
82
  ***
83
83
 
84
- ### getActivityLogEntry()
84
+ ### getActivityLogEntry() {#getactivitylogentry}
85
85
 
86
86
  > **getActivityLogEntry**(`logEntryId`): `Promise`\<[`IActivityLogEntry`](IActivityLogEntry.md)\>
87
87
 
@@ -107,7 +107,7 @@ NotFoundError if activity log entry is not known.
107
107
 
108
108
  ***
109
109
 
110
- ### getDataAssetEntities()
110
+ ### getDataAssetEntities() {#getdataassetentities}
111
111
 
112
112
  > **getDataAssetEntities**(`entitySet`, `consumerPid`, `cursor?`, `limit?`, `trustPayload?`): `Promise`\<[`IDataAssetItemListResult`](IDataAssetItemListResult.md)\>
113
113
 
@@ -154,7 +154,7 @@ The item list and optional cursor for pagination via Link headers.
154
154
 
155
155
  ***
156
156
 
157
- ### queryDataAsset()
157
+ ### queryDataAsset() {#querydataasset}
158
158
 
159
159
  > **queryDataAsset**(`consumerPid`, `query`, `cursor?`, `limit?`, `trustPayload?`): `Promise`\<[`IDataAssetItemListResult`](IDataAssetItemListResult.md)\>
160
160
 
@@ -4,7 +4,7 @@ Part of the Data Request interface to represent a set of entities either by id o
4
4
 
5
5
  ## Properties
6
6
 
7
- ### entityId?
7
+ ### entityId? {#entityid}
8
8
 
9
9
  > `optional` **entityId**: `string`[]
10
10
 
@@ -12,7 +12,7 @@ Entity Id.
12
12
 
13
13
  ***
14
14
 
15
- ### entityType
15
+ ### entityType {#entitytype}
16
16
 
17
17
  > **entityType**: `string`
18
18
 
@@ -4,7 +4,7 @@ Execution payload.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### activityLogEntryId
7
+ ### activityLogEntryId {#activitylogentryid}
8
8
 
9
9
  > **activityLogEntryId**: `string`
10
10
 
@@ -12,7 +12,7 @@ The Activity Log Entry Id.
12
12
 
13
13
  ***
14
14
 
15
- ### activity
15
+ ### activity {#activity}
16
16
 
17
17
  > **activity**: [`IDataspaceActivity`](IDataspaceActivity.md)
18
18
 
@@ -20,7 +20,7 @@ The activity
20
20
 
21
21
  ***
22
22
 
23
- ### executorApp
23
+ ### executorApp {#executorapp}
24
24
 
25
25
  > **executorApp**: `string`
26
26
 
@@ -4,7 +4,7 @@ A query over a data asset that to be processed by a Dataspace Data Plane App.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### type
7
+ ### type {#type}
8
8
 
9
9
  > **type**: `string`
10
10
 
@@ -12,7 +12,7 @@ The query type.
12
12
 
13
13
  ***
14
14
 
15
- ### q
15
+ ### q {#q}
16
16
 
17
17
  > **q**: `unknown`
18
18
 
@@ -20,7 +20,7 @@ The representation of the query.
20
20
 
21
21
  ***
22
22
 
23
- ### jsonLdContext?
23
+ ### jsonLdContext? {#jsonldcontext}
24
24
 
25
25
  > `optional` **jsonLdContext**: `IJsonLdContextDefinitionElement`[]
26
26
 
@@ -4,7 +4,7 @@ API request for getting a transfer process state.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### pathParams
7
+ ### pathParams {#pathparams}
8
8
 
9
9
  > **pathParams**: `object`
10
10
 
@@ -18,7 +18,7 @@ Process ID (consumerPid or providerPid).
18
18
 
19
19
  ***
20
20
 
21
- ### headers
21
+ ### headers {#headers}
22
22
 
23
23
  > **headers**: `object`
24
24
 
@@ -4,7 +4,7 @@ API response for getting a transfer process state.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### body
7
+ ### body {#body}
8
8
 
9
9
  > **body**: `IDataspaceProtocolTransferProcess` \| `IDataspaceProtocolTransferError`
10
10
 
@@ -12,7 +12,7 @@ Transfer Process (DSP compliant) with current state, or error.
12
12
 
13
13
  ***
14
14
 
15
- ### statusCode?
15
+ ### statusCode? {#statuscode}
16
16
 
17
17
  > `optional` **statusCode**: `HttpStatusCode`
18
18
 
@@ -7,7 +7,7 @@ to be notified when PNP callbacks fire.
7
7
 
8
8
  ## Methods
9
9
 
10
- ### onStateChanged()
10
+ ### onStateChanged() {#onstatechanged}
11
11
 
12
12
  > **onStateChanged**(`negotiationId`, `state`, `data?`): `Promise`\<`void`\>
13
13
 
@@ -51,7 +51,7 @@ Nothing.
51
51
 
52
52
  ***
53
53
 
54
- ### onCompleted()
54
+ ### onCompleted() {#oncompleted}
55
55
 
56
56
  > **onCompleted**(`negotiationId`, `agreementId`): `Promise`\<`void`\>
57
57
 
@@ -79,7 +79,7 @@ Nothing.
79
79
 
80
80
  ***
81
81
 
82
- ### onFailed()
82
+ ### onFailed() {#onfailed}
83
83
 
84
84
  > **onFailed**(`negotiationId`, `reason`): `Promise`\<`void`\>
85
85
 
@@ -4,7 +4,7 @@ Data Request type for representing data requests received by Dataspace Apps.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### type
7
+ ### type {#type}
8
8
 
9
9
  > **type**: `"QueryDataAsset"`
10
10
 
@@ -12,7 +12,7 @@ Data Asset Entities type.
12
12
 
13
13
  ***
14
14
 
15
- ### dataAsset
15
+ ### dataAsset {#dataasset}
16
16
 
17
17
  > **dataAsset**: `IDataspaceProtocolDataset`
18
18
 
@@ -20,7 +20,7 @@ The data asset we are referring to.
20
20
 
21
21
  ***
22
22
 
23
- ### query
23
+ ### query {#query}
24
24
 
25
25
  > **query**: [`IFilteringQuery`](IFilteringQuery.md)
26
26
 
@@ -4,7 +4,7 @@ API request for requesting a transfer process.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### headers
7
+ ### headers {#headers}
8
8
 
9
9
  > **headers**: `object`
10
10
 
@@ -16,7 +16,7 @@ Authorization header containing the Base64-encoded trust payload.
16
16
 
17
17
  ***
18
18
 
19
- ### body
19
+ ### body {#body}
20
20
 
21
21
  > **body**: `IDataspaceProtocolTransferRequestMessage`
22
22
 
@@ -4,7 +4,7 @@ API response for requesting a transfer process.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### body
7
+ ### body {#body}
8
8
 
9
9
  > **body**: `IDataspaceProtocolTransferProcess` \| `IDataspaceProtocolTransferError`
10
10
 
@@ -12,7 +12,7 @@ Transfer Process (DSP compliant) with state REQUESTED, or error.
12
12
 
13
13
  ***
14
14
 
15
- ### statusCode?
15
+ ### statusCode? {#statuscode}
16
16
 
17
17
  > `optional` **statusCode**: `HttpStatusCode`
18
18
 
@@ -4,7 +4,7 @@ API request for starting a transfer process.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### pathParams
7
+ ### pathParams {#pathparams}
8
8
 
9
9
  > **pathParams**: `object`
10
10
 
@@ -18,7 +18,7 @@ Process ID (consumerPid).
18
18
 
19
19
  ***
20
20
 
21
- ### headers
21
+ ### headers {#headers}
22
22
 
23
23
  > **headers**: `object`
24
24
 
@@ -30,7 +30,7 @@ Authorization header containing the Base64-encoded trust payload.
30
30
 
31
31
  ***
32
32
 
33
- ### body
33
+ ### body {#body}
34
34
 
35
35
  > **body**: `IDataspaceProtocolTransferStartMessage`
36
36
 
@@ -4,7 +4,7 @@ API response for starting a transfer process.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### body
7
+ ### body {#body}
8
8
 
9
9
  > **body**: `IDataspaceProtocolTransferError` \| `IDataspaceProtocolTransferStartMessage`
10
10
 
@@ -12,7 +12,7 @@ Transfer Start Message (DSP compliant) with dataAddress for PULL transfers, or e
12
12
 
13
13
  ***
14
14
 
15
- ### statusCode?
15
+ ### statusCode? {#statuscode}
16
16
 
17
17
  > `optional` **statusCode**: `HttpStatusCode`
18
18
 
@@ -4,7 +4,7 @@ API request for suspending a transfer process.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### pathParams
7
+ ### pathParams {#pathparams}
8
8
 
9
9
  > **pathParams**: `object`
10
10
 
@@ -18,7 +18,7 @@ Process ID (consumerPid).
18
18
 
19
19
  ***
20
20
 
21
- ### headers
21
+ ### headers {#headers}
22
22
 
23
23
  > **headers**: `object`
24
24
 
@@ -30,7 +30,7 @@ Authorization header containing the Base64-encoded trust payload.
30
30
 
31
31
  ***
32
32
 
33
- ### body
33
+ ### body {#body}
34
34
 
35
35
  > **body**: `IDataspaceProtocolTransferSuspensionMessage`
36
36
 
@@ -4,7 +4,7 @@ API response for suspending a transfer process.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### body
7
+ ### body {#body}
8
8
 
9
9
  > **body**: `IDataspaceProtocolTransferProcess` \| `IDataspaceProtocolTransferError`
10
10
 
@@ -12,7 +12,7 @@ Transfer Process (DSP compliant) with state SUSPENDED, or error.
12
12
 
13
13
  ***
14
14
 
15
- ### statusCode?
15
+ ### statusCode? {#statuscode}
16
16
 
17
17
  > `optional` **statusCode**: `HttpStatusCode`
18
18
 
@@ -4,7 +4,7 @@ Denotes a task associated with a Dataspace App
4
4
 
5
5
  ## Properties
6
6
 
7
- ### taskId
7
+ ### taskId {#taskid}
8
8
 
9
9
  > **taskId**: `string`
10
10
 
@@ -12,7 +12,7 @@ Task Id.
12
12
 
13
13
  ***
14
14
 
15
- ### dataspaceAppId
15
+ ### dataspaceAppId {#dataspaceappid}
16
16
 
17
17
  > **dataspaceAppId**: `string`
18
18
 
@@ -4,7 +4,7 @@ API request for terminating a transfer process.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### pathParams
7
+ ### pathParams {#pathparams}
8
8
 
9
9
  > **pathParams**: `object`
10
10
 
@@ -18,7 +18,7 @@ Process ID (consumerPid).
18
18
 
19
19
  ***
20
20
 
21
- ### headers
21
+ ### headers {#headers}
22
22
 
23
23
  > **headers**: `object`
24
24
 
@@ -30,7 +30,7 @@ Authorization header containing the Base64-encoded trust payload.
30
30
 
31
31
  ***
32
32
 
33
- ### body
33
+ ### body {#body}
34
34
 
35
35
  > **body**: `IDataspaceProtocolTransferTerminationMessage`
36
36
 
@@ -4,7 +4,7 @@ API response for terminating a transfer process.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### body
7
+ ### body {#body}
8
8
 
9
9
  > **body**: `IDataspaceProtocolTransferProcess` \| `IDataspaceProtocolTransferError`
10
10
 
@@ -12,7 +12,7 @@ Transfer Process (DSP compliant) with state TERMINATED, or error.
12
12
 
13
13
  ***
14
14
 
15
- ### statusCode?
15
+ ### statusCode? {#statuscode}
16
16
 
17
17
  > `optional` **statusCode**: `HttpStatusCode`
18
18
 
@@ -7,7 +7,7 @@ used by dataspace-control-plane to resolve consumerPid to datasetId and policies
7
7
 
8
8
  ## Properties
9
9
 
10
- ### consumerPid
10
+ ### consumerPid {#consumerpid}
11
11
 
12
12
  > **consumerPid**: `string`
13
13
 
@@ -15,7 +15,7 @@ Consumer Process ID.
15
15
 
16
16
  ***
17
17
 
18
- ### providerPid
18
+ ### providerPid {#providerpid}
19
19
 
20
20
  > **providerPid**: `string`
21
21
 
@@ -23,7 +23,7 @@ Provider Process ID.
23
23
 
24
24
  ***
25
25
 
26
- ### agreement
26
+ ### agreement {#agreement}
27
27
 
28
28
  > **agreement**: `IDataspaceProtocolAgreement`
29
29
 
@@ -32,7 +32,7 @@ Contains permissions, obligations, and prohibitions that DSC uses for runtime po
32
32
 
33
33
  ***
34
34
 
35
- ### datasetId
35
+ ### datasetId {#datasetid}
36
36
 
37
37
  > **datasetId**: `string`
38
38
 
@@ -41,7 +41,7 @@ Convenience field extracted from agreement.target for quick access.
41
41
 
42
42
  ***
43
43
 
44
- ### offerId
44
+ ### offerId {#offerid}
45
45
 
46
46
  > **offerId**: `string`
47
47
 
@@ -49,7 +49,7 @@ Offer ID.
49
49
 
50
50
  ***
51
51
 
52
- ### state
52
+ ### state {#state}
53
53
 
54
54
  > **state**: `DataspaceProtocolTransferProcessStateType`
55
55
 
@@ -58,7 +58,7 @@ DSC should only allow queries if state is STARTED.
58
58
 
59
59
  ***
60
60
 
61
- ### consumerIdentity?
61
+ ### consumerIdentity? {#consumeridentity}
62
62
 
63
63
  > `optional` **consumerIdentity**: `string`
64
64
 
@@ -66,7 +66,7 @@ Consumer identity (for auditing).
66
66
 
67
67
  ***
68
68
 
69
- ### providerIdentity?
69
+ ### providerIdentity? {#provideridentity}
70
70
 
71
71
  > `optional` **providerIdentity**: `string`
72
72
 
@@ -75,7 +75,7 @@ Extracted from Agreement's assigner field.
75
75
 
76
76
  ***
77
77
 
78
- ### dataAddress?
78
+ ### dataAddress? {#dataaddress}
79
79
 
80
80
  > `optional` **dataAddress**: `IDataspaceProtocolDataAddress`
81
81
 
@@ -6,7 +6,7 @@ used by dataspace-control-plane to resolve consumerPid to datasetId and policies
6
6
 
7
7
  ## Properties
8
8
 
9
- ### body
9
+ ### body {#body}
10
10
 
11
11
  > **body**: [`ITransferContext`](ITransferContext.md)
12
12