@twin.org/node 0.10.0 → 0.10.1-next.2

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.
@@ -142,6 +142,9 @@
142
142
  "atLeastOneNumber": "The value should contain at least one number",
143
143
  "atLeastOneSpecialChar": "The value should contain at least one symbol",
144
144
  "saltEntropyTooLow": "Salt must have at least 8 unique characters for sufficient entropy.",
145
+ "auditableItemGraphService": {
146
+ "edgeIdSameAsVertexId": "The edge with target id \"{targetId}\" can not point to the vertex it belongs to"
147
+ },
145
148
  "schema": {
146
149
  "missingType": "Failed to validate as there is no handler for type \"{dataType}\""
147
150
  },
@@ -152,9 +155,6 @@
152
155
  "coordinatesLongitudeNumber": "The longitude value must be a number",
153
156
  "coordinatesLongitudeRange": "The longitude value must be between -180 and 180"
154
157
  },
155
- "auditableItemGraphService": {
156
- "edgeIdSameAsVertexId": "The edge with target id \"{targetId}\" can not point to the vertex it belongs to"
157
- },
158
158
  "missingType": "The object must include at least one @type value"
159
159
  },
160
160
  "guard": {
@@ -373,6 +373,10 @@
373
373
  "duplicateOldProperty": "The oldProperties array contains a duplicate property key \"{property}\"",
374
374
  "duplicateNewProperty": "The newProperties array contains a duplicate property key \"{property}\""
375
375
  },
376
+ "propertyDecorator": {
377
+ "indexGroupTypeNotSupported": "The property \"{property}\" of type \"{type}\" cannot be part of an index group",
378
+ "duplicateIndexGroup": "The property \"{property}\" declares the index group \"{group}\" more than once"
379
+ },
376
380
  "entitySchemaHelper": {
377
381
  "noIsPrimary": "Property \"entitySchema.properties\" must contain a value with isPrimary set",
378
382
  "multipleIsPrimary": "Property \"entitySchema.properties\" contains more than one property with isPrimary set",
@@ -383,6 +387,10 @@
383
387
  "maxLengthExceeded": "The entity property \"{property}\" has a length of {length} which exceeds the maximum length of {maxLength}",
384
388
  "versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}",
385
389
  "multipleVersionProperties": "The schema has more than one property with isVersion set, only one is allowed",
390
+ "invalidIndexGroupDirection": "The index group \"{group}\" on the property \"{property}\" has the direction \"{direction}\" which is not a valid sort direction",
391
+ "invalidIndexGroupIndex": "The index group \"{group}\" on the property \"{property}\" has the index {index} which must be an integer >= 0",
392
+ "duplicateIndexGroupIndex": "The index group \"{group}\" has more than one property using the index {index}, found again on the property \"{property}\"",
393
+ "indexGroupMustHaveAtLeastTwoProperties": "The index group \"{group}\" must contain at least two properties, but contains {count}",
386
394
  "versionPropertyMustBeInteger": "The version property \"{property}\" has type \"{type}\" but must be of type integer"
387
395
  },
388
396
  "entityStorageHelper": {
@@ -395,7 +403,9 @@
395
403
  "migrationHelper": {
396
404
  "migrateSchemaFailed": "Migration failed for schema \"{schemaName}\".",
397
405
  "transformRequiredForProperty": "A transformation function is required to migrate property \"{from}\" to \"{to}\" of type \"{type}\"",
398
- "coercionProducedUndefined": "Coercion of property \"{property}\" to type \"{type}\" produced undefined but the property is not optional"
406
+ "coercionProducedUndefined": "Coercion of property \"{property}\" to type \"{type}\" produced undefined but the property is not optional",
407
+ "connectorBootstrapFailed": "Connector \"{className}\" failed to bootstrap storage for schema \"{schemaName}\"",
408
+ "maxIdentifierLengthTooSmall": "The maximum identifier length {maxIdentifierLength} must be at least {minimum} to fit the migration name suffix"
399
409
  },
400
410
  "vaultConnectorHelper": {
401
411
  "invalidSignature": "The JSON Web token signature could not be verified"
@@ -420,6 +430,57 @@
420
430
  "organizationIdAlreadyExists": "A tenant with organization ID \"{existingId}\" already exists.",
421
431
  "publicOriginAlreadyExists": "A tenant with public origin \"{existingId}\" already exists."
422
432
  },
433
+ "auditableItemGraphService": {
434
+ "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
435
+ "createFailed": "Creating the Auditable Item Graph vertex failed",
436
+ "getFailed": "Getting the Auditable Item Graph vertex failed",
437
+ "getVersionFailed": "Getting the Auditable Item Graph vertex version failed",
438
+ "getVersionsFailed": "Getting the Auditable Item Graph vertex versions failed",
439
+ "versionNotFound": "The version with the Id \"{notFoundId}\" was not found",
440
+ "updatingFailed": "Updating the Auditable Item Graph vertex failed",
441
+ "queryingFailed": "Querying the Auditable Item Graph failed",
442
+ "invalidCursor": "The cursor is not valid, it must be one returned by a matching query",
443
+ "removeProofFailed": "Removing the proof from the Auditable Item Graph vertex failed",
444
+ "vertexNotFound": "The vertex with the Id \"{notFoundId}\" was not found",
445
+ "changesetNotFound": "The changeset with the Id \"{notFoundId}\" was not found",
446
+ "resourceIdMissing": "You must provide either the id, or the resourceObject must contain an id property for index \"{index}\"",
447
+ "aliasNotUnique": "The alias id \"{aliasId}\" is already in use on another vertex and the unique flag was set",
448
+ "invalidEdgeId": "The edge id \"{edgeId}\" is not valid",
449
+ "listPatchInvalidFormat": "The property \"{property}\" must be a list patch object with add and/or remove, not a bare array",
450
+ "auditModeTransitionNotAllowed": "The vertex audit mode can not be changed from \"{currentMode}\" to \"{requestedMode}\", bypass is a terminal mode"
451
+ },
452
+ "jsonSchemaHelper": {
453
+ "schemaLoadFailed": "Failed to load the referenced schema \"{uri}\""
454
+ },
455
+ "jsonLdProcessor": {
456
+ "compact": "The JSON-LD compaction failed",
457
+ "expand": "The JSON-LD expansion failed",
458
+ "canonize": "The JSON-LD canonization failed",
459
+ "invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
460
+ "jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
461
+ },
462
+ "proofHelper": {
463
+ "unsupportedProofType": "Proof type \"{proofType}\" not supported."
464
+ },
465
+ "jsonWebSignature2020SignerVerifier": {
466
+ "missingJws": "JWS is missing from proof."
467
+ },
468
+ "dataIntegrityProofSignerVerifier": {
469
+ "cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
470
+ "missingPrivateKey": "Private key is missing.",
471
+ "missingPublicKey": "Public key is missing."
472
+ },
473
+ "multikeyHelper": {
474
+ "invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
475
+ "invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
476
+ "unsupportedCrv": "Curve \"{crv}\" is not supported.",
477
+ "unsupportedKty": "Key type \"{kty}\" is not supported.",
478
+ "publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
479
+ "secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
480
+ },
481
+ "multiTelemetryConnector": {
482
+ "notSupported": "The method \"{methodName}\" is not supported on multi telemetry connector."
483
+ },
423
484
  "commands": {
424
485
  "common": {
425
486
  "missingEnv": "The \"{option}\" option is configured as an environment variable, but there is no environment variable with the name \"{value}\" set.",
@@ -430,16 +491,6 @@
430
491
  "optionMaxValue": "The \"{option}\" option must be less than or equal to {maxValue}, it is {value}."
431
492
  }
432
493
  },
433
- "jsonLdProcessor": {
434
- "compact": "The JSON-LD compaction failed",
435
- "expand": "The JSON-LD expansion failed",
436
- "canonize": "The JSON-LD canonization failed",
437
- "invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
438
- "jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
439
- },
440
- "jsonSchemaHelper": {
441
- "schemaLoadFailed": "Failed to load the referenced schema \"{uri}\""
442
- },
443
494
  "accountHelper": {
444
495
  "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
445
496
  "missingPublicKey": "The public key is missing for vault key \"{keyName}\""
@@ -498,6 +549,9 @@
498
549
  "failedLoading": "Failed to load file state storage from \"{filename}\"",
499
550
  "failedSaving": "Failed to save file state storage to \"{filename}\""
500
551
  },
552
+ "engineCloneHelper": {
553
+ "invalidExcludeCloneComponent": "The exclude clone component pattern \"{pattern}\" is not a valid regular expression"
554
+ },
501
555
  "moduleHelper": {
502
556
  "moduleNotFound": "Failed to load module \"{module}\"",
503
557
  "entryNotFound": "Failed to load entry \"{entry}\" from module \"{module}\"",
@@ -511,8 +565,7 @@
511
565
  },
512
566
  "healthService": {
513
567
  "componentHealthCheckFailed": "Health check failed for component \"{className}\"",
514
- "applicationHealthCheckTaskFailed": "Application health check background task failed",
515
- "invalidExcludeCloneComponent": "The exclude clone component pattern \"{pattern}\" is not a valid regular expression"
568
+ "applicationHealthCheckTaskFailed": "Application health check background task failed"
516
569
  },
517
570
  "applicationHealthTask": {
518
571
  "engineNotStarted": "Application health engine is not started"
@@ -524,28 +577,6 @@
524
577
  "destroyFailed": "Destroying the attestation failed",
525
578
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the NFT Attestation connector \"{namespace}\""
526
579
  },
527
- "proofHelper": {
528
- "unsupportedProofType": "Proof type \"{proofType}\" not supported."
529
- },
530
- "jsonWebSignature2020SignerVerifier": {
531
- "missingJws": "JWS is missing from proof."
532
- },
533
- "dataIntegrityProofSignerVerifier": {
534
- "cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
535
- "missingPrivateKey": "Private key is missing.",
536
- "missingPublicKey": "Public key is missing."
537
- },
538
- "multikeyHelper": {
539
- "invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
540
- "invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
541
- "unsupportedCrv": "Curve \"{crv}\" is not supported.",
542
- "unsupportedKty": "Key type \"{kty}\" is not supported.",
543
- "publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
544
- "secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
545
- },
546
- "multiTelemetryConnector": {
547
- "notSupported": "The method \"{methodName}\" is not supported on multi telemetry connector."
548
- },
549
580
  "verificationHelper": {
550
581
  "jwtDecodeFailed": "Decoding the JWT failed",
551
582
  "proofMissingVerificationMethod": "The proof is missing the verification method",
@@ -565,24 +596,6 @@
565
596
  "destroyFailed": "The destruction of the attestation failed",
566
597
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the attestation service \"{namespace}\""
567
598
  },
568
- "auditableItemGraphService": {
569
- "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
570
- "createFailed": "Creating the Auditable Item Graph vertex failed",
571
- "getFailed": "Getting the Auditable Item Graph vertex failed",
572
- "getVersionFailed": "Getting the Auditable Item Graph vertex version failed",
573
- "getVersionsFailed": "Getting the Auditable Item Graph vertex versions failed",
574
- "versionNotFound": "The version with the Id \"{notFoundId}\" was not found",
575
- "updatingFailed": "Updating the Auditable Item Graph vertex failed",
576
- "queryingFailed": "Querying the Auditable Item Graph failed",
577
- "removeProofFailed": "Removing the proof from the Auditable Item Graph vertex failed",
578
- "vertexNotFound": "The vertex with the Id \"{notFoundId}\" was not found",
579
- "changesetNotFound": "The changeset with the Id \"{notFoundId}\" was not found",
580
- "resourceIdMissing": "You must provide either the id, or the resourceObject must contain an id property for index \"{index}\"",
581
- "aliasNotUnique": "The alias id \"{aliasId}\" is already in use on another vertex and the unique flag was set",
582
- "invalidEdgeId": "The edge id \"{edgeId}\" is not valid",
583
- "listPatchInvalidFormat": "The property \"{property}\" must be a list patch object with add and/or remove, not a bare array",
584
- "auditModeTransitionNotAllowed": "The vertex audit mode can not be changed from \"{currentMode}\" to \"{requestedMode}\", bypass is a terminal mode"
585
- },
586
599
  "auditableItemStreamService": {
587
600
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Stream service \"{namespace}\"",
588
601
  "createFailed": "Creating the Auditable Item Stream failed",
@@ -994,14 +1007,14 @@
994
1007
  },
995
1008
  "scyllaDBViewConnector": {
996
1009
  "viewCreateFailed": "Creating view \"{view}\" failed",
997
- "notSupported": "The operation is not supported \"{methodName}\""
1010
+ "notSupported": "The operation is not supported \"{methodName}\"",
1011
+ "teardownFailed": "Teardown entity storage failed"
998
1012
  },
999
1013
  "abstractScyllaDBConnector": {
1000
1014
  "getFailed": "Getting item with \"{id}\" failed",
1001
1015
  "findFailed": "Error while querying data on \"{table}\"",
1002
1016
  "parseJSONFailed": "Parsing JSON failed for field \"{name}\" with value \"{value}\"",
1003
1017
  "comparisonNotSupported": "Dot-notation nested property path \"{property}\" is not supported in CQL queries",
1004
- "notEqualsNotSupported": "The NotEquals operator is not supported in CQL queries for property \"{property}\"",
1005
1018
  "notIncludesNotSupported": "The NotIncludes operator is not supported in CQL queries for property \"{property}\"",
1006
1019
  "orConditionNotSupported": "OR logical operators are not supported in CQL queries",
1007
1020
  "countFailed": "Unable to count entities",
@@ -1359,9 +1372,10 @@
1359
1372
  "transferFailed": "The transfer of the notarization failed"
1360
1373
  },
1361
1374
  "dataAccessPointService": {
1362
- "noHandlerForAssetType": "No handler registered for asset type \"{assetType}\""
1375
+ "noHandlerForAssetType": "No handler registered for asset type \"{assetType}\"",
1376
+ "notAuthorizedToQuery": "Not authorized to query asset type \"{assetType}\"",
1377
+ "notAuthorizedToGet": "Not authorized to get asset type \"{assetType}\" with id \"{id}\""
1363
1378
  },
1364
- "dataAccessRequestPointService": {},
1365
1379
  "policyAdministrationPointService": {
1366
1380
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the rights management components \"{namespace}\"",
1367
1381
  "policyAlreadyExists": "A policy with id: \"{existingId}\" already exists",
@@ -1371,7 +1385,8 @@
1371
1385
  "offerNotFound": "Offer not found with id: \"{notFoundId}\"",
1372
1386
  "offerTypeMismatch": "The policy with id: \"{offerId}\" is not of type Offer, it is of type: \"{type}\".",
1373
1387
  "setNotFound": "Set not found with id: \"{notFoundId}\"",
1374
- "setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\"."
1388
+ "setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\".",
1389
+ "invalidCursor": "The cursor \"{cursor}\" was not produced by a locator query, cursors cannot be reused across queries with different locators"
1375
1390
  },
1376
1391
  "policyDecisionPointService": {
1377
1392
  "decidingFailed": "Deciding on policies for policy id \"{policyId}\" failed in arbiter with id: \"{arbiterId}\"",
@@ -1521,7 +1536,7 @@
1521
1536
  "tokenExpired": "The JWT token has expired.",
1522
1537
  "tokenRevoked": "The verifiable credential in the JWT has been revoked.",
1523
1538
  "tokenMissingSubject": "The verifiable credential in the JWT does not contain a subject.",
1524
- "tokenDecodingFailed": "Failed to decode the JWT token."
1539
+ "tokenVerificationIncomplete": "The JWT token verification did not complete, see the cause for the reason."
1525
1540
  },
1526
1541
  "entityStorageVaultConnector": {
1527
1542
  "keyAlreadyExists": "The key \"{existingId}\" already exists in the vault",
@@ -1632,6 +1647,7 @@
1632
1647
  "partitionIdsSkipped": "Skipping partition ids whose depth does not match the {expected} configured partition keys: {partitionIds}. Entities in these partitions are ignored by migration."
1633
1648
  },
1634
1649
  "dynamoDbEntityStorageConnector": {
1650
+ "compositeIndexSkipped": "Index group \"{groupName}\" on table \"{tableName}\" was skipped, a composite index accepts at most four properties",
1635
1651
  "partitionIdsSkipped": "Skipping partition ids whose depth does not match the {expected} configured partition keys: {partitionIds}. Entities in these partitions are ignored by migration."
1636
1652
  },
1637
1653
  "fileEntityStorageConnector": {
@@ -2696,8 +2712,7 @@
2696
2712
  "tableExists": "Table \"{tableName}\" created or it already exists",
2697
2713
  "tableDropping": "Dropping table \"{tableName}\"",
2698
2714
  "tableDropped": "Table \"{tableName}\" dropped",
2699
- "legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" already covers the column",
2700
- "legacyIndexRenamed": "Legacy index \"{indexName}\" renamed to \"{newIndexName}\" on table \"{tableName}\""
2715
+ "legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" now covers the column"
2701
2716
  },
2702
2717
  "postgreSqlEntityStorageConnector": {
2703
2718
  "databaseCreating": "Database \"{databaseName}\" creating",
@@ -2706,8 +2721,7 @@
2706
2721
  "tableExists": "Table \"{tableName}\" created or it already exists",
2707
2722
  "tableDropping": "Dropping table \"{tableName}\"",
2708
2723
  "tableDropped": "Table \"{tableName}\" dropped",
2709
- "legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" already covers the column",
2710
- "legacyIndexRenamed": "Legacy index \"{indexName}\" renamed to \"{newIndexName}\" on table \"{tableName}\""
2724
+ "legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" now covers the column"
2711
2725
  },
2712
2726
  "scyllaDBTableConnector": {
2713
2727
  "keyspaceCreating": "Creating keyspace \"{keyspace}\"",
@@ -2722,7 +2736,9 @@
2722
2736
  "scyllaDBViewConnector": {
2723
2737
  "viewCreating": "Creating view \"{view}\"",
2724
2738
  "viewCreated": "Created view \"{view}\"",
2725
- "viewExists": "Skipping create view \"{view}\" as it already exists"
2739
+ "viewExists": "Skipping create view \"{view}\" as it already exists",
2740
+ "viewDropping": "Dropping view \"{view}\"",
2741
+ "viewDropped": "View \"{view}\" dropped"
2726
2742
  },
2727
2743
  "abstractScyllaDBConnector": {
2728
2744
  "sql": "SQL: \"{sql}\""
@@ -2812,13 +2828,6 @@
2812
2828
  "contractReady": "Contract ready for use"
2813
2829
  },
2814
2830
  "iotaNotarizationConnector": {},
2815
- "dataAccessPointService": {
2816
- "registeredHandler": "Handler registered with id: \"{handlerId}\"",
2817
- "unregisteredHandler": "Handler unregistered with id: \"{handlerId}\""
2818
- },
2819
- "dataAccessRequestPointService": {
2820
- "missingNodeIdentity": "The node identity is missing"
2821
- },
2822
2831
  "policyEnforcementPointService": {
2823
2832
  "processing": "Processing information using processor with id: \"{processorId}\", policy id: \"{policyId}\"",
2824
2833
  "intercepting": "Intercepting information for policy id: \"{policyId}\""
@@ -2909,91 +2918,16 @@
2909
2918
  "responseMessage": "<=== {statusCode} {method} {requestUrl} duration: {elapsedMicroSeconds}µs"
2910
2919
  }
2911
2920
  },
2912
- "cli": {
2913
- "progress": {
2914
- "done": "Done.",
2915
- "error": "Error",
2916
- "loadingEnvFiles": "Loading env files",
2917
- "pleaseWait": "Please wait...",
2918
- "writingJsonFile": "Writing JSON file",
2919
- "writingEnvFile": "Writing env file",
2920
- "readingJsonFile": "Reading JSON file",
2921
- "readingEnvFile": "Reading env file"
2922
- },
2923
- "options": {
2924
- "lang": {
2925
- "param": "--lang '<'lang'>'",
2926
- "description": "The language to display the output in."
2927
- },
2928
- "load-env": {
2929
- "param": "--load-env [env...]",
2930
- "description": "Load the env files to initialise any environment variables."
2931
- },
2932
- "no-console": {
2933
- "param": "--no-console",
2934
- "description": "Hides the output in the console."
2935
- },
2936
- "json": {
2937
- "param": "--json '<'filename'>'",
2938
- "description": "Creates a JSON file containing the output."
2939
- },
2940
- "env": {
2941
- "param": "--env '<'filename'>'",
2942
- "description": "Creates an env file containing the output."
2943
- },
2944
- "merge-json": {
2945
- "param": "--merge-json",
2946
- "description": "If the JSON file already exists merge the data instead of overwriting."
2947
- },
2948
- "merge-env": {
2949
- "param": "--merge-env",
2950
- "description": "If the env file already exists merge the data instead of overwriting."
2951
- }
2952
- }
2953
- },
2954
- "engineCore": {
2955
- "debuggingEnabled": "Debugging is enabled",
2956
- "starting": "Engine is starting",
2957
- "started": "Engine has started",
2958
- "stopping": "Engine is stopping",
2959
- "stopped": "Engine has stopped",
2960
- "configuring": "Configuring component type \"{componentType}\" with configuration type \"{configType}\"",
2961
- "bootstrapStarted": "Bootstrap started",
2962
- "bootstrapComplete": "Bootstrap complete",
2963
- "bootstrapping": "Bootstrapping component type \"{className}\" with instance type \"{instanceType}\"",
2964
- "componentsStarting": "Components are starting",
2965
- "componentsComplete": "Components have started",
2966
- "componentsSummary": "Components started in {totalMs}ms, slowest: {slowestComponents}",
2967
- "componentsStopping": "Components are stopping",
2968
- "componentsStopped": "Components have stopped",
2969
- "componentStarting": "Starting component type \"{className}\" with instance type \"{instanceType}\"",
2970
- "componentStarted": "Started component type \"{className}\" with instance type \"{instanceType}\" in {elapsedMs}ms",
2971
- "componentStopping": "Stopping component type \"{className}\" with instance type \"{instanceType}\""
2972
- },
2973
- "fileStateStorage": {
2974
- "loading": "Loading state from file storage with filename \"{filename}\"",
2975
- "saving": "Saving state to file storage with filename \"{filename}\""
2976
- },
2977
- "memoryStateStorage": {
2978
- "loading": "Loading state from memory",
2979
- "saving": "Saving state to memory"
2980
- },
2981
- "nftAttestationConnector": {
2982
- "verificationFailures": {
2983
- "noData": "There is no data in the resolved NFT",
2984
- "proofFailed": "The proof of the attestation could not be verified",
2985
- "revoked": "The proof of the attestation has been revoked"
2986
- }
2987
- },
2921
+ "auditableItemGraphService": {},
2988
2922
  "health": {
2989
- "attestationService": {
2990
- "healthDescription": "Attestation lifecycle (create, get, destroy) using the \"{namespace}\" namespace",
2991
- "getAttestationFailed": "Failed to get the health check attestation"
2992
- },
2993
2923
  "auditableItemGraphService": {
2994
2924
  "healthDescription": "Auditable item graph service application health check",
2995
2925
  "getVertexFailed": "Failed to complete the auditable item graph vertex storage health check"
2996
2926
  },
2927
+ "attestationService": {
2928
+ "healthDescription": "Attestation lifecycle (create, get, destroy) using the \"{namespace}\" namespace",
2929
+ "getAttestationFailed": "Failed to get the health check attestation"
2930
+ },
2997
2931
  "auditableItemStreamService": {
2998
2932
  "healthDescription": "Auditable item stream service application health check",
2999
2933
  "getStreamFailed": "Failed to complete the auditable item stream storage health check"
@@ -3123,7 +3057,82 @@
3123
3057
  "serverNotBuilt": "The server has not been built"
3124
3058
  }
3125
3059
  },
3126
- "auditableItemGraphService": {},
3060
+ "cli": {
3061
+ "progress": {
3062
+ "done": "Done.",
3063
+ "error": "Error",
3064
+ "loadingEnvFiles": "Loading env files",
3065
+ "pleaseWait": "Please wait...",
3066
+ "writingJsonFile": "Writing JSON file",
3067
+ "writingEnvFile": "Writing env file",
3068
+ "readingJsonFile": "Reading JSON file",
3069
+ "readingEnvFile": "Reading env file"
3070
+ },
3071
+ "options": {
3072
+ "lang": {
3073
+ "param": "--lang '<'lang'>'",
3074
+ "description": "The language to display the output in."
3075
+ },
3076
+ "load-env": {
3077
+ "param": "--load-env [env...]",
3078
+ "description": "Load the env files to initialise any environment variables."
3079
+ },
3080
+ "no-console": {
3081
+ "param": "--no-console",
3082
+ "description": "Hides the output in the console."
3083
+ },
3084
+ "json": {
3085
+ "param": "--json '<'filename'>'",
3086
+ "description": "Creates a JSON file containing the output."
3087
+ },
3088
+ "env": {
3089
+ "param": "--env '<'filename'>'",
3090
+ "description": "Creates an env file containing the output."
3091
+ },
3092
+ "merge-json": {
3093
+ "param": "--merge-json",
3094
+ "description": "If the JSON file already exists merge the data instead of overwriting."
3095
+ },
3096
+ "merge-env": {
3097
+ "param": "--merge-env",
3098
+ "description": "If the env file already exists merge the data instead of overwriting."
3099
+ }
3100
+ }
3101
+ },
3102
+ "engineCore": {
3103
+ "debuggingEnabled": "Debugging is enabled",
3104
+ "starting": "Engine is starting",
3105
+ "started": "Engine has started",
3106
+ "stopping": "Engine is stopping",
3107
+ "stopped": "Engine has stopped",
3108
+ "configuring": "Configuring component type \"{componentType}\" with configuration type \"{configType}\"",
3109
+ "bootstrapStarted": "Bootstrap started",
3110
+ "bootstrapComplete": "Bootstrap complete",
3111
+ "bootstrapping": "Bootstrapping component type \"{className}\" with instance type \"{instanceType}\"",
3112
+ "componentsStarting": "Components are starting",
3113
+ "componentsComplete": "Components have started",
3114
+ "componentsSummary": "Components started in {totalMs}ms, slowest: {slowestComponents}",
3115
+ "componentsStopping": "Components are stopping",
3116
+ "componentsStopped": "Components have stopped",
3117
+ "componentStarting": "Starting component type \"{className}\" with instance type \"{instanceType}\"",
3118
+ "componentStarted": "Started component type \"{className}\" with instance type \"{instanceType}\" in {elapsedMs}ms",
3119
+ "componentStopping": "Stopping component type \"{className}\" with instance type \"{instanceType}\""
3120
+ },
3121
+ "fileStateStorage": {
3122
+ "loading": "Loading state from file storage with filename \"{filename}\"",
3123
+ "saving": "Saving state to file storage with filename \"{filename}\""
3124
+ },
3125
+ "memoryStateStorage": {
3126
+ "loading": "Loading state from memory",
3127
+ "saving": "Saving state to memory"
3128
+ },
3129
+ "nftAttestationConnector": {
3130
+ "verificationFailures": {
3131
+ "noData": "There is no data in the resolved NFT",
3132
+ "proofFailed": "The proof of the attestation could not be verified",
3133
+ "revoked": "The proof of the attestation has been revoked"
3134
+ }
3135
+ },
3127
3136
  "debug": {
3128
3137
  "dataspaceControlPlaneService": {
3129
3138
  "engineCloneStart": "Skipping control plane startup tasks (engine clone or no engine)",
package/docs/changelog.md CHANGED
@@ -1,5 +1,136 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.1-next.2](https://github.com/iotaledger/twin-node/compare/node-v0.10.1-next.1...node-v0.10.1-next.2) (2026-09-18)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **node:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/node-core bumped from 0.10.1-next.1 to 0.10.1-next.2
16
+
17
+ ## [0.10.1-next.1](https://github.com/iotaledger/twin-node/compare/node-v0.10.1-next.0...node-v0.10.1-next.1) (2026-09-17)
18
+
19
+
20
+ ### Features
21
+
22
+ * add additional env vars ([#328](https://github.com/iotaledger/twin-node/issues/328)) ([6ca8718](https://github.com/iotaledger/twin-node/commit/6ca87184bc4d78829c957ea055d3c281aca6cf9f))
23
+ * add automation ([cfc63b4](https://github.com/iotaledger/twin-node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
24
+ * add background task max dispatch count ([f0965a0](https://github.com/iotaledger/twin-node/commit/f0965a004dc0e0a856fc0fe1e58330f84e09aa3b))
25
+ * add CLI commands and remove automated bootstrap code ([#69](https://github.com/iotaledger/twin-node/issues/69)) ([6e40933](https://github.com/iotaledger/twin-node/commit/6e40933d8bb820b380e1074fc88feeedca0ef7d9))
26
+ * add cloud soak profile, disabled groups filter, and nightly GHA workflow ([#266](https://github.com/iotaledger/twin-node/issues/266)) ([6e8179c](https://github.com/iotaledger/twin-node/commit/6e8179c2dadbba8a2f0d577b44dc1ed9c8288046))
27
+ * add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
28
+ * add dsp sweep vars ([#340](https://github.com/iotaledger/twin-node/issues/340)) ([5487c13](https://github.com/iotaledger/twin-node/commit/5487c13197fcd386206ec37f9f342c55ec5b1176))
29
+ * add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
30
+ * add immutable proof task worker idle timeout env var ([#409](https://github.com/iotaledger/twin-node/issues/409)) ([12a524e](https://github.com/iotaledger/twin-node/commit/12a524e44d353cbfa690e522c139ec7083baefab))
31
+ * add mutex settings ([#222](https://github.com/iotaledger/twin-node/issues/222)) ([492c55f](https://github.com/iotaledger/twin-node/commit/492c55f67d5f70c2a4a27dfdb2700a644ee87955))
32
+ * add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
33
+ * add obligation enforcers and multi instance support ([#89](https://github.com/iotaledger/twin-node/issues/89)) ([d81af99](https://github.com/iotaledger/twin-node/commit/d81af99b8c4db6e9a1370b7065bf6d9d222c71ed))
34
+ * add outlook connector ([cf7ee0b](https://github.com/iotaledger/twin-node/commit/cf7ee0b73042cb33e693f3677386ca94567bb6e4))
35
+ * add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
36
+ * add soak and load test harness for the node server with k6 and memory-growth detection ([#248](https://github.com/iotaledger/twin-node/issues/248)) ([5dc9193](https://github.com/iotaledger/twin-node/commit/5dc91931d448796f4dedbab912c73817a8041b11))
37
+ * 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))
38
+ * add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
39
+ * add tenant override ([#337](https://github.com/iotaledger/twin-node/issues/337)) ([b4ea765](https://github.com/iotaledger/twin-node/commit/b4ea7656e2557c19053365dd5d4af14d0d945cd5))
40
+ * add tracing ([#344](https://github.com/iotaledger/twin-node/issues/344)) ([4fa71cd](https://github.com/iotaledger/twin-node/commit/4fa71cd0eafd7d708df15c8f0a85323fecd05561))
41
+ * add tracing console connector ([#373](https://github.com/iotaledger/twin-node/issues/373)) ([fb36cb8](https://github.com/iotaledger/twin-node/commit/fb36cb8bebc2e8c1b94fa332cead8283ca5d636a))
42
+ * add tracing support ([a4986fc](https://github.com/iotaledger/twin-node/commit/a4986fc4af603ee461ec8d18ff502dddbc43edec))
43
+ * add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
44
+ * add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
45
+ * add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
46
+ * add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
47
+ * adding npm and https protocols to load extensions ([#45](https://github.com/iotaledger/twin-node/issues/45)) ([33940b7](https://github.com/iotaledger/twin-node/commit/33940b7e771a0c5af32c18d442deb26a8631fd02))
48
+ * additional cli commands ([#269](https://github.com/iotaledger/twin-node/issues/269)) ([c9e7c93](https://github.com/iotaledger/twin-node/commit/c9e7c939aedfceed9cbe501f2dc936e84289ed62))
49
+ * additional env vars and validation ([#324](https://github.com/iotaledger/twin-node/issues/324)) ([6b01e8c](https://github.com/iotaledger/twin-node/commit/6b01e8c10f9aa7181f51f13534d8164db3e7322d))
50
+ * additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
51
+ * additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
52
+ * align node module with dataspace rename and control plane integ… ([#95](https://github.com/iotaledger/twin-node/issues/95)) ([8129868](https://github.com/iotaledger/twin-node/commit/812986886fb5d779dd380956c4e6cc47c2d73530))
53
+ * bootstrap-legacy rename ([#310](https://github.com/iotaledger/twin-node/issues/310)) ([53af8a2](https://github.com/iotaledger/twin-node/commit/53af8a2e797e90bb601416215247cd8649dd6220))
54
+ * configure web server body limits from the environment ([#356](https://github.com/iotaledger/twin-node/issues/356)) ([f196ad3](https://github.com/iotaledger/twin-node/commit/f196ad368559515184e37a99d6876570074ebcd5))
55
+ * configure which factories receive tracing facades ([#412](https://github.com/iotaledger/twin-node/issues/412)) ([da56bcb](https://github.com/iotaledger/twin-node/commit/da56bcbeba04d1091b3cd237624951c31ff9c185))
56
+ * custom plugin timeout ([#395](https://github.com/iotaledger/twin-node/issues/395)) ([d4a33ba](https://github.com/iotaledger/twin-node/commit/d4a33ba10a54c6dfab0b845b386201ac326df88a))
57
+ * custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
58
+ * dataspace plane path ([#272](https://github.com/iotaledger/twin-node/issues/272)) ([5998eeb](https://github.com/iotaledger/twin-node/commit/5998eeb6fa1392ae753eb6bafeccefa1fb690573))
59
+ * email ingestion ([#379](https://github.com/iotaledger/twin-node/issues/379)) ([12da79d](https://github.com/iotaledger/twin-node/commit/12da79dc9b167e288c555d4f1909a61c190eee4d))
60
+ * enable N2N dataspace protocol with synchronized storage ([#98](https://github.com/iotaledger/twin-node/issues/98)) ([f67e366](https://github.com/iotaledger/twin-node/commit/f67e366c5ed3c829955a62b19c420361f035a578))
61
+ * enhanced cli commands ([#288](https://github.com/iotaledger/twin-node/issues/288)) ([479fb34](https://github.com/iotaledger/twin-node/commit/479fb3448c493a134aee35b69ae39458e493a4ad))
62
+ * env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
63
+ * env var validation ([#243](https://github.com/iotaledger/twin-node/issues/243)) ([569945a](https://github.com/iotaledger/twin-node/commit/569945a751eb52d008a681777a3cba881af1b9a4))
64
+ * env vars consistency ([1823b7a](https://github.com/iotaledger/twin-node/commit/1823b7aeae5dc7484861534b851080afda64d869))
65
+ * env-prefix option and user-update cli command ([#83](https://github.com/iotaledger/twin-node/issues/83)) ([fc48efa](https://github.com/iotaledger/twin-node/commit/fc48efa7ad72173def048170c3afb5eeb9f1b292))
66
+ * eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
67
+ * expose gasBudget and gasReservationDuration as configurable env vars ([#286](https://github.com/iotaledger/twin-node/issues/286)) ([d678b27](https://github.com/iotaledger/twin-node/commit/d678b27d629930a6ce85eeab9caf89d1187c3461))
68
+ * extend to 7-group weighted mix, fix REST paths + JSON-LD contexts ([#257](https://github.com/iotaledger/twin-node/issues/257)) ([d9f8d55](https://github.com/iotaledger/twin-node/commit/d9f8d55d389a82947b7a0297f44f76f7f6b3ba21))
69
+ * federated catalogue trust mode ([#194](https://github.com/iotaledger/twin-node/issues/194)) ([c18e6fb](https://github.com/iotaledger/twin-node/commit/c18e6fbe0014eb5faf8084d16169d86f3d3b23a6))
70
+ * file logging config ([#287](https://github.com/iotaledger/twin-node/issues/287)) ([a567b25](https://github.com/iotaledger/twin-node/commit/a567b253cbb8b9af872bb0e494c013212f4f55a2))
71
+ * first metrics in the core and app for testing ([#139](https://github.com/iotaledger/twin-node/issues/139)) ([abe17bb](https://github.com/iotaledger/twin-node/commit/abe17bb9a6261dcb7fd46253221182fbb1dc2259))
72
+ * health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
73
+ * health exclude config ([#403](https://github.com/iotaledger/twin-node/issues/403)) ([646024b](https://github.com/iotaledger/twin-node/commit/646024b0ebe0f6f11630da2ab4b48e9ea6c2970b))
74
+ * identity profile information source ([dbb53d1](https://github.com/iotaledger/twin-node/commit/dbb53d145f517070d864f37650a6dbc1f3e9c3a8))
75
+ * immutable proof config ([#307](https://github.com/iotaledger/twin-node/issues/307)) ([9257495](https://github.com/iotaledger/twin-node/commit/92574953329647756aa6ab4cca80b1707e14a33f))
76
+ * immutable proof gate and additional config ([#157](https://github.com/iotaledger/twin-node/issues/157)) ([1d1fbb7](https://github.com/iotaledger/twin-node/commit/1d1fbb7c53525af848761dc25b42e9e676929972))
77
+ * improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
78
+ * improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
79
+ * improved cli commands ([#206](https://github.com/iotaledger/twin-node/issues/206)) ([cf00850](https://github.com/iotaledger/twin-node/commit/cf0085023a66e187aaaaf3889128c845c73a1faf))
80
+ * migration options ([#293](https://github.com/iotaledger/twin-node/issues/293)) ([91acc88](https://github.com/iotaledger/twin-node/commit/91acc881f665be0177b2e895e2810dd4d6145105))
81
+ * migration testing ([#199](https://github.com/iotaledger/twin-node/issues/199)) ([97a731c](https://github.com/iotaledger/twin-node/commit/97a731c520d66ab0588d80987a0f88d388ce51ae))
82
+ * multi-tenant env wiring, trust auto-enable, tenant-token vault key, engine-driven callbackPath ([#128](https://github.com/iotaledger/twin-node/issues/128)) ([0de4d35](https://github.com/iotaledger/twin-node/commit/0de4d356fb2f825afae5469005d475700f510ee4))
83
+ * new tenant auth mechanisms ([#168](https://github.com/iotaledger/twin-node/issues/168)) ([686f111](https://github.com/iotaledger/twin-node/commit/686f1118e79e6f26a8dc72a5e9172584057f4518))
84
+ * organization identifiers ([#203](https://github.com/iotaledger/twin-node/issues/203)) ([1a6b176](https://github.com/iotaledger/twin-node/commit/1a6b1760d9f8e43a769407668426c70e1c8e1aa8))
85
+ * pool env vars ([#331](https://github.com/iotaledger/twin-node/issues/331)) ([338ea61](https://github.com/iotaledger/twin-node/commit/338ea612b37aa4d15971c8a09def47bee9395d0c))
86
+ * publish nightly soak reports as a web-hosted dashboard ([#378](https://github.com/iotaledger/twin-node/issues/378)) ([e6984f9](https://github.com/iotaledger/twin-node/commit/e6984f9183e50b78e10de2124b94e3c22c7306ca))
87
+ * remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
88
+ * remove mutex timeout from logger ([e5a5407](https://github.com/iotaledger/twin-node/commit/e5a540725fa97b523f88589f582501f41b982d5b))
89
+ * remove old mutex timeouts ([fe6444a](https://github.com/iotaledger/twin-node/commit/fe6444af1a2e53cf6bce8517dbb8352e8b07bb31))
90
+ * remove set-tenant ([#186](https://github.com/iotaledger/twin-node/issues/186)) ([1fc1909](https://github.com/iotaledger/twin-node/commit/1fc1909e6335dea51dfec3bb91fba4badaa9790a))
91
+ * rest metrics ([#341](https://github.com/iotaledger/twin-node/issues/341)) ([ebec573](https://github.com/iotaledger/twin-node/commit/ebec5736bb66adfd97f7d73912bec1ce7392e5f8))
92
+ * rework soak memory-growth verdict to stop flip-flopping on identical code ([#372](https://github.com/iotaledger/twin-node/issues/372)) ([2afa74d](https://github.com/iotaledger/twin-node/commit/2afa74dd4c638cd9542638e2ea4fb34ab7dc1379))
93
+ * separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
94
+ * silent telemetry and tracing options ([#351](https://github.com/iotaledger/twin-node/issues/351)) ([3a5752f](https://github.com/iotaledger/twin-node/commit/3a5752fc0bf8a028b3ebfc34878524ac799fb81e))
95
+ * support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
96
+ * telemetry batching ([#347](https://github.com/iotaledger/twin-node/issues/347)) ([5d5b0a9](https://github.com/iotaledger/twin-node/commit/5d5b0a91396298fe774ae26193b0595875cd118a))
97
+ * telemetry tracing multi ([#357](https://github.com/iotaledger/twin-node/issues/357)) ([b6412ac](https://github.com/iotaledger/twin-node/commit/b6412ac3141a94a0f9f7d1dd391451ac9247e862))
98
+ * typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
99
+ * update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
100
+ * update dependencies ([1759ac3](https://github.com/iotaledger/twin-node/commit/1759ac3829b14ebf274737faae5fcc554404f19b))
101
+ * update dependencies ([64c8ea8](https://github.com/iotaledger/twin-node/commit/64c8ea8c8b5e918f7ad419c4e3b8d08faf5e3fdd))
102
+ * update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
103
+ * update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
104
+ * update dependencies ([351f777](https://github.com/iotaledger/twin-node/commit/351f777e001bf4183762657fc565b133a317600a))
105
+ * update dependencies ([#316](https://github.com/iotaledger/twin-node/issues/316)) ([f3fe328](https://github.com/iotaledger/twin-node/commit/f3fe3281a80f34763c923eacca58364273a550b7))
106
+ * update docs ([61e5a00](https://github.com/iotaledger/twin-node/commit/61e5a004089a0c11ec03e354b076604ecdeb4817))
107
+ * update docs ([409126a](https://github.com/iotaledger/twin-node/commit/409126a1325998face4634426b71682944c6a504))
108
+ * update document management components ([ed2c065](https://github.com/iotaledger/twin-node/commit/ed2c065a5030a7233f3623818d7325d85654ef0d))
109
+ * update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
110
+ * update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
111
+ * update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
112
+ * update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
113
+ * update logging retention units in config ([0b9bb69](https://github.com/iotaledger/twin-node/commit/0b9bb696db0722f6b33e37e1ebd1f4d6ffbcf7cc))
114
+ * update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
115
+ * update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
116
+ * update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
117
+ * updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
118
+
119
+
120
+ ### Bug Fixes
121
+
122
+ * improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
123
+ * stalled timeout now is provided in seconds ([#241](https://github.com/iotaledger/twin-node/issues/241)) ([ebd827d](https://github.com/iotaledger/twin-node/commit/ebd827d02a9a4f8ad4f4c84d064d02831ef015cb))
124
+ * update dependencies ([#283](https://github.com/iotaledger/twin-node/issues/283)) ([053c53d](https://github.com/iotaledger/twin-node/commit/053c53d45ec233e6936e56f8de8d5a5346ad2242))
125
+ * wire includeErrorStack debug flag into auth and tenant processor configs ([#313](https://github.com/iotaledger/twin-node/issues/313)) ([3c69c51](https://github.com/iotaledger/twin-node/commit/3c69c51bfdd65305efe2fbe9da508e684a4245d1))
126
+
127
+
128
+ ### Dependencies
129
+
130
+ * The following workspace dependencies were updated
131
+ * dependencies
132
+ * @twin.org/node-core bumped from 0.10.1-next.0 to 0.10.1-next.1
133
+
3
134
  ## [0.10.0](https://github.com/iotaledger/twin-node/compare/node-v0.10.0...node-v0.10.0) (2026-09-16)
4
135
 
5
136
 
@@ -12777,7 +12777,7 @@
12777
12777
  },
12778
12778
  {
12779
12779
  "name": "limit",
12780
- "description": "Limit the number of entities to return.",
12780
+ "description": "The maximum number of entities to return, a page can contain fewer so follow the cursor\nuntil it is absent to read them all.",
12781
12781
  "in": "query",
12782
12782
  "required": false,
12783
12783
  "schema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.10.0",
3
+ "version": "0.10.1-next.2",
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": ">=24.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/node-core": "^0.10.0"
17
+ "@twin.org/node-core": "0.10.1-next.2"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"