@twin.org/engine-server-types 0.0.3-next.5 → 0.0.3-next.50

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 (94) hide show
  1. package/README.md +1 -1
  2. package/dist/es/components/authentication.js +24 -19
  3. package/dist/es/components/authentication.js.map +1 -1
  4. package/dist/es/components/authenticationAdmin.js +19 -15
  5. package/dist/es/components/authenticationAdmin.js.map +1 -1
  6. package/dist/es/components/authenticationAudit.js +35 -0
  7. package/dist/es/components/authenticationAudit.js.map +1 -0
  8. package/dist/es/components/authenticationRate.js +37 -0
  9. package/dist/es/components/authenticationRate.js.map +1 -0
  10. package/dist/es/components/hosting.js +29 -0
  11. package/dist/es/components/hosting.js.map +1 -0
  12. package/dist/es/components/information.js +12 -9
  13. package/dist/es/components/information.js.map +1 -1
  14. package/dist/es/components/mimeTypeProcessor.js +7 -7
  15. package/dist/es/components/mimeTypeProcessor.js.map +1 -1
  16. package/dist/es/components/restRouteProcessor.js +44 -47
  17. package/dist/es/components/restRouteProcessor.js.map +1 -1
  18. package/dist/es/components/socketRouteProcessor.js +43 -43
  19. package/dist/es/components/socketRouteProcessor.js.map +1 -1
  20. package/dist/es/index.js +9 -0
  21. package/dist/es/index.js.map +1 -1
  22. package/dist/es/models/IEngineServerConfig.js.map +1 -1
  23. package/dist/es/models/config/authenticationAuditComponentConfig.js +2 -0
  24. package/dist/es/models/config/authenticationAuditComponentConfig.js.map +1 -0
  25. package/dist/es/models/config/authenticationRateComponentConfig.js +2 -0
  26. package/dist/es/models/config/authenticationRateComponentConfig.js.map +1 -0
  27. package/dist/es/models/config/hostingComponentConfig.js +2 -0
  28. package/dist/es/models/config/hostingComponentConfig.js.map +1 -0
  29. package/dist/es/models/config/restRouteProcessorConfig.js.map +1 -1
  30. package/dist/es/models/config/socketRouteProcessorConfig.js.map +1 -1
  31. package/dist/es/models/types/authenticationAuditComponentType.js +13 -0
  32. package/dist/es/models/types/authenticationAuditComponentType.js.map +1 -0
  33. package/dist/es/models/types/authenticationRateComponentType.js +13 -0
  34. package/dist/es/models/types/authenticationRateComponentType.js.map +1 -0
  35. package/dist/es/models/types/hostingComponentType.js +13 -0
  36. package/dist/es/models/types/hostingComponentType.js.map +1 -0
  37. package/dist/es/models/types/restRouteProcessorType.js +4 -0
  38. package/dist/es/models/types/restRouteProcessorType.js.map +1 -1
  39. package/dist/es/models/types/socketRouteProcessorType.js +4 -0
  40. package/dist/es/models/types/socketRouteProcessorType.js.map +1 -1
  41. package/dist/types/components/authentication.d.ts +3 -7
  42. package/dist/types/components/authenticationAdmin.d.ts +3 -7
  43. package/dist/types/components/authenticationAudit.d.ts +12 -0
  44. package/dist/types/components/authenticationRate.d.ts +12 -0
  45. package/dist/types/components/hosting.d.ts +12 -0
  46. package/dist/types/components/information.d.ts +3 -7
  47. package/dist/types/components/mimeTypeProcessor.d.ts +2 -7
  48. package/dist/types/components/restRouteProcessor.d.ts +2 -7
  49. package/dist/types/components/socketRouteProcessor.d.ts +2 -7
  50. package/dist/types/index.d.ts +9 -0
  51. package/dist/types/models/IEngineServerConfig.d.ts +21 -6
  52. package/dist/types/models/config/authenticationAuditComponentConfig.d.ts +9 -0
  53. package/dist/types/models/config/authenticationRateComponentConfig.d.ts +9 -0
  54. package/dist/types/models/config/hostingComponentConfig.d.ts +9 -0
  55. package/dist/types/models/config/restRouteProcessorConfig.d.ts +4 -5
  56. package/dist/types/models/config/socketRouteProcessorConfig.d.ts +4 -5
  57. package/dist/types/models/types/authenticationAuditComponentType.d.ts +13 -0
  58. package/dist/types/models/types/authenticationRateComponentType.d.ts +13 -0
  59. package/dist/types/models/types/hostingComponentType.d.ts +13 -0
  60. package/dist/types/models/types/restRouteProcessorType.d.ts +4 -0
  61. package/dist/types/models/types/socketRouteProcessorType.d.ts +4 -0
  62. package/docs/changelog.md +891 -119
  63. package/docs/examples.md +64 -1
  64. package/docs/reference/functions/initialiseAuthenticationAdminComponent.md +2 -2
  65. package/docs/reference/functions/initialiseAuthenticationAuditComponent.md +31 -0
  66. package/docs/reference/functions/initialiseAuthenticationComponent.md +2 -2
  67. package/docs/reference/functions/initialiseAuthenticationRateComponent.md +31 -0
  68. package/docs/reference/functions/initialiseHostingComponent.md +31 -0
  69. package/docs/reference/functions/initialiseInformationComponent.md +2 -2
  70. package/docs/reference/functions/initialiseMimeTypeProcessorComponent.md +2 -2
  71. package/docs/reference/functions/initialiseRestRouteProcessorComponent.md +2 -2
  72. package/docs/reference/functions/initialiseSocketRouteProcessorComponent.md +2 -2
  73. package/docs/reference/index.md +12 -0
  74. package/docs/reference/interfaces/IEngineServerConfig.md +509 -15
  75. package/docs/reference/type-aliases/AuthenticationAdminComponentConfig.md +3 -3
  76. package/docs/reference/type-aliases/AuthenticationAuditComponentConfig.md +17 -0
  77. package/docs/reference/type-aliases/AuthenticationAuditComponentType.md +5 -0
  78. package/docs/reference/type-aliases/AuthenticationRateComponentConfig.md +17 -0
  79. package/docs/reference/type-aliases/AuthenticationRateComponentType.md +5 -0
  80. package/docs/reference/type-aliases/HostingComponentConfig.md +17 -0
  81. package/docs/reference/type-aliases/HostingComponentType.md +5 -0
  82. package/docs/reference/type-aliases/MimeTypeProcessorConfig.md +3 -3
  83. package/docs/reference/type-aliases/RestRouteProcessorConfig.md +1 -1
  84. package/docs/reference/type-aliases/SocketRouteProcessorConfig.md +1 -1
  85. package/docs/reference/variables/AuthenticationAdminComponentType.md +1 -1
  86. package/docs/reference/variables/AuthenticationAuditComponentType.md +13 -0
  87. package/docs/reference/variables/AuthenticationComponentType.md +2 -2
  88. package/docs/reference/variables/AuthenticationRateComponentType.md +13 -0
  89. package/docs/reference/variables/HostingComponentType.md +13 -0
  90. package/docs/reference/variables/InformationComponentType.md +2 -2
  91. package/docs/reference/variables/MimeTypeProcessorType.md +1 -1
  92. package/docs/reference/variables/RestRouteProcessorType.md +13 -7
  93. package/docs/reference/variables/SocketRouteProcessorType.md +13 -7
  94. package/package.json +6 -7
@@ -8,15 +8,63 @@ Extended engine server config with known types.
8
8
 
9
9
  ## Properties
10
10
 
11
- ### web?
11
+ ### debug? {#debug}
12
12
 
13
- > `optional` **web**: `IWebServerOptions`
13
+ > `optional` **debug?**: `boolean`
14
+
15
+ Start the engine in debug mode.
16
+
17
+ #### Default
18
+
19
+ ```ts
20
+ false
21
+ ```
22
+
23
+ #### Inherited from
24
+
25
+ `IEngineConfig.debug`
26
+
27
+ ***
28
+
29
+ ### silent? {#silent}
30
+
31
+ > `optional` **silent?**: `boolean`
32
+
33
+ Disable output to the console.
34
+
35
+ #### Default
36
+
37
+ ```ts
38
+ false
39
+ ```
40
+
41
+ #### Inherited from
42
+
43
+ `IEngineConfig.silent`
44
+
45
+ ***
46
+
47
+ ### silentLoggers? {#silentloggers}
48
+
49
+ > `optional` **silentLoggers?**: `string`[]
50
+
51
+ The loggers to disable output for.
52
+
53
+ #### Inherited from
54
+
55
+ `IEngineConfig.silentLoggers`
56
+
57
+ ***
58
+
59
+ ### web? {#web}
60
+
61
+ > `optional` **web?**: `IWebServerOptions`
14
62
 
15
63
  Configuration for the web server.
16
64
 
17
65
  ***
18
66
 
19
- ### types
67
+ ### types {#types}
20
68
 
21
69
  > **types**: `object` & `object`
22
70
 
@@ -24,41 +72,487 @@ The types to initialise in the engine.
24
72
 
25
73
  #### Type Declaration
26
74
 
75
+ ##### loggingConnector?
76
+
77
+ > `optional` **loggingConnector?**: `IEngineCoreTypeConfig`\<`LoggingConnectorConfig`\>[]
78
+
79
+ Logging connector options which can be overridden by individual components by specifying types other than default.
80
+
81
+ ##### loggingComponent?
82
+
83
+ > `optional` **loggingComponent?**: `IEngineCoreTypeConfig`\<`LoggingComponentConfig`\>[]
84
+
85
+ Logging component options which can be overridden by individual components by specifying types other than default.
86
+
87
+ ##### entityStorageConnector?
88
+
89
+ > `optional` **entityStorageConnector?**: `IEngineCoreTypeConfig`\<`EntityStorageConnectorConfig`\>[]
90
+
91
+ Entity storage connector options which can be overridden by individual components by specifying types other than default.
92
+
93
+ ##### entityStorageComponent?
94
+
95
+ > `optional` **entityStorageComponent?**: `IEngineCoreTypeConfig`\<`EntityStorageComponentConfig`\>[]
96
+
97
+ Entity storage component options which can be overridden by individual components by specifying types other than default.
98
+
99
+ ##### blobStorageConnector?
100
+
101
+ > `optional` **blobStorageConnector?**: `IEngineCoreTypeConfig`\<`BlobStorageConnectorConfig`\>[]
102
+
103
+ Blob storage connector options which can be overridden by individual components by specifying types other than default.
104
+
105
+ ##### blobStorageComponent?
106
+
107
+ > `optional` **blobStorageComponent?**: `IEngineCoreTypeConfig`\<`BlobStorageComponentConfig`\>[]
108
+
109
+ Blob storage component options which can be overridden by individual components by specifying types other than default.
110
+
111
+ ##### telemetryConnector?
112
+
113
+ > `optional` **telemetryConnector?**: `IEngineCoreTypeConfig`\<`TelemetryConnectorConfig`\>[]
114
+
115
+ Telemetry connector options which can be overridden by individual components by specifying types other than default.
116
+
117
+ ##### telemetryComponent?
118
+
119
+ > `optional` **telemetryComponent?**: `IEngineCoreTypeConfig`\<`TelemetryComponentConfig`\>[]
120
+
121
+ Telemetry component options which can be overridden by individual components by specifying types other than default.
122
+
123
+ ##### metricsProducerComponent?
124
+
125
+ > `optional` **metricsProducerComponent?**: `IEngineCoreTypeConfig`\<`MetricsProducerComponentConfig`\>[]
126
+
127
+ Metrics producer component options. Creates the `MetricsProducerService` that orchestrates polling.
128
+
129
+ ##### metricsCollectorComponent?
130
+
131
+ > `optional` **metricsCollectorComponent?**: `IEngineCoreTypeConfig`\<`MetricsCollectorComponentConfig`\>[]
132
+
133
+ Metrics collector options. Each entry registers a collector in `MetricsCollectorFactory`.
134
+
135
+ ##### messagingEmailConnector?
136
+
137
+ > `optional` **messagingEmailConnector?**: `IEngineCoreTypeConfig`\<`MessagingEmailConnectorConfig`\>[]
138
+
139
+ Messaging email connector options which can be overridden by individual components by specifying types other than default.
140
+
141
+ ##### messagingSmsConnector?
142
+
143
+ > `optional` **messagingSmsConnector?**: `IEngineCoreTypeConfig`\<`MessagingSmsConnectorConfig`\>[]
144
+
145
+ Messaging SMS connector options which can be overridden by individual components by specifying types other than default.
146
+
147
+ ##### messagingPushNotificationConnector?
148
+
149
+ > `optional` **messagingPushNotificationConnector?**: `IEngineCoreTypeConfig`\<`MessagingPushNotificationConnectorConfig`\>[]
150
+
151
+ Messaging push notification connector options which can be overridden by individual components by specifying types other than default.
152
+
153
+ ##### messagingAdminComponent?
154
+
155
+ > `optional` **messagingAdminComponent?**: `IEngineCoreTypeConfig`\<`MessagingAdminComponentConfig`\>[]
156
+
157
+ Messaging admin component options which can be overridden by individual components by specifying types other than default.
158
+
159
+ ##### messagingComponent?
160
+
161
+ > `optional` **messagingComponent?**: `IEngineCoreTypeConfig`\<`MessagingComponentConfig`\>[]
162
+
163
+ Messaging component options which can be overridden by individual components by specifying types other than default.
164
+
165
+ ##### schemaVersionMigrationComponent?
166
+
167
+ > `optional` **schemaVersionMigrationComponent?**: `IEngineCoreTypeConfig`\<`SchemaVersionMigrationComponentConfig`\>[]
168
+
169
+ Schema version migration component options which can be overridden by individual components by specifying types other than default.
170
+
171
+ ##### backgroundTaskComponent?
172
+
173
+ > `optional` **backgroundTaskComponent?**: `IEngineCoreTypeConfig`\<`BackgroundTaskComponentConfig`\>[]
174
+
175
+ Background task component options which can be overridden by individual components by specifying types other than default.
176
+
177
+ ##### taskSchedulerComponent?
178
+
179
+ > `optional` **taskSchedulerComponent?**: `IEngineCoreTypeConfig`\<`TaskSchedulerComponentConfig`\>[]
180
+
181
+ Task scheduler component options which can be overridden by individual components by specifying types other than default.
182
+
183
+ ##### eventBusConnector?
184
+
185
+ > `optional` **eventBusConnector?**: `IEngineCoreTypeConfig`\<`EventBusConnectorConfig`\>[]
186
+
187
+ Event bus connector options which can be overridden by individual components by specifying types other than default.
188
+
189
+ ##### eventBusComponent?
190
+
191
+ > `optional` **eventBusComponent?**: `IEngineCoreTypeConfig`\<`EventBusComponentConfig`\>[]
192
+
193
+ Event bus component options which can be overridden by individual components by specifying types other than default.
194
+
195
+ ##### automationComponent?
196
+
197
+ > `optional` **automationComponent?**: `IEngineCoreTypeConfig`\<`AutomationComponentConfig`\>[]
198
+
199
+ Automation component options which can be overridden by individual components by specifying types other than default.
200
+
201
+ ##### automationAction?
202
+
203
+ > `optional` **automationAction?**: `IEngineCoreTypeConfig`\<`AutomationActionConfig`\>[]
204
+
205
+ Automation action options which can be overridden by individual components by specifying types other than default.
206
+
207
+ ##### healthComponent?
208
+
209
+ > `optional` **healthComponent?**: `IEngineCoreTypeConfig`\<`HealthComponentConfig`\>[]
210
+
211
+ Health component options which can be overridden by individual components by specifying types other than default.
212
+
213
+ ##### vaultConnector?
214
+
215
+ > `optional` **vaultConnector?**: `IEngineCoreTypeConfig`\<`VaultConnectorConfig`\>[]
216
+
217
+ Vault connector options which can be overridden by individual components by specifying types other than default.
218
+
219
+ ##### dltConfig?
220
+
221
+ > `optional` **dltConfig?**: `IEngineCoreTypeConfig`\<`DltConfig`\>[]
222
+
223
+ DLT options which can be overridden by individual components by specifying types other than default.
224
+
225
+ ##### walletConnector?
226
+
227
+ > `optional` **walletConnector?**: `IEngineCoreTypeConfig`\<`WalletConnectorConfig`\>[]
228
+
229
+ Wallet connector options which can be overridden by individual components by specifying types other than default.
230
+
231
+ ##### immutableProofComponent?
232
+
233
+ > `optional` **immutableProofComponent?**: `IEngineCoreTypeConfig`\<`ImmutableProofComponentConfig`\>[]
234
+
235
+ Immutable proof component options which can be overridden by individual components by specifying types other than default.
236
+
237
+ ##### faucetConnector?
238
+
239
+ > `optional` **faucetConnector?**: `IEngineCoreTypeConfig`\<`FaucetConnectorConfig`\>[]
240
+
241
+ Faucet connector options which can be overridden by individual components by specifying types other than default.
242
+
243
+ ##### identityConnector?
244
+
245
+ > `optional` **identityConnector?**: `IEngineCoreTypeConfig`\<`IdentityConnectorConfig`\>[]
246
+
247
+ Identity connector options which can be overridden by individual components by specifying types other than default.
248
+
249
+ ##### identityComponent?
250
+
251
+ > `optional` **identityComponent?**: `IEngineCoreTypeConfig`\<`IdentityComponentConfig`\>[]
252
+
253
+ Identity component options which can be overridden by individual components by specifying types other than default.
254
+
255
+ ##### identityResolverConnector?
256
+
257
+ > `optional` **identityResolverConnector?**: `IEngineCoreTypeConfig`\<`IdentityResolverConnectorConfig`\>[]
258
+
259
+ Identity resolver connector options which can be overridden by individual components by specifying types other than default.
260
+
261
+ ##### identityResolverComponent?
262
+
263
+ > `optional` **identityResolverComponent?**: `IEngineCoreTypeConfig`\<`IdentityResolverComponentConfig`\>[]
264
+
265
+ Identity resolver component options which can be overridden by individual components by specifying types other than default.
266
+
267
+ ##### identityProfileConnector?
268
+
269
+ > `optional` **identityProfileConnector?**: `IEngineCoreTypeConfig`\<`IdentityProfileConnectorConfig`\>[]
270
+
271
+ Identity profile connector options which can be overridden by individual components by specifying types other than default.
272
+
273
+ ##### identityProfileComponent?
274
+
275
+ > `optional` **identityProfileComponent?**: `IEngineCoreTypeConfig`\<`IdentityProfileComponentConfig`\>[]
276
+
277
+ Identity profile component options which can be overridden by individual components by specifying types other than default.
278
+
279
+ ##### nftConnector?
280
+
281
+ > `optional` **nftConnector?**: `IEngineCoreTypeConfig`\<`NftConnectorConfig`\>[]
282
+
283
+ NFT connector options which can be overridden by individual components by specifying types other than default.
284
+
285
+ ##### nftComponent?
286
+
287
+ > `optional` **nftComponent?**: `IEngineCoreTypeConfig`\<`NftComponentConfig`\>[]
288
+
289
+ NFT component options which can be overridden by individual components by specifying types other than default.
290
+
291
+ ##### notarizationConnector?
292
+
293
+ > `optional` **notarizationConnector?**: `IEngineCoreTypeConfig`\<`NotarizationConnectorConfig`\>[]
294
+
295
+ Notarization connector options which can be overridden by individual components by specifying types other than default.
296
+
297
+ ##### notarizationComponent?
298
+
299
+ > `optional` **notarizationComponent?**: `IEngineCoreTypeConfig`\<`NotarizationComponentConfig`\>[]
300
+
301
+ Notarization component options which can be overridden by individual components by specifying types other than default.
302
+
303
+ ##### attestationConnector?
304
+
305
+ > `optional` **attestationConnector?**: `IEngineCoreTypeConfig`\<`AttestationConnectorConfig`\>[]
306
+
307
+ Attestation connector options which can be overridden by individual components by specifying types other than default.
308
+
309
+ ##### attestationComponent?
310
+
311
+ > `optional` **attestationComponent?**: `IEngineCoreTypeConfig`\<`AttestationComponentConfig`\>[]
312
+
313
+ Attestation component options which can be overridden by individual components by specifying types other than default.
314
+
315
+ ##### auditableItemGraphComponent?
316
+
317
+ > `optional` **auditableItemGraphComponent?**: `IEngineCoreTypeConfig`\<`AuditableItemGraphComponentConfig`\>[]
318
+
319
+ Auditable item graph component options which can be overridden by individual components by specifying types other than default.
320
+
321
+ ##### auditableItemStreamComponent?
322
+
323
+ > `optional` **auditableItemStreamComponent?**: `IEngineCoreTypeConfig`\<`AuditableItemStreamComponentConfig`\>[]
324
+
325
+ Auditable item stream component options which can be overridden by individual components by specifying types other than default.
326
+
327
+ ##### dataConverterConnector?
328
+
329
+ > `optional` **dataConverterConnector?**: `IEngineCoreTypeConfig`\<`DataConverterConnectorConfig`\>[]
330
+
331
+ Data converter connector options which can be overridden by individual components by specifying types other than default.
332
+
333
+ ##### dataExtractorConnector?
334
+
335
+ > `optional` **dataExtractorConnector?**: `IEngineCoreTypeConfig`\<`DataExtractorConnectorConfig`\>[]
336
+
337
+ Data extractor connector options which can be overridden by individual components by specifying types other than default.
338
+
339
+ ##### dataProcessingComponent?
340
+
341
+ > `optional` **dataProcessingComponent?**: `IEngineCoreTypeConfig`\<`DataProcessingComponentConfig`\>[]
342
+
343
+ Date processing options which can be overridden by individual components by specifying types other than default.
344
+
345
+ ##### documentManagementComponent?
346
+
347
+ > `optional` **documentManagementComponent?**: `IEngineCoreTypeConfig`\<`DocumentManagementComponentConfig`\>[]
348
+
349
+ Document management options which can be overridden by individual components by specifying types other than default.
350
+
351
+ ##### trustComponent?
352
+
353
+ > `optional` **trustComponent?**: `IEngineCoreTypeConfig`\<`TrustComponentConfig`\>[]
354
+
355
+ Trust component options which can be overridden by individual components by specifying types other than default.
356
+
357
+ ##### trustGeneratorComponent?
358
+
359
+ > `optional` **trustGeneratorComponent?**: `IEngineCoreTypeConfig`\<`TrustGeneratorComponentConfig`\>[]
360
+
361
+ Trust generator component options which can be overridden by individual components by specifying types other than default.
362
+
363
+ ##### trustVerifierComponent?
364
+
365
+ > `optional` **trustVerifierComponent?**: `IEngineCoreTypeConfig`\<`TrustVerifierComponentConfig`\>[]
366
+
367
+ Trust verifier component options which can be overridden by individual components by specifying types other than default.
368
+
369
+ ##### rightsManagementPapComponent?
370
+
371
+ > `optional` **rightsManagementPapComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPapComponentConfig`\>[]
372
+
373
+ Rights management PAP options which can be overridden by individual components by specifying types other than default.
374
+
375
+ ##### rightsManagementPdpComponent?
376
+
377
+ > `optional` **rightsManagementPdpComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPdpComponentConfig`\>[]
378
+
379
+ Rights management PDP options which can be overridden by individual components by specifying types other than default.
380
+
381
+ ##### rightsManagementPepComponent?
382
+
383
+ > `optional` **rightsManagementPepComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPepComponentConfig`\>[]
384
+
385
+ Rights management PEP options which can be overridden by individual components by specifying types other than default.
386
+
387
+ ##### rightsManagementPipComponent?
388
+
389
+ > `optional` **rightsManagementPipComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPipComponentConfig`\>[]
390
+
391
+ Rights management PIP options which can be overridden by individual components by specifying types other than default.
392
+
393
+ ##### rightsManagementPmpComponent?
394
+
395
+ > `optional` **rightsManagementPmpComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPmpComponentConfig`\>[]
396
+
397
+ Rights management PMP options which can be overridden by individual components by specifying types other than default.
398
+
399
+ ##### rightsManagementPxpComponent?
400
+
401
+ > `optional` **rightsManagementPxpComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPxpComponentConfig`\>[]
402
+
403
+ Rights management PXP options which can be overridden by individual components by specifying types other than default.
404
+
405
+ ##### rightsManagementPnpComponent?
406
+
407
+ > `optional` **rightsManagementPnpComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPnpComponentConfig`\>[]
408
+
409
+ Rights management PNP options which can be overridden by individual components by specifying types other than default.
410
+
411
+ ##### rightsManagementPnapComponent?
412
+
413
+ > `optional` **rightsManagementPnapComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPnapComponentConfig`\>[]
414
+
415
+ Rights management PNAP options which can be overridden by individual components by specifying types other than default.
416
+
417
+ ##### rightsManagementPolicyArbiterComponent?
418
+
419
+ > `optional` **rightsManagementPolicyArbiterComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPolicyArbiterComponentConfig`\>[]
420
+
421
+ Rights management policy arbiter options which can be overridden by individual components by specifying types other than default.
422
+
423
+ ##### rightsManagementPolicyObligationEnforcerComponent?
424
+
425
+ > `optional` **rightsManagementPolicyObligationEnforcerComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPolicyObligationEnforcerComponentConfig`\>[]
426
+
427
+ Rights management policy obligation enforcer options which can be overridden by individual components by specifying types other than default.
428
+
429
+ ##### rightsManagementPolicyEnforcementProcessorComponent?
430
+
431
+ > `optional` **rightsManagementPolicyEnforcementProcessorComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPolicyEnforcementProcessorComponentConfig`\>[]
432
+
433
+ Rights management policy enforcement processor options which can be overridden by individual components by specifying types other than default.
434
+
435
+ ##### rightsManagementPolicyExecutionActionComponent?
436
+
437
+ > `optional` **rightsManagementPolicyExecutionActionComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPolicyExecutionActionComponentConfig`\>[]
438
+
439
+ Rights management policy execution action options which can be overridden by individual components by specifying types other than default.
440
+
441
+ ##### rightsManagementPolicyInformationSourceComponent?
442
+
443
+ > `optional` **rightsManagementPolicyInformationSourceComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPolicyInformationSourceComponentConfig`\>[]
444
+
445
+ Rights management policy information source options which can be overridden by individual components by specifying types other than default.
446
+
447
+ ##### rightsManagementPolicyNegotiatorComponent?
448
+
449
+ > `optional` **rightsManagementPolicyNegotiatorComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPolicyNegotiatorComponentConfig`\>[]
450
+
451
+ Rights management policy negotiator options which can be overridden by individual components by specifying types other than default.
452
+
453
+ ##### rightsManagementPolicyRequesterComponent?
454
+
455
+ > `optional` **rightsManagementPolicyRequesterComponent?**: `IEngineCoreTypeConfig`\<`RightsManagementPolicyRequesterComponentConfig`\>[]
456
+
457
+ Rights management policy requester options which can be overridden by individual components by specifying types other than default.
458
+
459
+ ##### federatedCatalogueComponent?
460
+
461
+ > `optional` **federatedCatalogueComponent?**: `IEngineCoreTypeConfig`\<`FederatedCatalogueComponentConfig`\>[]
462
+
463
+ Federated catalogue options which can be overridden by individual components by specifying types other than default.
464
+
465
+ ##### federatedCatalogueFilterComponent?
466
+
467
+ > `optional` **federatedCatalogueFilterComponent?**: `IEngineCoreTypeConfig`\<`FederatedCatalogueFilterComponentConfig`\>[]
468
+
469
+ Federated catalogue filter options which can be overridden by individual components by specifying types other than default.
470
+
471
+ ##### dataspaceControlPlaneComponent?
472
+
473
+ > `optional` **dataspaceControlPlaneComponent?**: `IEngineCoreTypeConfig`\<`DataspaceControlPlaneComponentConfig`\>[]
474
+
475
+ Dataspace control plane component options which can be overridden by individual components by specifying types other than default.
476
+
477
+ ##### dataspaceDataPlaneComponent?
478
+
479
+ > `optional` **dataspaceDataPlaneComponent?**: `IEngineCoreTypeConfig`\<`DataspaceDataPlaneComponentConfig`\>[]
480
+
481
+ Dataspace data plane component options which can be overridden by individual components by specifying types other than default.
482
+
483
+ ##### platformComponent?
484
+
485
+ > `optional` **platformComponent?**: `IEngineCoreTypeConfig`\<`PlatformComponentConfig`\>[]
486
+
487
+ Platform component options which can be overridden by individual components by specifying types other than default.
488
+
489
+ ##### tenantAdminComponent?
490
+
491
+ > `optional` **tenantAdminComponent?**: `IEngineCoreTypeConfig`\<`TenantAdminComponentConfig`\>[]
492
+
493
+ Tenant admin component options which can be overridden by individual components by specifying types other than default.
494
+
495
+ ##### contextIdHandlerComponent?
496
+
497
+ > `optional` **contextIdHandlerComponent?**: `IEngineCoreTypeConfig`\<`ContextIdHandlerComponentConfig`\>[]
498
+
499
+ Context Id Handler component options which can be overridden by individual components by specifying types other than default.
500
+
501
+ #### Type Declaration
502
+
27
503
  ##### informationComponent?
28
504
 
29
- > `optional` **informationComponent**: `IEngineCoreTypeConfig`\<[`InformationComponentConfig`](../type-aliases/InformationComponentConfig.md)\>[]
505
+ > `optional` **informationComponent?**: `IEngineCoreTypeConfig`\<[`InformationComponentConfig`](../type-aliases/InformationComponentConfig.md)\>[]
506
+
507
+ Information component options which can be overridden by individual components by specifying types other than default.
508
+
509
+ ##### hostingComponent?
30
510
 
31
- Information component options which can be overridden by individual components by specifying types other than default..
511
+ > `optional` **hostingComponent?**: `IEngineCoreTypeConfig`\<[`HostingComponentConfig`](../type-aliases/HostingComponentConfig.md)\>[]
512
+
513
+ Hosting component options which can be overridden by individual components by specifying types other than default.
32
514
 
33
515
  ##### restRouteProcessor?
34
516
 
35
- > `optional` **restRouteProcessor**: `IEngineCoreTypeConfig`\<[`RestRouteProcessorConfig`](../type-aliases/RestRouteProcessorConfig.md)\>[]
517
+ > `optional` **restRouteProcessor?**: `IEngineCoreTypeConfig`\<[`RestRouteProcessorConfig`](../type-aliases/RestRouteProcessorConfig.md)\>[]
36
518
 
37
- REST route processors options which can be overridden by individual components by specifying types other than default..
519
+ REST route processors options which can be overridden by individual components by specifying types other than default.
38
520
 
39
521
  ##### socketRouteProcessor?
40
522
 
41
- > `optional` **socketRouteProcessor**: `IEngineCoreTypeConfig`\<[`SocketRouteProcessorConfig`](../type-aliases/SocketRouteProcessorConfig.md)\>[]
523
+ > `optional` **socketRouteProcessor?**: `IEngineCoreTypeConfig`\<[`SocketRouteProcessorConfig`](../type-aliases/SocketRouteProcessorConfig.md)\>[]
42
524
 
43
- Socket route processors options which can be overridden by individual components by specifying types other than default..
525
+ Socket route processors options which can be overridden by individual components by specifying types other than default.
44
526
 
45
527
  ##### mimeTypeProcessor?
46
528
 
47
- > `optional` **mimeTypeProcessor**: `IEngineCoreTypeConfig`\<[`MimeTypeProcessorConfig`](../type-aliases/MimeTypeProcessorConfig.md)\>[]
529
+ > `optional` **mimeTypeProcessor?**: `IEngineCoreTypeConfig`\<[`MimeTypeProcessorConfig`](../type-aliases/MimeTypeProcessorConfig.md)\>[]
530
+
531
+ Mime type processors options which can be overridden by individual components by specifying types other than default.
532
+
533
+ ##### authenticationAuditComponent?
534
+
535
+ > `optional` **authenticationAuditComponent?**: `IEngineCoreTypeConfig`\<[`AuthenticationAuditComponentConfig`](../type-aliases/AuthenticationAuditComponentConfig.md)\>[]
536
+
537
+ Authentication audit component options which can be overridden by individual components by specifying types other than default.
538
+
539
+ ##### authenticationRateComponent?
540
+
541
+ > `optional` **authenticationRateComponent?**: `IEngineCoreTypeConfig`\<[`AuthenticationRateComponentConfig`](../type-aliases/AuthenticationRateComponentConfig.md)\>[]
48
542
 
49
- Mime type processors options which can be overridden by individual components by specifying types other than default..
543
+ Authentication rate component options which can be overridden by individual components by specifying types other than default.
50
544
 
51
545
  ##### authenticationComponent?
52
546
 
53
- > `optional` **authenticationComponent**: `IEngineCoreTypeConfig`\<[`AuthenticationComponentConfig`](../type-aliases/AuthenticationComponentConfig.md)\>[]
547
+ > `optional` **authenticationComponent?**: `IEngineCoreTypeConfig`\<[`AuthenticationComponentConfig`](../type-aliases/AuthenticationComponentConfig.md)\>[]
54
548
 
55
- Authentication component options which can be overridden by individual components by specifying types other than default..
549
+ Authentication component options which can be overridden by individual components by specifying types other than default.
56
550
 
57
551
  ##### authenticationAdminComponent?
58
552
 
59
- > `optional` **authenticationAdminComponent**: `IEngineCoreTypeConfig`\<[`AuthenticationAdminComponentConfig`](../type-aliases/AuthenticationAdminComponentConfig.md)\>[]
553
+ > `optional` **authenticationAdminComponent?**: `IEngineCoreTypeConfig`\<[`AuthenticationAdminComponentConfig`](../type-aliases/AuthenticationAdminComponentConfig.md)\>[]
60
554
 
61
- Authentication admin component options which can be overridden by individual components by specifying types other than default..
555
+ Authentication admin component options which can be overridden by individual components by specifying types other than default.
62
556
 
63
557
  #### Overrides
64
558
 
@@ -6,12 +6,12 @@ Authentication admin component config types.
6
6
 
7
7
  ## Properties
8
8
 
9
- ### type
9
+ ### type {#type}
10
10
 
11
11
  > **type**: *typeof* [`EntityStorage`](../variables/AuthenticationAdminComponentType.md#entitystorage)
12
12
 
13
13
  ***
14
14
 
15
- ### options?
15
+ ### options? {#options}
16
16
 
17
- > `optional` **options**: `IEntityStorageAuthenticationAdminServiceConstructorOptions`
17
+ > `optional` **options?**: `IEntityStorageAuthenticationAdminServiceConstructorOptions`
@@ -0,0 +1,17 @@
1
+ # Type Alias: AuthenticationAuditComponentConfig
2
+
3
+ > **AuthenticationAuditComponentConfig** = `object`
4
+
5
+ Authentication audit component config types.
6
+
7
+ ## Properties
8
+
9
+ ### type {#type}
10
+
11
+ > **type**: *typeof* [`EntityStorage`](../variables/AuthenticationAuditComponentType.md#entitystorage)
12
+
13
+ ***
14
+
15
+ ### options? {#options}
16
+
17
+ > `optional` **options?**: `IEntityStorageAuthenticationAuditServiceConstructorOptions`
@@ -0,0 +1,5 @@
1
+ # Type Alias: AuthenticationAuditComponentType
2
+
3
+ > **AuthenticationAuditComponentType** = *typeof* [`AuthenticationAuditComponentType`](../variables/AuthenticationAuditComponentType.md)\[keyof *typeof* [`AuthenticationAuditComponentType`](../variables/AuthenticationAuditComponentType.md)\]
4
+
5
+ Authentication audit component types.
@@ -0,0 +1,17 @@
1
+ # Type Alias: AuthenticationRateComponentConfig
2
+
3
+ > **AuthenticationRateComponentConfig** = `object`
4
+
5
+ Authentication rate component config types.
6
+
7
+ ## Properties
8
+
9
+ ### type {#type}
10
+
11
+ > **type**: *typeof* [`EntityStorage`](../variables/AuthenticationRateComponentType.md#entitystorage)
12
+
13
+ ***
14
+
15
+ ### options? {#options}
16
+
17
+ > `optional` **options?**: `IEntityStorageAuthenticationRateServiceConstructorOptions`
@@ -0,0 +1,5 @@
1
+ # Type Alias: AuthenticationRateComponentType
2
+
3
+ > **AuthenticationRateComponentType** = *typeof* [`AuthenticationRateComponentType`](../variables/AuthenticationRateComponentType.md)\[keyof *typeof* [`AuthenticationRateComponentType`](../variables/AuthenticationRateComponentType.md)\]
4
+
5
+ Authentication rate component types.
@@ -0,0 +1,17 @@
1
+ # Type Alias: HostingComponentConfig
2
+
3
+ > **HostingComponentConfig** = `object`
4
+
5
+ Hosting component config types.
6
+
7
+ ## Properties
8
+
9
+ ### type {#type}
10
+
11
+ > **type**: *typeof* [`Service`](../variables/HostingComponentType.md#service)
12
+
13
+ ***
14
+
15
+ ### options {#options}
16
+
17
+ > **options**: `IHostingServiceConstructorOptions`
@@ -0,0 +1,5 @@
1
+ # Type Alias: HostingComponentType
2
+
3
+ > **HostingComponentType** = *typeof* [`HostingComponentType`](../variables/HostingComponentType.md)\[keyof *typeof* [`HostingComponentType`](../variables/HostingComponentType.md)\]
4
+
5
+ Hosting component types.
@@ -6,12 +6,12 @@ Mime type processor config types.
6
6
 
7
7
  ## Properties
8
8
 
9
- ### type
9
+ ### type {#type}
10
10
 
11
11
  > **type**: *typeof* [`Jwt`](../variables/MimeTypeProcessorType.md#jwt)
12
12
 
13
13
  ***
14
14
 
15
- ### options?
15
+ ### options? {#options}
16
16
 
17
- > `optional` **options**: `never`
17
+ > `optional` **options?**: `never`