@twin.org/node 0.10.1-next.1 → 0.10.1-next.3

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": {
@@ -244,6 +244,9 @@
244
244
  "capacityExceeded": "The payload size of {required} bytes exceeds the maximum capacity of {capacity} bytes for object \"{objectId}\"",
245
245
  "bufferFetchFailed": "Failed to retrieve shared buffer for object \"{objectId}\" from the main thread"
246
246
  },
247
+ "randomHelper": {
248
+ "maxLength": "Requested length \"{length}\" is greater than the maximum of \"{maxLength}\" bytes"
249
+ },
247
250
  "fetchHelper": {
248
251
  "decodingJSON": "Decoding JSON failed for route \"{url}\"",
249
252
  "failureStatusText": "The request to the API failed: \"{statusText}\"",
@@ -430,6 +433,57 @@
430
433
  "organizationIdAlreadyExists": "A tenant with organization ID \"{existingId}\" already exists.",
431
434
  "publicOriginAlreadyExists": "A tenant with public origin \"{existingId}\" already exists."
432
435
  },
436
+ "auditableItemGraphService": {
437
+ "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
438
+ "createFailed": "Creating the Auditable Item Graph vertex failed",
439
+ "getFailed": "Getting the Auditable Item Graph vertex failed",
440
+ "getVersionFailed": "Getting the Auditable Item Graph vertex version failed",
441
+ "getVersionsFailed": "Getting the Auditable Item Graph vertex versions failed",
442
+ "versionNotFound": "The version with the Id \"{notFoundId}\" was not found",
443
+ "updatingFailed": "Updating the Auditable Item Graph vertex failed",
444
+ "queryingFailed": "Querying the Auditable Item Graph failed",
445
+ "invalidCursor": "The cursor is not valid, it must be one returned by a matching query",
446
+ "removeProofFailed": "Removing the proof from the Auditable Item Graph vertex failed",
447
+ "vertexNotFound": "The vertex with the Id \"{notFoundId}\" was not found",
448
+ "changesetNotFound": "The changeset with the Id \"{notFoundId}\" was not found",
449
+ "resourceIdMissing": "You must provide either the id, or the resourceObject must contain an id property for index \"{index}\"",
450
+ "aliasNotUnique": "The alias id \"{aliasId}\" is already in use on another vertex and the unique flag was set",
451
+ "invalidEdgeId": "The edge id \"{edgeId}\" is not valid",
452
+ "listPatchInvalidFormat": "The property \"{property}\" must be a list patch object with add and/or remove, not a bare array",
453
+ "auditModeTransitionNotAllowed": "The vertex audit mode can not be changed from \"{currentMode}\" to \"{requestedMode}\", bypass is a terminal mode"
454
+ },
455
+ "jsonSchemaHelper": {
456
+ "schemaLoadFailed": "Failed to load the referenced schema \"{uri}\""
457
+ },
458
+ "jsonLdProcessor": {
459
+ "compact": "The JSON-LD compaction failed",
460
+ "expand": "The JSON-LD expansion failed",
461
+ "canonize": "The JSON-LD canonization failed",
462
+ "invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
463
+ "jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
464
+ },
465
+ "proofHelper": {
466
+ "unsupportedProofType": "Proof type \"{proofType}\" not supported."
467
+ },
468
+ "jsonWebSignature2020SignerVerifier": {
469
+ "missingJws": "JWS is missing from proof."
470
+ },
471
+ "dataIntegrityProofSignerVerifier": {
472
+ "cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
473
+ "missingPrivateKey": "Private key is missing.",
474
+ "missingPublicKey": "Public key is missing."
475
+ },
476
+ "multikeyHelper": {
477
+ "invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
478
+ "invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
479
+ "unsupportedCrv": "Curve \"{crv}\" is not supported.",
480
+ "unsupportedKty": "Key type \"{kty}\" is not supported.",
481
+ "publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
482
+ "secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
483
+ },
484
+ "multiTelemetryConnector": {
485
+ "notSupported": "The method \"{methodName}\" is not supported on multi telemetry connector."
486
+ },
433
487
  "commands": {
434
488
  "common": {
435
489
  "missingEnv": "The \"{option}\" option is configured as an environment variable, but there is no environment variable with the name \"{value}\" set.",
@@ -440,16 +494,6 @@
440
494
  "optionMaxValue": "The \"{option}\" option must be less than or equal to {maxValue}, it is {value}."
441
495
  }
442
496
  },
443
- "jsonLdProcessor": {
444
- "compact": "The JSON-LD compaction failed",
445
- "expand": "The JSON-LD expansion failed",
446
- "canonize": "The JSON-LD canonization failed",
447
- "invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
448
- "jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
449
- },
450
- "jsonSchemaHelper": {
451
- "schemaLoadFailed": "Failed to load the referenced schema \"{uri}\""
452
- },
453
497
  "accountHelper": {
454
498
  "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
455
499
  "missingPublicKey": "The public key is missing for vault key \"{keyName}\""
@@ -508,6 +552,9 @@
508
552
  "failedLoading": "Failed to load file state storage from \"{filename}\"",
509
553
  "failedSaving": "Failed to save file state storage to \"{filename}\""
510
554
  },
555
+ "engineCloneHelper": {
556
+ "invalidExcludeCloneComponent": "The exclude clone component pattern \"{pattern}\" is not a valid regular expression"
557
+ },
511
558
  "moduleHelper": {
512
559
  "moduleNotFound": "Failed to load module \"{module}\"",
513
560
  "entryNotFound": "Failed to load entry \"{entry}\" from module \"{module}\"",
@@ -521,8 +568,7 @@
521
568
  },
522
569
  "healthService": {
523
570
  "componentHealthCheckFailed": "Health check failed for component \"{className}\"",
524
- "applicationHealthCheckTaskFailed": "Application health check background task failed",
525
- "invalidExcludeCloneComponent": "The exclude clone component pattern \"{pattern}\" is not a valid regular expression"
571
+ "applicationHealthCheckTaskFailed": "Application health check background task failed"
526
572
  },
527
573
  "applicationHealthTask": {
528
574
  "engineNotStarted": "Application health engine is not started"
@@ -534,28 +580,6 @@
534
580
  "destroyFailed": "Destroying the attestation failed",
535
581
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the NFT Attestation connector \"{namespace}\""
536
582
  },
537
- "proofHelper": {
538
- "unsupportedProofType": "Proof type \"{proofType}\" not supported."
539
- },
540
- "jsonWebSignature2020SignerVerifier": {
541
- "missingJws": "JWS is missing from proof."
542
- },
543
- "dataIntegrityProofSignerVerifier": {
544
- "cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
545
- "missingPrivateKey": "Private key is missing.",
546
- "missingPublicKey": "Public key is missing."
547
- },
548
- "multikeyHelper": {
549
- "invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
550
- "invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
551
- "unsupportedCrv": "Curve \"{crv}\" is not supported.",
552
- "unsupportedKty": "Key type \"{kty}\" is not supported.",
553
- "publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
554
- "secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
555
- },
556
- "multiTelemetryConnector": {
557
- "notSupported": "The method \"{methodName}\" is not supported on multi telemetry connector."
558
- },
559
583
  "verificationHelper": {
560
584
  "jwtDecodeFailed": "Decoding the JWT failed",
561
585
  "proofMissingVerificationMethod": "The proof is missing the verification method",
@@ -575,24 +599,6 @@
575
599
  "destroyFailed": "The destruction of the attestation failed",
576
600
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the attestation service \"{namespace}\""
577
601
  },
578
- "auditableItemGraphService": {
579
- "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Graph service \"{namespace}\"",
580
- "createFailed": "Creating the Auditable Item Graph vertex failed",
581
- "getFailed": "Getting the Auditable Item Graph vertex failed",
582
- "getVersionFailed": "Getting the Auditable Item Graph vertex version failed",
583
- "getVersionsFailed": "Getting the Auditable Item Graph vertex versions failed",
584
- "versionNotFound": "The version with the Id \"{notFoundId}\" was not found",
585
- "updatingFailed": "Updating the Auditable Item Graph vertex failed",
586
- "queryingFailed": "Querying the Auditable Item Graph failed",
587
- "removeProofFailed": "Removing the proof from the Auditable Item Graph vertex failed",
588
- "vertexNotFound": "The vertex with the Id \"{notFoundId}\" was not found",
589
- "changesetNotFound": "The changeset with the Id \"{notFoundId}\" was not found",
590
- "resourceIdMissing": "You must provide either the id, or the resourceObject must contain an id property for index \"{index}\"",
591
- "aliasNotUnique": "The alias id \"{aliasId}\" is already in use on another vertex and the unique flag was set",
592
- "invalidEdgeId": "The edge id \"{edgeId}\" is not valid",
593
- "listPatchInvalidFormat": "The property \"{property}\" must be a list patch object with add and/or remove, not a bare array",
594
- "auditModeTransitionNotAllowed": "The vertex audit mode can not be changed from \"{currentMode}\" to \"{requestedMode}\", bypass is a terminal mode"
595
- },
596
602
  "auditableItemStreamService": {
597
603
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the Auditable Item Stream service \"{namespace}\"",
598
604
  "createFailed": "Creating the Auditable Item Stream failed",
@@ -1012,7 +1018,6 @@
1012
1018
  "findFailed": "Error while querying data on \"{table}\"",
1013
1019
  "parseJSONFailed": "Parsing JSON failed for field \"{name}\" with value \"{value}\"",
1014
1020
  "comparisonNotSupported": "Dot-notation nested property path \"{property}\" is not supported in CQL queries",
1015
- "notEqualsNotSupported": "The NotEquals operator is not supported in CQL queries for property \"{property}\"",
1016
1021
  "notIncludesNotSupported": "The NotIncludes operator is not supported in CQL queries for property \"{property}\"",
1017
1022
  "orConditionNotSupported": "OR logical operators are not supported in CQL queries",
1018
1023
  "countFailed": "Unable to count entities",
@@ -1383,7 +1388,8 @@
1383
1388
  "offerNotFound": "Offer not found with id: \"{notFoundId}\"",
1384
1389
  "offerTypeMismatch": "The policy with id: \"{offerId}\" is not of type Offer, it is of type: \"{type}\".",
1385
1390
  "setNotFound": "Set not found with id: \"{notFoundId}\"",
1386
- "setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\"."
1391
+ "setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\".",
1392
+ "invalidCursor": "The cursor \"{cursor}\" was not produced by a locator query, cursors cannot be reused across queries with different locators"
1387
1393
  },
1388
1394
  "policyDecisionPointService": {
1389
1395
  "decidingFailed": "Deciding on policies for policy id \"{policyId}\" failed in arbiter with id: \"{arbiterId}\"",
@@ -1609,7 +1615,8 @@
1609
1615
  "node": {
1610
1616
  "unknownEnvVars": "Unknown environment variable properties [{keys}], they will be ignored. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST.",
1611
1617
  "deprecatedEnvVar": "The environment variable \"{key}\" is deprecated and no longer has any effect, please use {replacements} instead. This variable will be removed in a future release.",
1612
- "deprecatedEnvVarNoReplacement": "The environment variable \"{key}\" is deprecated and no longer has any effect. This variable will be removed in a future release."
1618
+ "deprecatedEnvVarNoReplacement": "The environment variable \"{key}\" is deprecated and no longer has any effect. This variable will be removed in a future release.",
1619
+ "nativeModuleUnavailable": "The native module \"{specifier}\" could not be loaded, the pure JavaScript implementation will be used instead: {error}"
1613
1620
  },
1614
1621
  "common": {
1615
1622
  "devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
@@ -2709,8 +2716,7 @@
2709
2716
  "tableExists": "Table \"{tableName}\" created or it already exists",
2710
2717
  "tableDropping": "Dropping table \"{tableName}\"",
2711
2718
  "tableDropped": "Table \"{tableName}\" dropped",
2712
- "legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" already covers the column",
2713
- "legacyIndexRenamed": "Legacy index \"{indexName}\" renamed to \"{newIndexName}\" on table \"{tableName}\""
2719
+ "legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" now covers the column"
2714
2720
  },
2715
2721
  "postgreSqlEntityStorageConnector": {
2716
2722
  "databaseCreating": "Database \"{databaseName}\" creating",
@@ -2719,8 +2725,7 @@
2719
2725
  "tableExists": "Table \"{tableName}\" created or it already exists",
2720
2726
  "tableDropping": "Dropping table \"{tableName}\"",
2721
2727
  "tableDropped": "Table \"{tableName}\" dropped",
2722
- "legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" already covers the column",
2723
- "legacyIndexRenamed": "Legacy index \"{indexName}\" renamed to \"{newIndexName}\" on table \"{tableName}\""
2728
+ "legacyIndexDropped": "Legacy index \"{indexName}\" dropped from table \"{tableName}\", \"{newIndexName}\" now covers the column"
2724
2729
  },
2725
2730
  "scyllaDBTableConnector": {
2726
2731
  "keyspaceCreating": "Creating keyspace \"{keyspace}\"",
@@ -2917,91 +2922,16 @@
2917
2922
  "responseMessage": "<=== {statusCode} {method} {requestUrl} duration: {elapsedMicroSeconds}µs"
2918
2923
  }
2919
2924
  },
2920
- "cli": {
2921
- "progress": {
2922
- "done": "Done.",
2923
- "error": "Error",
2924
- "loadingEnvFiles": "Loading env files",
2925
- "pleaseWait": "Please wait...",
2926
- "writingJsonFile": "Writing JSON file",
2927
- "writingEnvFile": "Writing env file",
2928
- "readingJsonFile": "Reading JSON file",
2929
- "readingEnvFile": "Reading env file"
2930
- },
2931
- "options": {
2932
- "lang": {
2933
- "param": "--lang '<'lang'>'",
2934
- "description": "The language to display the output in."
2935
- },
2936
- "load-env": {
2937
- "param": "--load-env [env...]",
2938
- "description": "Load the env files to initialise any environment variables."
2939
- },
2940
- "no-console": {
2941
- "param": "--no-console",
2942
- "description": "Hides the output in the console."
2943
- },
2944
- "json": {
2945
- "param": "--json '<'filename'>'",
2946
- "description": "Creates a JSON file containing the output."
2947
- },
2948
- "env": {
2949
- "param": "--env '<'filename'>'",
2950
- "description": "Creates an env file containing the output."
2951
- },
2952
- "merge-json": {
2953
- "param": "--merge-json",
2954
- "description": "If the JSON file already exists merge the data instead of overwriting."
2955
- },
2956
- "merge-env": {
2957
- "param": "--merge-env",
2958
- "description": "If the env file already exists merge the data instead of overwriting."
2959
- }
2960
- }
2961
- },
2962
- "engineCore": {
2963
- "debuggingEnabled": "Debugging is enabled",
2964
- "starting": "Engine is starting",
2965
- "started": "Engine has started",
2966
- "stopping": "Engine is stopping",
2967
- "stopped": "Engine has stopped",
2968
- "configuring": "Configuring component type \"{componentType}\" with configuration type \"{configType}\"",
2969
- "bootstrapStarted": "Bootstrap started",
2970
- "bootstrapComplete": "Bootstrap complete",
2971
- "bootstrapping": "Bootstrapping component type \"{className}\" with instance type \"{instanceType}\"",
2972
- "componentsStarting": "Components are starting",
2973
- "componentsComplete": "Components have started",
2974
- "componentsSummary": "Components started in {totalMs}ms, slowest: {slowestComponents}",
2975
- "componentsStopping": "Components are stopping",
2976
- "componentsStopped": "Components have stopped",
2977
- "componentStarting": "Starting component type \"{className}\" with instance type \"{instanceType}\"",
2978
- "componentStarted": "Started component type \"{className}\" with instance type \"{instanceType}\" in {elapsedMs}ms",
2979
- "componentStopping": "Stopping component type \"{className}\" with instance type \"{instanceType}\""
2980
- },
2981
- "fileStateStorage": {
2982
- "loading": "Loading state from file storage with filename \"{filename}\"",
2983
- "saving": "Saving state to file storage with filename \"{filename}\""
2984
- },
2985
- "memoryStateStorage": {
2986
- "loading": "Loading state from memory",
2987
- "saving": "Saving state to memory"
2988
- },
2989
- "nftAttestationConnector": {
2990
- "verificationFailures": {
2991
- "noData": "There is no data in the resolved NFT",
2992
- "proofFailed": "The proof of the attestation could not be verified",
2993
- "revoked": "The proof of the attestation has been revoked"
2994
- }
2995
- },
2925
+ "auditableItemGraphService": {},
2996
2926
  "health": {
2997
- "attestationService": {
2998
- "healthDescription": "Attestation lifecycle (create, get, destroy) using the \"{namespace}\" namespace",
2999
- "getAttestationFailed": "Failed to get the health check attestation"
3000
- },
3001
2927
  "auditableItemGraphService": {
3002
2928
  "healthDescription": "Auditable item graph service application health check",
3003
2929
  "getVertexFailed": "Failed to complete the auditable item graph vertex storage health check"
3004
2930
  },
2931
+ "attestationService": {
2932
+ "healthDescription": "Attestation lifecycle (create, get, destroy) using the \"{namespace}\" namespace",
2933
+ "getAttestationFailed": "Failed to get the health check attestation"
2934
+ },
3005
2935
  "auditableItemStreamService": {
3006
2936
  "healthDescription": "Auditable item stream service application health check",
3007
2937
  "getStreamFailed": "Failed to complete the auditable item stream storage health check"
@@ -3131,7 +3061,82 @@
3131
3061
  "serverNotBuilt": "The server has not been built"
3132
3062
  }
3133
3063
  },
3134
- "auditableItemGraphService": {},
3064
+ "cli": {
3065
+ "progress": {
3066
+ "done": "Done.",
3067
+ "error": "Error",
3068
+ "loadingEnvFiles": "Loading env files",
3069
+ "pleaseWait": "Please wait...",
3070
+ "writingJsonFile": "Writing JSON file",
3071
+ "writingEnvFile": "Writing env file",
3072
+ "readingJsonFile": "Reading JSON file",
3073
+ "readingEnvFile": "Reading env file"
3074
+ },
3075
+ "options": {
3076
+ "lang": {
3077
+ "param": "--lang '<'lang'>'",
3078
+ "description": "The language to display the output in."
3079
+ },
3080
+ "load-env": {
3081
+ "param": "--load-env [env...]",
3082
+ "description": "Load the env files to initialise any environment variables."
3083
+ },
3084
+ "no-console": {
3085
+ "param": "--no-console",
3086
+ "description": "Hides the output in the console."
3087
+ },
3088
+ "json": {
3089
+ "param": "--json '<'filename'>'",
3090
+ "description": "Creates a JSON file containing the output."
3091
+ },
3092
+ "env": {
3093
+ "param": "--env '<'filename'>'",
3094
+ "description": "Creates an env file containing the output."
3095
+ },
3096
+ "merge-json": {
3097
+ "param": "--merge-json",
3098
+ "description": "If the JSON file already exists merge the data instead of overwriting."
3099
+ },
3100
+ "merge-env": {
3101
+ "param": "--merge-env",
3102
+ "description": "If the env file already exists merge the data instead of overwriting."
3103
+ }
3104
+ }
3105
+ },
3106
+ "engineCore": {
3107
+ "debuggingEnabled": "Debugging is enabled",
3108
+ "starting": "Engine is starting",
3109
+ "started": "Engine has started",
3110
+ "stopping": "Engine is stopping",
3111
+ "stopped": "Engine has stopped",
3112
+ "configuring": "Configuring component type \"{componentType}\" with configuration type \"{configType}\"",
3113
+ "bootstrapStarted": "Bootstrap started",
3114
+ "bootstrapComplete": "Bootstrap complete",
3115
+ "bootstrapping": "Bootstrapping component type \"{className}\" with instance type \"{instanceType}\"",
3116
+ "componentsStarting": "Components are starting",
3117
+ "componentsComplete": "Components have started",
3118
+ "componentsSummary": "Components started in {totalMs}ms, slowest: {slowestComponents}",
3119
+ "componentsStopping": "Components are stopping",
3120
+ "componentsStopped": "Components have stopped",
3121
+ "componentStarting": "Starting component type \"{className}\" with instance type \"{instanceType}\"",
3122
+ "componentStarted": "Started component type \"{className}\" with instance type \"{instanceType}\" in {elapsedMs}ms",
3123
+ "componentStopping": "Stopping component type \"{className}\" with instance type \"{instanceType}\""
3124
+ },
3125
+ "fileStateStorage": {
3126
+ "loading": "Loading state from file storage with filename \"{filename}\"",
3127
+ "saving": "Saving state to file storage with filename \"{filename}\""
3128
+ },
3129
+ "memoryStateStorage": {
3130
+ "loading": "Loading state from memory",
3131
+ "saving": "Saving state to memory"
3132
+ },
3133
+ "nftAttestationConnector": {
3134
+ "verificationFailures": {
3135
+ "noData": "There is no data in the resolved NFT",
3136
+ "proofFailed": "The proof of the attestation could not be verified",
3137
+ "revoked": "The proof of the attestation has been revoked"
3138
+ }
3139
+ },
3135
3140
  "debug": {
3136
3141
  "dataspaceControlPlaneService": {
3137
3142
  "engineCloneStart": "Skipping control plane startup tasks (engine clone or no engine)",
package/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.1-next.3](https://github.com/iotaledger/twin-node/compare/node-v0.10.1-next.2...node-v0.10.1-next.3) (2026-09-21)
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.2 to 0.10.1-next.3
16
+
17
+ ## [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)
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.10.1-next.1 to 0.10.1-next.2
30
+
3
31
  ## [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)
4
32
 
5
33
 
@@ -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.1-next.1",
3
+ "version": "0.10.1-next.3",
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.1-next.1"
17
+ "@twin.org/node-core": "0.10.1-next.3"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"