@twin.org/engine-types 0.0.2-next.2 → 0.0.2-next.20
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 +1310 -1098
- package/dist/esm/index.mjs +1312 -1124
- package/dist/types/components/attestation.d.ts +14 -8
- package/dist/types/components/auditableItemGraph.d.ts +7 -4
- package/dist/types/components/auditableItemStream.d.ts +7 -4
- package/dist/types/components/authenticationGenerator.d.ts +17 -0
- package/dist/types/components/backgroundTask.d.ts +8 -4
- package/dist/types/components/blobStorage.d.ts +14 -8
- package/dist/types/components/dataProcessing.d.ts +20 -12
- package/dist/types/components/dataSpaceConnector.d.ts +16 -0
- package/dist/types/components/documentManagement.d.ts +7 -4
- package/dist/types/components/entityStorage.d.ts +10 -6
- package/dist/types/components/eventBus.d.ts +14 -8
- package/dist/types/components/faucet.d.ts +8 -4
- package/dist/types/components/federatedCatalogue.d.ts +7 -4
- package/dist/types/components/identity.d.ts +14 -8
- package/dist/types/components/identityProfile.d.ts +14 -8
- package/dist/types/components/identityResolver.d.ts +14 -8
- package/dist/types/components/immutableProof.d.ts +7 -4
- package/dist/types/components/logging.d.ts +14 -8
- package/dist/types/components/messaging.d.ts +39 -16
- package/dist/types/components/nft.d.ts +14 -8
- package/dist/types/components/rightsManagementDap.d.ts +16 -0
- package/dist/types/components/rightsManagementDarp.d.ts +16 -0
- package/dist/types/components/rightsManagementPap.d.ts +7 -4
- package/dist/types/components/rightsManagementPdp.d.ts +16 -0
- package/dist/types/components/rightsManagementPep.d.ts +16 -0
- package/dist/types/components/rightsManagementPip.d.ts +16 -0
- package/dist/types/components/rightsManagementPmp.d.ts +16 -0
- package/dist/types/components/rightsManagementPnap.d.ts +16 -0
- package/dist/types/components/rightsManagementPnp.d.ts +16 -0
- package/dist/types/components/rightsManagementPxp.d.ts +16 -0
- package/dist/types/components/synchronisedStorage.d.ts +16 -0
- package/dist/types/components/taskScheduler.d.ts +7 -4
- package/dist/types/components/telemetry.d.ts +14 -8
- package/dist/types/components/vault.d.ts +8 -4
- package/dist/types/components/verifiableStorage.d.ts +14 -8
- package/dist/types/components/wallet.d.ts +8 -14
- package/dist/types/index.d.ts +39 -3
- package/dist/types/models/IEngineConfig.d.ts +67 -7
- package/dist/types/models/config/authenticationGeneratorComponentConfig.d.ts +9 -0
- package/dist/types/models/config/dataSpaceConnectorComponentConfig.d.ts +17 -0
- package/dist/types/models/config/entityStorageConnectorConfig.d.ts +4 -0
- package/dist/types/models/config/messagingAdminComponentConfig.d.ts +9 -0
- package/dist/types/models/config/rightsManagementDapComponentConfig.d.ts +16 -0
- package/dist/types/models/config/rightsManagementDarpComponentConfig.d.ts +12 -0
- package/dist/types/models/config/rightsManagementPapComponentConfig.d.ts +6 -2
- package/dist/types/models/config/rightsManagementPdpComponentConfig.d.ts +12 -0
- package/dist/types/models/config/rightsManagementPepComponentConfig.d.ts +12 -0
- package/dist/types/models/config/rightsManagementPipComponentConfig.d.ts +12 -0
- package/dist/types/models/config/rightsManagementPmpComponentConfig.d.ts +9 -0
- package/dist/types/models/config/rightsManagementPnapComponentConfig.d.ts +13 -0
- package/dist/types/models/config/rightsManagementPnpComponentConfig.d.ts +17 -0
- package/dist/types/models/config/rightsManagementPxpComponentConfig.d.ts +12 -0
- package/dist/types/models/config/synchronisedStorageComponentConfig.d.ts +13 -0
- package/dist/types/models/types/authenticationGeneratorComponentType.d.ts +13 -0
- package/dist/types/models/types/dataSpaceConnectorComponentType.d.ts +21 -0
- package/dist/types/models/types/entityStorageConnectorType.d.ts +4 -0
- package/dist/types/models/types/messagingAdminComponentType.d.ts +13 -0
- package/dist/types/models/types/rightsManagementDapComponentType.d.ts +17 -0
- package/dist/types/models/types/rightsManagementDarpComponentType.d.ts +13 -0
- package/dist/types/models/types/rightsManagementPapComponentType.d.ts +4 -0
- package/dist/types/models/types/rightsManagementPdpComponentType.d.ts +13 -0
- package/dist/types/models/types/rightsManagementPepComponentType.d.ts +17 -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/rightsManagementPnapComponentType.d.ts +17 -0
- package/dist/types/models/types/rightsManagementPnpComponentType.d.ts +17 -0
- package/dist/types/models/types/rightsManagementPxpComponentType.d.ts +13 -0
- package/dist/types/models/types/synchronisedStorageComponentType.d.ts +17 -0
- package/dist/types/utils/engineTypeHelper.d.ts +19 -0
- package/docs/changelog.md +261 -0
- package/docs/reference/classes/EngineTypeHelper.md +61 -0
- package/docs/reference/functions/initialiseAttestationComponent.md +3 -13
- package/docs/reference/functions/initialiseAttestationConnector.md +3 -13
- package/docs/reference/functions/initialiseAuditableItemGraphComponent.md +3 -13
- package/docs/reference/functions/initialiseAuditableItemStreamComponent.md +3 -13
- package/docs/reference/functions/initialiseAuthenticationGeneratorComponent.md +31 -0
- package/docs/reference/functions/initialiseBackgroundTaskConnector.md +3 -13
- package/docs/reference/functions/initialiseBlobStorageComponent.md +3 -13
- package/docs/reference/functions/initialiseBlobStorageConnector.md +3 -13
- package/docs/reference/functions/initialiseDataConverterConnector.md +3 -13
- package/docs/reference/functions/initialiseDataExtractorConnector.md +3 -13
- package/docs/reference/functions/initialiseDataProcessingComponent.md +3 -13
- package/docs/reference/functions/initialiseDataSpaceConnectorComponent.md +31 -0
- package/docs/reference/functions/initialiseDocumentManagementComponent.md +3 -13
- package/docs/reference/functions/initialiseEntityStorageComponent.md +3 -13
- package/docs/reference/functions/initialiseEntityStorageConnector.md +5 -3
- package/docs/reference/functions/initialiseEventBusComponent.md +3 -13
- package/docs/reference/functions/initialiseEventBusConnector.md +3 -13
- package/docs/reference/functions/initialiseFaucetConnector.md +3 -13
- package/docs/reference/functions/initialiseFederatedCatalogueComponent.md +3 -13
- package/docs/reference/functions/initialiseIdentityComponent.md +3 -13
- package/docs/reference/functions/initialiseIdentityConnector.md +3 -13
- package/docs/reference/functions/initialiseIdentityProfileComponent.md +3 -13
- package/docs/reference/functions/initialiseIdentityProfileConnector.md +3 -13
- package/docs/reference/functions/initialiseIdentityResolverComponent.md +3 -13
- package/docs/reference/functions/initialiseIdentityResolverConnector.md +3 -13
- package/docs/reference/functions/initialiseImmutableProofComponent.md +3 -13
- package/docs/reference/functions/initialiseLoggingComponent.md +3 -13
- package/docs/reference/functions/initialiseLoggingConnector.md +3 -13
- package/docs/reference/functions/initialiseMessagingAdminComponent.md +31 -0
- package/docs/reference/functions/initialiseMessagingComponent.md +3 -13
- package/docs/reference/functions/initialiseMessagingEmailConnector.md +3 -13
- package/docs/reference/functions/initialiseMessagingPushNotificationConnector.md +3 -13
- package/docs/reference/functions/initialiseMessagingSmsConnector.md +3 -13
- package/docs/reference/functions/initialiseNftComponent.md +3 -13
- package/docs/reference/functions/initialiseNftConnector.md +3 -13
- package/docs/reference/functions/initialiseRightsManagementDapComponent.md +31 -0
- package/docs/reference/functions/initialiseRightsManagementDarpComponent.md +31 -0
- package/docs/reference/functions/initialiseRightsManagementPapComponent.md +3 -13
- package/docs/reference/functions/initialiseRightsManagementPdpComponent.md +31 -0
- package/docs/reference/functions/initialiseRightsManagementPepComponent.md +31 -0
- package/docs/reference/functions/initialiseRightsManagementPipComponent.md +31 -0
- package/docs/reference/functions/initialiseRightsManagementPmpComponent.md +31 -0
- package/docs/reference/functions/initialiseRightsManagementPnapComponent.md +31 -0
- package/docs/reference/functions/initialiseRightsManagementPnpComponent.md +31 -0
- package/docs/reference/functions/initialiseRightsManagementPxpComponent.md +31 -0
- package/docs/reference/functions/initialiseSynchronisedStorageComponent.md +31 -0
- package/docs/reference/functions/initialiseTaskSchedulerComponent.md +3 -13
- package/docs/reference/functions/initialiseTelemetryComponent.md +3 -13
- package/docs/reference/functions/initialiseTelemetryConnector.md +3 -13
- package/docs/reference/functions/initialiseVaultConnector.md +3 -13
- package/docs/reference/functions/initialiseVerifiableStorageComponent.md +3 -13
- package/docs/reference/functions/initialiseVerifiableStorageConnector.md +3 -13
- package/docs/reference/functions/initialiseWalletConnector.md +3 -13
- package/docs/reference/index.md +56 -5
- package/docs/reference/interfaces/IEngineConfig.md +81 -9
- package/docs/reference/type-aliases/AuthenticationGeneratorComponentConfig.md +17 -0
- package/docs/reference/type-aliases/AuthenticationGeneratorComponentType.md +5 -0
- package/docs/reference/type-aliases/DataSpaceConnectorComponentConfig.md +5 -0
- package/docs/reference/type-aliases/DataSpaceConnectorComponentType.md +5 -0
- package/docs/reference/type-aliases/EntityStorageConnectorConfig.md +1 -1
- package/docs/reference/type-aliases/MessagingAdminComponentConfig.md +17 -0
- package/docs/reference/type-aliases/MessagingAdminComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementDapComponentConfig.md +5 -0
- package/docs/reference/type-aliases/RightsManagementDapComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementDarpComponentConfig.md +23 -0
- package/docs/reference/type-aliases/RightsManagementDarpComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPapComponentConfig.md +1 -13
- package/docs/reference/type-aliases/RightsManagementPdpComponentConfig.md +23 -0
- package/docs/reference/type-aliases/RightsManagementPdpComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPepComponentConfig.md +23 -0
- package/docs/reference/type-aliases/RightsManagementPepComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPipComponentConfig.md +23 -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/RightsManagementPnapComponentConfig.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPnapComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPnpComponentConfig.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPnpComponentType.md +5 -0
- package/docs/reference/type-aliases/RightsManagementPxpComponentConfig.md +23 -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/variables/AttestationComponentType.md +1 -1
- package/docs/reference/variables/AttestationConnectorType.md +1 -1
- package/docs/reference/variables/AuditableItemGraphComponentType.md +1 -1
- package/docs/reference/variables/AuditableItemStreamComponentType.md +1 -1
- package/docs/reference/variables/AuthenticationGeneratorComponentType.md +13 -0
- package/docs/reference/variables/BackgroundTaskConnectorType.md +1 -1
- package/docs/reference/variables/BlobStorageComponentType.md +1 -1
- package/docs/reference/variables/BlobStorageConnectorType.md +1 -1
- package/docs/reference/variables/DataConverterConnectorType.md +1 -1
- package/docs/reference/variables/DataExtractorConnectorType.md +1 -1
- package/docs/reference/variables/DataProcessingComponentType.md +1 -1
- package/docs/reference/variables/DataSpaceConnectorComponentType.md +25 -0
- package/docs/reference/variables/DltConfigType.md +1 -1
- package/docs/reference/variables/DocumentManagementComponentType.md +1 -1
- package/docs/reference/variables/EntityStorageComponentType.md +1 -1
- package/docs/reference/variables/EntityStorageConnectorType.md +7 -1
- package/docs/reference/variables/EventBusComponentType.md +1 -1
- package/docs/reference/variables/EventBusConnectorType.md +1 -1
- package/docs/reference/variables/FaucetConnectorType.md +1 -1
- package/docs/reference/variables/FederatedCatalogueComponentType.md +1 -1
- package/docs/reference/variables/IdentityComponentType.md +1 -1
- package/docs/reference/variables/IdentityConnectorType.md +1 -1
- package/docs/reference/variables/IdentityProfileComponentType.md +1 -1
- package/docs/reference/variables/IdentityProfileConnectorType.md +1 -1
- package/docs/reference/variables/IdentityResolverComponentType.md +1 -1
- package/docs/reference/variables/IdentityResolverConnectorType.md +1 -1
- package/docs/reference/variables/ImmutableProofComponentType.md +1 -1
- package/docs/reference/variables/LoggingComponentType.md +1 -1
- package/docs/reference/variables/LoggingConnectorType.md +1 -1
- package/docs/reference/variables/MessagingAdminComponentType.md +13 -0
- package/docs/reference/variables/MessagingComponentType.md +1 -1
- package/docs/reference/variables/MessagingEmailConnectorType.md +1 -1
- package/docs/reference/variables/MessagingPushNotificationConnectorType.md +1 -1
- package/docs/reference/variables/MessagingSmsConnectorType.md +1 -1
- package/docs/reference/variables/NftComponentType.md +1 -1
- package/docs/reference/variables/NftConnectorType.md +1 -1
- package/docs/reference/variables/RightsManagementDapComponentType.md +19 -0
- package/docs/reference/variables/RightsManagementDarpComponentType.md +13 -0
- package/docs/reference/variables/RightsManagementPapComponentType.md +7 -1
- package/docs/reference/variables/RightsManagementPdpComponentType.md +13 -0
- package/docs/reference/variables/RightsManagementPepComponentType.md +19 -0
- package/docs/reference/variables/RightsManagementPipComponentType.md +13 -0
- package/docs/reference/variables/RightsManagementPmpComponentType.md +13 -0
- package/docs/reference/variables/RightsManagementPnapComponentType.md +19 -0
- package/docs/reference/variables/RightsManagementPnpComponentType.md +19 -0
- package/docs/reference/variables/RightsManagementPxpComponentType.md +13 -0
- package/docs/reference/variables/{RightsManagementComponentType.md → SynchronisedStorageComponentType.md} +4 -4
- package/docs/reference/variables/TaskSchedulerComponentType.md +1 -1
- package/docs/reference/variables/TelemetryComponentType.md +1 -1
- package/docs/reference/variables/TelemetryConnectorType.md +1 -1
- package/docs/reference/variables/VaultConnectorType.md +1 -1
- package/docs/reference/variables/VerifiableStorageComponentType.md +1 -1
- package/docs/reference/variables/VerifiableStorageConnectorType.md +1 -1
- package/docs/reference/variables/WalletConnectorType.md +1 -1
- package/package.json +28 -2
- package/dist/types/components/rightsManagement.d.ts +0 -13
- package/dist/types/models/config/rightsManagementComponentConfig.d.ts +0 -13
- package/dist/types/models/types/rightsManagementComponentType.d.ts +0 -17
- package/docs/reference/functions/initialiseRightsManagementComponent.md +0 -41
- package/docs/reference/functions/initialiseWalletStorage.md +0 -41
- package/docs/reference/type-aliases/RightsManagementComponentConfig.md +0 -5
- package/docs/reference/type-aliases/RightsManagementComponentType.md +0 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseDocumentManagementComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseDocumentManagementComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseDocumentManagementComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the document management component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseEntityStorageComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseEntityStorageComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseEntityStorageComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the entity storage connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseEntityStorageConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseEntityStorageConnector**(`engineCore`, `context`, `typeCustom`, `schema`): `
|
|
3
|
+
> **initialiseEntityStorageConnector**(`engineCore`, `context`, `typeCustom`, `schema`): `string`
|
|
4
4
|
|
|
5
5
|
Initialise the entity storage connector.
|
|
6
6
|
|
|
@@ -32,8 +32,10 @@ The schema for the entity storage.
|
|
|
32
32
|
|
|
33
33
|
## Returns
|
|
34
34
|
|
|
35
|
-
`
|
|
35
|
+
`string`
|
|
36
|
+
|
|
37
|
+
The name of the instance type that was created.
|
|
36
38
|
|
|
37
39
|
## Throws
|
|
38
40
|
|
|
39
|
-
GeneralError
|
|
41
|
+
GeneralError when the configuration is invalid.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseEventBusComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseEventBusComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseEventBusComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the event bus component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseEventBusConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseEventBusConnector**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseEventBusConnector**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IEventBusConnector`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise a event bus connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IEventBusConnector`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseFaucetConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseFaucetConnector**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseFaucetConnector**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IFaucetConnector`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise a faucet connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IFaucetConnector`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseFederatedCatalogueComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseFederatedCatalogueComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseFederatedCatalogueComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the federated catalogue component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseIdentityComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseIdentityComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseIdentityComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the identity component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseIdentityConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseIdentityConnector**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseIdentityConnector**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IIdentityConnector`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the identity connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IIdentityConnector`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseIdentityProfileComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseIdentityProfileComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseIdentityProfileComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the identity profile component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseIdentityProfileConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseIdentityProfileConnector**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseIdentityProfileConnector**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IIdentityProfileConnector`\<`IJsonLdDocument`, `IJsonLdDocument`\>\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the identity profile connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IIdentityProfileConnector`\<`IJsonLdDocument`, `IJsonLdDocument`\>\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseIdentityResolverComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseIdentityResolverComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseIdentityResolverComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the identity resolver component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseIdentityResolverConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseIdentityResolverConnector**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseIdentityResolverConnector**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IIdentityResolverConnector`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the identity resolver connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IIdentityResolverConnector`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseImmutableProofComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseImmutableProofComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseImmutableProofComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the immutable proof component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseLoggingComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseLoggingComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseLoggingComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the logging component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseLoggingConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseLoggingConnector**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseLoggingConnector**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`ILoggingConnector`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the logging connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The engine core context.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`ILoggingConnector`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Function: initialiseMessagingAdminComponent()
|
|
2
|
+
|
|
3
|
+
> **initialiseMessagingAdminComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
|
+
|
|
5
|
+
Initialise the messaging admin 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
|
+
[`MessagingAdminComponentConfig`](../type-aliases/MessagingAdminComponentConfig.md)
|
|
24
|
+
|
|
25
|
+
The instance config.
|
|
26
|
+
|
|
27
|
+
## Returns
|
|
28
|
+
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
30
|
+
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseMessagingComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseMessagingComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseMessagingComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the messaging component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseMessagingEmailConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseMessagingEmailConnector**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseMessagingEmailConnector**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IMessagingEmailConnector`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise a messaging email connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IMessagingEmailConnector`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseMessagingPushNotificationConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseMessagingPushNotificationConnector**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseMessagingPushNotificationConnector**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IMessagingPushNotificationsConnector`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise a messaging push notification connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IMessagingPushNotificationsConnector`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseMessagingSmsConnector()
|
|
2
2
|
|
|
3
|
-
> **initialiseMessagingSmsConnector**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseMessagingSmsConnector**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IMessagingSmsConnector`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise a messaging sms connector.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IMessagingSmsConnector`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Function: initialiseNftComponent()
|
|
2
2
|
|
|
3
|
-
> **initialiseNftComponent**(`engineCore`, `context`, `instanceConfig
|
|
3
|
+
> **initialiseNftComponent**(`engineCore`, `context`, `instanceConfig`): `Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
4
4
|
|
|
5
5
|
Initialise the NFT component.
|
|
6
6
|
|
|
@@ -24,18 +24,8 @@ The context for the engine.
|
|
|
24
24
|
|
|
25
25
|
The instance config.
|
|
26
26
|
|
|
27
|
-
### overrideInstanceType?
|
|
28
|
-
|
|
29
|
-
`string`
|
|
30
|
-
|
|
31
|
-
The instance type to override the default.
|
|
32
|
-
|
|
33
27
|
## Returns
|
|
34
28
|
|
|
35
|
-
`
|
|
36
|
-
|
|
37
|
-
The name of the instance created.
|
|
38
|
-
|
|
39
|
-
## Throws
|
|
29
|
+
`Promise`\<\{ `instanceType?`: `string`; `factory?`: `Factory`\<`IComponent`\>; `component?`: `IComponent`; \}\>
|
|
40
30
|
|
|
41
|
-
|
|
31
|
+
The instance created and the factory for it.
|