@twin.org/node 0.9.1-next.9 → 0.9.1

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.
@@ -561,7 +561,8 @@
561
561
  "completeFailed": "Failed to complete processing task \"{id}\" with type \"{type}\" with status \"{status}\"",
562
562
  "dispatchFailed": "Failed to dispatch task \"{taskId}\" with type \"{taskType}\"",
563
563
  "stateChangeCallbackFailed": "The state change callback failed for task \"{id}\" with type \"{type}\" and status \"{status}\"",
564
- "taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\""
564
+ "taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\"",
565
+ "executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed"
565
566
  },
566
567
  "s3BlobStorageConnector": {
567
568
  "bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
@@ -1101,6 +1102,9 @@
1101
1102
  "proofNotFound": "The proof with the Id \"{notFoundId}\" was not found",
1102
1103
  "createProofFailed": "Creating the immutable proof failed"
1103
1104
  },
1105
+ "immutableProofTask": {
1106
+ "taskNotarizationFailed": "The notarization for proof \"{proofId}\" failed after {elapsedMs}ms, the task will not be retried as the notarization may already be on the ledger"
1107
+ },
1104
1108
  "fileLoggingConnector": {
1105
1109
  "maxFileSizeTooSmall": "The maximum file size of {maxFileSizeBytes} bytes is below the minimum of {minimum} bytes, use 0 to disable rotation"
1106
1110
  },
@@ -1233,10 +1237,9 @@
1233
1237
  "transferFailed": "The transfer of the notarization failed"
1234
1238
  },
1235
1239
  "dataAccessPointService": {
1236
- "noHandlerForAssetType": "No handler registered for asset type \"{assetType}\"",
1237
- "notAuthorizedToQuery": "Not authorized to query asset type \"{assetType}\"",
1238
- "notAuthorizedToGet": "Not authorized to get asset type \"{assetType}\" with id \"{id}\""
1240
+ "noHandlerForAssetType": "No handler registered for asset type \"{assetType}\""
1239
1241
  },
1242
+ "dataAccessRequestPointService": {},
1240
1243
  "policyAdministrationPointService": {
1241
1244
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the rights management components \"{namespace}\"",
1242
1245
  "policyAlreadyExists": "A policy with id: \"{existingId}\" already exists",
@@ -1451,6 +1454,12 @@
1451
1454
  "pushSubscriptionNotFoundOnTeardown": "Push subscription not found for consumerPid \"{consumerPid}\" during teardown — treating as no-op",
1452
1455
  "pushSubscriptionNotFoundForActivity": "Push subscription not found for outbound activity (consumerPid: {consumerPid})"
1453
1456
  },
1457
+ "immutableProofService": {
1458
+ "taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires"
1459
+ },
1460
+ "immutableProofTask": {
1461
+ "taskEngineStopFailed": "Stopping the task engine for proof \"{proofId}\" failed, the task result is unaffected"
1462
+ },
1454
1463
  "policyNegotiationAdminPointService": {
1455
1464
  "sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
1456
1465
  },
@@ -2534,6 +2543,13 @@
2534
2543
  "contractReady": "Contract ready for use"
2535
2544
  },
2536
2545
  "iotaNotarizationConnector": {},
2546
+ "dataAccessPointService": {
2547
+ "registeredHandler": "Handler registered with id: \"{handlerId}\"",
2548
+ "unregisteredHandler": "Handler unregistered with id: \"{handlerId}\""
2549
+ },
2550
+ "dataAccessRequestPointService": {
2551
+ "missingNodeIdentity": "The node identity is missing"
2552
+ },
2537
2553
  "policyEnforcementPointService": {
2538
2554
  "processing": "Processing information using processor with id: \"{processorId}\", policy id: \"{policyId}\"",
2539
2555
  "intercepting": "Intercepting information for policy id: \"{policyId}\""
@@ -2672,9 +2688,11 @@
2672
2688
  "bootstrapping": "Bootstrapping component type \"{className}\" with instance type \"{instanceType}\"",
2673
2689
  "componentsStarting": "Components are starting",
2674
2690
  "componentsComplete": "Components have started",
2691
+ "componentsSummary": "Components started in {totalMs}ms, slowest: {slowestComponents}",
2675
2692
  "componentsStopping": "Components are stopping",
2676
2693
  "componentsStopped": "Components have stopped",
2677
2694
  "componentStarting": "Starting component type \"{className}\" with instance type \"{instanceType}\"",
2695
+ "componentStarted": "Started component type \"{className}\" with instance type \"{instanceType}\" in {elapsedMs}ms",
2678
2696
  "componentStopping": "Stopping component type \"{className}\" with instance type \"{instanceType}\""
2679
2697
  },
2680
2698
  "fileStateStorage": {
@@ -2798,6 +2816,11 @@
2798
2816
  "dataspaceDataPlaneSocketRoutes": {
2799
2817
  "activityLogStatusConnected": "Web Socket Connected: Socket Id: \"{socketId}\"",
2800
2818
  "activityLogStatusDisconnected": "Web Socket disconnected: Socket Id: \"{socketId}\""
2819
+ },
2820
+ "immutableProofTask": {
2821
+ "taskEngineStarted": "The proof task engine started for proof \"{proofId}\" in {elapsedMs}ms",
2822
+ "taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
2823
+ "taskNotarizationComplete": "The notarization for proof \"{proofId}\" completed in {elapsedMs}ms, total task time {totalElapsedMs}ms"
2801
2824
  }
2802
2825
  },
2803
2826
  "codeLists": {
package/docs/changelog.md CHANGED
@@ -1,5 +1,76 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.1](https://github.com/iotaledger/twin-node/compare/node-v0.9.1...node-v0.9.1) (2026-07-27)
4
+
5
+
6
+ ### Features
7
+
8
+ * add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
9
+ * add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
10
+ * add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
11
+ * add fedcat to openapi ([eac69bd](https://github.com/iotaledger/twin-node/commit/eac69bdf94a22c35fe58e7523d9cf78bdc72eb7b))
12
+ * add updated config vars ([ebe8178](https://github.com/iotaledger/twin-node/commit/ebe81788ce53ddf3d6925a5f2f6dac381f84f06c))
13
+ * improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
14
+ * initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
15
+ * migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
16
+ * node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
17
+ * release to production ([6319a38](https://github.com/iotaledger/twin-node/commit/6319a38490a2c2809622f8acd170cb92bfa06942))
18
+ * release to production ([4f44403](https://github.com/iotaledger/twin-node/commit/4f444039832edce8fae562baa7c900ccdc2181da))
19
+ * release to production ([2d96e37](https://github.com/iotaledger/twin-node/commit/2d96e3737bd9663bc0d1171c2ff2c7f8b2ab01bb))
20
+ * release to production ([#253](https://github.com/iotaledger/twin-node/issues/253)) ([230efd0](https://github.com/iotaledger/twin-node/commit/230efd0f99af6114e707999b4c1a83a391cc1741))
21
+ * release to production ([#300](https://github.com/iotaledger/twin-node/issues/300)) ([4d2b09f](https://github.com/iotaledger/twin-node/commit/4d2b09f92c7815ad3fe48d54eca0972fefc782f7))
22
+ * update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
23
+ * update spec generation config ([cff633a](https://github.com/iotaledger/twin-node/commit/cff633a0ffb73ad652d5f1bae653fa91e82dc8ab))
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
29
+ * adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
30
+ * broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
31
+
32
+ ## [0.9.1-next.12](https://github.com/iotaledger/twin-node/compare/node-v0.9.1-next.11...node-v0.9.1-next.12) (2026-07-27)
33
+
34
+
35
+ ### Features
36
+
37
+ * update logging retention units in config ([0b9bb69](https://github.com/iotaledger/twin-node/commit/0b9bb696db0722f6b33e37e1ebd1f4d6ffbcf7cc))
38
+
39
+
40
+ ### Dependencies
41
+
42
+ * The following workspace dependencies were updated
43
+ * dependencies
44
+ * @twin.org/node-core bumped from 0.9.1-next.11 to 0.9.1-next.12
45
+
46
+ ## [0.9.1-next.11](https://github.com/iotaledger/twin-node/compare/node-v0.9.1-next.10...node-v0.9.1-next.11) (2026-07-24)
47
+
48
+
49
+ ### Features
50
+
51
+ * migration options ([#293](https://github.com/iotaledger/twin-node/issues/293)) ([91acc88](https://github.com/iotaledger/twin-node/commit/91acc881f665be0177b2e895e2810dd4d6145105))
52
+
53
+
54
+ ### Dependencies
55
+
56
+ * The following workspace dependencies were updated
57
+ * dependencies
58
+ * @twin.org/node-core bumped from 0.9.1-next.10 to 0.9.1-next.11
59
+
60
+ ## [0.9.1-next.10](https://github.com/iotaledger/twin-node/compare/node-v0.9.1-next.9...node-v0.9.1-next.10) (2026-07-21)
61
+
62
+
63
+ ### Features
64
+
65
+ * update dependencies ([64c8ea8](https://github.com/iotaledger/twin-node/commit/64c8ea8c8b5e918f7ad419c4e3b8d08faf5e3fdd))
66
+
67
+
68
+ ### Dependencies
69
+
70
+ * The following workspace dependencies were updated
71
+ * dependencies
72
+ * @twin.org/node-core bumped from 0.9.1-next.9 to 0.9.1-next.10
73
+
3
74
  ## [0.9.1-next.9](https://github.com/iotaledger/twin-node/compare/node-v0.9.1-next.8...node-v0.9.1-next.9) (2026-07-21)
4
75
 
5
76
 
@@ -18654,6 +18654,15 @@
18654
18654
  "Policy Administration Point"
18655
18655
  ],
18656
18656
  "parameters": [
18657
+ {
18658
+ "name": "type",
18659
+ "description": "The type of policy to filter by.",
18660
+ "in": "query",
18661
+ "required": false,
18662
+ "schema": {
18663
+ "type": "string"
18664
+ }
18665
+ },
18657
18666
  {
18658
18667
  "name": "assigner",
18659
18668
  "description": "The assigner to filter by.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.9.1-next.9",
3
+ "version": "0.9.1",
4
4
  "description": "TWIN Node serving APIs using the specified configuration",
5
5
  "repository": {
6
6
  "type": "git",
@@ -11,10 +11,10 @@
11
11
  "license": "Apache-2.0",
12
12
  "type": "module",
13
13
  "engines": {
14
- "node": ">=20.0.0"
14
+ "node": ">=24.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/node-core": "0.9.1-next.9"
17
+ "@twin.org/node-core": "^0.9.1"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"