@twin.org/node 0.0.3-next.49 → 0.0.3-next.51

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.
@@ -316,8 +316,12 @@
316
316
  "invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\"",
317
317
  "versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}"
318
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"
322
+ },
319
323
  "migrationHelper": {
320
- "migrationFailed": "Migration failed.",
324
+ "migrateSchemaFailed": "Migration failed for schema \"{schemaName}\".",
321
325
  "transformRequiredForProperty": "A transformation function is required to migrate property \"{from}\" to \"{to}\" of type \"{type}\"",
322
326
  "coercionProducedUndefined": "Coercion of property \"{property}\" to type \"{type}\" produced undefined but the property is not optional"
323
327
  },
@@ -487,7 +491,10 @@
487
491
  },
488
492
  "backgroundTaskService": {
489
493
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the entity storage background task \"{namespace}\"",
490
- "completeFailed": "Failed to complete processing task \"{id}\" with type \"{type}\" with status \"{status}\""
494
+ "completeFailed": "Failed to complete processing task \"{id}\" with type \"{type}\" with status \"{status}\"",
495
+ "dispatchFailed": "Failed to dispatch task \"{taskId}\" with type \"{taskType}\"",
496
+ "stateChangeCallbackFailed": "The state change callback failed for task \"{id}\" with type \"{type}\" and status \"{status}\"",
497
+ "taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\""
491
498
  },
492
499
  "s3BlobStorageConnector": {
493
500
  "bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
@@ -619,7 +626,8 @@
619
626
  "invalidPushDataAddress": "PUSH transfer cannot start: consumer dataAddress is missing endpoint or endpointType (consumerPid: {consumerPid})",
620
627
  "pushTransferDataPathNotConfigured": "PUSH transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
621
628
  "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.",
622
- "datasetPublishFailed": "Failed to publish dataset {datasetRecordId} for app {appId} (tenant: {tenantId})",
629
+ "datasetPublishFailed": "Failed to publish dataset \"{datasetId}\" for app \"{appId}\" (tenant: \"{tenantId}\")",
630
+ "datasetRemoveFailed": "Failed to remove dataset \"{datasetId}\" from the Federated Catalogue (tenant: \"{tenantId}\")",
623
631
  "datasetNodeContextRequired": "A node context is required to register a dataset.",
624
632
  "datasetAlreadyExists": "A dataset with id \"{existingId}\" already exists.",
625
633
  "datasetNotFound": "Dataset not found",
@@ -660,6 +668,7 @@
660
668
  "missingHandleActivity": "Handler App \"{dataspaceAppId}\" does not export a \"handleActivity\" function",
661
669
  "pushSubscriptionNotFound": "Push subscription not found for consumerPid \"{notFoundId}\"",
662
670
  "pushActivityNotAuthorized": "Unauthorized push activity — no matching STARTED transfer found for the activity generator",
671
+ "pushActivityNotPermittedByPolicy": "Push activity rejected — the transfer's agreement (\"{agreementId}\") does not permit the activity for consumerPid \"{consumerPid}\"",
663
672
  "processOutboxActivityMultipleTo": "processOutboxActivity does not support multiple recipients — activity.to contains {count} values, expected exactly one consumerPid",
664
673
  "pushSubscriptionCompensationFailed": "Compensating unsubscribeToData failed after push-subscription storage write failed (consumerPid: {consumerPid}, providerPid: {providerPid}) — app may be left with a dangling Follow until orphan cleanup runs",
665
674
  "activitySemanticError": "Activity could not be processed due to a semantic error in the provided Activity"
@@ -692,7 +701,6 @@
692
701
  "comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
693
702
  "conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
694
703
  "sortSingle": "You can only sort by a single property",
695
- "sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
696
704
  "containerCreateFailed": "The container couldn't be created \"{containerId}\"",
697
705
  "databaseCreateFailed": "Unable to create database \"{databaseId}\"",
698
706
  "containerDoesNotExist": "Container \"{containerId}\" does not exist",
@@ -714,7 +722,6 @@
714
722
  "comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
715
723
  "conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
716
724
  "sortSingle": "You can only sort by a single property",
717
- "sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
718
725
  "propertyNotFound": "The property \"{property}\" was not found on the entity schema",
719
726
  "getPartitionContextIdsFailed": "Unable to get partition context ids",
720
727
  "setBatchFailed": "Unable to set batch of entities",
@@ -816,11 +823,14 @@
816
823
  "notEqualsNotSupported": "The NotEquals operator is not supported in CQL queries for property \"{property}\"",
817
824
  "notIncludesNotSupported": "The NotIncludes operator is not supported in CQL queries for property \"{property}\"",
818
825
  "orConditionNotSupported": "OR logical operators are not supported in CQL queries",
819
- "countFailed": "Unable to count entities"
826
+ "countFailed": "Unable to count entities",
827
+ "sortOnlyPrimaryKey": "ScyllaDB only supports ORDER BY on clustering (primary key) columns; \"{property}\" is a secondary index and cannot be used for sorting"
820
828
  },
821
- "synchronisedEntityStorageConnector": {
822
- "missingRequiredProperty": "The property \"{requiredProperty}\" is required when using the Synchronised Entity Storage Connector.",
823
- "missingRequiredPropertySort": "The property \"{requiredProperty}\" requires sorting attributes for the Synchronised Entity Storage Connector."
829
+ "schemaVersionService": {
830
+ "storedVersionNewer": "Stored schema version ({stored}) for \"{schemaName}\" is newer than the current version ({current}). Downgrade is not supported.",
831
+ "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.",
832
+ "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.",
833
+ "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."
824
834
  },
825
835
  "localEventBusConnector": {
826
836
  "callback": "The callback failed during publish topic \"{topic}\" for subscriptionId \"{subscriptionId}\""
@@ -832,15 +842,14 @@
832
842
  },
833
843
  "federatedCatalogueService": {
834
844
  "datasetNotFound": "Dataset with ID \"{notFoundId}\" not found in the catalogue",
835
- "datasetIdInvalidUri": "Dataset @id \"{dataSetId}\" must be a valid URI (URN or URL) per DS Protocol",
836
- "datasetMissingPublisher": "Dataset \"{dataSetId}\" is missing required dcterms:publisher property (needed for participant identification)",
837
- "filterIndexCreationFailed": "Failed to create filter index for dataset \"{dataSetId}\" using filter \"{filterType}\"",
845
+ "datasetIdInvalidUri": "Dataset @id \"{datasetId}\" must be a valid URI (URN or URL) per DS Protocol",
846
+ "datasetMissingPublisher": "Dataset \"{datasetId}\" is missing required dcterms:publisher property (needed for participant identification)",
847
+ "filterIndexCreationFailed": "Failed to create filter index for dataset \"{datasetId}\" using filter \"{filterType}\"",
838
848
  "multipleFiltersNotSupported": "Multiple filters are not supported in a single query",
839
849
  "filterMustBeArray": "Filter must be an array per DS Protocol specification",
840
- "noDatasetsFound": "No datasets found in the catalogue"
841
- },
842
- "federatedCatalogueRestClient": {
843
- "notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
850
+ "noDatasetsFound": "No datasets found in the catalogue",
851
+ "datasetOwnerMismatch": "Dataset \"{datasetId}\" already exists and is owned by a different identity",
852
+ "datasetRemoveNotOwner": "Dataset \"{datasetId}\" can only be removed by its owner"
844
853
  },
845
854
  "entityStorageIdentityResolverConnector": {
846
855
  "documentNotFound": "The document could not be found",
@@ -1222,21 +1231,6 @@
1222
1231
  "notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component",
1223
1232
  "publicOriginNotRequired": "The publicOrigin parameter is not required on the REST client"
1224
1233
  },
1225
- "synchronisedStorageService": {
1226
- "notTrustedNode": "This method can only be called on a trusted node",
1227
- "entitySyncFailed": "Failed to sync synchronised entity storage connector",
1228
- "consolidationSyncFailed": "Failed to consolidate synchronised entity storage connector",
1229
- "decryptionKeyNotFound": "Decryption key not found, ensure the synchronised storage component is initialised and the decryption key is set"
1230
- },
1231
- "remoteSyncStateHelper": {
1232
- "finalisingSyncChangesFailed": "Failed to finalise sync changes for storage key \"{storageKey}\""
1233
- },
1234
- "blobStorageHelper": {
1235
- "loadBlobFailed": "Failed to load blob with id \"{blobId}\"",
1236
- "saveBlobFailed": "Failed to save blob",
1237
- "notTrustedNode": "Cannot save blob, this is not a trusted node",
1238
- "removeBlobFailed": "Failed to remove blob with id \"{blobId}\""
1239
- },
1240
1234
  "entityStorageTelemetryConnector": {
1241
1235
  "metricNotFound": "The metric could not be found \"{notFoundId}\"",
1242
1236
  "metricAlreadyExists": "The metric already exists \"{existingId}\"",
@@ -1308,50 +1302,6 @@
1308
1302
  "renameKeyFailed": "Failed to rename key from \"{name}\" to \"{newName}\"",
1309
1303
  "keyTypeMismatch": "The key type \"{keyType}\" does not match the requested encryption method \"{encryptionType}\""
1310
1304
  },
1311
- "entityStorageVerifiableStorageConnector": {
1312
- "verifiableStorageNotFound": "The verifiable item with the Id \"{notFoundId}\" was not found",
1313
- "creatingFailed": "Creating the item failed",
1314
- "updatingFailed": "Updating the item failed",
1315
- "gettingFailed": "Getting the item failed",
1316
- "removingFailed": "Removing the item failed",
1317
- "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the IOTA Verifiable Storage connector \"{namespace}\"",
1318
- "notInAllowList": "The user is not in the allow list",
1319
- "notCreator": "Only the creator can remove the verifiable item",
1320
- "allowListTooBig": "The number of items in the allow list is larger than the maximum allowed"
1321
- },
1322
- "iotaVerifiableStorageConnector": {
1323
- "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the IOTA Verifiable Storage connector \"{namespace}\"",
1324
- "creatingFailed": "Creating the verifiable item failed",
1325
- "updatingFailed": "Updating the verifiable item failed",
1326
- "gettingFailed": "Getting the verifiable item failed",
1327
- "removingFailed": "Removing the verifiable item failed",
1328
- "updateFailed": "Updating the verifiable item failed",
1329
- "packageIdNotFound": "Package ID not found for network \"{network}\"",
1330
- "storingTransactionFailed": "The transaction to store the data failed",
1331
- "removingTransactionFailed": "The transaction to remove the data failed",
1332
- "objectNotFound": "The object was not found",
1333
- "objectIdNotFound": "The object ID was not found in the verifiable item for namespace \"{namespace}\"",
1334
- "connectorNotStarted": "Please call start() before using this connector. Package ID: \"{packageId}\" is missing.",
1335
- "startFailed": "Failed to start the IOTA Verifiable Storage connector.",
1336
- "invalidGasBudget": "The gas budget must be greater than 0",
1337
- "notInAllowList": "The user is not in the allow list",
1338
- "notCreator": "Only the creator can remove the verifiable item",
1339
- "allowListTooBig": "The number of items in the allow list is larger than the maximum allowed",
1340
- "contractDataNotFound": "Contract data not found for network \"{network}\". Available networks: {availableNetworks}",
1341
- "deployedPackageIdRequired": "deployedPackageId is required for network operations on \"{network}\".",
1342
- "packageNotFoundOnNetwork": "Package \"{deployedPackageId}\" not found on \"{network}\" network"
1343
- },
1344
- "iotaVerifiableStorageUtils": {
1345
- "invalidVerifiableStorageIdFormat": "The verifiable storage ID \"{id}\" has an invalid format"
1346
- },
1347
- "verifiableStorageService": {
1348
- "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Verifiable Storage service \"{namespace}\"",
1349
- "noConnectors": "There are no connectors registered with the Verifiable Storage factory",
1350
- "createFailed": "The creating of the Verifiable Storage failed",
1351
- "updateFailed": "The updating of the Verifiable Storage failed",
1352
- "getFailed": "The retrieving of the Verifiable Storage failed",
1353
- "removeFailed": "The removing of the Verifiable Storage failed"
1354
- },
1355
1305
  "entityStorageWalletConnector": {
1356
1306
  "insufficientFunds": "There are insufficient funds in the wallet."
1357
1307
  },
@@ -1419,7 +1369,6 @@
1419
1369
  "nodeIdentityCreate": "Creating node identity",
1420
1370
  "nodeAuthKeyCreate": "Creating node auth key",
1421
1371
  "trustVerificationMethodCreate": "Creating trust verification method for node identity",
1422
- "synchronisedStorageKeyAdd": "Adding synchronised storage key for node identity",
1423
1372
  "nodeIdentitySet": "Setting node identity",
1424
1373
  "nodeTenantCreate": "Creating node tenant",
1425
1374
  "organisationCreate": "Creating organisation identity",
@@ -1962,107 +1911,12 @@
1962
1911
  "validation": {
1963
1912
  "defaultFieldName": "The field"
1964
1913
  },
1965
- "warn": {
1966
- "common": {
1967
- "devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
1968
- },
1969
- "taskSchedulerService": {
1970
- "taskStalled": "Task with id \"{id}\" is stalled, last run at \"{lastRunTime}\" and exceeded timeout \"{stalledTaskTimeoutMs}\" ms"
1971
- },
1972
- "backgroundTaskService": {
1973
- "maxSystemWorkerCountReached": "The maximum system worker count of {maxSystemWorkerCount} has been reached, can not create any more worker for task type \"{type}\""
1974
- },
1975
- "dataspaceControlPlaneService": {
1976
- "catalogDatasetHasNoOffers": "Dataset has no Offers (odrl:hasPolicy) in Federated Catalogue",
1977
- "stalledNegotiationCleanedUp": "Stalled negotiation cleaned up (negotiationId: {negotiationId})"
1978
- },
1979
- "dataspaceControlPlanePolicyRequester": {
1980
- "unknownNegotiationFinalized": "Unknown negotiation finalized (negotiationId: {negotiationId})",
1981
- "negotiationTerminated": "Negotiation terminated by provider (negotiationId: {negotiationId})",
1982
- "unknownNegotiationTerminated": "Unknown negotiation terminated (negotiationId: {negotiationId})"
1983
- },
1984
- "dataspaceDataPlaneService": {
1985
- "pushSubscriptionNotFoundOnTeardown": "Push subscription not found for consumerPid \"{consumerPid}\" during teardown — treating as no-op",
1986
- "pushSubscriptionNotFoundForActivity": "Push subscription not found for outbound activity (consumerPid: {consumerPid})"
1987
- },
1988
- "policyNegotiationAdminPointService": {
1989
- "sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
1990
- },
1991
- "changeSetHelper": {
1992
- "getChangeSetError": "Failed to retrieve change set with id \"{changeSetStorageId}\""
1993
- },
1994
- "remoteSyncStateHelper": {
1995
- "getSyncStateError": "Failed to retrieve sync state for syncPointerId \"{syncPointerId}\""
1996
- }
1997
- },
1998
- "cli": {
1999
- "progress": {
2000
- "done": "Done.",
2001
- "error": "Error",
2002
- "loadingEnvFiles": "Loading env files",
2003
- "pleaseWait": "Please wait...",
2004
- "writingJsonFile": "Writing JSON file",
2005
- "writingEnvFile": "Writing env file",
2006
- "readingJsonFile": "Reading JSON file",
2007
- "readingEnvFile": "Reading env file"
2008
- },
2009
- "options": {
2010
- "lang": {
2011
- "param": "--lang '<'lang'>'",
2012
- "description": "The language to display the output in."
2013
- },
2014
- "load-env": {
2015
- "param": "--load-env [env...]",
2016
- "description": "Load the env files to initialise any environment variables."
2017
- },
2018
- "no-console": {
2019
- "param": "--no-console",
2020
- "description": "Hides the output in the console."
2021
- },
2022
- "json": {
2023
- "param": "--json '<'filename'>'",
2024
- "description": "Creates a JSON file containing the output."
2025
- },
2026
- "env": {
2027
- "param": "--env '<'filename'>'",
2028
- "description": "Creates an env file containing the output."
2029
- },
2030
- "merge-json": {
2031
- "param": "--merge-json",
2032
- "description": "If the JSON file already exists merge the data instead of overwriting."
2033
- },
2034
- "merge-env": {
2035
- "param": "--merge-env",
2036
- "description": "If the env file already exists merge the data instead of overwriting."
2037
- }
2038
- }
2039
- },
2040
- "engineCore": {
2041
- "debuggingEnabled": "Debugging is enabled",
2042
- "starting": "Engine is starting",
2043
- "started": "Engine has started",
2044
- "stopping": "Engine is stopping",
2045
- "stopped": "Engine has stopped",
2046
- "configuring": "Configuring component type \"{componentType}\" with configuration type \"{configType}\"",
2047
- "bootstrapStarted": "Bootstrap started",
2048
- "bootstrapComplete": "Bootstrap complete",
2049
- "bootstrapping": "Bootstrapping component type \"{className}\" with instance type \"{instanceType}\"",
2050
- "componentsStarting": "Components are starting",
2051
- "componentsComplete": "Components have started",
2052
- "componentsStopping": "Components are stopping",
2053
- "componentsStopped": "Components have stopped",
2054
- "componentStarting": "Starting component type \"{className}\" with instance type \"{instanceType}\"",
2055
- "componentStopping": "Stopping component type \"{className}\" with instance type \"{instanceType}\""
2056
- },
2057
- "fileStateStorage": {
2058
- "loading": "Loading state from file storage with filename \"{filename}\"",
2059
- "saving": "Saving state to file storage with filename \"{filename}\""
2060
- },
2061
- "memoryStateStorage": {
2062
- "loading": "Loading state from memory",
2063
- "saving": "Saving state to memory"
2064
- },
2065
1914
  "info": {
1915
+ "migrationHelper": {
1916
+ "migrateSchemaStarting": "Migrating schema \"{schemaName}\"",
1917
+ "migrateSchemaFinalizing": "Finalizing migration of schema \"{schemaName}\"",
1918
+ "migrateSchemaComplete": "Migration of schema \"{schemaName}\" complete"
1919
+ },
2066
1920
  "engineTypes": {
2067
1921
  "configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector"
2068
1922
  },
@@ -2235,6 +2089,16 @@
2235
2089
  "abstractScyllaDBConnector": {
2236
2090
  "sql": "SQL: \"{sql}\""
2237
2091
  },
2092
+ "schemaVersionService": {
2093
+ "noMigrationRequired": "No migration required for schema \"{schemaName}\", version {version}.",
2094
+ "migrationRequired": "Migration required for schema \"{schemaName}\" from version {from} to {to}.",
2095
+ "partitionStart": "Starting migration of {itemTotal} partitions.",
2096
+ "partitionProgress": "Migrating partition {itemIndex} of {itemTotal}.",
2097
+ "partitionEnd": "Completed migration of {itemTotal} partitions.",
2098
+ "partitionItemsStart": "Starting migration of {itemTotal} items in current partition.",
2099
+ "partitionItemsProgress": "Migrating items in current partition: {itemIndex} of {itemTotal} processed.",
2100
+ "partitionItemsEnd": "Completed migration of {itemTotal} items in current partition."
2101
+ },
2238
2102
  "localEventBusConnector": {
2239
2103
  "subscribe": "Subscription created for topic \"{topic}\" with id \"{subscriptionId}\"",
2240
2104
  "unsubscribe": "Subscription removed for topic \"{topic}\" with id \"{subscriptionId}\"",
@@ -2245,12 +2109,12 @@
2245
2109
  "unsubscribe": "Subscription removed for topic \"{topic}\" with id \"{subscriptionId}\""
2246
2110
  },
2247
2111
  "federatedCatalogueService": {
2248
- "datasetRetrieve": "Retrieving dataset \"{dataSetId}\" from catalogue",
2249
- "datasetSet": "Storing dataset \"{dataSetId}\" in catalogue",
2250
- "datasetRemove": "Removing dataset \"{dataSetId}\" from catalogue",
2112
+ "datasetRetrieve": "Retrieving dataset \"{datasetId}\" from catalogue",
2113
+ "datasetSet": "Storing dataset \"{datasetId}\" in catalogue",
2114
+ "datasetRemove": "Removing dataset \"{datasetId}\" from catalogue",
2251
2115
  "catalogQuery": "Executing catalogue query",
2252
2116
  "catalogQueryComplete": "Catalogue query complete, found {resultCount} results",
2253
- "filterIndexPersisted": "Filter indexes persisted for dataset \"{dataSetId}\" using filter \"{filterType}\", {indexCount} entries"
2117
+ "filterIndexPersisted": "Filter indexes persisted for dataset \"{datasetId}\" using filter \"{filterType}\", {indexCount} entries"
2254
2118
  },
2255
2119
  "iota": {
2256
2120
  "transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
@@ -2335,69 +2199,6 @@
2335
2199
  "executingActions": "Executing actions for stage: \"{stage}\", policy id: \"{policyId}\"",
2336
2200
  "executingAction": "Executing action for stage: \"{stage}\", policy id: \"{policyId}\""
2337
2201
  },
2338
- "changeSetHelper": {
2339
- "changeSetApplyingChange": "Applying remote sync change with operation id \"{operation}\" for item with id \"{id}\"",
2340
- "changeSetStoring": "Storing remote sync change set with id \"{id}\"",
2341
- "getChangeSet": "Retrieving change set with id \"{changeSetStorageId}\"",
2342
- "getChangeSetEmpty": "No change set found with id \"{changeSetStorageId}\"",
2343
- "copyChangeSet": "Copying change set with id \"{changeSetStorageId}\"",
2344
- "storageReset": "Resetting storage for storage key \"{storageKey}\""
2345
- },
2346
- "localSyncStateHelper": {
2347
- "getSnapshots": "Retrieving snapshot for storage key \"{storageKey}\"",
2348
- "getSnapshotsExists": "Found existing snapshot for storage key \"{storageKey}\"",
2349
- "getSnapshotsDoesNotExist": "No local change snapshot found for storage key \"{storageKey}\", creating new one",
2350
- "applySyncState": "Syncing from remote state with \"{snapshotCount}\" snapshots",
2351
- "applySnapshot": "Processing sync snapshot with id \"{snapshotId}\" created on \"{dateCreated}\"",
2352
- "applySnapshotNoExisting": "There are no existing snapshots, find a consolidated snapshot for storage key \"{storageKey}\"",
2353
- "applySnapshotFoundConsolidated": "Found consolidated snapshot with id \"{snapshotId}\" for storage key \"{storageKey}\"",
2354
- "applySnapshotNoConsolidated": "No consolidated snapshot found, cannot apply sync state for storage key \"{storageKey}\"",
2355
- "processModifiedSnapshot": "Processing modified sync snapshot with id \"{snapshotId}\", remote modified on \"{remoteModified}\", local modified on \"{localModified}\"",
2356
- "processNewSnapshot": "Processing new sync snapshot with id \"{snapshotId}\", created on \"{dateCreated}\"",
2357
- "removeLocalChangeSnapshot": "Removing local change snapshot with id \"{snapshotId}\"",
2358
- "addLocalChange": "Adding local change with id \"{id}\" to local change snapshot for storage key \"{storageKey}\", operation \"{operation}\"",
2359
- "setLocalChangeSnapshot": "Storing local change snapshot for storage key \"{storageKey}\""
2360
- },
2361
- "remoteSyncStateHelper": {
2362
- "verifiableSyncPointerStoreRetrieving": "Retrieving verifiable sync pointer for key \"{key}\"",
2363
- "verifiableSyncPointerStoreNotFound": "No verifiable sync pointer store found for key \"{key}\"",
2364
- "verifiableSyncPointerStoreRetrieved": "Retrieved verifiable sync pointer for key \"{key}\"",
2365
- "verifiableSyncPointerStoreStoring": "Storing verifiable sync pointer store for key \"{key}\"",
2366
- "syncStateStoring": "Storing sync state entry with \"{snapshotCount}\" snapshots",
2367
- "syncStateRetrieving": "Retrieving sync state entry for syncPointerId \"{syncPointerId}\"",
2368
- "syncStateRetrieved": "Retrieving sync state entry for syncPointerId \"{syncPointerId}\" with \"{snapshotCount}\" snapshots",
2369
- "syncStateNotFound": "No sync state entry found for syncPointerId \"{syncPointerId}\"",
2370
- "consolidationStarting": "Starting consolidation of remote sync state",
2371
- "consolidationCompleted": "Consolidation of remote sync state completed",
2372
- "addChangeSetToSyncState": "Adding change set with id \"{changeSetStorageId}\" to remote sync state for storage key \"{storageKey}\"",
2373
- "buildingChangeSet": "Building change set for storage key \"{storageKey}\" with \"{changeCount}\" changes",
2374
- "finalisingSyncChanges": "Finalising sync changes for storage key \"{storageKey}\"",
2375
- "createChangeSetRequestingItem": "Creating change set for key \"{storageKey}\", requesting item with id \"{id}\"",
2376
- "createChangeSetRespondingItem": "Responding to change set request for key \"{storageKey}\", item with id \"{id}\""
2377
- },
2378
- "synchronisedStorageService": {
2379
- "registerStorageKey": "Registering synchronised storage key \"{storageKey}\"",
2380
- "activateStorageKey": "Activating synchronised storage key \"{storageKey}\"",
2381
- "startEntitySync": "Starting synchronised entity storage for key \"{storageKey}\"",
2382
- "updateFromRemoteSyncState": "Updating synchronised entity storage from remote sync state for key \"{storageKey}\"",
2383
- "updateFromLocalSyncState": "Updating synchronised entity storage from local sync state for key \"{storageKey}\"",
2384
- "updateFromLocalSyncStateNoChanges": "No changes found in local sync state for key \"{storageKey}\", skipping update",
2385
- "builtStorageChangeSet": "Built storage change set for key \"{storageKey}\" with id \"{changeSetStorageId}\"",
2386
- "builtStorageChangeSetNone": "No changes found for key \"{storageKey}\", no storage change set created",
2387
- "sendingChangeSetToTrustedNode": "Sending change set with id \"{changeSetStorageId}\" to trusted node for key \"{storageKey}\"",
2388
- "decryptionKeyRequest": "Decryption key requested by node identity \"{nodeId}\"",
2389
- "syncChangeSetForRemoteNode": "Synchronising change set with id \"{changeSetStorageId}\" for node identity \"{nodeId}\""
2390
- },
2391
- "blobStorageHelper": {
2392
- "loadBlob": "Loading blob with id \"{blobId}\"",
2393
- "loadedBlob": "Loaded blob with id \"{blobId}\"",
2394
- "loadBlobEmpty": "No blob found with id \"{blobId}\"",
2395
- "saveBlob": "Saving blob",
2396
- "savedBlob": "Saved blob with id \"{blobId}\"",
2397
- "removeBlob": "Removing blob with id \"{blobId}\"",
2398
- "removedBlob": "Removed blob with id \"{blobId}\"",
2399
- "removeBlobEmpty": "No blob found to remove with id \"{blobId}\""
2400
- },
2401
2202
  "entityStorageTelemetryConnector": {
2402
2203
  "metricCreated": "The metric was created \"{id}\" with type \"type\" and label \"{label}\"",
2403
2204
  "metricUpdated": "The metric was updated \"{id}\" with type \"type\" and label \"{label}\"",
@@ -2415,9 +2216,6 @@
2415
2216
  "hashicorpVaultConnector": {
2416
2217
  "hashicorpVaultConnected": "Connected to Hashicorp Vault"
2417
2218
  },
2418
- "iotaVerifiableStorageConnector": {
2419
- "contractReady": "Contract ready for use"
2420
- },
2421
2219
  "fastifyWebServer": {
2422
2220
  "building": "Building Web Server",
2423
2221
  "starting": "Starting Web Server at address \"{host}\" on port \"{port}\"",
@@ -2431,6 +2229,100 @@
2431
2229
  "responseMessage": "<=== {statusCode} {method} {requestUrl} duration: {elapsedMicroSeconds}µs"
2432
2230
  }
2433
2231
  },
2232
+ "warn": {
2233
+ "common": {
2234
+ "devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
2235
+ },
2236
+ "taskSchedulerService": {
2237
+ "taskStalled": "Task with id \"{id}\" is stalled, last run at \"{lastRunTime}\" and exceeded timeout \"{stalledTaskTimeoutMs}\" ms"
2238
+ },
2239
+ "backgroundTaskService": {
2240
+ "maxSystemWorkerCountReached": "The maximum system worker count of {maxSystemWorkerCount} has been reached, can not create any more worker for task type \"{type}\""
2241
+ },
2242
+ "dataspaceControlPlaneService": {
2243
+ "catalogDatasetHasNoOffers": "Dataset has no Offers (odrl:hasPolicy) in Federated Catalogue",
2244
+ "stalledNegotiationCleanedUp": "Stalled negotiation cleaned up (negotiationId: {negotiationId})"
2245
+ },
2246
+ "dataspaceControlPlanePolicyRequester": {
2247
+ "unknownNegotiationFinalized": "Unknown negotiation finalized (negotiationId: {negotiationId})",
2248
+ "negotiationTerminated": "Negotiation terminated by provider (negotiationId: {negotiationId})",
2249
+ "unknownNegotiationTerminated": "Unknown negotiation terminated (negotiationId: {negotiationId})"
2250
+ },
2251
+ "dataspaceDataPlaneService": {
2252
+ "pushSubscriptionNotFoundOnTeardown": "Push subscription not found for consumerPid \"{consumerPid}\" during teardown — treating as no-op",
2253
+ "pushSubscriptionNotFoundForActivity": "Push subscription not found for outbound activity (consumerPid: {consumerPid})"
2254
+ },
2255
+ "policyNegotiationAdminPointService": {
2256
+ "sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
2257
+ }
2258
+ },
2259
+ "cli": {
2260
+ "progress": {
2261
+ "done": "Done.",
2262
+ "error": "Error",
2263
+ "loadingEnvFiles": "Loading env files",
2264
+ "pleaseWait": "Please wait...",
2265
+ "writingJsonFile": "Writing JSON file",
2266
+ "writingEnvFile": "Writing env file",
2267
+ "readingJsonFile": "Reading JSON file",
2268
+ "readingEnvFile": "Reading env file"
2269
+ },
2270
+ "options": {
2271
+ "lang": {
2272
+ "param": "--lang '<'lang'>'",
2273
+ "description": "The language to display the output in."
2274
+ },
2275
+ "load-env": {
2276
+ "param": "--load-env [env...]",
2277
+ "description": "Load the env files to initialise any environment variables."
2278
+ },
2279
+ "no-console": {
2280
+ "param": "--no-console",
2281
+ "description": "Hides the output in the console."
2282
+ },
2283
+ "json": {
2284
+ "param": "--json '<'filename'>'",
2285
+ "description": "Creates a JSON file containing the output."
2286
+ },
2287
+ "env": {
2288
+ "param": "--env '<'filename'>'",
2289
+ "description": "Creates an env file containing the output."
2290
+ },
2291
+ "merge-json": {
2292
+ "param": "--merge-json",
2293
+ "description": "If the JSON file already exists merge the data instead of overwriting."
2294
+ },
2295
+ "merge-env": {
2296
+ "param": "--merge-env",
2297
+ "description": "If the env file already exists merge the data instead of overwriting."
2298
+ }
2299
+ }
2300
+ },
2301
+ "engineCore": {
2302
+ "debuggingEnabled": "Debugging is enabled",
2303
+ "starting": "Engine is starting",
2304
+ "started": "Engine has started",
2305
+ "stopping": "Engine is stopping",
2306
+ "stopped": "Engine has stopped",
2307
+ "configuring": "Configuring component type \"{componentType}\" with configuration type \"{configType}\"",
2308
+ "bootstrapStarted": "Bootstrap started",
2309
+ "bootstrapComplete": "Bootstrap complete",
2310
+ "bootstrapping": "Bootstrapping component type \"{className}\" with instance type \"{instanceType}\"",
2311
+ "componentsStarting": "Components are starting",
2312
+ "componentsComplete": "Components have started",
2313
+ "componentsStopping": "Components are stopping",
2314
+ "componentsStopped": "Components have stopped",
2315
+ "componentStarting": "Starting component type \"{className}\" with instance type \"{instanceType}\"",
2316
+ "componentStopping": "Stopping component type \"{className}\" with instance type \"{instanceType}\""
2317
+ },
2318
+ "fileStateStorage": {
2319
+ "loading": "Loading state from file storage with filename \"{filename}\"",
2320
+ "saving": "Saving state to file storage with filename \"{filename}\""
2321
+ },
2322
+ "memoryStateStorage": {
2323
+ "loading": "Loading state from memory",
2324
+ "saving": "Saving state to memory"
2325
+ },
2434
2326
  "nftAttestationConnector": {
2435
2327
  "verificationFailures": {
2436
2328
  "noData": "There is no data in the resolved NFT",
package/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.51](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.50...node-v0.0.3-next.51) (2026-06-09)
4
+
5
+
6
+ ### Features
7
+
8
+ * migration testing ([#199](https://github.com/iotaledger/twin-node/issues/199)) ([97a731c](https://github.com/iotaledger/twin-node/commit/97a731c520d66ab0588d80987a0f88d388ce51ae))
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.50 to 0.0.3-next.51
16
+
17
+ ## [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)
18
+
19
+
20
+ ### Features
21
+
22
+ * federated catalogue trust mode ([#194](https://github.com/iotaledger/twin-node/issues/194)) ([c18e6fb](https://github.com/iotaledger/twin-node/commit/c18e6fbe0014eb5faf8084d16169d86f3d3b23a6))
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.49 to 0.0.3-next.50
30
+
3
31
  ## [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)
4
32
 
5
33