@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.
Files changed (178) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +21 -0
  3. package/dist/cjs/index.cjs +1640 -0
  4. package/dist/esm/index.mjs +1589 -0
  5. package/dist/types/components/attestation.d.ts +24 -0
  6. package/dist/types/components/auditableItemGraph.d.ts +13 -0
  7. package/dist/types/components/auditableItemStream.d.ts +13 -0
  8. package/dist/types/components/backgroundTask.d.ts +13 -0
  9. package/dist/types/components/blobStorage.d.ts +24 -0
  10. package/dist/types/components/entityStorage.d.ts +22 -0
  11. package/dist/types/components/faucet.d.ts +13 -0
  12. package/dist/types/components/identity.d.ts +24 -0
  13. package/dist/types/components/identityProfile.d.ts +24 -0
  14. package/dist/types/components/immutableProof.d.ts +13 -0
  15. package/dist/types/components/immutableStorage.d.ts +13 -0
  16. package/dist/types/components/logging.d.ts +24 -0
  17. package/dist/types/components/nft.d.ts +24 -0
  18. package/dist/types/components/telemetry.d.ts +24 -0
  19. package/dist/types/components/vault.d.ts +13 -0
  20. package/dist/types/components/wallet.d.ts +23 -0
  21. package/dist/types/index.d.ts +67 -0
  22. package/dist/types/models/IEngineCoreTypesConfig.d.ts +137 -0
  23. package/dist/types/models/config/attestationComponentConfig.d.ts +12 -0
  24. package/dist/types/models/config/attestationConnectorConfig.d.ts +21 -0
  25. package/dist/types/models/config/auditableItemGraphComponentConfig.d.ts +14 -0
  26. package/dist/types/models/config/auditableItemStreamComponentConfig.d.ts +14 -0
  27. package/dist/types/models/config/backgroundTaskConnectorConfig.d.ts +13 -0
  28. package/dist/types/models/config/blobStorageComponentConfig.d.ts +13 -0
  29. package/dist/types/models/config/blobStorageConnectorConfig.d.ts +42 -0
  30. package/dist/types/models/config/dltConfig.d.ts +11 -0
  31. package/dist/types/models/config/entityStorageComponentConfig.d.ts +12 -0
  32. package/dist/types/models/config/entityStorageConnectorConfig.d.ts +47 -0
  33. package/dist/types/models/config/faucetConnectorConfig.d.ts +18 -0
  34. package/dist/types/models/config/identityComponentConfig.d.ts +11 -0
  35. package/dist/types/models/config/identityConnectorConfig.d.ts +18 -0
  36. package/dist/types/models/config/identityProfileComponentConfig.d.ts +10 -0
  37. package/dist/types/models/config/identityProfileConnectorConfig.d.ts +10 -0
  38. package/dist/types/models/config/immutableProofComponentConfig.d.ts +16 -0
  39. package/dist/types/models/config/immutableStorageConnectorConfig.d.ts +17 -0
  40. package/dist/types/models/config/loggingComponentConfig.d.ts +10 -0
  41. package/dist/types/models/config/loggingConnectorConfig.d.ts +25 -0
  42. package/dist/types/models/config/nftComponentConfig.d.ts +11 -0
  43. package/dist/types/models/config/nftConnectorConfig.d.ts +17 -0
  44. package/dist/types/models/config/telemetryComponentConfig.d.ts +10 -0
  45. package/dist/types/models/config/telemetryConnectorConfig.d.ts +12 -0
  46. package/dist/types/models/config/vaultConnectorConfig.d.ts +17 -0
  47. package/dist/types/models/config/walletConnectorConfig.d.ts +22 -0
  48. package/dist/types/models/types/attestationComponentType.d.ts +13 -0
  49. package/dist/types/models/types/attestationConnectorType.d.ts +17 -0
  50. package/dist/types/models/types/auditableItemGraphComponentType.d.ts +13 -0
  51. package/dist/types/models/types/auditableItemStreamComponentType.d.ts +13 -0
  52. package/dist/types/models/types/backgroundTaskConnectorType.d.ts +13 -0
  53. package/dist/types/models/types/blobStorageComponentType.d.ts +13 -0
  54. package/dist/types/models/types/blobStorageConnectorType.d.ts +33 -0
  55. package/dist/types/models/types/dltConfigType.d.ts +13 -0
  56. package/dist/types/models/types/entityStorageComponentType.d.ts +13 -0
  57. package/dist/types/models/types/entityStorageConnectorType.d.ts +33 -0
  58. package/dist/types/models/types/faucetConnectorType.d.ts +17 -0
  59. package/dist/types/models/types/identityComponentType.d.ts +13 -0
  60. package/dist/types/models/types/identityConnectorType.d.ts +17 -0
  61. package/dist/types/models/types/identityProfileComponentType.d.ts +13 -0
  62. package/dist/types/models/types/identityProfileConnectorType.d.ts +13 -0
  63. package/dist/types/models/types/immutableProofComponentType.d.ts +13 -0
  64. package/dist/types/models/types/immutableStorageConnectorType.d.ts +17 -0
  65. package/dist/types/models/types/loggingComponentType.d.ts +13 -0
  66. package/dist/types/models/types/loggingConnectorType.d.ts +21 -0
  67. package/dist/types/models/types/nftComponentType.d.ts +13 -0
  68. package/dist/types/models/types/nftConnectorType.d.ts +17 -0
  69. package/dist/types/models/types/telemetryComponentType.d.ts +13 -0
  70. package/dist/types/models/types/telemetryConnectorType.d.ts +13 -0
  71. package/dist/types/models/types/vaultConnectorType.d.ts +17 -0
  72. package/dist/types/models/types/walletConnectorType.d.ts +17 -0
  73. package/docs/changelog.md +5 -0
  74. package/docs/examples.md +1 -0
  75. package/docs/reference/functions/initialiseAttestationComponent.md +33 -0
  76. package/docs/reference/functions/initialiseAttestationConnector.md +33 -0
  77. package/docs/reference/functions/initialiseAuditableItemGraphComponent.md +33 -0
  78. package/docs/reference/functions/initialiseAuditableItemStreamComponent.md +33 -0
  79. package/docs/reference/functions/initialiseBackgroundTaskConnector.md +33 -0
  80. package/docs/reference/functions/initialiseBlobStorageComponent.md +33 -0
  81. package/docs/reference/functions/initialiseBlobStorageConnector.md +33 -0
  82. package/docs/reference/functions/initialiseEntityStorageComponent.md +33 -0
  83. package/docs/reference/functions/initialiseEntityStorageConnector.md +31 -0
  84. package/docs/reference/functions/initialiseFaucetConnector.md +33 -0
  85. package/docs/reference/functions/initialiseIdentityComponent.md +33 -0
  86. package/docs/reference/functions/initialiseIdentityConnector.md +33 -0
  87. package/docs/reference/functions/initialiseIdentityProfileComponent.md +33 -0
  88. package/docs/reference/functions/initialiseIdentityProfileConnector.md +33 -0
  89. package/docs/reference/functions/initialiseImmutableProofComponent.md +33 -0
  90. package/docs/reference/functions/initialiseImmutableStorageConnector.md +33 -0
  91. package/docs/reference/functions/initialiseLoggingComponent.md +33 -0
  92. package/docs/reference/functions/initialiseLoggingConnector.md +33 -0
  93. package/docs/reference/functions/initialiseNftComponent.md +33 -0
  94. package/docs/reference/functions/initialiseNftConnector.md +33 -0
  95. package/docs/reference/functions/initialiseTelemetryComponent.md +33 -0
  96. package/docs/reference/functions/initialiseTelemetryConnector.md +33 -0
  97. package/docs/reference/functions/initialiseVaultConnector.md +33 -0
  98. package/docs/reference/functions/initialiseWalletConnector.md +33 -0
  99. package/docs/reference/functions/initialiseWalletStorage.md +33 -0
  100. package/docs/reference/index.md +114 -0
  101. package/docs/reference/interfaces/IEngineCoreTypesConfig.md +173 -0
  102. package/docs/reference/type-aliases/AttestationComponentConfig.md +23 -0
  103. package/docs/reference/type-aliases/AttestationComponentType.md +5 -0
  104. package/docs/reference/type-aliases/AttestationConnectorConfig.md +5 -0
  105. package/docs/reference/type-aliases/AttestationConnectorType.md +5 -0
  106. package/docs/reference/type-aliases/AuditableItemGraphComponentConfig.md +31 -0
  107. package/docs/reference/type-aliases/AuditableItemGraphComponentType.md +5 -0
  108. package/docs/reference/type-aliases/AuditableItemStreamComponentConfig.md +31 -0
  109. package/docs/reference/type-aliases/AuditableItemStreamComponentType.md +5 -0
  110. package/docs/reference/type-aliases/BackgroundTaskConnectorConfig.md +27 -0
  111. package/docs/reference/type-aliases/BackgroundTaskConnectorType.md +5 -0
  112. package/docs/reference/type-aliases/BlobStorageComponentConfig.md +27 -0
  113. package/docs/reference/type-aliases/BlobStorageComponentType.md +5 -0
  114. package/docs/reference/type-aliases/BlobStorageConnectorConfig.md +5 -0
  115. package/docs/reference/type-aliases/BlobStorageConnectorType.md +5 -0
  116. package/docs/reference/type-aliases/DltConfig.md +19 -0
  117. package/docs/reference/type-aliases/DltConfigType.md +5 -0
  118. package/docs/reference/type-aliases/EntityStorageComponentConfig.md +23 -0
  119. package/docs/reference/type-aliases/EntityStorageComponentType.md +5 -0
  120. package/docs/reference/type-aliases/EntityStorageConnectorConfig.md +5 -0
  121. package/docs/reference/type-aliases/EntityStorageConnectorType.md +5 -0
  122. package/docs/reference/type-aliases/FaucetConnectorConfig.md +5 -0
  123. package/docs/reference/type-aliases/FaucetConnectorType.md +5 -0
  124. package/docs/reference/type-aliases/IImmutableProofComponentType.md +5 -0
  125. package/docs/reference/type-aliases/IdentityComponentConfig.md +19 -0
  126. package/docs/reference/type-aliases/IdentityComponentType.md +5 -0
  127. package/docs/reference/type-aliases/IdentityConnectorConfig.md +5 -0
  128. package/docs/reference/type-aliases/IdentityConnectorType.md +5 -0
  129. package/docs/reference/type-aliases/IdentityProfileComponentConfig.md +19 -0
  130. package/docs/reference/type-aliases/IdentityProfileComponentType.md +5 -0
  131. package/docs/reference/type-aliases/IdentityProfileConnectorConfig.md +19 -0
  132. package/docs/reference/type-aliases/IdentityProfileConnectorType.md +5 -0
  133. package/docs/reference/type-aliases/ImmutableProofComponentConfig.md +39 -0
  134. package/docs/reference/type-aliases/ImmutableStorageConnectorConfig.md +5 -0
  135. package/docs/reference/type-aliases/ImmutableStorageConnectorType.md +5 -0
  136. package/docs/reference/type-aliases/LoggingComponentConfig.md +19 -0
  137. package/docs/reference/type-aliases/LoggingComponentType.md +5 -0
  138. package/docs/reference/type-aliases/LoggingConnectorConfig.md +5 -0
  139. package/docs/reference/type-aliases/LoggingConnectorType.md +5 -0
  140. package/docs/reference/type-aliases/NftComponentConfig.md +19 -0
  141. package/docs/reference/type-aliases/NftComponentType.md +5 -0
  142. package/docs/reference/type-aliases/NftConnectorConfig.md +5 -0
  143. package/docs/reference/type-aliases/NftConnectorType.md +5 -0
  144. package/docs/reference/type-aliases/TelemetryComponentConfig.md +19 -0
  145. package/docs/reference/type-aliases/TelemetryComponentType.md +5 -0
  146. package/docs/reference/type-aliases/TelemetryConnectorConfig.md +27 -0
  147. package/docs/reference/type-aliases/TelemetryConnectorType.md +5 -0
  148. package/docs/reference/type-aliases/VaultConnectorConfig.md +5 -0
  149. package/docs/reference/type-aliases/VaultConnectorType.md +5 -0
  150. package/docs/reference/type-aliases/WalletConnectorConfig.md +5 -0
  151. package/docs/reference/type-aliases/WalletConnectorType.md +5 -0
  152. package/docs/reference/variables/AttestationComponentType.md +13 -0
  153. package/docs/reference/variables/AttestationConnectorType.md +19 -0
  154. package/docs/reference/variables/AuditableItemGraphComponentType.md +13 -0
  155. package/docs/reference/variables/AuditableItemStreamComponentType.md +13 -0
  156. package/docs/reference/variables/BackgroundTaskConnectorType.md +13 -0
  157. package/docs/reference/variables/BlobStorageComponentType.md +13 -0
  158. package/docs/reference/variables/BlobStorageConnectorType.md +43 -0
  159. package/docs/reference/variables/DltConfigType.md +13 -0
  160. package/docs/reference/variables/EntityStorageComponentType.md +13 -0
  161. package/docs/reference/variables/EntityStorageConnectorType.md +43 -0
  162. package/docs/reference/variables/FaucetConnectorType.md +19 -0
  163. package/docs/reference/variables/IdentityComponentType.md +13 -0
  164. package/docs/reference/variables/IdentityConnectorType.md +19 -0
  165. package/docs/reference/variables/IdentityProfileComponentType.md +13 -0
  166. package/docs/reference/variables/IdentityProfileConnectorType.md +13 -0
  167. package/docs/reference/variables/ImmutableProofComponentType.md +13 -0
  168. package/docs/reference/variables/ImmutableStorageConnectorType.md +19 -0
  169. package/docs/reference/variables/LoggingComponentType.md +13 -0
  170. package/docs/reference/variables/LoggingConnectorType.md +25 -0
  171. package/docs/reference/variables/NftComponentType.md +13 -0
  172. package/docs/reference/variables/NftConnectorType.md +19 -0
  173. package/docs/reference/variables/TelemetryComponentType.md +13 -0
  174. package/docs/reference/variables/TelemetryConnectorType.md +13 -0
  175. package/docs/reference/variables/VaultConnectorType.md +19 -0
  176. package/docs/reference/variables/WalletConnectorType.md +19 -0
  177. package/locales/en.json +1 -0
  178. 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: BlobStorageConnectorConfig
2
+
3
+ > **BlobStorageConnectorConfig**: `object` \| `object` \| `object` \| `object` \| `object` \| `object`
4
+
5
+ Blob storage connector config 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,5 @@
1
+ # Type Alias: DltConfigType
2
+
3
+ > **DltConfigType**: *typeof* [`DltConfigType`](../variables/DltConfigType.md)\[keyof *typeof* [`DltConfigType`](../variables/DltConfigType.md)\]
4
+
5
+ DLT config types.
@@ -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: EntityStorageConnectorConfig
2
+
3
+ > **EntityStorageConnectorConfig**: `object` \| `object` \| `object` \| `object` \| `object` \| `object`
4
+
5
+ Entity storage connector config 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: FaucetConnectorConfig
2
+
3
+ > **FaucetConnectorConfig**: `object` \| `object`
4
+
5
+ Faucet config types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: FaucetConnectorType
2
+
3
+ > **FaucetConnectorType**: *typeof* [`FaucetConnectorType`](../variables/FaucetConnectorType.md)\[keyof *typeof* [`FaucetConnectorType`](../variables/FaucetConnectorType.md)\]
4
+
5
+ Faucet 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,5 @@
1
+ # Type Alias: IdentityComponentType
2
+
3
+ > **IdentityComponentType**: *typeof* [`IdentityComponentType`](../variables/IdentityComponentType.md)\[keyof *typeof* [`IdentityComponentType`](../variables/IdentityComponentType.md)\]
4
+
5
+ Identity component types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: IdentityConnectorConfig
2
+
3
+ > **IdentityConnectorConfig**: `object` \| `object`
4
+
5
+ Identity config connector types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: IdentityConnectorType
2
+
3
+ > **IdentityConnectorType**: *typeof* [`IdentityConnectorType`](../variables/IdentityConnectorType.md)\[keyof *typeof* [`IdentityConnectorType`](../variables/IdentityConnectorType.md)\]
4
+
5
+ Identity connector types.
@@ -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: ImmutableStorageConnectorConfig
2
+
3
+ > **ImmutableStorageConnectorConfig**: `object` \| `object`
4
+
5
+ Immutable storage connector config types.
@@ -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,5 @@
1
+ # Type Alias: LoggingComponentType
2
+
3
+ > **LoggingComponentType**: *typeof* [`LoggingComponentType`](../variables/LoggingComponentType.md)\[keyof *typeof* [`LoggingComponentType`](../variables/LoggingComponentType.md)\]
4
+
5
+ Logging component types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: LoggingConnectorConfig
2
+
3
+ > **LoggingConnectorConfig**: `object` \| `object` \| `object`
4
+
5
+ Logging config connector types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: LoggingConnectorType
2
+
3
+ > **LoggingConnectorType**: *typeof* [`LoggingConnectorType`](../variables/LoggingConnectorType.md)\[keyof *typeof* [`LoggingConnectorType`](../variables/LoggingConnectorType.md)\]
4
+
5
+ Logging connector types.
@@ -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,5 @@
1
+ # Type Alias: NftComponentType
2
+
3
+ > **NftComponentType**: *typeof* [`NftComponentType`](../variables/NftComponentType.md)\[keyof *typeof* [`NftComponentType`](../variables/NftComponentType.md)\]
4
+
5
+ NFT component types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: NftConnectorConfig
2
+
3
+ > **NftConnectorConfig**: `object` \| `object`
4
+
5
+ NFT connector config types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: NftConnectorType
2
+
3
+ > **NftConnectorType**: *typeof* [`NftConnectorType`](../variables/NftConnectorType.md)\[keyof *typeof* [`NftConnectorType`](../variables/NftConnectorType.md)\]
4
+
5
+ NFT connector types.
@@ -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,5 @@
1
+ # Type Alias: TelemetryComponentType
2
+
3
+ > **TelemetryComponentType**: *typeof* [`TelemetryComponentType`](../variables/TelemetryComponentType.md)\[keyof *typeof* [`TelemetryComponentType`](../variables/TelemetryComponentType.md)\]
4
+
5
+ Telemetry component types.
@@ -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,5 @@
1
+ # Type Alias: TelemetryConnectorType
2
+
3
+ > **TelemetryConnectorType**: *typeof* [`TelemetryConnectorType`](../variables/TelemetryConnectorType.md)\[keyof *typeof* [`TelemetryConnectorType`](../variables/TelemetryConnectorType.md)\]
4
+
5
+ Telemetry connector types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: VaultConnectorConfig
2
+
3
+ > **VaultConnectorConfig**: `object` \| `object`
4
+
5
+ Vault connector config types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: VaultConnectorType
2
+
3
+ > **VaultConnectorType**: *typeof* [`VaultConnectorType`](../variables/VaultConnectorType.md)\[keyof *typeof* [`VaultConnectorType`](../variables/VaultConnectorType.md)\]
4
+
5
+ Vault connector types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: WalletConnectorConfig
2
+
3
+ > **WalletConnectorConfig**: `object` \| `object`
4
+
5
+ Wallet connector config types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: WalletConnectorType
2
+
3
+ > **WalletConnectorType**: *typeof* [`WalletConnectorType`](../variables/WalletConnectorType.md)\[keyof *typeof* [`WalletConnectorType`](../variables/WalletConnectorType.md)\]
4
+
5
+ Wallet connector types.
@@ -0,0 +1,13 @@
1
+ # Variable: AttestationComponentType
2
+
3
+ > `const` **AttestationComponentType**: `object`
4
+
5
+ Attestation component types.
6
+
7
+ ## Type declaration
8
+
9
+ ### Service
10
+
11
+ > `readonly` **Service**: `"service"` = `"service"`
12
+
13
+ Service.
@@ -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.