@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.
Files changed (144) hide show
  1. package/dist/cjs/index.cjs +738 -98
  2. package/dist/esm/index.mjs +755 -129
  3. package/dist/types/components/dataSpaceConnector.d.ts +13 -0
  4. package/dist/types/components/entityStorage.d.ts +2 -1
  5. package/dist/types/components/identity.d.ts +1 -1
  6. package/dist/types/components/identityProfile.d.ts +1 -1
  7. package/dist/types/components/rightsManagementPdp.d.ts +13 -0
  8. package/dist/types/components/rightsManagementPep.d.ts +13 -0
  9. package/dist/types/components/rightsManagementPip.d.ts +13 -0
  10. package/dist/types/components/rightsManagementPmp.d.ts +13 -0
  11. package/dist/types/components/rightsManagementPxp.d.ts +13 -0
  12. package/dist/types/components/synchronisedStorage.d.ts +13 -0
  13. package/dist/types/components/telemetry.d.ts +1 -1
  14. package/dist/types/components/vault.d.ts +1 -1
  15. package/dist/types/components/verifiableStorage.d.ts +1 -1
  16. package/dist/types/index.d.ts +21 -0
  17. package/dist/types/models/IEngineConfig.d.ts +39 -4
  18. package/dist/types/models/config/attestationComponentConfig.d.ts +4 -0
  19. package/dist/types/models/config/auditableItemGraphComponentConfig.d.ts +4 -0
  20. package/dist/types/models/config/auditableItemStreamComponentConfig.d.ts +4 -0
  21. package/dist/types/models/config/blobStorageComponentConfig.d.ts +4 -0
  22. package/dist/types/models/config/dataProcessingComponentConfig.d.ts +4 -0
  23. package/dist/types/models/config/dataSpaceConnectorComponentConfig.d.ts +17 -0
  24. package/dist/types/models/config/documentManagementComponentConfig.d.ts +5 -1
  25. package/dist/types/models/config/entityStorageComponentConfig.d.ts +9 -0
  26. package/dist/types/models/config/entityStorageConnectorConfig.d.ts +4 -0
  27. package/dist/types/models/config/eventBusComponentConfig.d.ts +4 -0
  28. package/dist/types/models/config/federatedCatalogueComponentConfig.d.ts +4 -0
  29. package/dist/types/models/config/identityComponentConfig.d.ts +4 -0
  30. package/dist/types/models/config/identityProfileComponentConfig.d.ts +4 -0
  31. package/dist/types/models/config/identityResolverComponentConfig.d.ts +6 -2
  32. package/dist/types/models/config/immutableProofComponentConfig.d.ts +4 -0
  33. package/dist/types/models/config/loggingComponentConfig.d.ts +4 -0
  34. package/dist/types/models/config/nftComponentConfig.d.ts +4 -0
  35. package/dist/types/models/config/rightsManagementComponentConfig.d.ts +4 -0
  36. package/dist/types/models/config/rightsManagementPdpComponentConfig.d.ts +9 -0
  37. package/dist/types/models/config/rightsManagementPepComponentConfig.d.ts +9 -0
  38. package/dist/types/models/config/rightsManagementPipComponentConfig.d.ts +9 -0
  39. package/dist/types/models/config/rightsManagementPmpComponentConfig.d.ts +9 -0
  40. package/dist/types/models/config/rightsManagementPxpComponentConfig.d.ts +9 -0
  41. package/dist/types/models/config/synchronisedStorageComponentConfig.d.ts +13 -0
  42. package/dist/types/models/config/taskSchedulerComponentConfig.d.ts +1 -1
  43. package/dist/types/models/config/telemetryComponentConfig.d.ts +4 -0
  44. package/dist/types/models/config/verifiableStorageComponentConfig.d.ts +4 -0
  45. package/dist/types/models/types/attestationComponentType.d.ts +4 -0
  46. package/dist/types/models/types/auditableItemGraphComponentType.d.ts +4 -0
  47. package/dist/types/models/types/auditableItemStreamComponentType.d.ts +4 -0
  48. package/dist/types/models/types/blobStorageComponentType.d.ts +4 -0
  49. package/dist/types/models/types/dataProcessingComponentType.d.ts +4 -0
  50. package/dist/types/models/types/dataSpaceConnectorComponentType.d.ts +21 -0
  51. package/dist/types/models/types/documentManagementComponentType.d.ts +4 -0
  52. package/dist/types/models/types/entityStorageComponentType.d.ts +4 -0
  53. package/dist/types/models/types/entityStorageConnectorType.d.ts +4 -0
  54. package/dist/types/models/types/eventBusComponentType.d.ts +4 -0
  55. package/dist/types/models/types/federatedCatalogueComponentType.d.ts +4 -0
  56. package/dist/types/models/types/identityComponentType.d.ts +4 -0
  57. package/dist/types/models/types/identityProfileComponentType.d.ts +4 -0
  58. package/dist/types/models/types/identityResolverComponentType.d.ts +4 -0
  59. package/dist/types/models/types/immutableProofComponentType.d.ts +4 -0
  60. package/dist/types/models/types/loggingComponentType.d.ts +4 -0
  61. package/dist/types/models/types/nftComponentType.d.ts +4 -0
  62. package/dist/types/models/types/rightsManagementComponentType.d.ts +4 -0
  63. package/dist/types/models/types/rightsManagementPdpComponentType.d.ts +13 -0
  64. package/dist/types/models/types/rightsManagementPepComponentType.d.ts +13 -0
  65. package/dist/types/models/types/rightsManagementPipComponentType.d.ts +13 -0
  66. package/dist/types/models/types/rightsManagementPmpComponentType.d.ts +13 -0
  67. package/dist/types/models/types/rightsManagementPxpComponentType.d.ts +13 -0
  68. package/dist/types/models/types/synchronisedStorageComponentType.d.ts +17 -0
  69. package/dist/types/models/types/taskSchedulerComponentType.d.ts +1 -1
  70. package/dist/types/models/types/telemetryComponentType.d.ts +4 -0
  71. package/dist/types/models/types/verifiableStorageComponentType.d.ts +4 -0
  72. package/docs/changelog.md +150 -0
  73. package/docs/reference/functions/initialiseDataSpaceConnectorComponent.md +41 -0
  74. package/docs/reference/functions/initialiseEntityStorageConnector.md +4 -2
  75. package/docs/reference/functions/initialiseRightsManagementPdpComponent.md +41 -0
  76. package/docs/reference/functions/initialiseRightsManagementPepComponent.md +41 -0
  77. package/docs/reference/functions/initialiseRightsManagementPipComponent.md +41 -0
  78. package/docs/reference/functions/initialiseRightsManagementPmpComponent.md +41 -0
  79. package/docs/reference/functions/initialiseRightsManagementPxpComponent.md +41 -0
  80. package/docs/reference/functions/initialiseSynchronisedStorageComponent.md +41 -0
  81. package/docs/reference/index.md +28 -0
  82. package/docs/reference/interfaces/IEngineConfig.md +48 -6
  83. package/docs/reference/type-aliases/AttestationComponentConfig.md +1 -13
  84. package/docs/reference/type-aliases/AuditableItemGraphComponentConfig.md +1 -13
  85. package/docs/reference/type-aliases/AuditableItemStreamComponentConfig.md +1 -13
  86. package/docs/reference/type-aliases/BlobStorageComponentConfig.md +1 -13
  87. package/docs/reference/type-aliases/DataProcessingComponentConfig.md +1 -13
  88. package/docs/reference/type-aliases/DataSpaceConnectorComponentConfig.md +5 -0
  89. package/docs/reference/type-aliases/DataSpaceConnectorComponentType.md +5 -0
  90. package/docs/reference/type-aliases/DocumentManagementComponentConfig.md +2 -14
  91. package/docs/reference/type-aliases/EntityStorageComponentConfig.md +1 -13
  92. package/docs/reference/type-aliases/EntityStorageConnectorConfig.md +1 -1
  93. package/docs/reference/type-aliases/EventBusComponentConfig.md +1 -13
  94. package/docs/reference/type-aliases/FederatedCatalogueComponentConfig.md +1 -13
  95. package/docs/reference/type-aliases/IdentityComponentConfig.md +1 -13
  96. package/docs/reference/type-aliases/IdentityProfileComponentConfig.md +1 -13
  97. package/docs/reference/type-aliases/IdentityResolverComponentConfig.md +1 -13
  98. package/docs/reference/type-aliases/ImmutableProofComponentConfig.md +1 -13
  99. package/docs/reference/type-aliases/LoggingComponentConfig.md +1 -13
  100. package/docs/reference/type-aliases/NftComponentConfig.md +1 -13
  101. package/docs/reference/type-aliases/RightsManagementComponentConfig.md +1 -13
  102. package/docs/reference/type-aliases/RightsManagementPdpComponentConfig.md +17 -0
  103. package/docs/reference/type-aliases/RightsManagementPdpComponentType.md +5 -0
  104. package/docs/reference/type-aliases/RightsManagementPepComponentConfig.md +17 -0
  105. package/docs/reference/type-aliases/RightsManagementPepComponentType.md +5 -0
  106. package/docs/reference/type-aliases/RightsManagementPipComponentConfig.md +17 -0
  107. package/docs/reference/type-aliases/RightsManagementPipComponentType.md +5 -0
  108. package/docs/reference/type-aliases/RightsManagementPmpComponentConfig.md +17 -0
  109. package/docs/reference/type-aliases/RightsManagementPmpComponentType.md +5 -0
  110. package/docs/reference/type-aliases/RightsManagementPxpComponentConfig.md +17 -0
  111. package/docs/reference/type-aliases/RightsManagementPxpComponentType.md +5 -0
  112. package/docs/reference/type-aliases/SynchronisedStorageComponentConfig.md +5 -0
  113. package/docs/reference/type-aliases/SynchronisedStorageComponentType.md +5 -0
  114. package/docs/reference/type-aliases/TaskSchedulerComponentConfig.md +1 -1
  115. package/docs/reference/type-aliases/TelemetryComponentConfig.md +1 -13
  116. package/docs/reference/type-aliases/VerifiableStorageComponentConfig.md +1 -13
  117. package/docs/reference/variables/AttestationComponentType.md +6 -0
  118. package/docs/reference/variables/AuditableItemGraphComponentType.md +6 -0
  119. package/docs/reference/variables/AuditableItemStreamComponentType.md +6 -0
  120. package/docs/reference/variables/BlobStorageComponentType.md +6 -0
  121. package/docs/reference/variables/DataProcessingComponentType.md +6 -0
  122. package/docs/reference/variables/DataSpaceConnectorComponentType.md +25 -0
  123. package/docs/reference/variables/DocumentManagementComponentType.md +6 -0
  124. package/docs/reference/variables/EntityStorageComponentType.md +6 -0
  125. package/docs/reference/variables/EntityStorageConnectorType.md +6 -0
  126. package/docs/reference/variables/EventBusComponentType.md +6 -0
  127. package/docs/reference/variables/FederatedCatalogueComponentType.md +6 -0
  128. package/docs/reference/variables/IdentityComponentType.md +6 -0
  129. package/docs/reference/variables/IdentityProfileComponentType.md +6 -0
  130. package/docs/reference/variables/IdentityResolverComponentType.md +6 -0
  131. package/docs/reference/variables/ImmutableProofComponentType.md +6 -0
  132. package/docs/reference/variables/LoggingComponentType.md +6 -0
  133. package/docs/reference/variables/NftComponentType.md +6 -0
  134. package/docs/reference/variables/RightsManagementComponentType.md +6 -0
  135. package/docs/reference/variables/RightsManagementPdpComponentType.md +13 -0
  136. package/docs/reference/variables/RightsManagementPepComponentType.md +13 -0
  137. package/docs/reference/variables/RightsManagementPipComponentType.md +13 -0
  138. package/docs/reference/variables/RightsManagementPmpComponentType.md +13 -0
  139. package/docs/reference/variables/RightsManagementPxpComponentType.md +13 -0
  140. package/docs/reference/variables/SynchronisedStorageComponentType.md +19 -0
  141. package/docs/reference/variables/TaskSchedulerComponentType.md +2 -2
  142. package/docs/reference/variables/TelemetryComponentType.md +6 -0
  143. package/docs/reference/variables/VerifiableStorageComponentType.md +6 -0
  144. package/package.json +31 -2
@@ -1,17 +1,5 @@
1
1
  # Type Alias: LoggingComponentConfig
2
2
 
3
- > **LoggingComponentConfig** = `object`
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** = `object`
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** = `object`
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.
@@ -8,7 +8,7 @@ Background task scheduled component config types.
8
8
 
9
9
  ### type
10
10
 
11
- > **type**: *typeof* [`Default`](../variables/TaskSchedulerComponentType.md#default)
11
+ > **type**: *typeof* [`Service`](../variables/TaskSchedulerComponentType.md#service)
12
12
 
13
13
  ***
14
14
 
@@ -1,17 +1,5 @@
1
1
  # Type Alias: TelemetryComponentConfig
2
2
 
3
- > **TelemetryComponentConfig** = `object`
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** = `object`
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`
@@ -11,3 +11,9 @@ Attestation component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Auditable item graph component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Auditable item stream component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Blob storage component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Data processing component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -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.
@@ -11,3 +11,9 @@ Document management component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Entity storage component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -59,3 +59,9 @@ MongoDb.
59
59
  > `readonly` **PostgreSql**: `"postgresql"` = `"postgresql"`
60
60
 
61
61
  Postgre SQL.
62
+
63
+ ### Synchronised
64
+
65
+ > `readonly` **Synchronised**: `"synchronised"` = `"synchronised"`
66
+
67
+ Synchronised.
@@ -11,3 +11,9 @@ Event bus component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### SocketClient
16
+
17
+ > `readonly` **SocketClient**: `"socket-client"` = `"socket-client"`
18
+
19
+ Socket client.
@@ -11,3 +11,9 @@ Federated catalogue component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Identity component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Identity profile component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Identity resolver component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Immutable proof component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Logging component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ NFT component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Rights management component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST 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.
@@ -6,8 +6,8 @@ Task scheduler component types.
6
6
 
7
7
  ## Type declaration
8
8
 
9
- ### Default
9
+ ### Service
10
10
 
11
- > `readonly` **Default**: `"default"` = `"default"`
11
+ > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Task scheduler.
@@ -11,3 +11,9 @@ Telemetry component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.
@@ -11,3 +11,9 @@ Verifiable storage component types.
11
11
  > `readonly` **Service**: `"service"` = `"service"`
12
12
 
13
13
  Service.
14
+
15
+ ### RestClient
16
+
17
+ > `readonly` **RestClient**: `"rest-client"` = `"rest-client"`
18
+
19
+ REST client.