@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
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Function: initialiseRightsManagementPepComponent()
|
|
2
|
+
|
|
3
|
+
> **initialiseRightsManagementPepComponent**(`engineCore`, `context`, `instanceConfig`, `overrideInstanceType?`): `undefined` \| `string`
|
|
4
|
+
|
|
5
|
+
Initialise the rights management PEP component.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
### engineCore
|
|
10
|
+
|
|
11
|
+
`IEngineCore`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
12
|
+
|
|
13
|
+
The engine core.
|
|
14
|
+
|
|
15
|
+
### context
|
|
16
|
+
|
|
17
|
+
`IEngineCoreContext`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
18
|
+
|
|
19
|
+
The context for the engine.
|
|
20
|
+
|
|
21
|
+
### instanceConfig
|
|
22
|
+
|
|
23
|
+
[`RightsManagementPepComponentConfig`](../type-aliases/RightsManagementPepComponentConfig.md)
|
|
24
|
+
|
|
25
|
+
The instance config.
|
|
26
|
+
|
|
27
|
+
### overrideInstanceType?
|
|
28
|
+
|
|
29
|
+
`string`
|
|
30
|
+
|
|
31
|
+
The instance type to override the default.
|
|
32
|
+
|
|
33
|
+
## Returns
|
|
34
|
+
|
|
35
|
+
`undefined` \| `string`
|
|
36
|
+
|
|
37
|
+
The name of the instance created.
|
|
38
|
+
|
|
39
|
+
## Throws
|
|
40
|
+
|
|
41
|
+
GeneralError if the component type is unknown.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Function: initialiseRightsManagementPipComponent()
|
|
2
|
+
|
|
3
|
+
> **initialiseRightsManagementPipComponent**(`engineCore`, `context`, `instanceConfig`, `overrideInstanceType?`): `undefined` \| `string`
|
|
4
|
+
|
|
5
|
+
Initialise the rights management PIP component.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
### engineCore
|
|
10
|
+
|
|
11
|
+
`IEngineCore`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
12
|
+
|
|
13
|
+
The engine core.
|
|
14
|
+
|
|
15
|
+
### context
|
|
16
|
+
|
|
17
|
+
`IEngineCoreContext`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
18
|
+
|
|
19
|
+
The context for the engine.
|
|
20
|
+
|
|
21
|
+
### instanceConfig
|
|
22
|
+
|
|
23
|
+
[`RightsManagementPipComponentConfig`](../type-aliases/RightsManagementPipComponentConfig.md)
|
|
24
|
+
|
|
25
|
+
The instance config.
|
|
26
|
+
|
|
27
|
+
### overrideInstanceType?
|
|
28
|
+
|
|
29
|
+
`string`
|
|
30
|
+
|
|
31
|
+
The instance type to override the default.
|
|
32
|
+
|
|
33
|
+
## Returns
|
|
34
|
+
|
|
35
|
+
`undefined` \| `string`
|
|
36
|
+
|
|
37
|
+
The name of the instance created.
|
|
38
|
+
|
|
39
|
+
## Throws
|
|
40
|
+
|
|
41
|
+
GeneralError if the component type is unknown.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Function: initialiseRightsManagementPmpComponent()
|
|
2
|
+
|
|
3
|
+
> **initialiseRightsManagementPmpComponent**(`engineCore`, `context`, `instanceConfig`, `overrideInstanceType?`): `undefined` \| `string`
|
|
4
|
+
|
|
5
|
+
Initialise the rights management PMP component.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
### engineCore
|
|
10
|
+
|
|
11
|
+
`IEngineCore`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
12
|
+
|
|
13
|
+
The engine core.
|
|
14
|
+
|
|
15
|
+
### context
|
|
16
|
+
|
|
17
|
+
`IEngineCoreContext`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
18
|
+
|
|
19
|
+
The context for the engine.
|
|
20
|
+
|
|
21
|
+
### instanceConfig
|
|
22
|
+
|
|
23
|
+
[`RightsManagementPmpComponentConfig`](../type-aliases/RightsManagementPmpComponentConfig.md)
|
|
24
|
+
|
|
25
|
+
The instance config.
|
|
26
|
+
|
|
27
|
+
### overrideInstanceType?
|
|
28
|
+
|
|
29
|
+
`string`
|
|
30
|
+
|
|
31
|
+
The instance type to override the default.
|
|
32
|
+
|
|
33
|
+
## Returns
|
|
34
|
+
|
|
35
|
+
`undefined` \| `string`
|
|
36
|
+
|
|
37
|
+
The name of the instance created.
|
|
38
|
+
|
|
39
|
+
## Throws
|
|
40
|
+
|
|
41
|
+
GeneralError if the component type is unknown.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Function: initialiseRightsManagementPxpComponent()
|
|
2
|
+
|
|
3
|
+
> **initialiseRightsManagementPxpComponent**(`engineCore`, `context`, `instanceConfig`, `overrideInstanceType?`): `undefined` \| `string`
|
|
4
|
+
|
|
5
|
+
Initialise the rights management PXP component.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
### engineCore
|
|
10
|
+
|
|
11
|
+
`IEngineCore`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
12
|
+
|
|
13
|
+
The engine core.
|
|
14
|
+
|
|
15
|
+
### context
|
|
16
|
+
|
|
17
|
+
`IEngineCoreContext`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
18
|
+
|
|
19
|
+
The context for the engine.
|
|
20
|
+
|
|
21
|
+
### instanceConfig
|
|
22
|
+
|
|
23
|
+
[`RightsManagementPxpComponentConfig`](../type-aliases/RightsManagementPxpComponentConfig.md)
|
|
24
|
+
|
|
25
|
+
The instance config.
|
|
26
|
+
|
|
27
|
+
### overrideInstanceType?
|
|
28
|
+
|
|
29
|
+
`string`
|
|
30
|
+
|
|
31
|
+
The instance type to override the default.
|
|
32
|
+
|
|
33
|
+
## Returns
|
|
34
|
+
|
|
35
|
+
`undefined` \| `string`
|
|
36
|
+
|
|
37
|
+
The name of the instance created.
|
|
38
|
+
|
|
39
|
+
## Throws
|
|
40
|
+
|
|
41
|
+
GeneralError if the component type is unknown.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Function: initialiseSynchronisedStorageComponent()
|
|
2
|
+
|
|
3
|
+
> **initialiseSynchronisedStorageComponent**(`engineCore`, `context`, `instanceConfig`, `overrideInstanceType?`): `undefined` \| `string`
|
|
4
|
+
|
|
5
|
+
Initialise the synchronised storage component.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
### engineCore
|
|
10
|
+
|
|
11
|
+
`IEngineCore`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
12
|
+
|
|
13
|
+
The engine core.
|
|
14
|
+
|
|
15
|
+
### context
|
|
16
|
+
|
|
17
|
+
`IEngineCoreContext`\<[`IEngineConfig`](../interfaces/IEngineConfig.md)\>
|
|
18
|
+
|
|
19
|
+
The context for the engine.
|
|
20
|
+
|
|
21
|
+
### instanceConfig
|
|
22
|
+
|
|
23
|
+
[`SynchronisedStorageComponentConfig`](../type-aliases/SynchronisedStorageComponentConfig.md)
|
|
24
|
+
|
|
25
|
+
The instance config.
|
|
26
|
+
|
|
27
|
+
### overrideInstanceType?
|
|
28
|
+
|
|
29
|
+
`string`
|
|
30
|
+
|
|
31
|
+
The instance type to override the default.
|
|
32
|
+
|
|
33
|
+
## Returns
|
|
34
|
+
|
|
35
|
+
`undefined` \| `string`
|
|
36
|
+
|
|
37
|
+
The name of the instance created.
|
|
38
|
+
|
|
39
|
+
## Throws
|
|
40
|
+
|
|
41
|
+
GeneralError if the component type is unknown.
|
package/docs/reference/index.md
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
- [DataConverterConnectorConfig](type-aliases/DataConverterConnectorConfig.md)
|
|
17
17
|
- [DataExtractorConnectorConfig](type-aliases/DataExtractorConnectorConfig.md)
|
|
18
18
|
- [DataProcessingComponentConfig](type-aliases/DataProcessingComponentConfig.md)
|
|
19
|
+
- [DataSpaceConnectorComponentConfig](type-aliases/DataSpaceConnectorComponentConfig.md)
|
|
19
20
|
- [DltConfig](type-aliases/DltConfig.md)
|
|
20
21
|
- [DocumentManagementComponentConfig](type-aliases/DocumentManagementComponentConfig.md)
|
|
21
22
|
- [EntityStorageComponentConfig](type-aliases/EntityStorageComponentConfig.md)
|
|
@@ -41,6 +42,12 @@
|
|
|
41
42
|
- [NftConnectorConfig](type-aliases/NftConnectorConfig.md)
|
|
42
43
|
- [RightsManagementComponentConfig](type-aliases/RightsManagementComponentConfig.md)
|
|
43
44
|
- [RightsManagementPapComponentConfig](type-aliases/RightsManagementPapComponentConfig.md)
|
|
45
|
+
- [RightsManagementPdpComponentConfig](type-aliases/RightsManagementPdpComponentConfig.md)
|
|
46
|
+
- [RightsManagementPepComponentConfig](type-aliases/RightsManagementPepComponentConfig.md)
|
|
47
|
+
- [RightsManagementPipComponentConfig](type-aliases/RightsManagementPipComponentConfig.md)
|
|
48
|
+
- [RightsManagementPmpComponentConfig](type-aliases/RightsManagementPmpComponentConfig.md)
|
|
49
|
+
- [RightsManagementPxpComponentConfig](type-aliases/RightsManagementPxpComponentConfig.md)
|
|
50
|
+
- [SynchronisedStorageComponentConfig](type-aliases/SynchronisedStorageComponentConfig.md)
|
|
44
51
|
- [TaskSchedulerComponentConfig](type-aliases/TaskSchedulerComponentConfig.md)
|
|
45
52
|
- [TelemetryComponentConfig](type-aliases/TelemetryComponentConfig.md)
|
|
46
53
|
- [TelemetryConnectorConfig](type-aliases/TelemetryConnectorConfig.md)
|
|
@@ -58,6 +65,7 @@
|
|
|
58
65
|
- [DataConverterConnectorType](type-aliases/DataConverterConnectorType.md)
|
|
59
66
|
- [DataExtractorConnectorType](type-aliases/DataExtractorConnectorType.md)
|
|
60
67
|
- [DataProcessingComponentType](type-aliases/DataProcessingComponentType.md)
|
|
68
|
+
- [DataSpaceConnectorComponentType](type-aliases/DataSpaceConnectorComponentType.md)
|
|
61
69
|
- [DltConfigType](type-aliases/DltConfigType.md)
|
|
62
70
|
- [DocumentManagementComponentType](type-aliases/DocumentManagementComponentType.md)
|
|
63
71
|
- [EntityStorageComponentType](type-aliases/EntityStorageComponentType.md)
|
|
@@ -83,6 +91,12 @@
|
|
|
83
91
|
- [NftConnectorType](type-aliases/NftConnectorType.md)
|
|
84
92
|
- [RightsManagementComponentType](type-aliases/RightsManagementComponentType.md)
|
|
85
93
|
- [RightsManagementPapComponentType](type-aliases/RightsManagementPapComponentType.md)
|
|
94
|
+
- [RightsManagementPdpComponentType](type-aliases/RightsManagementPdpComponentType.md)
|
|
95
|
+
- [RightsManagementPepComponentType](type-aliases/RightsManagementPepComponentType.md)
|
|
96
|
+
- [RightsManagementPipComponentType](type-aliases/RightsManagementPipComponentType.md)
|
|
97
|
+
- [RightsManagementPmpComponentType](type-aliases/RightsManagementPmpComponentType.md)
|
|
98
|
+
- [RightsManagementPxpComponentType](type-aliases/RightsManagementPxpComponentType.md)
|
|
99
|
+
- [SynchronisedStorageComponentType](type-aliases/SynchronisedStorageComponentType.md)
|
|
86
100
|
- [TaskSchedulerComponentType](type-aliases/TaskSchedulerComponentType.md)
|
|
87
101
|
- [TelemetryComponentType](type-aliases/TelemetryComponentType.md)
|
|
88
102
|
- [TelemetryConnectorType](type-aliases/TelemetryConnectorType.md)
|
|
@@ -103,6 +117,7 @@
|
|
|
103
117
|
- [DataConverterConnectorType](variables/DataConverterConnectorType.md)
|
|
104
118
|
- [DataExtractorConnectorType](variables/DataExtractorConnectorType.md)
|
|
105
119
|
- [DataProcessingComponentType](variables/DataProcessingComponentType.md)
|
|
120
|
+
- [DataSpaceConnectorComponentType](variables/DataSpaceConnectorComponentType.md)
|
|
106
121
|
- [DltConfigType](variables/DltConfigType.md)
|
|
107
122
|
- [DocumentManagementComponentType](variables/DocumentManagementComponentType.md)
|
|
108
123
|
- [EntityStorageComponentType](variables/EntityStorageComponentType.md)
|
|
@@ -128,6 +143,12 @@
|
|
|
128
143
|
- [NftConnectorType](variables/NftConnectorType.md)
|
|
129
144
|
- [RightsManagementComponentType](variables/RightsManagementComponentType.md)
|
|
130
145
|
- [RightsManagementPapComponentType](variables/RightsManagementPapComponentType.md)
|
|
146
|
+
- [RightsManagementPdpComponentType](variables/RightsManagementPdpComponentType.md)
|
|
147
|
+
- [RightsManagementPepComponentType](variables/RightsManagementPepComponentType.md)
|
|
148
|
+
- [RightsManagementPipComponentType](variables/RightsManagementPipComponentType.md)
|
|
149
|
+
- [RightsManagementPmpComponentType](variables/RightsManagementPmpComponentType.md)
|
|
150
|
+
- [RightsManagementPxpComponentType](variables/RightsManagementPxpComponentType.md)
|
|
151
|
+
- [SynchronisedStorageComponentType](variables/SynchronisedStorageComponentType.md)
|
|
131
152
|
- [TaskSchedulerComponentType](variables/TaskSchedulerComponentType.md)
|
|
132
153
|
- [TelemetryComponentType](variables/TelemetryComponentType.md)
|
|
133
154
|
- [TelemetryConnectorType](variables/TelemetryConnectorType.md)
|
|
@@ -148,6 +169,7 @@
|
|
|
148
169
|
- [initialiseDataConverterConnector](functions/initialiseDataConverterConnector.md)
|
|
149
170
|
- [initialiseDataExtractorConnector](functions/initialiseDataExtractorConnector.md)
|
|
150
171
|
- [initialiseDataProcessingComponent](functions/initialiseDataProcessingComponent.md)
|
|
172
|
+
- [initialiseDataSpaceConnectorComponent](functions/initialiseDataSpaceConnectorComponent.md)
|
|
151
173
|
- [initialiseDocumentManagementComponent](functions/initialiseDocumentManagementComponent.md)
|
|
152
174
|
- [initialiseEntityStorageConnector](functions/initialiseEntityStorageConnector.md)
|
|
153
175
|
- [initialiseEntityStorageComponent](functions/initialiseEntityStorageComponent.md)
|
|
@@ -172,6 +194,12 @@
|
|
|
172
194
|
- [initialiseNftComponent](functions/initialiseNftComponent.md)
|
|
173
195
|
- [initialiseRightsManagementComponent](functions/initialiseRightsManagementComponent.md)
|
|
174
196
|
- [initialiseRightsManagementPapComponent](functions/initialiseRightsManagementPapComponent.md)
|
|
197
|
+
- [initialiseRightsManagementPdpComponent](functions/initialiseRightsManagementPdpComponent.md)
|
|
198
|
+
- [initialiseRightsManagementPepComponent](functions/initialiseRightsManagementPepComponent.md)
|
|
199
|
+
- [initialiseRightsManagementPipComponent](functions/initialiseRightsManagementPipComponent.md)
|
|
200
|
+
- [initialiseRightsManagementPmpComponent](functions/initialiseRightsManagementPmpComponent.md)
|
|
201
|
+
- [initialiseRightsManagementPxpComponent](functions/initialiseRightsManagementPxpComponent.md)
|
|
202
|
+
- [initialiseSynchronisedStorageComponent](functions/initialiseSynchronisedStorageComponent.md)
|
|
175
203
|
- [initialiseTaskSchedulerComponent](functions/initialiseTaskSchedulerComponent.md)
|
|
176
204
|
- [initialiseTelemetryConnector](functions/initialiseTelemetryConnector.md)
|
|
177
205
|
- [initialiseTelemetryComponent](functions/initialiseTelemetryComponent.md)
|
|
@@ -252,12 +252,6 @@ Date processing options which can be overridden by individual components by spec
|
|
|
252
252
|
|
|
253
253
|
Document management options which can be overridden by individual components by specifying types other than default.
|
|
254
254
|
|
|
255
|
-
#### federatedCatalogueComponent?
|
|
256
|
-
|
|
257
|
-
> `optional` **federatedCatalogueComponent**: `IEngineCoreTypeConfig`\<[`FederatedCatalogueComponentConfig`](../type-aliases/FederatedCatalogueComponentConfig.md)\>[]
|
|
258
|
-
|
|
259
|
-
Federated catalogue options which can be overridden by individual components by specifying types other than default.
|
|
260
|
-
|
|
261
255
|
#### rightsManagementComponent?
|
|
262
256
|
|
|
263
257
|
> `optional` **rightsManagementComponent**: `IEngineCoreTypeConfig`\<[`RightsManagementComponentConfig`](../type-aliases/RightsManagementComponentConfig.md)\>[]
|
|
@@ -270,6 +264,54 @@ Rights management options which can be overridden by individual components by sp
|
|
|
270
264
|
|
|
271
265
|
Rights management PAP options which can be overridden by individual components by specifying types other than default.
|
|
272
266
|
|
|
267
|
+
#### rightsManagementPdpComponent?
|
|
268
|
+
|
|
269
|
+
> `optional` **rightsManagementPdpComponent**: `IEngineCoreTypeConfig`\<[`RightsManagementPdpComponentConfig`](../type-aliases/RightsManagementPdpComponentConfig.md)\>[]
|
|
270
|
+
|
|
271
|
+
Rights management PDP options which can be overridden by individual components by specifying types other than default.
|
|
272
|
+
|
|
273
|
+
#### rightsManagementPepComponent?
|
|
274
|
+
|
|
275
|
+
> `optional` **rightsManagementPepComponent**: `IEngineCoreTypeConfig`\<[`RightsManagementPepComponentConfig`](../type-aliases/RightsManagementPepComponentConfig.md)\>[]
|
|
276
|
+
|
|
277
|
+
Rights management PEP options which can be overridden by individual components by specifying types other than default.
|
|
278
|
+
|
|
279
|
+
#### rightsManagementPipComponent?
|
|
280
|
+
|
|
281
|
+
> `optional` **rightsManagementPipComponent**: `IEngineCoreTypeConfig`\<[`RightsManagementPipComponentConfig`](../type-aliases/RightsManagementPipComponentConfig.md)\>[]
|
|
282
|
+
|
|
283
|
+
Rights management PIP options which can be overridden by individual components by specifying types other than default.
|
|
284
|
+
|
|
285
|
+
#### rightsManagementPmpComponent?
|
|
286
|
+
|
|
287
|
+
> `optional` **rightsManagementPmpComponent**: `IEngineCoreTypeConfig`\<[`RightsManagementPmpComponentConfig`](../type-aliases/RightsManagementPmpComponentConfig.md)\>[]
|
|
288
|
+
|
|
289
|
+
Rights management PMP options which can be overridden by individual components by specifying types other than default.
|
|
290
|
+
|
|
291
|
+
#### rightsManagementPxpComponent?
|
|
292
|
+
|
|
293
|
+
> `optional` **rightsManagementPxpComponent**: `IEngineCoreTypeConfig`\<[`RightsManagementPxpComponentConfig`](../type-aliases/RightsManagementPxpComponentConfig.md)\>[]
|
|
294
|
+
|
|
295
|
+
Rights management PXP options which can be overridden by individual components by specifying types other than default.
|
|
296
|
+
|
|
297
|
+
#### synchronisedStorageComponent?
|
|
298
|
+
|
|
299
|
+
> `optional` **synchronisedStorageComponent**: `IEngineCoreTypeConfig`\<[`SynchronisedStorageComponentConfig`](../type-aliases/SynchronisedStorageComponentConfig.md)\>[]
|
|
300
|
+
|
|
301
|
+
Synchronised storage options which can be overridden by individual components by specifying types other than default.
|
|
302
|
+
|
|
303
|
+
#### federatedCatalogueComponent?
|
|
304
|
+
|
|
305
|
+
> `optional` **federatedCatalogueComponent**: `IEngineCoreTypeConfig`\<[`FederatedCatalogueComponentConfig`](../type-aliases/FederatedCatalogueComponentConfig.md)\>[]
|
|
306
|
+
|
|
307
|
+
Federated catalogue options which can be overridden by individual components by specifying types other than default.
|
|
308
|
+
|
|
309
|
+
#### dataSpaceConnectorComponent?
|
|
310
|
+
|
|
311
|
+
> `optional` **dataSpaceConnectorComponent**: `IEngineCoreTypeConfig`\<[`DataSpaceConnectorComponentConfig`](../type-aliases/DataSpaceConnectorComponentConfig.md)\>[]
|
|
312
|
+
|
|
313
|
+
Data space connector options which can be overridden by individual components by specifying types other than default.
|
|
314
|
+
|
|
273
315
|
#### Overrides
|
|
274
316
|
|
|
275
317
|
`IEngineCoreConfig.types`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: AttestationComponentConfig
|
|
2
2
|
|
|
3
|
-
> **AttestationComponentConfig** = `
|
|
3
|
+
> **AttestationComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/AttestationComponentType.md#service); `options?`: `IAttestationServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/AttestationComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Attestation component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/AttestationComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IAttestationServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: AuditableItemGraphComponentConfig
|
|
2
2
|
|
|
3
|
-
> **AuditableItemGraphComponentConfig** = `
|
|
3
|
+
> **AuditableItemGraphComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/AuditableItemGraphComponentType.md#service); `options?`: `IAuditableItemGraphServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/AuditableItemGraphComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Auditable item graph component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/AuditableItemGraphComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IAuditableItemGraphServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: AuditableItemStreamComponentConfig
|
|
2
2
|
|
|
3
|
-
> **AuditableItemStreamComponentConfig** = `
|
|
3
|
+
> **AuditableItemStreamComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/AuditableItemStreamComponentType.md#service); `options?`: `IAuditableItemStreamServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/AuditableItemStreamComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Auditable item stream component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/AuditableItemStreamComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IAuditableItemStreamServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: BlobStorageComponentConfig
|
|
2
2
|
|
|
3
|
-
> **BlobStorageComponentConfig** = `
|
|
3
|
+
> **BlobStorageComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/BlobStorageComponentType.md#service); `options?`: `IBlobStorageServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/BlobStorageComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Blob storage component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/BlobStorageComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IBlobStorageServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: DataProcessingComponentConfig
|
|
2
2
|
|
|
3
|
-
> **DataProcessingComponentConfig** = `
|
|
3
|
+
> **DataProcessingComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/DataProcessingComponentType.md#service); `options?`: `IDataProcessingServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/DataProcessingComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Data processing component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/DataProcessingComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IDataProcessingServiceConstructorOptions`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: DataSpaceConnectorComponentConfig
|
|
2
|
+
|
|
3
|
+
> **DataSpaceConnectorComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/DataSpaceConnectorComponentType.md#service); `options?`: `IDataSpaceConnectorServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/DataSpaceConnectorComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \} \| \{ `type`: *typeof* [`SocketClient`](../variables/DataSpaceConnectorComponentType.md#socketclient); `options`: `IDataSpaceConnectorSocketClientConstructorOptions`; \}
|
|
4
|
+
|
|
5
|
+
Data space connector component config types.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: DataSpaceConnectorComponentType
|
|
2
|
+
|
|
3
|
+
> **DataSpaceConnectorComponentType** = *typeof* [`DataSpaceConnectorComponentType`](../variables/DataSpaceConnectorComponentType.md)\[keyof *typeof* [`DataSpaceConnectorComponentType`](../variables/DataSpaceConnectorComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Data space connector component types.
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: DocumentManagementComponentConfig
|
|
2
2
|
|
|
3
|
-
> **DocumentManagementComponentConfig** = `
|
|
3
|
+
> **DocumentManagementComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/DocumentManagementComponentType.md#service); `options?`: `IDocumentManagementServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/DocumentManagementComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/DocumentManagementComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IDocumentManagementServiceConstructorOptions`
|
|
5
|
+
Document management component config types.
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: EntityStorageComponentConfig
|
|
2
2
|
|
|
3
|
-
> **EntityStorageComponentConfig** = `object
|
|
3
|
+
> **EntityStorageComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/EntityStorageComponentType.md#service); `options`: `IEntityStorageServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/EntityStorageComponentType.md#restclient); `options`: `IBaseRestClientConfig` & `object`; \}
|
|
4
4
|
|
|
5
5
|
Entity storage component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/EntityStorageComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options
|
|
16
|
-
|
|
17
|
-
> **options**: `IEntityStorageServiceConstructorOptions`
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Type Alias: EntityStorageConnectorConfig
|
|
2
2
|
|
|
3
|
-
> **EntityStorageConnectorConfig** = \{ `type`: *typeof* [`File`](../variables/EntityStorageConnectorType.md#file); `options`: `Omit`\<`IFileEntityStorageConnectorConstructorOptions`, `"entitySchema"`\> & `object`; \} \| \{ `type`: *typeof* [`Memory`](../variables/EntityStorageConnectorType.md#memory); `options?`: `never`; \} \| \{ `type`: *typeof* [`AwsDynamoDb`](../variables/EntityStorageConnectorType.md#awsdynamodb); `options`: `Omit`\<`IDynamoDbEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`AzureCosmosDb`](../variables/EntityStorageConnectorType.md#azurecosmosdb); `options`: `Omit`\<`ICosmosDbEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`GcpFirestoreDb`](../variables/EntityStorageConnectorType.md#gcpfirestoredb); `options`: `Omit`\<`IFirestoreEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`ScyllaDb`](../variables/EntityStorageConnectorType.md#scylladb); `options`: `Omit`\<`IScyllaDBTableConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`MySqlDb`](../variables/EntityStorageConnectorType.md#mysqldb); `options`: `Omit`\<`IMySqlEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`MongoDb`](../variables/EntityStorageConnectorType.md#mongodb); `options`: `Omit`\<`IMongoDbEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`PostgreSql`](../variables/EntityStorageConnectorType.md#postgresql); `options`: `Omit`\<`IPostgreSqlEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \}
|
|
3
|
+
> **EntityStorageConnectorConfig** = \{ `type`: *typeof* [`File`](../variables/EntityStorageConnectorType.md#file); `options`: `Omit`\<`IFileEntityStorageConnectorConstructorOptions`, `"entitySchema"`\> & `object`; \} \| \{ `type`: *typeof* [`Memory`](../variables/EntityStorageConnectorType.md#memory); `options?`: `never`; \} \| \{ `type`: *typeof* [`AwsDynamoDb`](../variables/EntityStorageConnectorType.md#awsdynamodb); `options`: `Omit`\<`IDynamoDbEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`AzureCosmosDb`](../variables/EntityStorageConnectorType.md#azurecosmosdb); `options`: `Omit`\<`ICosmosDbEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`GcpFirestoreDb`](../variables/EntityStorageConnectorType.md#gcpfirestoredb); `options`: `Omit`\<`IFirestoreEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`ScyllaDb`](../variables/EntityStorageConnectorType.md#scylladb); `options`: `Omit`\<`IScyllaDBTableConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`MySqlDb`](../variables/EntityStorageConnectorType.md#mysqldb); `options`: `Omit`\<`IMySqlEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`MongoDb`](../variables/EntityStorageConnectorType.md#mongodb); `options`: `Omit`\<`IMongoDbEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`PostgreSql`](../variables/EntityStorageConnectorType.md#postgresql); `options`: `Omit`\<`IPostgreSqlEntityStorageConnectorConstructorOptions`, `"entitySchema"` \| `"config"`\> & `object`; \} \| \{ `type`: *typeof* [`Synchronised`](../variables/EntityStorageConnectorType.md#synchronised); `options`: `Omit`\<`ISynchronisedEntityStorageConnectorConstructorOptions`, `"entitySchema"`\>; \}
|
|
4
4
|
|
|
5
5
|
Entity storage connector config types.
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: EventBusComponentConfig
|
|
2
2
|
|
|
3
|
-
> **EventBusComponentConfig** = `
|
|
3
|
+
> **EventBusComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/EventBusComponentType.md#service); `options?`: `IEventBusServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`SocketClient`](../variables/EventBusComponentType.md#socketclient); `options`: `IEventBusSocketClientConstructorOptions`; \}
|
|
4
4
|
|
|
5
5
|
Event bus storage component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/EventBusComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IEventBusServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: FederatedCatalogueComponentConfig
|
|
2
2
|
|
|
3
|
-
> **FederatedCatalogueComponentConfig** = `
|
|
3
|
+
> **FederatedCatalogueComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/FederatedCatalogueComponentType.md#service); `options`: `IFederatedCatalogueServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/FederatedCatalogueComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Federated catalog component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/FederatedCatalogueComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options
|
|
16
|
-
|
|
17
|
-
> **options**: `IFederatedCatalogueServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: IdentityComponentConfig
|
|
2
2
|
|
|
3
|
-
> **IdentityComponentConfig** = `
|
|
3
|
+
> **IdentityComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/IdentityComponentType.md#service); `options?`: `IIdentityServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/IdentityComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Identity component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/IdentityComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IIdentityServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: IdentityProfileComponentConfig
|
|
2
2
|
|
|
3
|
-
> **IdentityProfileComponentConfig** = `
|
|
3
|
+
> **IdentityProfileComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/IdentityComponentType.md#service); `options?`: `IIdentityProfileServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/IdentityComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Identity profile component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/IdentityComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IIdentityProfileServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: IdentityResolverComponentConfig
|
|
2
2
|
|
|
3
|
-
> **IdentityResolverComponentConfig** = `
|
|
3
|
+
> **IdentityResolverComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/IdentityResolverComponentType.md#service); `options?`: `IIdentityResolverServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/IdentityResolverComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Identity resolver component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/IdentityComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IIdentityResolverServiceConstructorOptions`
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
# Type Alias: ImmutableProofComponentConfig
|
|
2
2
|
|
|
3
|
-
> **ImmutableProofComponentConfig** = `
|
|
3
|
+
> **ImmutableProofComponentConfig** = \{ `type`: *typeof* [`Service`](../variables/ImmutableProofComponentType.md#service); `options?`: `IImmutableProofServiceConstructorOptions`; \} \| \{ `type`: *typeof* [`RestClient`](../variables/ImmutableProofComponentType.md#restclient); `options`: `IBaseRestClientConfig`; \}
|
|
4
4
|
|
|
5
5
|
Immutable proof component config types.
|
|
6
|
-
|
|
7
|
-
## Properties
|
|
8
|
-
|
|
9
|
-
### type
|
|
10
|
-
|
|
11
|
-
> **type**: *typeof* [`Service`](../variables/ImmutableProofComponentType.md#service)
|
|
12
|
-
|
|
13
|
-
***
|
|
14
|
-
|
|
15
|
-
### options?
|
|
16
|
-
|
|
17
|
-
> `optional` **options**: `IImmutableProofServiceConstructorOptions`
|