@twin.org/node 0.0.3-next.64 → 0.0.3-next.66

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/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.66](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.65...node-v0.0.3-next.66) (2026-06-23)
4
+
5
+
6
+ ### Features
7
+
8
+ * add standalone federated catalogue example config and endpoint tests ([#235](https://github.com/iotaledger/twin-node/issues/235)) ([ffb51dd](https://github.com/iotaledger/twin-node/commit/ffb51ddda5188c2f21b8ce65343b39a28f4eee4b))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/node-core bumped from 0.0.3-next.65 to 0.0.3-next.66
16
+
17
+ ## [0.0.3-next.65](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.64...node-v0.0.3-next.65) (2026-06-23)
18
+
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * **node:** Synchronize repo versions
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @twin.org/node-core bumped from 0.0.3-next.64 to 0.0.3-next.65
30
+
3
31
  ## [0.0.3-next.64](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.63...node-v0.0.3-next.64) (2026-06-23)
4
32
 
5
33
 
@@ -1,5 +1,16 @@
1
1
  # Node Configuration
2
2
 
3
+ ## Available Example Configurations
4
+
5
+ Four ready-to-use example files are provided in `apps/node/`. Copy the relevant file to `.env` as a starting point:
6
+
7
+ | File | Role |
8
+ | ----------------------------------- | ------------------------------------------------------------------------- |
9
+ | `.env.example-local-entity-storage` | Full-featured node using local file/entity storage |
10
+ | `.env.example-aws-ec2` | Full-featured node deployed on Amazon AWS EC2 with DynamoDB |
11
+ | `.env.example-iota-testnet` | Full-featured node connected to the IOTA testnet |
12
+ | `.env.example-federated-catalogue` | Standalone federated catalogue server (no dataspace or rights management) |
13
+
3
14
  ## Extension Loading
4
15
 
5
16
  The TWIN Node supports loading extensions dynamically to extend its functionality. Extensions can be loaded from multiple sources using protocol-based syntax.
@@ -99,7 +99,7 @@ cd apps
99
99
  npm install
100
100
  npm run dist
101
101
  cd apps/node
102
- cp .env.example-entity-storage .env
102
+ cp .env.example-local-entity-storage .env
103
103
  ```
104
104
 
105
105
  The .env file can be modified to suit your own use case. For example to set the location for the storage.
@@ -9899,7 +9899,7 @@
9899
9899
  "parameters": [
9900
9900
  {
9901
9901
  "name": "id",
9902
- "description": "The rule id to set.",
9902
+ "description": "The id of the rule group to set.",
9903
9903
  "in": "path",
9904
9904
  "required": true,
9905
9905
  "schema": {
@@ -10011,7 +10011,7 @@
10011
10011
  "parameters": [
10012
10012
  {
10013
10013
  "name": "id",
10014
- "description": "The rule id to set.",
10014
+ "description": "The id of the rule group to retrieve.",
10015
10015
  "in": "path",
10016
10016
  "required": true,
10017
10017
  "schema": {
@@ -10120,7 +10120,7 @@
10120
10120
  "parameters": [
10121
10121
  {
10122
10122
  "name": "id",
10123
- "description": "The rule id to remove.",
10123
+ "description": "The id of the rule group to remove.",
10124
10124
  "in": "path",
10125
10125
  "required": true,
10126
10126
  "schema": {
@@ -21593,7 +21593,7 @@
21593
21593
  "required": [
21594
21594
  "data"
21595
21595
  ],
21596
- "description": "The params for the convert."
21596
+ "description": "The request body containing the data to convert."
21597
21597
  },
21598
21598
  "DataProcessingConvertResponse": {
21599
21599
  "description": "The converted data as an object."
@@ -21622,10 +21622,10 @@
21622
21622
  "ruleGroupId",
21623
21623
  "data"
21624
21624
  ],
21625
- "description": "The params for the extract."
21625
+ "description": "The request body containing the data and rule group to use for extraction."
21626
21626
  },
21627
21627
  "DataProcessingExtractResponse": {
21628
- "description": "The extracted data in extended JSON format which keeps types like bigint, dates and uint8array intact.\nUse ObjectHelper.fromExtended to get the object with original types."
21628
+ "description": "The extracted data in extended JSON format, preserving types such as bigint, dates, and Uint8Array."
21629
21629
  },
21630
21630
  "DataProcessingRuleGroupListResponse": {
21631
21631
  "type": "object",
@@ -21645,7 +21645,7 @@
21645
21645
  "required": [
21646
21646
  "entities"
21647
21647
  ],
21648
- "description": "The response payload."
21648
+ "description": "The response body containing the list of rule groups and optional pagination cursor."
21649
21649
  },
21650
21650
  "DataProcessingRuleGroupSetRequest": {
21651
21651
  "type": "object",
@@ -21666,7 +21666,7 @@
21666
21666
  "label",
21667
21667
  "rules"
21668
21668
  ],
21669
- "description": "The data to be used in the store."
21669
+ "description": "The rule group data to store."
21670
21670
  },
21671
21671
  "DatasetGetResponse": {
21672
21672
  "anyOf": [
@@ -23018,14 +23018,11 @@
23018
23018
  "properties": {
23019
23019
  "source": {
23020
23020
  "type": "string",
23021
- "description": "The path to the data in the document to extract.\nshould be in JSONPath format https://www.rfc-editor.org/rfc/rfc9535.html."
23021
+ "description": "The JSONPath expression identifying the data to extract from the document."
23022
23022
  },
23023
23023
  "target": {
23024
23024
  "type": "string",
23025
- "description": "The target path of where to store the extracted data.\nSupports simple dotted path notation, and numeric index notation.",
23026
- "examples": [
23027
- "\"path.to.data\" or \"path.to.data.0\""
23028
- ]
23025
+ "description": "The target path of where to store the extracted data, using dotted or numeric index notation."
23029
23026
  },
23030
23027
  "retainPathDepth": {
23031
23028
  "type": "number",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.0.3-next.64",
3
+ "version": "0.0.3-next.66",
4
4
  "description": "TWIN Node serving APIs using the specified configuration",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,7 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/node-core": "0.0.3-next.64"
17
+ "@twin.org/node-core": "0.0.3-next.66"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"