@twin.org/node-core 0.0.3-next.23 → 0.0.3-next.25
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/dist/es/builders/engineEnvBuilder.js +20 -11
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/engineServerEnvBuilder.js +17 -1
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/node.js +1 -1
- package/dist/es/node.js.map +1 -1
- package/dist/es/utils.js +1 -1
- package/dist/es/utils.js.map +1 -1
- package/dist/types/builders/engineServerEnvBuilder.d.ts +3 -1
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +12 -5
- package/docs/changelog.md +14 -0
- package/docs/reference/functions/buildEngineServerConfiguration.md +1 -1
- package/docs/reference/functions/resolvePackageEntryPoint.md +2 -2
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +19 -8
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +26 -11
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +26 -11
- package/package.json +3 -3
|
@@ -950,7 +950,7 @@ AWS SES endpoint.
|
|
|
950
950
|
|
|
951
951
|
> `optional` **awsMessagingPushNotificationApplications**: `string`
|
|
952
952
|
|
|
953
|
-
The applications for the push notifications
|
|
953
|
+
The applications for the push notifications reference a separate json with @json: prefix.
|
|
954
954
|
|
|
955
955
|
#### Inherited from
|
|
956
956
|
|
|
@@ -1660,21 +1660,21 @@ Is the task scheduler enabled, defaults to false.
|
|
|
1660
1660
|
|
|
1661
1661
|
***
|
|
1662
1662
|
|
|
1663
|
-
###
|
|
1663
|
+
### dataspaceEnabled?
|
|
1664
1664
|
|
|
1665
|
-
> `optional` **
|
|
1665
|
+
> `optional` **dataspaceEnabled**: `string`
|
|
1666
1666
|
|
|
1667
|
-
Is the
|
|
1667
|
+
Is the dataspace enabled, defaults to false.
|
|
1668
1668
|
|
|
1669
1669
|
#### Inherited from
|
|
1670
1670
|
|
|
1671
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1671
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataspaceEnabled`](IEngineServerEnvironmentVariables.md#dataspaceenabled)
|
|
1672
1672
|
|
|
1673
1673
|
***
|
|
1674
1674
|
|
|
1675
|
-
###
|
|
1675
|
+
### dataspaceRetainActivityLogsFor?
|
|
1676
1676
|
|
|
1677
|
-
> `optional` **
|
|
1677
|
+
> `optional` **dataspaceRetainActivityLogsFor**: `string`
|
|
1678
1678
|
|
|
1679
1679
|
The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
|
|
1680
1680
|
|
|
@@ -1686,13 +1686,13 @@ The length of time to retain the activity logs for in minutes, set to -1 to keep
|
|
|
1686
1686
|
|
|
1687
1687
|
#### Inherited from
|
|
1688
1688
|
|
|
1689
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1689
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataspaceRetainActivityLogsFor`](IEngineServerEnvironmentVariables.md#dataspaceretainactivitylogsfor)
|
|
1690
1690
|
|
|
1691
1691
|
***
|
|
1692
1692
|
|
|
1693
|
-
###
|
|
1693
|
+
### dataspaceActivityLogsCleanUpInterval?
|
|
1694
1694
|
|
|
1695
|
-
> `optional` **
|
|
1695
|
+
> `optional` **dataspaceActivityLogsCleanUpInterval**: `string`
|
|
1696
1696
|
|
|
1697
1697
|
The interval for cleaning up the activity logs.
|
|
1698
1698
|
|
|
@@ -1704,7 +1704,22 @@ The interval for cleaning up the activity logs.
|
|
|
1704
1704
|
|
|
1705
1705
|
#### Inherited from
|
|
1706
1706
|
|
|
1707
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1707
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataspaceActivityLogsCleanUpInterval`](IEngineServerEnvironmentVariables.md#dataspaceactivitylogscleanupinterval)
|
|
1708
|
+
|
|
1709
|
+
***
|
|
1710
|
+
|
|
1711
|
+
### dataspaceDataPlanePath?
|
|
1712
|
+
|
|
1713
|
+
> `optional` **dataspaceDataPlanePath**: `string`
|
|
1714
|
+
|
|
1715
|
+
The data plane path for PULL transfers (path only, not full URL).
|
|
1716
|
+
Will be combined with public origin from hosting component.
|
|
1717
|
+
Required if PULL transfers should be supported.
|
|
1718
|
+
Example: "dataspace/entities"
|
|
1719
|
+
|
|
1720
|
+
#### Inherited from
|
|
1721
|
+
|
|
1722
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataspaceDataPlanePath`](IEngineServerEnvironmentVariables.md#dataspacedataplanepath)
|
|
1708
1723
|
|
|
1709
1724
|
***
|
|
1710
1725
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node-core",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.25",
|
|
4
4
|
"description": "TWIN Node Core for serving APIs using the specified configuration",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@twin.org/context": "next",
|
|
21
21
|
"@twin.org/core": "next",
|
|
22
22
|
"@twin.org/crypto": "next",
|
|
23
|
-
"@twin.org/
|
|
23
|
+
"@twin.org/dataspace-models": "next",
|
|
24
24
|
"@twin.org/engine": "next",
|
|
25
25
|
"@twin.org/engine-core": "next",
|
|
26
26
|
"@twin.org/engine-models": "next",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@twin.org/trust-models": "next",
|
|
38
38
|
"@twin.org/vault-models": "next",
|
|
39
39
|
"@twin.org/wallet-models": "next",
|
|
40
|
-
"dotenv": "17.
|
|
40
|
+
"dotenv": "17.3.1",
|
|
41
41
|
"schema-dts": "1.1.5"
|
|
42
42
|
},
|
|
43
43
|
"main": "./dist/es/index.js",
|