@twin.org/engine-types 0.0.1 → 0.0.2-next.10
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/cjs/index.cjs +738 -98
- package/dist/esm/index.mjs +755 -129
- package/dist/types/components/dataSpaceConnector.d.ts +13 -0
- package/dist/types/components/entityStorage.d.ts +2 -1
- package/dist/types/components/identity.d.ts +1 -1
- package/dist/types/components/identityProfile.d.ts +1 -1
- package/dist/types/components/rightsManagementPdp.d.ts +13 -0
- package/dist/types/components/rightsManagementPep.d.ts +13 -0
- package/dist/types/components/rightsManagementPip.d.ts +13 -0
- package/dist/types/components/rightsManagementPmp.d.ts +13 -0
- package/dist/types/components/rightsManagementPxp.d.ts +13 -0
- package/dist/types/components/synchronisedStorage.d.ts +13 -0
- package/dist/types/components/telemetry.d.ts +1 -1
- package/dist/types/components/vault.d.ts +1 -1
- package/dist/types/components/verifiableStorage.d.ts +1 -1
- package/dist/types/index.d.ts +21 -0
- package/dist/types/models/IEngineConfig.d.ts +39 -4
- package/dist/types/models/config/attestationComponentConfig.d.ts +4 -0
- package/dist/types/models/config/auditableItemGraphComponentConfig.d.ts +4 -0
- package/dist/types/models/config/auditableItemStreamComponentConfig.d.ts +4 -0
- package/dist/types/models/config/blobStorageComponentConfig.d.ts +4 -0
- package/dist/types/models/config/dataProcessingComponentConfig.d.ts +4 -0
- package/dist/types/models/config/dataSpaceConnectorComponentConfig.d.ts +17 -0
- package/dist/types/models/config/documentManagementComponentConfig.d.ts +5 -1
- package/dist/types/models/config/entityStorageComponentConfig.d.ts +9 -0
- package/dist/types/models/config/entityStorageConnectorConfig.d.ts +4 -0
- package/dist/types/models/config/eventBusComponentConfig.d.ts +4 -0
- package/dist/types/models/config/federatedCatalogueComponentConfig.d.ts +4 -0
- package/dist/types/models/config/identityComponentConfig.d.ts +4 -0
- package/dist/types/models/config/identityProfileComponentConfig.d.ts +4 -0
- package/dist/types/models/config/identityResolverComponentConfig.d.ts +6 -2
- package/dist/types/models/config/immutableProofComponentConfig.d.ts +4 -0
- package/dist/types/models/config/loggingComponentConfig.d.ts +4 -0
- package/dist/types/models/config/nftComponentConfig.d.ts +4 -0
- package/dist/types/models/config/rightsManagementComponentConfig.d.ts +4 -0
- package/dist/types/models/config/rightsManagementPdpComponentConfig.d.ts +9 -0
- package/dist/types/models/config/rightsManagementPepComponentConfig.d.ts +9 -0
- package/dist/types/models/config/rightsManagementPipComponentConfig.d.ts +9 -0
- package/dist/types/models/config/rightsManagementPmpComponentConfig.d.ts +9 -0
- package/dist/types/models/config/rightsManagementPxpComponentConfig.d.ts +9 -0
- package/dist/types/models/config/synchronisedStorageComponentConfig.d.ts +13 -0
- package/dist/types/models/config/taskSchedulerComponentConfig.d.ts +1 -1
- package/dist/types/models/config/telemetryComponentConfig.d.ts +4 -0
- package/dist/types/models/config/verifiableStorageComponentConfig.d.ts +4 -0
- package/dist/types/models/types/attestationComponentType.d.ts +4 -0
- package/dist/types/models/types/auditableItemGraphComponentType.d.ts +4 -0
- package/dist/types/models/types/auditableItemStreamComponentType.d.ts +4 -0
- package/dist/types/models/types/blobStorageComponentType.d.ts +4 -0
- package/dist/types/models/types/dataProcessingComponentType.d.ts +4 -0
- package/dist/types/models/types/dataSpaceConnectorComponentType.d.ts +21 -0
- package/dist/types/models/types/documentManagementComponentType.d.ts +4 -0
- package/dist/types/models/types/entityStorageComponentType.d.ts +4 -0
- package/dist/types/models/types/entityStorageConnectorType.d.ts +4 -0
- package/dist/types/models/types/eventBusComponentType.d.ts +4 -0
- package/dist/types/models/types/federatedCatalogueComponentType.d.ts +4 -0
- package/dist/types/models/types/identityComponentType.d.ts +4 -0
- package/dist/types/models/types/identityProfileComponentType.d.ts +4 -0
- package/dist/types/models/types/identityResolverComponentType.d.ts +4 -0
- package/dist/types/models/types/immutableProofComponentType.d.ts +4 -0
- package/dist/types/models/types/loggingComponentType.d.ts +4 -0
- package/dist/types/models/types/nftComponentType.d.ts +4 -0
- package/dist/types/models/types/rightsManagementComponentType.d.ts +4 -0
- package/dist/types/models/types/rightsManagementPdpComponentType.d.ts +13 -0
- package/dist/types/models/types/rightsManagementPepComponentType.d.ts +13 -0
- package/dist/types/models/types/rightsManagementPipComponentType.d.ts +13 -0
- package/dist/types/models/types/rightsManagementPmpComponentType.d.ts +13 -0
- package/dist/types/models/types/rightsManagementPxpComponentType.d.ts +13 -0
- package/dist/types/models/types/synchronisedStorageComponentType.d.ts +17 -0
- package/dist/types/models/types/taskSchedulerComponentType.d.ts +1 -1
- package/dist/types/models/types/telemetryComponentType.d.ts +4 -0
- package/dist/types/models/types/verifiableStorageComponentType.d.ts +4 -0
- package/docs/changelog.md +150 -0
- package/docs/reference/functions/initialiseDataSpaceConnectorComponent.md +41 -0
- package/docs/reference/functions/initialiseEntityStorageConnector.md +4 -2
- package/docs/reference/functions/initialiseRightsManagementPdpComponent.md +41 -0
- package/docs/reference/functions/initialiseRightsManagementPepComponent.md +41 -0
- package/docs/reference/functions/initialiseRightsManagementPipComponent.md +41 -0
- package/docs/reference/functions/initialiseRightsManagementPmpComponent.md +41 -0
- package/docs/reference/functions/initialiseRightsManagementPxpComponent.md +41 -0
- package/docs/reference/functions/initialiseSynchronisedStorageComponent.md +41 -0
- package/docs/reference/index.md +28 -0
- package/docs/reference/interfaces/IEngineConfig.md +48 -6
- package/docs/reference/type-aliases/AttestationComponentConfig.md +1 -13
- package/docs/reference/type-aliases/AuditableItemGraphComponentConfig.md +1 -13
- package/docs/reference/type-aliases/AuditableItemStreamComponentConfig.md +1 -13
- package/docs/reference/type-aliases/BlobStorageComponentConfig.md +1 -13
- package/docs/reference/type-aliases/DataProcessingComponentConfig.md +1 -13
- package/docs/reference/type-aliases/DataSpaceConnectorComponentConfig.md +5 -0
- package/docs/reference/type-aliases/DataSpaceConnectorComponentType.md +5 -0
- package/docs/reference/type-aliases/DocumentManagementComponentConfig.md +2 -14
- package/docs/reference/type-aliases/EntityStorageComponentConfig.md +1 -13
- package/docs/reference/type-aliases/EntityStorageConnectorConfig.md +1 -1
- package/docs/reference/type-aliases/EventBusComponentConfig.md +1 -13
- package/docs/reference/type-aliases/FederatedCatalogueComponentConfig.md +1 -13
- package/docs/reference/type-aliases/IdentityComponentConfig.md +1 -13
- package/docs/reference/type-aliases/IdentityProfileComponentConfig.md +1 -13
- package/docs/reference/type-aliases/IdentityResolverComponentConfig.md +1 -13
- package/docs/reference/type-aliases/ImmutableProofComponentConfig.md +1 -13
- package/docs/reference/type-aliases/LoggingComponentConfig.md +1 -13
- package/docs/reference/type-aliases/NftComponentConfig.md +1 -13
- package/docs/reference/type-aliases/RightsManagementComponentConfig.md +1 -13
- package/docs/reference/type-aliases/RightsManagementPdpComponentConfig.md +17 -0
- package/docs/reference/type-aliases/RightsManagementPdpComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPepComponentConfig.md +17 -0
- package/docs/reference/type-aliases/RightsManagementPepComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPipComponentConfig.md +17 -0
- package/docs/reference/type-aliases/RightsManagementPipComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPmpComponentConfig.md +17 -0
- package/docs/reference/type-aliases/RightsManagementPmpComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPxpComponentConfig.md +17 -0
- package/docs/reference/type-aliases/RightsManagementPxpComponentType.md +5 -0
- package/docs/reference/type-aliases/SynchronisedStorageComponentConfig.md +5 -0
- package/docs/reference/type-aliases/SynchronisedStorageComponentType.md +5 -0
- package/docs/reference/type-aliases/TaskSchedulerComponentConfig.md +1 -1
- package/docs/reference/type-aliases/TelemetryComponentConfig.md +1 -13
- package/docs/reference/type-aliases/VerifiableStorageComponentConfig.md +1 -13
- package/docs/reference/variables/AttestationComponentType.md +6 -0
- package/docs/reference/variables/AuditableItemGraphComponentType.md +6 -0
- package/docs/reference/variables/AuditableItemStreamComponentType.md +6 -0
- package/docs/reference/variables/BlobStorageComponentType.md +6 -0
- package/docs/reference/variables/DataProcessingComponentType.md +6 -0
- package/docs/reference/variables/DataSpaceConnectorComponentType.md +25 -0
- package/docs/reference/variables/DocumentManagementComponentType.md +6 -0
- package/docs/reference/variables/EntityStorageComponentType.md +6 -0
- package/docs/reference/variables/EntityStorageConnectorType.md +6 -0
- package/docs/reference/variables/EventBusComponentType.md +6 -0
- package/docs/reference/variables/FederatedCatalogueComponentType.md +6 -0
- package/docs/reference/variables/IdentityComponentType.md +6 -0
- package/docs/reference/variables/IdentityProfileComponentType.md +6 -0
- package/docs/reference/variables/IdentityResolverComponentType.md +6 -0
- package/docs/reference/variables/ImmutableProofComponentType.md +6 -0
- package/docs/reference/variables/LoggingComponentType.md +6 -0
- package/docs/reference/variables/NftComponentType.md +6 -0
- package/docs/reference/variables/RightsManagementComponentType.md +6 -0
- package/docs/reference/variables/RightsManagementPdpComponentType.md +13 -0
- package/docs/reference/variables/RightsManagementPepComponentType.md +13 -0
- package/docs/reference/variables/RightsManagementPipComponentType.md +13 -0
- package/docs/reference/variables/RightsManagementPmpComponentType.md +13 -0
- package/docs/reference/variables/RightsManagementPxpComponentType.md +13 -0
- package/docs/reference/variables/SynchronisedStorageComponentType.md +19 -0
- package/docs/reference/variables/TaskSchedulerComponentType.md +2 -2
- package/docs/reference/variables/TelemetryComponentType.md +6 -0
- package/docs/reference/variables/VerifiableStorageComponentType.md +6 -0
- package/package.json +31 -2
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: LoggingComponentConfig
|
|
2
2
|
|
|
3
|
-
> **LoggingComponentConfig** = `
|
|
3
|
+
> **LoggingComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/LoggingComponentType.md#service); `options?`: `ILoggingServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/LoggingComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Logging component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/LoggingComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `ILoggingServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: NftComponentConfig
|
|
2
2
|
|
|
3
|
-
> **NftComponentConfig** = `
|
|
3
|
+
> **NftComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/NftComponentType.md#service); `options?`: `INftServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/NftComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
NFT component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/NftComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `INftServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: RightsManagementComponentConfig
|
|
2
2
|
|
|
3
|
-
> **RightsManagementComponentConfig** = `
|
|
3
|
+
> **RightsManagementComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/RightsManagementComponentType.md#service); `options?`: `IRightsManagementServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/RightsManagementComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Rights management component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/RightsManagementComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IRightsManagementServiceConstructorOptions`
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPdpComponentConfig
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPdpComponentConfig** = `object`
|
|
4
|
+
|
|
5
|
+
Rights management PDP component config types.
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* [`Service`](../variables/RightsManagementPdpComponentType.md#service)
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### options?
|
|
16
|
+
|
|
17
|
+
> `optional` **options**: `IPolicyDecisionPointServiceOptions`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPdpComponentType
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPdpComponentType** = *typeof* [`RightsManagementPdpComponentType`](../variables/RightsManagementPdpComponentType.md)\[keyof *typeof* [`RightsManagementPdpComponentType`](../variables/RightsManagementPdpComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Rights management PDP component types.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPepComponentConfig
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPepComponentConfig** = `object`
|
|
4
|
+
|
|
5
|
+
Rights management PEP component config types.
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* [`Service`](../variables/RightsManagementPepComponentType.md#service)
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### options?
|
|
16
|
+
|
|
17
|
+
> `optional` **options**: `IPolicyEnforcementPointServiceOptions`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPepComponentType
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPepComponentType** = *typeof* [`RightsManagementPepComponentType`](../variables/RightsManagementPepComponentType.md)\[keyof *typeof* [`RightsManagementPepComponentType`](../variables/RightsManagementPepComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Rights management PEP component types.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPipComponentConfig
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPipComponentConfig** = `object`
|
|
4
|
+
|
|
5
|
+
Rights management PIP component config types.
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* [`Service`](../variables/RightsManagementPipComponentType.md#service)
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### options?
|
|
16
|
+
|
|
17
|
+
> `optional` **options**: `IPolicyInformationPointServiceOptions`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPipComponentType
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPipComponentType** = *typeof* [`RightsManagementPipComponentType`](../variables/RightsManagementPipComponentType.md)\[keyof *typeof* [`RightsManagementPipComponentType`](../variables/RightsManagementPipComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Rights management PIP component types.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPmpComponentConfig
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPmpComponentConfig** = `object`
|
|
4
|
+
|
|
5
|
+
Rights management PMP component config types.
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* [`Service`](../variables/RightsManagementPmpComponentType.md#service)
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### options?
|
|
16
|
+
|
|
17
|
+
> `optional` **options**: `IPolicyManagementPointServiceOptions`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPmpComponentType
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPmpComponentType** = *typeof* [`RightsManagementPmpComponentType`](../variables/RightsManagementPmpComponentType.md)\[keyof *typeof* [`RightsManagementPmpComponentType`](../variables/RightsManagementPmpComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Rights management PMP component types.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPxpComponentConfig
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPxpComponentConfig** = `object`
|
|
4
|
+
|
|
5
|
+
Rights management PXP component config types.
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* [`Service`](../variables/RightsManagementPxpComponentType.md#service)
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### options?
|
|
16
|
+
|
|
17
|
+
> `optional` **options**: `IPolicyExecutionPointServiceOptions`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: RightsManagementPxpComponentType
|
|
2
|
+
|
|
3
|
+
> **RightsManagementPxpComponentType** = *typeof* [`RightsManagementPxpComponentType`](../variables/RightsManagementPxpComponentType.md)\[keyof *typeof* [`RightsManagementPxpComponentType`](../variables/RightsManagementPxpComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Rights management PXP component types.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: SynchronisedStorageComponentConfig
|
|
2
|
+
|
|
3
|
+
> **SynchronisedStorageComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/SynchronisedStorageComponentType.md#service); `options`: `ISynchronisedStorageServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/SynchronisedStorageComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
|
+
|
|
5
|
+
Synchronised storage component config types.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: SynchronisedStorageComponentType
|
|
2
|
+
|
|
3
|
+
> **SynchronisedStorageComponentType** = *typeof* [`SynchronisedStorageComponentType`](../variables/SynchronisedStorageComponentType.md)\[keyof *typeof* [`SynchronisedStorageComponentType`](../variables/SynchronisedStorageComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Synchronised storage component types.
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: TelemetryComponentConfig
|
|
2
2
|
|
|
3
|
-
> **TelemetryComponentConfig** = `
|
|
3
|
+
> **TelemetryComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/TelemetryComponentType.md#service); `options?`: `ITelemetryServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/TelemetryComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Telemetry component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/TelemetryComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `ITelemetryServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: VerifiableStorageComponentConfig
|
|
2
2
|
|
|
3
|
-
> **VerifiableStorageComponentConfig** = `
|
|
3
|
+
> **VerifiableStorageComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/VerifiableStorageComponentType.md#service); `options?`: `IVerifiableStorageServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/VerifiableStorageComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Verifiable storage component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/VerifiableStorageComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IVerifiableStorageServiceConstructorOptions`
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Variable: DataSpaceConnectorComponentType
|
|
2
|
+
|
|
3
|
+
> `const` **DataSpaceConnectorComponentType**: `object`
|
|
4
|
+
|
|
5
|
+
Data space connector component types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Service
|
|
10
|
+
|
|
11
|
+
> `readonly` **Service**: `"service"` = `"service"`
|
|
12
|
+
|
|
13
|
+
Service.
|
|
14
|
+
|
|
15
|
+
### RestClient
|
|
16
|
+
|
|
17
|
+
> `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
|
|
18
|
+
|
|
19
|
+
REST client.
|
|
20
|
+
|
|
21
|
+
### SocketClient
|
|
22
|
+
|
|
23
|
+
> `readonly` **SocketClient**: `"socket-client"` = `"socket-client"`
|
|
24
|
+
|
|
25
|
+
Socket client.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Variable: RightsManagementPdpComponentType
|
|
2
|
+
|
|
3
|
+
> `const` **RightsManagementPdpComponentType**: `object`
|
|
4
|
+
|
|
5
|
+
Rights management PDP component types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Service
|
|
10
|
+
|
|
11
|
+
> `readonly` **Service**: `"service"` = `"service"`
|
|
12
|
+
|
|
13
|
+
Service.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Variable: RightsManagementPepComponentType
|
|
2
|
+
|
|
3
|
+
> `const` **RightsManagementPepComponentType**: `object`
|
|
4
|
+
|
|
5
|
+
Rights management PEP component types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Service
|
|
10
|
+
|
|
11
|
+
> `readonly` **Service**: `"service"` = `"service"`
|
|
12
|
+
|
|
13
|
+
Service.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Variable: RightsManagementPipComponentType
|
|
2
|
+
|
|
3
|
+
> `const` **RightsManagementPipComponentType**: `object`
|
|
4
|
+
|
|
5
|
+
Rights management PIP component types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Service
|
|
10
|
+
|
|
11
|
+
> `readonly` **Service**: `"service"` = `"service"`
|
|
12
|
+
|
|
13
|
+
Service.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Variable: RightsManagementPmpComponentType
|
|
2
|
+
|
|
3
|
+
> `const` **RightsManagementPmpComponentType**: `object`
|
|
4
|
+
|
|
5
|
+
Rights management PMP component types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Service
|
|
10
|
+
|
|
11
|
+
> `readonly` **Service**: `"service"` = `"service"`
|
|
12
|
+
|
|
13
|
+
Service.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Variable: RightsManagementPxpComponentType
|
|
2
|
+
|
|
3
|
+
> `const` **RightsManagementPxpComponentType**: `object`
|
|
4
|
+
|
|
5
|
+
Rights management PXP component types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Service
|
|
10
|
+
|
|
11
|
+
> `readonly` **Service**: `"service"` = `"service"`
|
|
12
|
+
|
|
13
|
+
Service.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Variable: SynchronisedStorageComponentType
|
|
2
|
+
|
|
3
|
+
> `const` **SynchronisedStorageComponentType**: `object`
|
|
4
|
+
|
|
5
|
+
Synchronised storage component types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Service
|
|
10
|
+
|
|
11
|
+
> `readonly` **Service**: `"service"` = `"service"`
|
|
12
|
+
|
|
13
|
+
Service.
|
|
14
|
+
|
|
15
|
+
### RestClient
|
|
16
|
+
|
|
17
|
+
> `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
|
|
18
|
+
|
|
19
|
+
REST client.
|