@twin.org/node 0.0.3-next.31 → 0.0.3-next.33
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/locales/en.json +69 -0
- package/docs/changelog.md +28 -0
- package/docs/open-api/spec.json +1547 -167
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -418,6 +418,7 @@
|
|
|
418
418
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Stream service \"{namespace}\"",
|
|
419
419
|
"createFailed": "Creating the Auditable Item Stream failed",
|
|
420
420
|
"getFailed": "Getting the Auditable Item Stream failed",
|
|
421
|
+
"closeFailed": "Closing the Auditable Item Stream failed",
|
|
421
422
|
"updatingFailed": "Updating the Auditable Item Stream failed",
|
|
422
423
|
"removingFailed": "Removing Auditable Item Stream failed",
|
|
423
424
|
"queryingFailed": "Querying the Auditable Item Stream failed",
|
|
@@ -429,9 +430,21 @@
|
|
|
429
430
|
"gettingEntriesFailed": "Getting entries from the Auditable Item Stream failed",
|
|
430
431
|
"gettingEntryObjectsFailed": "Getting entry objects from the Auditable Item Stream failed",
|
|
431
432
|
"removeVerifiableFailed": "Removing verifiable storage from the Auditable Item Stream failed",
|
|
433
|
+
"closedRequiresEntries": "A stream can only be created as closed when entries are provided",
|
|
434
|
+
"streamClosed": "The stream with the Id \"{id}\" is closed and does not allow entry updates",
|
|
435
|
+
"appendOnlyNoEntryUpdates": "Entries in append-only mode cannot be updated for stream \"{id}\"",
|
|
436
|
+
"appendOnlyNoEntryRemovals": "Entries in append-only mode cannot be removed for stream \"{id}\"",
|
|
432
437
|
"streamNotFound": "The stream with the Id \"{notFoundId}\" was not found",
|
|
433
438
|
"streamEntryNotFound": "The stream entry with the Id \"{notFoundId}\" was not found"
|
|
434
439
|
},
|
|
440
|
+
"automationService": {
|
|
441
|
+
"actionCreateFailed": "Creating action of type \"{actionType}\" with trigger \"{trigger}\" failed",
|
|
442
|
+
"actionRemoveFailed": "Removing action with id \"{actionId}\" failed",
|
|
443
|
+
"actionFailed": "Triggering action \"{name}\" with trigger \"{trigger}\" failed",
|
|
444
|
+
"actionNotFound": "Action with id \"{notFoundId}\" not found",
|
|
445
|
+
"actionGetFailed": "Getting action with id \"{actionId}\" failed",
|
|
446
|
+
"actionTypeNotFound": "Action type \"{actionType}\" not found for trigger \"{trigger}\""
|
|
447
|
+
},
|
|
435
448
|
"taskSchedulerService": {
|
|
436
449
|
"taskFailed": "Task with id \"{id}\" failed to run"
|
|
437
450
|
},
|
|
@@ -948,6 +961,54 @@
|
|
|
948
961
|
"transferFailed": "The transfer of the NFT failed",
|
|
949
962
|
"updateFailed": "The update of the NFT failed"
|
|
950
963
|
},
|
|
964
|
+
"entityStorageNotarizationConnector": {
|
|
965
|
+
"creationFailed": "Creating the notarization failed",
|
|
966
|
+
"getFailed": "Getting the notarization failed",
|
|
967
|
+
"removeFailed": "Removing the notarization failed",
|
|
968
|
+
"updateFailed": "Updating the notarization failed",
|
|
969
|
+
"transferFailed": "Transferring the notarization failed",
|
|
970
|
+
"namespaceMismatch": "The notarization id namespace is invalid for this connector",
|
|
971
|
+
"notarizationNotFound": "The requested notarization could not be found",
|
|
972
|
+
"notControllerRemove": "Only the controller can remove this notarization",
|
|
973
|
+
"notControllerUpdate": "Only the controller can update this notarization",
|
|
974
|
+
"deleteLockActive": "The notarization cannot be removed until the delete lock expires",
|
|
975
|
+
"updateLockActive": "The notarization is locked and cannot be updated",
|
|
976
|
+
"transferLockActive": "The notarization is locked and cannot be transferred",
|
|
977
|
+
"immutableFieldModification": "Cannot modify immutable notarization field",
|
|
978
|
+
"lockedNotarizationDeleteLockMustHaveDate": "Locked notarization delete locks must specify an UnlockAt date",
|
|
979
|
+
"lockedNotarizationCannotHaveTransferLock": "Locked notarizations are non-transferable and cannot have a transfer lock",
|
|
980
|
+
"dynamicNotarizationCannotHaveDeleteLock": "Dynamic notarizations cannot have a delete lock",
|
|
981
|
+
"dynamicNotarizationTransferLockMustHaveDate": "Dynamic notarization transfer locks must specify a valid UnlockAt date"
|
|
982
|
+
},
|
|
983
|
+
"iotaNotarizationConnector": {
|
|
984
|
+
"creationFailed": "Failed to create the notarization.",
|
|
985
|
+
"creationFailedOutput": "Failed to parse the created notarization from transaction output.",
|
|
986
|
+
"deleteLockActive": "Deletion is currently locked for this notarization.",
|
|
987
|
+
"getFailed": "Failed to get the notarization.",
|
|
988
|
+
"invalidDate": "The value \"{value}\" is not a valid ISO date-time.",
|
|
989
|
+
"namespaceMismatch": "The notarization id \"{id}\" is not in the expected namespace \"{namespace}\".",
|
|
990
|
+
"removeFailed": "Failed to remove the notarization.",
|
|
991
|
+
"transferFailed": "Failed to transfer the notarization.",
|
|
992
|
+
"transferLockActive": "Transfer is currently locked for this notarization.",
|
|
993
|
+
"updateFailed": "Failed to update the notarization.",
|
|
994
|
+
"updateLockActive": "Updates are currently locked for this notarization.",
|
|
995
|
+
"updateWhileLocked": "Cannot update state while notarization is locked for updates",
|
|
996
|
+
"destroyWhileLocked": "Cannot destroy notarization while locked for deletion",
|
|
997
|
+
"lockTimeNotSatisfied": "The lock time is not satisfied",
|
|
998
|
+
"untilDestroyedLockNotAllowed": "Delete lock cannot be UntilDestroyed",
|
|
999
|
+
"dynamicNotarizationInvariants": "Invariants for dynamic notarization are broken by the specified",
|
|
1000
|
+
"lockedNotarizationInvariants": "Invariants for locked notarization are broken by the specified",
|
|
1001
|
+
"unknownAbortCode": "An unknown abort code was returned: \"{abortCode}\""
|
|
1002
|
+
},
|
|
1003
|
+
"notarizationService": {
|
|
1004
|
+
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the notarization service \"{namespace}\"",
|
|
1005
|
+
"noConnectors": "There are no connectors registered with the notarization factory",
|
|
1006
|
+
"createFailed": "The creation of the notarization failed",
|
|
1007
|
+
"getFailed": "The retrieval of the notarization failed",
|
|
1008
|
+
"removeFailed": "The removal of the notarization failed",
|
|
1009
|
+
"updateFailed": "The update of the notarization failed",
|
|
1010
|
+
"transferFailed": "The transfer of the notarization failed"
|
|
1011
|
+
},
|
|
951
1012
|
"dataAccessPointService": {
|
|
952
1013
|
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\"",
|
|
953
1014
|
"notAuthorizedToQuery": "Not authorized to query asset type \"{assetType}\"",
|
|
@@ -1865,6 +1926,13 @@
|
|
|
1865
1926
|
"engineTypes": {
|
|
1866
1927
|
"configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector"
|
|
1867
1928
|
},
|
|
1929
|
+
"fetchAction": {
|
|
1930
|
+
"fetch": "Fetch \"{url}\" with method \"{method}\""
|
|
1931
|
+
},
|
|
1932
|
+
"automationService": {
|
|
1933
|
+
"trigger": "Triggering automation action with trigger \"{trigger}\"",
|
|
1934
|
+
"actionTriggered": "Triggered action \"{name}\" with trigger \"{trigger}\""
|
|
1935
|
+
},
|
|
1868
1936
|
"taskSchedulerService": {
|
|
1869
1937
|
"taskAdded": "Task with id \"{id}\" added",
|
|
1870
1938
|
"taskRemoved": "Task with id \"{id}\" removed",
|
|
@@ -2034,6 +2102,7 @@
|
|
|
2034
2102
|
"iotaNftConnector": {
|
|
2035
2103
|
"contractReady": "Contract ready for use"
|
|
2036
2104
|
},
|
|
2105
|
+
"iotaNotarizationConnector": {},
|
|
2037
2106
|
"policyEnforcementPointService": {
|
|
2038
2107
|
"processing": "Processing information using processor with id: \"{processorId}\", policy id: \"{policyId}\"",
|
|
2039
2108
|
"intercepting": "Intercepting information for policy id: \"{policyId}\""
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.33](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.32...node-v0.0.3-next.33) (2026-04-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add automation ([cfc63b4](https://github.com/twinfoundation/node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
|
|
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.32 to 0.0.3-next.33
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.32](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.31...node-v0.0.3-next.32) (2026-04-16)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add notarization ([#121](https://github.com/twinfoundation/node/issues/121)) ([b2a11df](https://github.com/twinfoundation/node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
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.31 to 0.0.3-next.32
|
|
30
|
+
|
|
3
31
|
## [0.0.3-next.31](https://github.com/twinfoundation/node/compare/node-v0.0.3-next.30...node-v0.0.3-next.31) (2026-04-14)
|
|
4
32
|
|
|
5
33
|
|