@twin.org/node-core 0.0.3-next.5 → 0.0.3-next.7

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.
@@ -285,10 +285,6 @@ export interface IEngineEnvironmentVariables {
285
285
  * The type of logging task connector, can be a comma separated list: console, entity-storage.
286
286
  */
287
287
  loggingConnector?: string;
288
- /**
289
- * The type of background task connector: entity-storage.
290
- */
291
- backgroundTaskConnector?: string;
292
288
  /**
293
289
  * The type of event bus connector: local.
294
290
  */
@@ -486,13 +482,26 @@ export interface IEngineEnvironmentVariables {
486
482
  */
487
483
  federatedCatalogueEnabled?: string;
488
484
  /**
489
- * Federated catalog TTL for the cache.
485
+ * Federated catalog filters, command separated list of filters to add.
486
+ */
487
+ federatedCatalogueFilters?: string;
488
+ /**
489
+ * Is the trust management enabled, defaults to false.
490
+ */
491
+ trustEnabled?: string;
492
+ /**
493
+ * The trust generators to add to the factory, comma separated list.
490
494
  */
491
- federatedCatalogueCacheTtlMs?: number;
495
+ trustGenerators?: string;
492
496
  /**
493
- * Federated catalog clearing house approver list, stringified array of DIDs.
497
+ * The trust verifiers to add to the factory, comma separated list.
494
498
  */
495
- federatedCatalogueClearingHouseApproverList?: string;
499
+ trustVerifiers?: string;
500
+ /**
501
+ * The verification method to use for trust identities.
502
+ * Defaults to node-authentication-assertion.
503
+ */
504
+ trustVerificationMethodId?: string;
496
505
  /**
497
506
  * Is the rights management enabled, defaults to false.
498
507
  */
@@ -502,40 +511,37 @@ export interface IEngineEnvironmentVariables {
502
511
  */
503
512
  rightsManagementBaseCallbackUrl?: string;
504
513
  /**
505
- * The rights management configuration which includes the information sources modules to load.
506
- * Use the @json: prefix to specify the path to the JSON configuration file.
514
+ * The rights management policy information sources to add to the factory.
515
+ */
516
+ rightsManagementPolicyInformationSources?: string;
517
+ /**
518
+ * The rights management policy negotiators sources to add to the factory.
507
519
  */
508
- rightsManagementInformationSources?: string;
520
+ rightsManagementPolicyNegotiators?: string;
509
521
  /**
510
- * The rights management configuration which includes the negotiator modules to load.
511
- * Use the @json: prefix to specify the path to the JSON configuration file.
522
+ * The rights management policy requesters to add to the factory.
512
523
  */
513
- rightsManagementNegotiators?: string;
524
+ rightsManagementPolicyRequesters?: string;
514
525
  /**
515
- * The rights management configuration which includes the requester modules to load.
516
- * Use the @json: prefix to specify the path to the JSON configuration file.
526
+ * The rights management policy execution actions to add to the factory.
517
527
  */
518
- rightsManagementRequesters?: string;
528
+ rightsManagementPolicyExecutionActions?: string;
519
529
  /**
520
- * The rights management configuration which includes the execution actions modules to load.
521
- * Use the @json: prefix to specify the path to the JSON configuration file.
530
+ * The rights management policy enforcement processors to add to the factory.
522
531
  */
523
- rightsManagementExecutionActions?: string;
532
+ rightsManagementPolicyEnforcementProcessors?: string;
524
533
  /**
525
- * The rights management configuration which includes the enforcement processor modules to load.
526
- * Use the @json: prefix to specify the path to the JSON configuration file.
534
+ * The rights management policy arbiters to add to the factory.
527
535
  */
528
- rightsManagementEnforcementProcessors?: string;
536
+ rightsManagementPolicyArbiters?: string;
529
537
  /**
530
- * The rights management configuration which includes the arbiter modules to load.
531
- * Use the @json: prefix to specify the path to the JSON configuration file.
538
+ * The rights management data access handlers to add to the factory.
532
539
  */
533
- rightsManagementArbiters?: string;
540
+ rightsManagementDataAccessHandlers?: string;
534
541
  /**
535
- * The rights management configuration which includes the offer modules to load.
536
- * Use the @json: prefix to specify the path to the JSON configuration file.
542
+ * Are background tasks enabled, defaults to false.
537
543
  */
538
- rightsManagementOffers?: string;
544
+ backgroundTasksEnabled?: string;
539
545
  /**
540
546
  * Is the task scheduler enabled, defaults to false.
541
547
  */
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @twin.org/node-core - Changelog
2
2
 
3
+ ## [0.0.3-next.7](https://github.com/twinfoundation/node/compare/node-core-v0.0.3-next.6...node-core-v0.0.3-next.7) (2025-12-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * add trust and rights management plugin support ([cdeb504](https://github.com/twinfoundation/node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
9
+
10
+ ## [0.0.3-next.6](https://github.com/twinfoundation/node/compare/node-core-v0.0.3-next.5...node-core-v0.0.3-next.6) (2025-11-28)
11
+
12
+
13
+ ### Features
14
+
15
+ * update background tasks and add fedcat filters ([1fd297e](https://github.com/twinfoundation/node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
16
+
3
17
  ## [0.0.3-next.5](https://github.com/twinfoundation/node/compare/node-core-v0.0.3-next.4...node-core-v0.0.3-next.5) (2025-11-26)
4
18
 
5
19
 
@@ -571,14 +571,6 @@ The type of logging task connector, can be a comma separated list: console, enti
571
571
 
572
572
  ***
573
573
 
574
- ### backgroundTaskConnector?
575
-
576
- > `optional` **backgroundTaskConnector**: `string`
577
-
578
- The type of background task connector: entity-storage.
579
-
580
- ***
581
-
582
574
  ### eventBusConnector?
583
575
 
584
576
  > `optional` **eventBusConnector**: `string`
@@ -983,19 +975,44 @@ Is the federated catalogue enabled, defaults to false.
983
975
 
984
976
  ***
985
977
 
986
- ### federatedCatalogueCacheTtlMs?
978
+ ### federatedCatalogueFilters?
979
+
980
+ > `optional` **federatedCatalogueFilters**: `string`
981
+
982
+ Federated catalog filters, command separated list of filters to add.
983
+
984
+ ***
985
+
986
+ ### trustEnabled?
987
+
988
+ > `optional` **trustEnabled**: `string`
989
+
990
+ Is the trust management enabled, defaults to false.
991
+
992
+ ***
993
+
994
+ ### trustGenerators?
987
995
 
988
- > `optional` **federatedCatalogueCacheTtlMs**: `number`
996
+ > `optional` **trustGenerators**: `string`
989
997
 
990
- Federated catalog TTL for the cache.
998
+ The trust generators to add to the factory, comma separated list.
991
999
 
992
1000
  ***
993
1001
 
994
- ### federatedCatalogueClearingHouseApproverList?
1002
+ ### trustVerifiers?
995
1003
 
996
- > `optional` **federatedCatalogueClearingHouseApproverList**: `string`
1004
+ > `optional` **trustVerifiers**: `string`
997
1005
 
998
- Federated catalog clearing house approver list, stringified array of DIDs.
1006
+ The trust verifiers to add to the factory, comma separated list.
1007
+
1008
+ ***
1009
+
1010
+ ### trustVerificationMethodId?
1011
+
1012
+ > `optional` **trustVerificationMethodId**: `string`
1013
+
1014
+ The verification method to use for trust identities.
1015
+ Defaults to node-authentication-assertion.
999
1016
 
1000
1017
  ***
1001
1018
 
@@ -1015,66 +1032,67 @@ What is the base callback url for rights management negotiations e.g. https://my
1015
1032
 
1016
1033
  ***
1017
1034
 
1018
- ### rightsManagementInformationSources?
1035
+ ### rightsManagementPolicyInformationSources?
1036
+
1037
+ > `optional` **rightsManagementPolicyInformationSources**: `string`
1038
+
1039
+ The rights management policy information sources to add to the factory.
1040
+
1041
+ ***
1042
+
1043
+ ### rightsManagementPolicyNegotiators?
1019
1044
 
1020
- > `optional` **rightsManagementInformationSources**: `string`
1045
+ > `optional` **rightsManagementPolicyNegotiators**: `string`
1021
1046
 
1022
- The rights management configuration which includes the information sources modules to load.
1023
- Use the @json: prefix to specify the path to the JSON configuration file.
1047
+ The rights management policy negotiators sources to add to the factory.
1024
1048
 
1025
1049
  ***
1026
1050
 
1027
- ### rightsManagementNegotiators?
1051
+ ### rightsManagementPolicyRequesters?
1028
1052
 
1029
- > `optional` **rightsManagementNegotiators**: `string`
1053
+ > `optional` **rightsManagementPolicyRequesters**: `string`
1030
1054
 
1031
- The rights management configuration which includes the negotiator modules to load.
1032
- Use the @json: prefix to specify the path to the JSON configuration file.
1055
+ The rights management policy requesters to add to the factory.
1033
1056
 
1034
1057
  ***
1035
1058
 
1036
- ### rightsManagementRequesters?
1059
+ ### rightsManagementPolicyExecutionActions?
1037
1060
 
1038
- > `optional` **rightsManagementRequesters**: `string`
1061
+ > `optional` **rightsManagementPolicyExecutionActions**: `string`
1039
1062
 
1040
- The rights management configuration which includes the requester modules to load.
1041
- Use the @json: prefix to specify the path to the JSON configuration file.
1063
+ The rights management policy execution actions to add to the factory.
1042
1064
 
1043
1065
  ***
1044
1066
 
1045
- ### rightsManagementExecutionActions?
1067
+ ### rightsManagementPolicyEnforcementProcessors?
1046
1068
 
1047
- > `optional` **rightsManagementExecutionActions**: `string`
1069
+ > `optional` **rightsManagementPolicyEnforcementProcessors**: `string`
1048
1070
 
1049
- The rights management configuration which includes the execution actions modules to load.
1050
- Use the @json: prefix to specify the path to the JSON configuration file.
1071
+ The rights management policy enforcement processors to add to the factory.
1051
1072
 
1052
1073
  ***
1053
1074
 
1054
- ### rightsManagementEnforcementProcessors?
1075
+ ### rightsManagementPolicyArbiters?
1055
1076
 
1056
- > `optional` **rightsManagementEnforcementProcessors**: `string`
1077
+ > `optional` **rightsManagementPolicyArbiters**: `string`
1057
1078
 
1058
- The rights management configuration which includes the enforcement processor modules to load.
1059
- Use the @json: prefix to specify the path to the JSON configuration file.
1079
+ The rights management policy arbiters to add to the factory.
1060
1080
 
1061
1081
  ***
1062
1082
 
1063
- ### rightsManagementArbiters?
1083
+ ### rightsManagementDataAccessHandlers?
1064
1084
 
1065
- > `optional` **rightsManagementArbiters**: `string`
1085
+ > `optional` **rightsManagementDataAccessHandlers**: `string`
1066
1086
 
1067
- The rights management configuration which includes the arbiter modules to load.
1068
- Use the @json: prefix to specify the path to the JSON configuration file.
1087
+ The rights management data access handlers to add to the factory.
1069
1088
 
1070
1089
  ***
1071
1090
 
1072
- ### rightsManagementOffers?
1091
+ ### backgroundTasksEnabled?
1073
1092
 
1074
- > `optional` **rightsManagementOffers**: `string`
1093
+ > `optional` **backgroundTasksEnabled**: `string`
1075
1094
 
1076
- The rights management configuration which includes the offer modules to load.
1077
- Use the @json: prefix to specify the path to the JSON configuration file.
1095
+ Are background tasks enabled, defaults to false.
1078
1096
 
1079
1097
  ***
1080
1098
 
@@ -855,18 +855,6 @@ The type of logging task connector, can be a comma separated list: console, enti
855
855
 
856
856
  ***
857
857
 
858
- ### backgroundTaskConnector?
859
-
860
- > `optional` **backgroundTaskConnector**: `string`
861
-
862
- The type of background task connector: entity-storage.
863
-
864
- #### Inherited from
865
-
866
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`backgroundTaskConnector`](IEngineEnvironmentVariables.md#backgroundtaskconnector)
867
-
868
- ***
869
-
870
858
  ### eventBusConnector?
871
859
 
872
860
  > `optional` **eventBusConnector**: `string`
@@ -1459,27 +1447,64 @@ Is the federated catalogue enabled, defaults to false.
1459
1447
 
1460
1448
  ***
1461
1449
 
1462
- ### federatedCatalogueCacheTtlMs?
1450
+ ### federatedCatalogueFilters?
1463
1451
 
1464
- > `optional` **federatedCatalogueCacheTtlMs**: `number`
1452
+ > `optional` **federatedCatalogueFilters**: `string`
1465
1453
 
1466
- Federated catalog TTL for the cache.
1454
+ Federated catalog filters, command separated list of filters to add.
1467
1455
 
1468
1456
  #### Inherited from
1469
1457
 
1470
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueCacheTtlMs`](IEngineEnvironmentVariables.md#federatedcataloguecachettlms)
1458
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueFilters`](IEngineEnvironmentVariables.md#federatedcataloguefilters)
1471
1459
 
1472
1460
  ***
1473
1461
 
1474
- ### federatedCatalogueClearingHouseApproverList?
1462
+ ### trustEnabled?
1475
1463
 
1476
- > `optional` **federatedCatalogueClearingHouseApproverList**: `string`
1464
+ > `optional` **trustEnabled**: `string`
1477
1465
 
1478
- Federated catalog clearing house approver list, stringified array of DIDs.
1466
+ Is the trust management enabled, defaults to false.
1479
1467
 
1480
1468
  #### Inherited from
1481
1469
 
1482
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueClearingHouseApproverList`](IEngineEnvironmentVariables.md#federatedcatalogueclearinghouseapproverlist)
1470
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustEnabled`](IEngineEnvironmentVariables.md#trustenabled)
1471
+
1472
+ ***
1473
+
1474
+ ### trustGenerators?
1475
+
1476
+ > `optional` **trustGenerators**: `string`
1477
+
1478
+ The trust generators to add to the factory, comma separated list.
1479
+
1480
+ #### Inherited from
1481
+
1482
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustGenerators`](IEngineEnvironmentVariables.md#trustgenerators)
1483
+
1484
+ ***
1485
+
1486
+ ### trustVerifiers?
1487
+
1488
+ > `optional` **trustVerifiers**: `string`
1489
+
1490
+ The trust verifiers to add to the factory, comma separated list.
1491
+
1492
+ #### Inherited from
1493
+
1494
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerifiers`](IEngineEnvironmentVariables.md#trustverifiers)
1495
+
1496
+ ***
1497
+
1498
+ ### trustVerificationMethodId?
1499
+
1500
+ > `optional` **trustVerificationMethodId**: `string`
1501
+
1502
+ The verification method to use for trust identities.
1503
+ Defaults to node-authentication-assertion.
1504
+
1505
+ #### Inherited from
1506
+
1507
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerificationMethodId`](IEngineEnvironmentVariables.md#trustverificationmethodid)
1483
1508
 
1484
1509
  ***
1485
1510
 
@@ -1507,94 +1532,99 @@ What is the base callback url for rights management negotiations e.g. https://my
1507
1532
 
1508
1533
  ***
1509
1534
 
1510
- ### rightsManagementInformationSources?
1535
+ ### rightsManagementPolicyInformationSources?
1536
+
1537
+ > `optional` **rightsManagementPolicyInformationSources**: `string`
1538
+
1539
+ The rights management policy information sources to add to the factory.
1540
+
1541
+ #### Inherited from
1542
+
1543
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyInformationSources`](IEngineEnvironmentVariables.md#rightsmanagementpolicyinformationsources)
1544
+
1545
+ ***
1546
+
1547
+ ### rightsManagementPolicyNegotiators?
1511
1548
 
1512
- > `optional` **rightsManagementInformationSources**: `string`
1549
+ > `optional` **rightsManagementPolicyNegotiators**: `string`
1513
1550
 
1514
- The rights management configuration which includes the information sources modules to load.
1515
- Use the @json: prefix to specify the path to the JSON configuration file.
1551
+ The rights management policy negotiators sources to add to the factory.
1516
1552
 
1517
1553
  #### Inherited from
1518
1554
 
1519
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementInformationSources`](IEngineEnvironmentVariables.md#rightsmanagementinformationsources)
1555
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyNegotiators`](IEngineEnvironmentVariables.md#rightsmanagementpolicynegotiators)
1520
1556
 
1521
1557
  ***
1522
1558
 
1523
- ### rightsManagementNegotiators?
1559
+ ### rightsManagementPolicyRequesters?
1524
1560
 
1525
- > `optional` **rightsManagementNegotiators**: `string`
1561
+ > `optional` **rightsManagementPolicyRequesters**: `string`
1526
1562
 
1527
- The rights management configuration which includes the negotiator modules to load.
1528
- Use the @json: prefix to specify the path to the JSON configuration file.
1563
+ The rights management policy requesters to add to the factory.
1529
1564
 
1530
1565
  #### Inherited from
1531
1566
 
1532
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementNegotiators`](IEngineEnvironmentVariables.md#rightsmanagementnegotiators)
1567
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyRequesters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyrequesters)
1533
1568
 
1534
1569
  ***
1535
1570
 
1536
- ### rightsManagementRequesters?
1571
+ ### rightsManagementPolicyExecutionActions?
1537
1572
 
1538
- > `optional` **rightsManagementRequesters**: `string`
1573
+ > `optional` **rightsManagementPolicyExecutionActions**: `string`
1539
1574
 
1540
- The rights management configuration which includes the requester modules to load.
1541
- Use the @json: prefix to specify the path to the JSON configuration file.
1575
+ The rights management policy execution actions to add to the factory.
1542
1576
 
1543
1577
  #### Inherited from
1544
1578
 
1545
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementRequesters`](IEngineEnvironmentVariables.md#rightsmanagementrequesters)
1579
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyExecutionActions`](IEngineEnvironmentVariables.md#rightsmanagementpolicyexecutionactions)
1546
1580
 
1547
1581
  ***
1548
1582
 
1549
- ### rightsManagementExecutionActions?
1583
+ ### rightsManagementPolicyEnforcementProcessors?
1550
1584
 
1551
- > `optional` **rightsManagementExecutionActions**: `string`
1585
+ > `optional` **rightsManagementPolicyEnforcementProcessors**: `string`
1552
1586
 
1553
- The rights management configuration which includes the execution actions modules to load.
1554
- Use the @json: prefix to specify the path to the JSON configuration file.
1587
+ The rights management policy enforcement processors to add to the factory.
1555
1588
 
1556
1589
  #### Inherited from
1557
1590
 
1558
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementExecutionActions`](IEngineEnvironmentVariables.md#rightsmanagementexecutionactions)
1591
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyEnforcementProcessors`](IEngineEnvironmentVariables.md#rightsmanagementpolicyenforcementprocessors)
1559
1592
 
1560
1593
  ***
1561
1594
 
1562
- ### rightsManagementEnforcementProcessors?
1595
+ ### rightsManagementPolicyArbiters?
1563
1596
 
1564
- > `optional` **rightsManagementEnforcementProcessors**: `string`
1597
+ > `optional` **rightsManagementPolicyArbiters**: `string`
1565
1598
 
1566
- The rights management configuration which includes the enforcement processor modules to load.
1567
- Use the @json: prefix to specify the path to the JSON configuration file.
1599
+ The rights management policy arbiters to add to the factory.
1568
1600
 
1569
1601
  #### Inherited from
1570
1602
 
1571
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementEnforcementProcessors`](IEngineEnvironmentVariables.md#rightsmanagementenforcementprocessors)
1603
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyArbiters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyarbiters)
1572
1604
 
1573
1605
  ***
1574
1606
 
1575
- ### rightsManagementArbiters?
1607
+ ### rightsManagementDataAccessHandlers?
1576
1608
 
1577
- > `optional` **rightsManagementArbiters**: `string`
1609
+ > `optional` **rightsManagementDataAccessHandlers**: `string`
1578
1610
 
1579
- The rights management configuration which includes the arbiter modules to load.
1580
- Use the @json: prefix to specify the path to the JSON configuration file.
1611
+ The rights management data access handlers to add to the factory.
1581
1612
 
1582
1613
  #### Inherited from
1583
1614
 
1584
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementArbiters`](IEngineEnvironmentVariables.md#rightsmanagementarbiters)
1615
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementDataAccessHandlers`](IEngineEnvironmentVariables.md#rightsmanagementdataaccesshandlers)
1585
1616
 
1586
1617
  ***
1587
1618
 
1588
- ### rightsManagementOffers?
1619
+ ### backgroundTasksEnabled?
1589
1620
 
1590
- > `optional` **rightsManagementOffers**: `string`
1621
+ > `optional` **backgroundTasksEnabled**: `string`
1591
1622
 
1592
- The rights management configuration which includes the offer modules to load.
1593
- Use the @json: prefix to specify the path to the JSON configuration file.
1623
+ Are background tasks enabled, defaults to false.
1594
1624
 
1595
1625
  #### Inherited from
1596
1626
 
1597
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementOffers`](IEngineEnvironmentVariables.md#rightsmanagementoffers)
1627
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`backgroundTasksEnabled`](IEngineEnvironmentVariables.md#backgroundtasksenabled)
1598
1628
 
1599
1629
  ***
1600
1630