@twin.org/engine 0.0.3-next.3 → 0.0.3-next.31

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # TWIN Engine
2
2
 
3
- Engine implementation.
3
+ Engine provides a ready-to-use runtime that extends the core layer with built-in type initialisers. It helps applications start from a practical baseline while still allowing customisation of configuration and component selection.
4
4
 
5
5
  ## Installation
6
6
 
@@ -10,9 +10,9 @@
10
10
  "method": "initialiseLoggingComponent"
11
11
  },
12
12
  {
13
- "type": "backgroundTaskConnector",
13
+ "type": "backgroundTaskComponent",
14
14
  "module": "@twin.org/engine-types",
15
- "method": "initialiseBackgroundTaskConnector"
15
+ "method": "initialiseBackgroundTaskComponent"
16
16
  },
17
17
  {
18
18
  "type": "taskSchedulerComponent",
@@ -144,6 +144,16 @@
144
144
  "module": "@twin.org/engine-types",
145
145
  "method": "initialiseNftComponent"
146
146
  },
147
+ {
148
+ "type": "notarizationConnector",
149
+ "module": "@twin.org/engine-types",
150
+ "method": "initialiseNotarizationConnector"
151
+ },
152
+ {
153
+ "type": "notarizationComponent",
154
+ "module": "@twin.org/engine-types",
155
+ "method": "initialiseNotarizationComponent"
156
+ },
147
157
  {
148
158
  "type": "immutableProofComponent",
149
159
  "module": "@twin.org/engine-types",
@@ -190,9 +200,19 @@
190
200
  "method": "initialiseDocumentManagementComponent"
191
201
  },
192
202
  {
193
- "type": "authenticationGeneratorComponent",
203
+ "type": "trustComponent",
204
+ "module": "@twin.org/engine-types",
205
+ "method": "initialiseTrustComponent"
206
+ },
207
+ {
208
+ "type": "trustGeneratorComponent",
209
+ "module": "@twin.org/engine-types",
210
+ "method": "initialiseTrustGeneratorComponent"
211
+ },
212
+ {
213
+ "type": "trustVerifierComponent",
194
214
  "module": "@twin.org/engine-types",
195
- "method": "initialiseAuthenticationGeneratorComponent"
215
+ "method": "initialiseTrustVerifierComponent"
196
216
  },
197
217
  {
198
218
  "type": "rightsManagementPapComponent",
@@ -235,14 +255,44 @@
235
255
  "method": "initialiseRightsManagementPnpComponent"
236
256
  },
237
257
  {
238
- "type": "rightsManagementDapComponent",
258
+ "type": "rightsManagementPolicyArbiterComponent",
259
+ "module": "@twin.org/engine-types",
260
+ "method": "initialiseRightsManagementPolicyArbiterComponent"
261
+ },
262
+ {
263
+ "type": "rightsManagementPolicyObligationEnforcerComponent",
239
264
  "module": "@twin.org/engine-types",
240
- "method": "initialiseRightsManagementDapComponent"
265
+ "method": "initialiseRightsManagementPolicyObligationEnforcerComponent"
241
266
  },
242
267
  {
243
- "type": "rightsManagementDarpComponent",
268
+ "type": "rightsManagementPolicyEnforcementProcessorComponent",
244
269
  "module": "@twin.org/engine-types",
245
- "method": "initialiseRightsManagementDarpComponent"
270
+ "method": "initialiseRightsManagementPolicyEnforcementProcessorComponent"
271
+ },
272
+ {
273
+ "type": "rightsManagementPolicyExecutionActionComponent",
274
+ "module": "@twin.org/engine-types",
275
+ "method": "initialiseRightsManagementPolicyExecutionActionComponent"
276
+ },
277
+ {
278
+ "type": "rightsManagementPolicyInformationSourceComponent",
279
+ "module": "@twin.org/engine-types",
280
+ "method": "initialiseRightsManagementPolicyInformationSourceComponent"
281
+ },
282
+ {
283
+ "type": "rightsManagementPolicyNegotiatorComponent",
284
+ "module": "@twin.org/engine-types",
285
+ "method": "initialiseRightsManagementPolicyNegotiatorComponent"
286
+ },
287
+ {
288
+ "type": "rightsManagementPolicyObligationEnforcerComponent",
289
+ "module": "@twin.org/engine-types",
290
+ "method": "initialiseRightsManagementPolicyObligationEnforcerComponent"
291
+ },
292
+ {
293
+ "type": "rightsManagementPolicyRequesterComponent",
294
+ "module": "@twin.org/engine-types",
295
+ "method": "initialiseRightsManagementPolicyRequesterComponent"
246
296
  },
247
297
  {
248
298
  "type": "synchronisedStorageComponent",
@@ -255,13 +305,28 @@
255
305
  "method": "initialiseFederatedCatalogueComponent"
256
306
  },
257
307
  {
258
- "type": "dataSpaceConnectorComponent",
308
+ "type": "federatedCatalogueFilterComponent",
259
309
  "module": "@twin.org/engine-types",
260
- "method": "initialiseDataSpaceConnectorComponent"
310
+ "method": "initialiseFederatedCatalogueFilterComponent"
311
+ },
312
+ {
313
+ "type": "dataspaceControlPlaneComponent",
314
+ "module": "@twin.org/engine-types",
315
+ "method": "initialiseDataspaceControlPlaneComponent"
316
+ },
317
+ {
318
+ "type": "dataspaceDataPlaneComponent",
319
+ "module": "@twin.org/engine-types",
320
+ "method": "initialiseDataspaceDataPlaneComponent"
261
321
  },
262
322
  {
263
323
  "type": "tenantAdminComponent",
264
324
  "module": "@twin.org/engine-types",
265
325
  "method": "initialiseTenantAdminComponent"
326
+ },
327
+ {
328
+ "type": "contextIdHandlerComponent",
329
+ "module": "@twin.org/engine-types",
330
+ "method": "initialiseContextIdHandlerComponent"
266
331
  }
267
332
  ]