@twin.org/dataspace-control-plane-service 0.9.1-next.1 → 0.9.1-next.2
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/dataspaceControlPlaneRoutes.js +65 -0
- package/dist/es/dataspaceControlPlaneRoutes.js.map +1 -1
- package/dist/es/dataspaceControlPlaneService.js +21 -2
- package/dist/es/dataspaceControlPlaneService.js.map +1 -1
- package/dist/types/dataspaceControlPlaneService.d.ts +6 -1
- package/docs/changelog.md +14 -0
- package/docs/reference/classes/DataspaceControlPlaneService.md +18 -0
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type IDataspaceAppDataset, type IDataspaceControlPlaneComponent, type IDataspaceControlPlaneResolverComponent, type INegotiationCallback, type ITransferCallback, type ITransferContext } from "@twin.org/dataspace-models";
|
|
2
|
-
import { type IDataspaceProtocolContractNegotiation, type IDataspaceProtocolContractNegotiationError, type IDataspaceProtocolDataset, type IDataspaceProtocolTransferCompletionMessage, type IDataspaceProtocolTransferError, type IDataspaceProtocolTransferProcess, type IDataspaceProtocolTransferRequestMessage, type IDataspaceProtocolTransferStartMessage, type IDataspaceProtocolTransferSuspensionMessage, type IDataspaceProtocolTransferTerminationMessage } from "@twin.org/standards-dataspace-protocol";
|
|
2
|
+
import { type IDataspaceProtocolContractNegotiation, type IDataspaceProtocolContractNegotiationError, type IDataspaceProtocolDataset, type IDataspaceProtocolTransferCompletionMessage, type IDataspaceProtocolTransferError, type IDataspaceProtocolTransferProcess, type IDataspaceProtocolTransferRequestMessage, type IDataspaceProtocolTransferStartMessage, type IDataspaceProtocolTransferSuspensionMessage, type IDataspaceProtocolTransferTerminationMessage, type IDataspaceProtocolVersionResponse } from "@twin.org/standards-dataspace-protocol";
|
|
3
3
|
import type { IDataspaceControlPlaneServiceConstructorOptions } from "./models/IDataspaceControlPlaneServiceConstructorOptions.js";
|
|
4
4
|
/**
|
|
5
5
|
* Dataspace Control Plane Service implementation.
|
|
@@ -235,4 +235,9 @@ export declare class DataspaceControlPlaneService implements IDataspaceControlPl
|
|
|
235
235
|
* @returns A promise that resolves when the dataset has been removed from storage and the catalogue.
|
|
236
236
|
*/
|
|
237
237
|
deleteAppDataset(id: string): Promise<void>;
|
|
238
|
+
/**
|
|
239
|
+
* Return the Dataspace Protocol versions supported by this connector.
|
|
240
|
+
* @returns The protocol version response listing all supported DSP versions.
|
|
241
|
+
*/
|
|
242
|
+
getProtocolVersions(): Promise<IDataspaceProtocolVersionResponse>;
|
|
238
243
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.1-next.2](https://github.com/iotaledger/twin-dataspace/compare/dataspace-control-plane-service-v0.9.1-next.1...dataspace-control-plane-service-v0.9.1-next.2) (2026-06-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add well known versions endpoint ([#251](https://github.com/iotaledger/twin-dataspace/issues/251)) ([4b4cbe9](https://github.com/iotaledger/twin-dataspace/commit/4b4cbe91a40980481dad6e0650c1ee73c53ae360))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/dataspace-models bumped from 0.9.1-next.1 to 0.9.1-next.2
|
|
16
|
+
|
|
3
17
|
## [0.9.1-next.1](https://github.com/iotaledger/twin-dataspace/compare/dataspace-control-plane-service-v0.9.1-next.0...dataspace-control-plane-service-v0.9.1-next.1) (2026-06-26)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -851,3 +851,21 @@ A promise that resolves when the dataset has been removed from storage and the c
|
|
|
851
851
|
#### Implementation of
|
|
852
852
|
|
|
853
853
|
`IDataspaceControlPlaneComponent.deleteAppDataset`
|
|
854
|
+
|
|
855
|
+
***
|
|
856
|
+
|
|
857
|
+
### getProtocolVersions() {#getprotocolversions}
|
|
858
|
+
|
|
859
|
+
> **getProtocolVersions**(): `Promise`\<`IDataspaceProtocolVersionResponse`\>
|
|
860
|
+
|
|
861
|
+
Return the Dataspace Protocol versions supported by this connector.
|
|
862
|
+
|
|
863
|
+
#### Returns
|
|
864
|
+
|
|
865
|
+
`Promise`\<`IDataspaceProtocolVersionResponse`\>
|
|
866
|
+
|
|
867
|
+
The protocol version response listing all supported DSP versions.
|
|
868
|
+
|
|
869
|
+
#### Implementation of
|
|
870
|
+
|
|
871
|
+
`IDataspaceControlPlaneComponent.getProtocolVersions`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/dataspace-control-plane-service",
|
|
3
|
-
"version": "0.9.1-next.
|
|
3
|
+
"version": "0.9.1-next.2",
|
|
4
4
|
"description": "Implements agreement negotiation and transfer process lifecycle management for control plane operations.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@twin.org/context": "next",
|
|
20
20
|
"@twin.org/core": "next",
|
|
21
21
|
"@twin.org/crypto": "next",
|
|
22
|
-
"@twin.org/dataspace-models": "0.9.1-next.
|
|
22
|
+
"@twin.org/dataspace-models": "0.9.1-next.2",
|
|
23
23
|
"@twin.org/entity": "next",
|
|
24
24
|
"@twin.org/entity-storage-models": "next",
|
|
25
25
|
"@twin.org/federated-catalogue-models": "next",
|