@twin.org/node 0.0.3-next.48 → 0.0.3-next.50

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.
@@ -313,7 +313,12 @@
313
313
  "invalidEntityProperties": "The schema has no properties defined, but the entity has properties",
314
314
  "invalidEntityProperty": "The entity value of \"{value}\" does not match the type \"{type}\" for property \"{property}\"",
315
315
  "invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
316
- "invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\""
316
+ "invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\"",
317
+ "versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}"
318
+ },
319
+ "entityStorageHelper": {
320
+ "sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
321
+ "propertyNotInSchema": "The property \"{property}\" does not exist in the schema and cannot be used for projection"
317
322
  },
318
323
  "migrationHelper": {
319
324
  "migrationFailed": "Migration failed.",
@@ -618,7 +623,8 @@
618
623
  "invalidPushDataAddress": "PUSH transfer cannot start: consumer dataAddress is missing endpoint or endpointType (consumerPid: {consumerPid})",
619
624
  "pushTransferDataPathNotConfigured": "PUSH transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
620
625
  "dataPlaneNotRegistered": "Push-mode transfer requires the data plane component to be registered (factory key: \"dataspace-data-plane\"). This deployment was configured without a data plane — register one to enable push, or use pull-mode transfers only.",
621
- "datasetPublishFailed": "Failed to publish dataset {datasetRecordId} for app {appId} (tenant: {tenantId})",
626
+ "datasetPublishFailed": "Failed to publish dataset \"{datasetId}\" for app \"{appId}\" (tenant: \"{tenantId}\")",
627
+ "datasetRemoveFailed": "Failed to remove dataset \"{datasetId}\" from the Federated Catalogue (tenant: \"{tenantId}\")",
622
628
  "datasetNodeContextRequired": "A node context is required to register a dataset.",
623
629
  "datasetAlreadyExists": "A dataset with id \"{existingId}\" already exists.",
624
630
  "datasetNotFound": "Dataset not found",
@@ -691,7 +697,6 @@
691
697
  "comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
692
698
  "conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
693
699
  "sortSingle": "You can only sort by a single property",
694
- "sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
695
700
  "containerCreateFailed": "The container couldn't be created \"{containerId}\"",
696
701
  "databaseCreateFailed": "Unable to create database \"{databaseId}\"",
697
702
  "containerDoesNotExist": "Container \"{containerId}\" does not exist",
@@ -713,7 +718,6 @@
713
718
  "comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
714
719
  "conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
715
720
  "sortSingle": "You can only sort by a single property",
716
- "sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
717
721
  "propertyNotFound": "The property \"{property}\" was not found on the entity schema",
718
722
  "getPartitionContextIdsFailed": "Unable to get partition context ids",
719
723
  "setBatchFailed": "Unable to set batch of entities",
@@ -815,11 +819,14 @@
815
819
  "notEqualsNotSupported": "The NotEquals operator is not supported in CQL queries for property \"{property}\"",
816
820
  "notIncludesNotSupported": "The NotIncludes operator is not supported in CQL queries for property \"{property}\"",
817
821
  "orConditionNotSupported": "OR logical operators are not supported in CQL queries",
818
- "countFailed": "Unable to count entities"
822
+ "countFailed": "Unable to count entities",
823
+ "sortOnlyPrimaryKey": "ScyllaDB only supports ORDER BY on clustering (primary key) columns; \"{property}\" is a secondary index and cannot be used for sorting"
819
824
  },
820
- "synchronisedEntityStorageConnector": {
821
- "missingRequiredProperty": "The property \"{requiredProperty}\" is required when using the Synchronised Entity Storage Connector.",
822
- "missingRequiredPropertySort": "The property \"{requiredProperty}\" requires sorting attributes for the Synchronised Entity Storage Connector."
825
+ "schemaVersionService": {
826
+ "storedVersionNewer": "Stored schema version ({stored}) for \"{schemaName}\" is newer than the current version ({current}). Downgrade is not supported.",
827
+ "noMigrationStep": "No migration step from version {missingFromVersion} to {missingToVersion} found for \"{schemaName}\". Cannot complete migration from {stored} to {current}. Register the versioned schema class \"{schemaName}V{missingFromVersion}\" in EntitySchemaFactory.",
828
+ "noMigrationStepTarget": "No target schema for migration step {missingFromVersion} to {missingToVersion} found for \"{schemaName}\". Cannot complete migration from {stored} to {current}. Register the versioned schema class \"{schemaName}V{missingToVersion}\" in EntitySchemaFactory.",
829
+ "connectorNotMigrationCapable": "Schema \"{schemaName}\" needs migration from version {stored} to {current} but its connector does not support automatic migration. Please migrate the schema manually before starting the node."
823
830
  },
824
831
  "localEventBusConnector": {
825
832
  "callback": "The callback failed during publish topic \"{topic}\" for subscriptionId \"{subscriptionId}\""
@@ -831,15 +838,14 @@
831
838
  },
832
839
  "federatedCatalogueService": {
833
840
  "datasetNotFound": "Dataset with ID \"{notFoundId}\" not found in the catalogue",
834
- "datasetIdInvalidUri": "Dataset @id \"{dataSetId}\" must be a valid URI (URN or URL) per DS Protocol",
835
- "datasetMissingPublisher": "Dataset \"{dataSetId}\" is missing required dcterms:publisher property (needed for participant identification)",
836
- "filterIndexCreationFailed": "Failed to create filter index for dataset \"{dataSetId}\" using filter \"{filterType}\"",
841
+ "datasetIdInvalidUri": "Dataset @id \"{datasetId}\" must be a valid URI (URN or URL) per DS Protocol",
842
+ "datasetMissingPublisher": "Dataset \"{datasetId}\" is missing required dcterms:publisher property (needed for participant identification)",
843
+ "filterIndexCreationFailed": "Failed to create filter index for dataset \"{datasetId}\" using filter \"{filterType}\"",
837
844
  "multipleFiltersNotSupported": "Multiple filters are not supported in a single query",
838
845
  "filterMustBeArray": "Filter must be an array per DS Protocol specification",
839
- "noDatasetsFound": "No datasets found in the catalogue"
840
- },
841
- "federatedCatalogueRestClient": {
842
- "notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
846
+ "noDatasetsFound": "No datasets found in the catalogue",
847
+ "datasetOwnerMismatch": "Dataset \"{datasetId}\" already exists and is owned by a different identity",
848
+ "datasetRemoveNotOwner": "Dataset \"{datasetId}\" can only be removed by its owner"
843
849
  },
844
850
  "entityStorageIdentityResolverConnector": {
845
851
  "documentNotFound": "The document could not be found",
@@ -1200,6 +1206,7 @@
1200
1206
  "noRequesterFound": "No requester found with type: \"{notFoundId}\"",
1201
1207
  "negotiationFailed": "Negotiation failed for offer id: \"{offerId}\"",
1202
1208
  "agreementMissing": "The agreement is missing",
1209
+ "agreementOfferIdCollision": "The agreement id collides with the offer id, the negotiator must allocate a distinct id: \"{id}\"",
1203
1210
  "negotiationNotFound": "No negotiation found with id: \"{notFoundId}\"",
1204
1211
  "requesterNotFound": "No requester found with id: \"{notFoundId}\"",
1205
1212
  "invalidState": "The negotiation is in an incorrect state \"{state}\" for negotiation with id: \"{negotiationId}\"",
@@ -1220,21 +1227,6 @@
1220
1227
  "notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component",
1221
1228
  "publicOriginNotRequired": "The publicOrigin parameter is not required on the REST client"
1222
1229
  },
1223
- "synchronisedStorageService": {
1224
- "notTrustedNode": "This method can only be called on a trusted node",
1225
- "entitySyncFailed": "Failed to sync synchronised entity storage connector",
1226
- "consolidationSyncFailed": "Failed to consolidate synchronised entity storage connector",
1227
- "decryptionKeyNotFound": "Decryption key not found, ensure the synchronised storage component is initialised and the decryption key is set"
1228
- },
1229
- "remoteSyncStateHelper": {
1230
- "finalisingSyncChangesFailed": "Failed to finalise sync changes for storage key \"{storageKey}\""
1231
- },
1232
- "blobStorageHelper": {
1233
- "loadBlobFailed": "Failed to load blob with id \"{blobId}\"",
1234
- "saveBlobFailed": "Failed to save blob",
1235
- "notTrustedNode": "Cannot save blob, this is not a trusted node",
1236
- "removeBlobFailed": "Failed to remove blob with id \"{blobId}\""
1237
- },
1238
1230
  "entityStorageTelemetryConnector": {
1239
1231
  "metricNotFound": "The metric could not be found \"{notFoundId}\"",
1240
1232
  "metricAlreadyExists": "The metric already exists \"{existingId}\"",
@@ -1254,6 +1246,11 @@
1254
1246
  "noGeneratorsRegistered": "No trust generators are registered in the factory",
1255
1247
  "noVerifiersRegistered": "No trust verifiers are registered in the factory"
1256
1248
  },
1249
+ "identityAllowDenyVerifier": {
1250
+ "identityMissing": "The identity is missing from the verification info.",
1251
+ "identityNotAllowed": "The identity is not in the allowed identities list \"{identity}\".",
1252
+ "identityDenied": "The identity is in the denied identities list \"{identity}\"."
1253
+ },
1257
1254
  "jwtVerifiableCredentialVerifier": {
1258
1255
  "tokenMissingCredential": "The JWT token does not contain a verifiable credential.",
1259
1256
  "tokenMissingIssuer": "The verifiable credential in the JWT does not contain an issuer.",
@@ -1301,50 +1298,6 @@
1301
1298
  "renameKeyFailed": "Failed to rename key from \"{name}\" to \"{newName}\"",
1302
1299
  "keyTypeMismatch": "The key type \"{keyType}\" does not match the requested encryption method \"{encryptionType}\""
1303
1300
  },
1304
- "entityStorageVerifiableStorageConnector": {
1305
- "verifiableStorageNotFound": "The verifiable item with the Id \"{notFoundId}\" was not found",
1306
- "creatingFailed": "Creating the item failed",
1307
- "updatingFailed": "Updating the item failed",
1308
- "gettingFailed": "Getting the item failed",
1309
- "removingFailed": "Removing the item failed",
1310
- "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the IOTA Verifiable Storage connector \"{namespace}\"",
1311
- "notInAllowList": "The user is not in the allow list",
1312
- "notCreator": "Only the creator can remove the verifiable item",
1313
- "allowListTooBig": "The number of items in the allow list is larger than the maximum allowed"
1314
- },
1315
- "iotaVerifiableStorageConnector": {
1316
- "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the IOTA Verifiable Storage connector \"{namespace}\"",
1317
- "creatingFailed": "Creating the verifiable item failed",
1318
- "updatingFailed": "Updating the verifiable item failed",
1319
- "gettingFailed": "Getting the verifiable item failed",
1320
- "removingFailed": "Removing the verifiable item failed",
1321
- "updateFailed": "Updating the verifiable item failed",
1322
- "packageIdNotFound": "Package ID not found for network \"{network}\"",
1323
- "storingTransactionFailed": "The transaction to store the data failed",
1324
- "removingTransactionFailed": "The transaction to remove the data failed",
1325
- "objectNotFound": "The object was not found",
1326
- "objectIdNotFound": "The object ID was not found in the verifiable item for namespace \"{namespace}\"",
1327
- "connectorNotStarted": "Please call start() before using this connector. Package ID: \"{packageId}\" is missing.",
1328
- "startFailed": "Failed to start the IOTA Verifiable Storage connector.",
1329
- "invalidGasBudget": "The gas budget must be greater than 0",
1330
- "notInAllowList": "The user is not in the allow list",
1331
- "notCreator": "Only the creator can remove the verifiable item",
1332
- "allowListTooBig": "The number of items in the allow list is larger than the maximum allowed",
1333
- "contractDataNotFound": "Contract data not found for network \"{network}\". Available networks: {availableNetworks}",
1334
- "deployedPackageIdRequired": "deployedPackageId is required for network operations on \"{network}\".",
1335
- "packageNotFoundOnNetwork": "Package \"{deployedPackageId}\" not found on \"{network}\" network"
1336
- },
1337
- "iotaVerifiableStorageUtils": {
1338
- "invalidVerifiableStorageIdFormat": "The verifiable storage ID \"{id}\" has an invalid format"
1339
- },
1340
- "verifiableStorageService": {
1341
- "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Verifiable Storage service \"{namespace}\"",
1342
- "noConnectors": "There are no connectors registered with the Verifiable Storage factory",
1343
- "createFailed": "The creating of the Verifiable Storage failed",
1344
- "updateFailed": "The updating of the Verifiable Storage failed",
1345
- "getFailed": "The retrieving of the Verifiable Storage failed",
1346
- "removeFailed": "The removing of the Verifiable Storage failed"
1347
- },
1348
1301
  "entityStorageWalletConnector": {
1349
1302
  "insufficientFunds": "There are insufficient funds in the wallet."
1350
1303
  },
@@ -1412,7 +1365,6 @@
1412
1365
  "nodeIdentityCreate": "Creating node identity",
1413
1366
  "nodeAuthKeyCreate": "Creating node auth key",
1414
1367
  "trustVerificationMethodCreate": "Creating trust verification method for node identity",
1415
- "synchronisedStorageKeyAdd": "Adding synchronised storage key for node identity",
1416
1368
  "nodeIdentitySet": "Setting node identity",
1417
1369
  "nodeTenantCreate": "Creating node tenant",
1418
1370
  "organisationCreate": "Creating organisation identity",
@@ -1980,12 +1932,6 @@
1980
1932
  },
1981
1933
  "policyNegotiationAdminPointService": {
1982
1934
  "sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
1983
- },
1984
- "changeSetHelper": {
1985
- "getChangeSetError": "Failed to retrieve change set with id \"{changeSetStorageId}\""
1986
- },
1987
- "remoteSyncStateHelper": {
1988
- "getSyncStateError": "Failed to retrieve sync state for syncPointerId \"{syncPointerId}\""
1989
1935
  }
1990
1936
  },
1991
1937
  "cli": {
@@ -2238,12 +2184,12 @@
2238
2184
  "unsubscribe": "Subscription removed for topic \"{topic}\" with id \"{subscriptionId}\""
2239
2185
  },
2240
2186
  "federatedCatalogueService": {
2241
- "datasetRetrieve": "Retrieving dataset \"{dataSetId}\" from catalogue",
2242
- "datasetSet": "Storing dataset \"{dataSetId}\" in catalogue",
2243
- "datasetRemove": "Removing dataset \"{dataSetId}\" from catalogue",
2187
+ "datasetRetrieve": "Retrieving dataset \"{datasetId}\" from catalogue",
2188
+ "datasetSet": "Storing dataset \"{datasetId}\" in catalogue",
2189
+ "datasetRemove": "Removing dataset \"{datasetId}\" from catalogue",
2244
2190
  "catalogQuery": "Executing catalogue query",
2245
2191
  "catalogQueryComplete": "Catalogue query complete, found {resultCount} results",
2246
- "filterIndexPersisted": "Filter indexes persisted for dataset \"{dataSetId}\" using filter \"{filterType}\", {indexCount} entries"
2192
+ "filterIndexPersisted": "Filter indexes persisted for dataset \"{datasetId}\" using filter \"{filterType}\", {indexCount} entries"
2247
2193
  },
2248
2194
  "iota": {
2249
2195
  "transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
@@ -2328,69 +2274,6 @@
2328
2274
  "executingActions": "Executing actions for stage: \"{stage}\", policy id: \"{policyId}\"",
2329
2275
  "executingAction": "Executing action for stage: \"{stage}\", policy id: \"{policyId}\""
2330
2276
  },
2331
- "changeSetHelper": {
2332
- "changeSetApplyingChange": "Applying remote sync change with operation id \"{operation}\" for item with id \"{id}\"",
2333
- "changeSetStoring": "Storing remote sync change set with id \"{id}\"",
2334
- "getChangeSet": "Retrieving change set with id \"{changeSetStorageId}\"",
2335
- "getChangeSetEmpty": "No change set found with id \"{changeSetStorageId}\"",
2336
- "copyChangeSet": "Copying change set with id \"{changeSetStorageId}\"",
2337
- "storageReset": "Resetting storage for storage key \"{storageKey}\""
2338
- },
2339
- "localSyncStateHelper": {
2340
- "getSnapshots": "Retrieving snapshot for storage key \"{storageKey}\"",
2341
- "getSnapshotsExists": "Found existing snapshot for storage key \"{storageKey}\"",
2342
- "getSnapshotsDoesNotExist": "No local change snapshot found for storage key \"{storageKey}\", creating new one",
2343
- "applySyncState": "Syncing from remote state with \"{snapshotCount}\" snapshots",
2344
- "applySnapshot": "Processing sync snapshot with id \"{snapshotId}\" created on \"{dateCreated}\"",
2345
- "applySnapshotNoExisting": "There are no existing snapshots, find a consolidated snapshot for storage key \"{storageKey}\"",
2346
- "applySnapshotFoundConsolidated": "Found consolidated snapshot with id \"{snapshotId}\" for storage key \"{storageKey}\"",
2347
- "applySnapshotNoConsolidated": "No consolidated snapshot found, cannot apply sync state for storage key \"{storageKey}\"",
2348
- "processModifiedSnapshot": "Processing modified sync snapshot with id \"{snapshotId}\", remote modified on \"{remoteModified}\", local modified on \"{localModified}\"",
2349
- "processNewSnapshot": "Processing new sync snapshot with id \"{snapshotId}\", created on \"{dateCreated}\"",
2350
- "removeLocalChangeSnapshot": "Removing local change snapshot with id \"{snapshotId}\"",
2351
- "addLocalChange": "Adding local change with id \"{id}\" to local change snapshot for storage key \"{storageKey}\", operation \"{operation}\"",
2352
- "setLocalChangeSnapshot": "Storing local change snapshot for storage key \"{storageKey}\""
2353
- },
2354
- "remoteSyncStateHelper": {
2355
- "verifiableSyncPointerStoreRetrieving": "Retrieving verifiable sync pointer for key \"{key}\"",
2356
- "verifiableSyncPointerStoreNotFound": "No verifiable sync pointer store found for key \"{key}\"",
2357
- "verifiableSyncPointerStoreRetrieved": "Retrieved verifiable sync pointer for key \"{key}\"",
2358
- "verifiableSyncPointerStoreStoring": "Storing verifiable sync pointer store for key \"{key}\"",
2359
- "syncStateStoring": "Storing sync state entry with \"{snapshotCount}\" snapshots",
2360
- "syncStateRetrieving": "Retrieving sync state entry for syncPointerId \"{syncPointerId}\"",
2361
- "syncStateRetrieved": "Retrieving sync state entry for syncPointerId \"{syncPointerId}\" with \"{snapshotCount}\" snapshots",
2362
- "syncStateNotFound": "No sync state entry found for syncPointerId \"{syncPointerId}\"",
2363
- "consolidationStarting": "Starting consolidation of remote sync state",
2364
- "consolidationCompleted": "Consolidation of remote sync state completed",
2365
- "addChangeSetToSyncState": "Adding change set with id \"{changeSetStorageId}\" to remote sync state for storage key \"{storageKey}\"",
2366
- "buildingChangeSet": "Building change set for storage key \"{storageKey}\" with \"{changeCount}\" changes",
2367
- "finalisingSyncChanges": "Finalising sync changes for storage key \"{storageKey}\"",
2368
- "createChangeSetRequestingItem": "Creating change set for key \"{storageKey}\", requesting item with id \"{id}\"",
2369
- "createChangeSetRespondingItem": "Responding to change set request for key \"{storageKey}\", item with id \"{id}\""
2370
- },
2371
- "synchronisedStorageService": {
2372
- "registerStorageKey": "Registering synchronised storage key \"{storageKey}\"",
2373
- "activateStorageKey": "Activating synchronised storage key \"{storageKey}\"",
2374
- "startEntitySync": "Starting synchronised entity storage for key \"{storageKey}\"",
2375
- "updateFromRemoteSyncState": "Updating synchronised entity storage from remote sync state for key \"{storageKey}\"",
2376
- "updateFromLocalSyncState": "Updating synchronised entity storage from local sync state for key \"{storageKey}\"",
2377
- "updateFromLocalSyncStateNoChanges": "No changes found in local sync state for key \"{storageKey}\", skipping update",
2378
- "builtStorageChangeSet": "Built storage change set for key \"{storageKey}\" with id \"{changeSetStorageId}\"",
2379
- "builtStorageChangeSetNone": "No changes found for key \"{storageKey}\", no storage change set created",
2380
- "sendingChangeSetToTrustedNode": "Sending change set with id \"{changeSetStorageId}\" to trusted node for key \"{storageKey}\"",
2381
- "decryptionKeyRequest": "Decryption key requested by node identity \"{nodeId}\"",
2382
- "syncChangeSetForRemoteNode": "Synchronising change set with id \"{changeSetStorageId}\" for node identity \"{nodeId}\""
2383
- },
2384
- "blobStorageHelper": {
2385
- "loadBlob": "Loading blob with id \"{blobId}\"",
2386
- "loadedBlob": "Loaded blob with id \"{blobId}\"",
2387
- "loadBlobEmpty": "No blob found with id \"{blobId}\"",
2388
- "saveBlob": "Saving blob",
2389
- "savedBlob": "Saved blob with id \"{blobId}\"",
2390
- "removeBlob": "Removing blob with id \"{blobId}\"",
2391
- "removedBlob": "Removed blob with id \"{blobId}\"",
2392
- "removeBlobEmpty": "No blob found to remove with id \"{blobId}\""
2393
- },
2394
2277
  "entityStorageTelemetryConnector": {
2395
2278
  "metricCreated": "The metric was created \"{id}\" with type \"type\" and label \"{label}\"",
2396
2279
  "metricUpdated": "The metric was updated \"{id}\" with type \"type\" and label \"{label}\"",
@@ -2408,9 +2291,6 @@
2408
2291
  "hashicorpVaultConnector": {
2409
2292
  "hashicorpVaultConnected": "Connected to Hashicorp Vault"
2410
2293
  },
2411
- "iotaVerifiableStorageConnector": {
2412
- "contractReady": "Contract ready for use"
2413
- },
2414
2294
  "fastifyWebServer": {
2415
2295
  "building": "Building Web Server",
2416
2296
  "starting": "Starting Web Server at address \"{host}\" on port \"{port}\"",
package/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.50](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.49...node-v0.0.3-next.50) (2026-06-08)
4
+
5
+
6
+ ### Features
7
+
8
+ * federated catalogue trust mode ([#194](https://github.com/iotaledger/twin-node/issues/194)) ([c18e6fb](https://github.com/iotaledger/twin-node/commit/c18e6fbe0014eb5faf8084d16169d86f3d3b23a6))
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.49 to 0.0.3-next.50
16
+
17
+ ## [0.0.3-next.49](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.48...node-v0.0.3-next.49) (2026-06-05)
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.48 to 0.0.3-next.49
30
+
3
31
  ## [0.0.3-next.48](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.47...node-v0.0.3-next.48) (2026-06-04)
4
32
 
5
33