@twin.org/engine-types 0.0.1-next.14
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/LICENSE +201 -0
- package/README.md +21 -0
- package/dist/cjs/index.cjs +1640 -0
- package/dist/esm/index.mjs +1589 -0
- package/dist/types/components/attestation.d.ts +24 -0
- package/dist/types/components/auditableItemGraph.d.ts +13 -0
- package/dist/types/components/auditableItemStream.d.ts +13 -0
- package/dist/types/components/backgroundTask.d.ts +13 -0
- package/dist/types/components/blobStorage.d.ts +24 -0
- package/dist/types/components/entityStorage.d.ts +22 -0
- package/dist/types/components/faucet.d.ts +13 -0
- package/dist/types/components/identity.d.ts +24 -0
- package/dist/types/components/identityProfile.d.ts +24 -0
- package/dist/types/components/immutableProof.d.ts +13 -0
- package/dist/types/components/immutableStorage.d.ts +13 -0
- package/dist/types/components/logging.d.ts +24 -0
- package/dist/types/components/nft.d.ts +24 -0
- package/dist/types/components/telemetry.d.ts +24 -0
- package/dist/types/components/vault.d.ts +13 -0
- package/dist/types/components/wallet.d.ts +23 -0
- package/dist/types/index.d.ts +67 -0
- package/dist/types/models/IEngineCoreTypesConfig.d.ts +137 -0
- package/dist/types/models/config/attestationComponentConfig.d.ts +12 -0
- package/dist/types/models/config/attestationConnectorConfig.d.ts +21 -0
- package/dist/types/models/config/auditableItemGraphComponentConfig.d.ts +14 -0
- package/dist/types/models/config/auditableItemStreamComponentConfig.d.ts +14 -0
- package/dist/types/models/config/backgroundTaskConnectorConfig.d.ts +13 -0
- package/dist/types/models/config/blobStorageComponentConfig.d.ts +13 -0
- package/dist/types/models/config/blobStorageConnectorConfig.d.ts +42 -0
- package/dist/types/models/config/dltConfig.d.ts +11 -0
- package/dist/types/models/config/entityStorageComponentConfig.d.ts +12 -0
- package/dist/types/models/config/entityStorageConnectorConfig.d.ts +47 -0
- package/dist/types/models/config/faucetConnectorConfig.d.ts +18 -0
- package/dist/types/models/config/identityComponentConfig.d.ts +11 -0
- package/dist/types/models/config/identityConnectorConfig.d.ts +18 -0
- package/dist/types/models/config/identityProfileComponentConfig.d.ts +10 -0
- package/dist/types/models/config/identityProfileConnectorConfig.d.ts +10 -0
- package/dist/types/models/config/immutableProofComponentConfig.d.ts +16 -0
- package/dist/types/models/config/immutableStorageConnectorConfig.d.ts +17 -0
- package/dist/types/models/config/loggingComponentConfig.d.ts +10 -0
- package/dist/types/models/config/loggingConnectorConfig.d.ts +25 -0
- package/dist/types/models/config/nftComponentConfig.d.ts +11 -0
- package/dist/types/models/config/nftConnectorConfig.d.ts +17 -0
- package/dist/types/models/config/telemetryComponentConfig.d.ts +10 -0
- package/dist/types/models/config/telemetryConnectorConfig.d.ts +12 -0
- package/dist/types/models/config/vaultConnectorConfig.d.ts +17 -0
- package/dist/types/models/config/walletConnectorConfig.d.ts +22 -0
- package/dist/types/models/types/attestationComponentType.d.ts +13 -0
- package/dist/types/models/types/attestationConnectorType.d.ts +17 -0
- package/dist/types/models/types/auditableItemGraphComponentType.d.ts +13 -0
- package/dist/types/models/types/auditableItemStreamComponentType.d.ts +13 -0
- package/dist/types/models/types/backgroundTaskConnectorType.d.ts +13 -0
- package/dist/types/models/types/blobStorageComponentType.d.ts +13 -0
- package/dist/types/models/types/blobStorageConnectorType.d.ts +33 -0
- package/dist/types/models/types/dltConfigType.d.ts +13 -0
- package/dist/types/models/types/entityStorageComponentType.d.ts +13 -0
- package/dist/types/models/types/entityStorageConnectorType.d.ts +33 -0
- package/dist/types/models/types/faucetConnectorType.d.ts +17 -0
- package/dist/types/models/types/identityComponentType.d.ts +13 -0
- package/dist/types/models/types/identityConnectorType.d.ts +17 -0
- package/dist/types/models/types/identityProfileComponentType.d.ts +13 -0
- package/dist/types/models/types/identityProfileConnectorType.d.ts +13 -0
- package/dist/types/models/types/immutableProofComponentType.d.ts +13 -0
- package/dist/types/models/types/immutableStorageConnectorType.d.ts +17 -0
- package/dist/types/models/types/loggingComponentType.d.ts +13 -0
- package/dist/types/models/types/loggingConnectorType.d.ts +21 -0
- package/dist/types/models/types/nftComponentType.d.ts +13 -0
- package/dist/types/models/types/nftConnectorType.d.ts +17 -0
- package/dist/types/models/types/telemetryComponentType.d.ts +13 -0
- package/dist/types/models/types/telemetryConnectorType.d.ts +13 -0
- package/dist/types/models/types/vaultConnectorType.d.ts +17 -0
- package/dist/types/models/types/walletConnectorType.d.ts +17 -0
- package/docs/changelog.md +5 -0
- package/docs/examples.md +1 -0
- package/docs/reference/functions/initialiseAttestationComponent.md +33 -0
- package/docs/reference/functions/initialiseAttestationConnector.md +33 -0
- package/docs/reference/functions/initialiseAuditableItemGraphComponent.md +33 -0
- package/docs/reference/functions/initialiseAuditableItemStreamComponent.md +33 -0
- package/docs/reference/functions/initialiseBackgroundTaskConnector.md +33 -0
- package/docs/reference/functions/initialiseBlobStorageComponent.md +33 -0
- package/docs/reference/functions/initialiseBlobStorageConnector.md +33 -0
- package/docs/reference/functions/initialiseEntityStorageComponent.md +33 -0
- package/docs/reference/functions/initialiseEntityStorageConnector.md +31 -0
- package/docs/reference/functions/initialiseFaucetConnector.md +33 -0
- package/docs/reference/functions/initialiseIdentityComponent.md +33 -0
- package/docs/reference/functions/initialiseIdentityConnector.md +33 -0
- package/docs/reference/functions/initialiseIdentityProfileComponent.md +33 -0
- package/docs/reference/functions/initialiseIdentityProfileConnector.md +33 -0
- package/docs/reference/functions/initialiseImmutableProofComponent.md +33 -0
- package/docs/reference/functions/initialiseImmutableStorageConnector.md +33 -0
- package/docs/reference/functions/initialiseLoggingComponent.md +33 -0
- package/docs/reference/functions/initialiseLoggingConnector.md +33 -0
- package/docs/reference/functions/initialiseNftComponent.md +33 -0
- package/docs/reference/functions/initialiseNftConnector.md +33 -0
- package/docs/reference/functions/initialiseTelemetryComponent.md +33 -0
- package/docs/reference/functions/initialiseTelemetryConnector.md +33 -0
- package/docs/reference/functions/initialiseVaultConnector.md +33 -0
- package/docs/reference/functions/initialiseWalletConnector.md +33 -0
- package/docs/reference/functions/initialiseWalletStorage.md +33 -0
- package/docs/reference/index.md +114 -0
- package/docs/reference/interfaces/IEngineCoreTypesConfig.md +173 -0
- package/docs/reference/type-aliases/AttestationComponentConfig.md +23 -0
- package/docs/reference/type-aliases/AttestationComponentType.md +5 -0
- package/docs/reference/type-aliases/AttestationConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/AttestationConnectorType.md +5 -0
- package/docs/reference/type-aliases/AuditableItemGraphComponentConfig.md +31 -0
- package/docs/reference/type-aliases/AuditableItemGraphComponentType.md +5 -0
- package/docs/reference/type-aliases/AuditableItemStreamComponentConfig.md +31 -0
- package/docs/reference/type-aliases/AuditableItemStreamComponentType.md +5 -0
- package/docs/reference/type-aliases/BackgroundTaskConnectorConfig.md +27 -0
- package/docs/reference/type-aliases/BackgroundTaskConnectorType.md +5 -0
- package/docs/reference/type-aliases/BlobStorageComponentConfig.md +27 -0
- package/docs/reference/type-aliases/BlobStorageComponentType.md +5 -0
- package/docs/reference/type-aliases/BlobStorageConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/BlobStorageConnectorType.md +5 -0
- package/docs/reference/type-aliases/DltConfig.md +19 -0
- package/docs/reference/type-aliases/DltConfigType.md +5 -0
- package/docs/reference/type-aliases/EntityStorageComponentConfig.md +23 -0
- package/docs/reference/type-aliases/EntityStorageComponentType.md +5 -0
- package/docs/reference/type-aliases/EntityStorageConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/EntityStorageConnectorType.md +5 -0
- package/docs/reference/type-aliases/FaucetConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/FaucetConnectorType.md +5 -0
- package/docs/reference/type-aliases/IImmutableProofComponentType.md +5 -0
- package/docs/reference/type-aliases/IdentityComponentConfig.md +19 -0
- package/docs/reference/type-aliases/IdentityComponentType.md +5 -0
- package/docs/reference/type-aliases/IdentityConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/IdentityConnectorType.md +5 -0
- package/docs/reference/type-aliases/IdentityProfileComponentConfig.md +19 -0
- package/docs/reference/type-aliases/IdentityProfileComponentType.md +5 -0
- package/docs/reference/type-aliases/IdentityProfileConnectorConfig.md +19 -0
- package/docs/reference/type-aliases/IdentityProfileConnectorType.md +5 -0
- package/docs/reference/type-aliases/ImmutableProofComponentConfig.md +39 -0
- package/docs/reference/type-aliases/ImmutableStorageConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/ImmutableStorageConnectorType.md +5 -0
- package/docs/reference/type-aliases/LoggingComponentConfig.md +19 -0
- package/docs/reference/type-aliases/LoggingComponentType.md +5 -0
- package/docs/reference/type-aliases/LoggingConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/LoggingConnectorType.md +5 -0
- package/docs/reference/type-aliases/NftComponentConfig.md +19 -0
- package/docs/reference/type-aliases/NftComponentType.md +5 -0
- package/docs/reference/type-aliases/NftConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/NftConnectorType.md +5 -0
- package/docs/reference/type-aliases/TelemetryComponentConfig.md +19 -0
- package/docs/reference/type-aliases/TelemetryComponentType.md +5 -0
- package/docs/reference/type-aliases/TelemetryConnectorConfig.md +27 -0
- package/docs/reference/type-aliases/TelemetryConnectorType.md +5 -0
- package/docs/reference/type-aliases/VaultConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/VaultConnectorType.md +5 -0
- package/docs/reference/type-aliases/WalletConnectorConfig.md +5 -0
- package/docs/reference/type-aliases/WalletConnectorType.md +5 -0
- package/docs/reference/variables/AttestationComponentType.md +13 -0
- package/docs/reference/variables/AttestationConnectorType.md +19 -0
- package/docs/reference/variables/AuditableItemGraphComponentType.md +13 -0
- package/docs/reference/variables/AuditableItemStreamComponentType.md +13 -0
- package/docs/reference/variables/BackgroundTaskConnectorType.md +13 -0
- package/docs/reference/variables/BlobStorageComponentType.md +13 -0
- package/docs/reference/variables/BlobStorageConnectorType.md +43 -0
- package/docs/reference/variables/DltConfigType.md +13 -0
- package/docs/reference/variables/EntityStorageComponentType.md +13 -0
- package/docs/reference/variables/EntityStorageConnectorType.md +43 -0
- package/docs/reference/variables/FaucetConnectorType.md +19 -0
- package/docs/reference/variables/IdentityComponentType.md +13 -0
- package/docs/reference/variables/IdentityConnectorType.md +19 -0
- package/docs/reference/variables/IdentityProfileComponentType.md +13 -0
- package/docs/reference/variables/IdentityProfileConnectorType.md +13 -0
- package/docs/reference/variables/ImmutableProofComponentType.md +13 -0
- package/docs/reference/variables/ImmutableStorageConnectorType.md +19 -0
- package/docs/reference/variables/LoggingComponentType.md +13 -0
- package/docs/reference/variables/LoggingConnectorType.md +25 -0
- package/docs/reference/variables/NftComponentType.md +13 -0
- package/docs/reference/variables/NftConnectorType.md +19 -0
- package/docs/reference/variables/TelemetryComponentType.md +13 -0
- package/docs/reference/variables/TelemetryConnectorType.md +13 -0
- package/docs/reference/variables/VaultConnectorType.md +19 -0
- package/docs/reference/variables/WalletConnectorType.md +19 -0
- package/locales/en.json +1 -0
- package/package.json +91 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Type Alias: AuditableItemGraphComponentConfig
|
|
2
|
+
|
|
3
|
+
> **AuditableItemGraphComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Auditable item graph component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `AuditableItemGraphComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.immutableProofComponentType?
|
|
18
|
+
|
|
19
|
+
> `optional` **immutableProofComponentType**: `string`
|
|
20
|
+
|
|
21
|
+
### options.vertexEntityStorageType?
|
|
22
|
+
|
|
23
|
+
> `optional` **vertexEntityStorageType**: `string`
|
|
24
|
+
|
|
25
|
+
### options.changesetEntityStorageType?
|
|
26
|
+
|
|
27
|
+
> `optional` **changesetEntityStorageType**: `string`
|
|
28
|
+
|
|
29
|
+
### options.config?
|
|
30
|
+
|
|
31
|
+
> `optional` **config**: `IAuditableItemGraphServiceConfig`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: AuditableItemGraphComponentType
|
|
2
|
+
|
|
3
|
+
> **AuditableItemGraphComponentType**: *typeof* [`AuditableItemGraphComponentType`](../variables/AuditableItemGraphComponentType.md)\[keyof *typeof* [`AuditableItemGraphComponentType`](../variables/AuditableItemGraphComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Auditable item graph component types.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Type Alias: AuditableItemStreamComponentConfig
|
|
2
|
+
|
|
3
|
+
> **AuditableItemStreamComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Auditable item stream component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `AuditableItemStreamComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.immutableProofComponentType?
|
|
18
|
+
|
|
19
|
+
> `optional` **immutableProofComponentType**: `string`
|
|
20
|
+
|
|
21
|
+
### options.streamEntityStorageType?
|
|
22
|
+
|
|
23
|
+
> `optional` **streamEntityStorageType**: `string`
|
|
24
|
+
|
|
25
|
+
### options.streamEntryEntityStorageType?
|
|
26
|
+
|
|
27
|
+
> `optional` **streamEntryEntityStorageType**: `string`
|
|
28
|
+
|
|
29
|
+
### options.config?
|
|
30
|
+
|
|
31
|
+
> `optional` **config**: `IAuditableItemStreamServiceConfig`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: AuditableItemStreamComponentType
|
|
2
|
+
|
|
3
|
+
> **AuditableItemStreamComponentType**: *typeof* [`AuditableItemStreamComponentType`](../variables/AuditableItemStreamComponentType.md)\[keyof *typeof* [`AuditableItemStreamComponentType`](../variables/AuditableItemStreamComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Auditable item stream component types.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Type Alias: BackgroundTaskConnectorConfig
|
|
2
|
+
|
|
3
|
+
> **BackgroundTaskConnectorConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Background task connector config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `BackgroundTaskConnectorType.EntityStorage`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.backgroundTaskEntityStorageType?
|
|
18
|
+
|
|
19
|
+
> `optional` **backgroundTaskEntityStorageType**: `string`
|
|
20
|
+
|
|
21
|
+
### options.loggingConnectorType?
|
|
22
|
+
|
|
23
|
+
> `optional` **loggingConnectorType**: `string`
|
|
24
|
+
|
|
25
|
+
### options.config?
|
|
26
|
+
|
|
27
|
+
> `optional` **config**: `IEntityStorageBackgroundTaskConnectorConfig`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: BackgroundTaskConnectorType
|
|
2
|
+
|
|
3
|
+
> **BackgroundTaskConnectorType**: *typeof* [`BackgroundTaskConnectorType`](../variables/BackgroundTaskConnectorType.md)\[keyof *typeof* [`BackgroundTaskConnectorType`](../variables/BackgroundTaskConnectorType.md)\]
|
|
4
|
+
|
|
5
|
+
Background task connector types.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Type Alias: BlobStorageComponentConfig
|
|
2
|
+
|
|
3
|
+
> **BlobStorageComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Blob storage component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `BlobStorageComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.entryEntityStorageType?
|
|
18
|
+
|
|
19
|
+
> `optional` **entryEntityStorageType**: `string`
|
|
20
|
+
|
|
21
|
+
### options.vaultConnectorType?
|
|
22
|
+
|
|
23
|
+
> `optional` **vaultConnectorType**: `string`
|
|
24
|
+
|
|
25
|
+
### options.config?
|
|
26
|
+
|
|
27
|
+
> `optional` **config**: `IBlobStorageServiceConfig`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: BlobStorageComponentType
|
|
2
|
+
|
|
3
|
+
> **BlobStorageComponentType**: *typeof* [`BlobStorageComponentType`](../variables/BlobStorageComponentType.md)\[keyof *typeof* [`BlobStorageComponentType`](../variables/BlobStorageComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Blob storage component types.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: BlobStorageConnectorType
|
|
2
|
+
|
|
3
|
+
> **BlobStorageConnectorType**: *typeof* [`BlobStorageConnectorType`](../variables/BlobStorageConnectorType.md)\[keyof *typeof* [`BlobStorageConnectorType`](../variables/BlobStorageConnectorType.md)\]
|
|
4
|
+
|
|
5
|
+
Blob storage connector types.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Type Alias: DltConfig
|
|
2
|
+
|
|
3
|
+
> **DltConfig**: `object`
|
|
4
|
+
|
|
5
|
+
DLT config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `DltConfigType.Iota`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.config?
|
|
18
|
+
|
|
19
|
+
> `optional` **config**: `IIotaConfig`
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Type Alias: EntityStorageComponentConfig
|
|
2
|
+
|
|
3
|
+
> **EntityStorageComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Entity storage component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `EntityStorageComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options
|
|
14
|
+
|
|
15
|
+
> **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.entityStorageType
|
|
18
|
+
|
|
19
|
+
> **entityStorageType**: `string`
|
|
20
|
+
|
|
21
|
+
### options.config?
|
|
22
|
+
|
|
23
|
+
> `optional` **config**: `IEntityStorageConfig`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: EntityStorageComponentType
|
|
2
|
+
|
|
3
|
+
> **EntityStorageComponentType**: *typeof* [`EntityStorageComponentType`](../variables/EntityStorageComponentType.md)\[keyof *typeof* [`EntityStorageComponentType`](../variables/EntityStorageComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Entity storage component types.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: EntityStorageConnectorType
|
|
2
|
+
|
|
3
|
+
> **EntityStorageConnectorType**: *typeof* [`EntityStorageConnectorType`](../variables/EntityStorageConnectorType.md)\[keyof *typeof* [`EntityStorageConnectorType`](../variables/EntityStorageConnectorType.md)\]
|
|
4
|
+
|
|
5
|
+
Entity storage connector types.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: IImmutableProofComponentType
|
|
2
|
+
|
|
3
|
+
> **IImmutableProofComponentType**: *typeof* [`ImmutableProofComponentType`](../variables/ImmutableProofComponentType.md)\[keyof *typeof* [`ImmutableProofComponentType`](../variables/ImmutableProofComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Immutable proof component types.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Type Alias: IdentityComponentConfig
|
|
2
|
+
|
|
3
|
+
> **IdentityComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Identity component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `IdentityComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.config?
|
|
18
|
+
|
|
19
|
+
> `optional` **config**: `IIdentityServiceConfig`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Type Alias: IdentityProfileComponentConfig
|
|
2
|
+
|
|
3
|
+
> **IdentityProfileComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Identity profile component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `IdentityComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.profileEntityConnectorType?
|
|
18
|
+
|
|
19
|
+
> `optional` **profileEntityConnectorType**: `string`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: IdentityProfileComponentType
|
|
2
|
+
|
|
3
|
+
> **IdentityProfileComponentType**: *typeof* [`IdentityProfileComponentType`](../variables/IdentityProfileComponentType.md)\[keyof *typeof* [`IdentityProfileComponentType`](../variables/IdentityProfileComponentType.md)\]
|
|
4
|
+
|
|
5
|
+
Identity profile component types.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Type Alias: IdentityProfileConnectorConfig
|
|
2
|
+
|
|
3
|
+
> **IdentityProfileConnectorConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Identity profile connector config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `IdentityProfileConnectorType.EntityStorage`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.profileEntityStorageType?
|
|
18
|
+
|
|
19
|
+
> `optional` **profileEntityStorageType**: `string`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: IdentityProfileConnectorType
|
|
2
|
+
|
|
3
|
+
> **IdentityProfileConnectorType**: *typeof* [`IdentityProfileConnectorType`](../variables/IdentityProfileConnectorType.md)\[keyof *typeof* [`IdentityProfileConnectorType`](../variables/IdentityProfileConnectorType.md)\]
|
|
4
|
+
|
|
5
|
+
Identity profile connector types.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Type Alias: ImmutableProofComponentConfig
|
|
2
|
+
|
|
3
|
+
> **ImmutableProofComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Immutable proof component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `ImmutableProofComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.vaultConnectorType?
|
|
18
|
+
|
|
19
|
+
> `optional` **vaultConnectorType**: `string`
|
|
20
|
+
|
|
21
|
+
### options.immutableProofEntityStorageType?
|
|
22
|
+
|
|
23
|
+
> `optional` **immutableProofEntityStorageType**: `string`
|
|
24
|
+
|
|
25
|
+
### options.immutableStorageType?
|
|
26
|
+
|
|
27
|
+
> `optional` **immutableStorageType**: `string`
|
|
28
|
+
|
|
29
|
+
### options.identityConnectorType?
|
|
30
|
+
|
|
31
|
+
> `optional` **identityConnectorType**: `string`
|
|
32
|
+
|
|
33
|
+
### options.backgroundTaskConnectorType?
|
|
34
|
+
|
|
35
|
+
> `optional` **backgroundTaskConnectorType**: `string`
|
|
36
|
+
|
|
37
|
+
### options.config?
|
|
38
|
+
|
|
39
|
+
> `optional` **config**: `IImmutableProofServiceConfig`
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: ImmutableStorageConnectorType
|
|
2
|
+
|
|
3
|
+
> **ImmutableStorageConnectorType**: *typeof* [`ImmutableStorageConnectorType`](../variables/ImmutableStorageConnectorType.md)\[keyof *typeof* [`ImmutableStorageConnectorType`](../variables/ImmutableStorageConnectorType.md)\]
|
|
4
|
+
|
|
5
|
+
Immutable storage connector types.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Type Alias: LoggingComponentConfig
|
|
2
|
+
|
|
3
|
+
> **LoggingComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Logging component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `LoggingComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.loggingConnectorType?
|
|
18
|
+
|
|
19
|
+
> `optional` **loggingConnectorType**: `string`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Type Alias: NftComponentConfig
|
|
2
|
+
|
|
3
|
+
> **NftComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
NFT component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `NftComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.config?
|
|
18
|
+
|
|
19
|
+
> `optional` **config**: `INftServiceConfig`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Type Alias: TelemetryComponentConfig
|
|
2
|
+
|
|
3
|
+
> **TelemetryComponentConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Telemetry component config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `TelemetryComponentType.Service`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.telemetryConnectorType?
|
|
18
|
+
|
|
19
|
+
> `optional` **telemetryConnectorType**: `string`
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Type Alias: TelemetryConnectorConfig
|
|
2
|
+
|
|
3
|
+
> **TelemetryConnectorConfig**: `object`
|
|
4
|
+
|
|
5
|
+
Telemetry connector config types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### type
|
|
10
|
+
|
|
11
|
+
> **type**: *typeof* `TelemetryConnectorType.EntityStorage`
|
|
12
|
+
|
|
13
|
+
### options?
|
|
14
|
+
|
|
15
|
+
> `optional` **options**: `object`
|
|
16
|
+
|
|
17
|
+
### options.telemetryMetricStorageConnectorType?
|
|
18
|
+
|
|
19
|
+
> `optional` **telemetryMetricStorageConnectorType**: `string`
|
|
20
|
+
|
|
21
|
+
### options.telemetryMetricValueStorageConnectorType?
|
|
22
|
+
|
|
23
|
+
> `optional` **telemetryMetricValueStorageConnectorType**: `string`
|
|
24
|
+
|
|
25
|
+
### options.loggingConnectorType?
|
|
26
|
+
|
|
27
|
+
> `optional` **loggingConnectorType**: `string`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Variable: AttestationConnectorType
|
|
2
|
+
|
|
3
|
+
> `const` **AttestationConnectorType**: `object`
|
|
4
|
+
|
|
5
|
+
Attestation connector types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### EntityStorage
|
|
10
|
+
|
|
11
|
+
> `readonly` **EntityStorage**: `"entity-storage"` = `"entity-storage"`
|
|
12
|
+
|
|
13
|
+
Entity storage.
|
|
14
|
+
|
|
15
|
+
### Iota
|
|
16
|
+
|
|
17
|
+
> `readonly` **Iota**: `"iota"` = `"iota"`
|
|
18
|
+
|
|
19
|
+
IOTA.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Variable: AuditableItemGraphComponentType
|
|
2
|
+
|
|
3
|
+
> `const` **AuditableItemGraphComponentType**: `object`
|
|
4
|
+
|
|
5
|
+
Auditable item graph component types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Service
|
|
10
|
+
|
|
11
|
+
> `readonly` **Service**: `"service"` = `"service"`
|
|
12
|
+
|
|
13
|
+
Service.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Variable: AuditableItemStreamComponentType
|
|
2
|
+
|
|
3
|
+
> `const` **AuditableItemStreamComponentType**: `object`
|
|
4
|
+
|
|
5
|
+
Auditable item stream component types.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### Service
|
|
10
|
+
|
|
11
|
+
> `readonly` **Service**: `"service"` = `"service"`
|
|
12
|
+
|
|
13
|
+
Service.
|