@twin.org/node 0.9.2-next.5 → 0.9.2-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/locales/en.json +225 -147
- package/docs/changelog.md +29 -0
- package/docs/open-api/spec.json +23 -5
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"cliCommandParamMissing": "Parameter \"{param}\" is required for command \"{command}\"",
|
|
15
15
|
"cliCommandParamExtra": "Parameter(s) \"{params}\" are not recognised for command \"{command}\"",
|
|
16
16
|
"cliEnvVarMissing": "Environment variable \"{envVar}\" does not exist",
|
|
17
|
+
"invalidEnvVarValue": "Environment variable \"{key}\" has an invalid value \"{value}\", expected {type} type",
|
|
17
18
|
"unknownEnvVars": "Unknown environment variable properties [{keys}]. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST."
|
|
18
19
|
},
|
|
19
20
|
"bootstrapDev": {
|
|
@@ -93,51 +94,7 @@
|
|
|
93
94
|
"identityResolve": {
|
|
94
95
|
"identityNotFound": "The identity \"{identity}\" was not found."
|
|
95
96
|
},
|
|
96
|
-
"entityStorageAuthenticationService": {
|
|
97
|
-
"loginFailed": "Login failed",
|
|
98
|
-
"userNotFound": "The user with the specified e-mail could not be found",
|
|
99
|
-
"passwordMismatch": "The password does not match the user's password",
|
|
100
|
-
"nodeIdNotSet": "The node ID has not been set"
|
|
101
|
-
},
|
|
102
|
-
"entityStorageAuthenticationAdminService": {
|
|
103
|
-
"userExists": "The user with the specified e-mail already exists",
|
|
104
|
-
"createUserFailed": "Creating the user failed",
|
|
105
|
-
"getUserFailed": "Getting the user failed",
|
|
106
|
-
"updateUserFailed": "Updating the user failed",
|
|
107
|
-
"removeUserFailed": "Removing the user failed",
|
|
108
|
-
"updatePasswordFailed": "Updating the user's password failed",
|
|
109
|
-
"userNotFound": "The user with the specified e-mail could not be found \"{notFoundId}\""
|
|
110
|
-
},
|
|
111
|
-
"authHeaderProcessor": {
|
|
112
|
-
"nodeIdNotSet": "The node ID has not been set"
|
|
113
|
-
},
|
|
114
|
-
"passwordHelper": {
|
|
115
|
-
"currentPasswordMismatch": "The current password is incorrect"
|
|
116
|
-
},
|
|
117
|
-
"entityStorageAuthenticationAuditService": {
|
|
118
|
-
"auditEntryNotFound": "The audit entry with the specified identifier could not be found \"{notFoundId}\"",
|
|
119
|
-
"getAuditEntryFailed": "Getting the audit entry failed",
|
|
120
|
-
"updateAuditEntryFailed": "Updating the audit entry failed",
|
|
121
|
-
"removeAuditEntryFailed": "Removing the audit entry failed"
|
|
122
|
-
},
|
|
123
|
-
"entityStorageAuthenticationRateService": {
|
|
124
|
-
"actionConfigMissing": "No rate-limit configuration exists for action \"{action}\".",
|
|
125
|
-
"rateLimitExceeded": "The rate limit for action \"{action}\" has been exceeded. Retry after {retryAfterSeconds} seconds."
|
|
126
|
-
},
|
|
127
|
-
"tokenHelper": {
|
|
128
|
-
"missing": "The JSON Web token could not be found in the authorization header",
|
|
129
|
-
"headerKeyIdMismatch": "The JSON Web token key identifier does not match the expected signing key",
|
|
130
|
-
"payloadIssuerMismatch": "The JSON Web token issuer does not match the expected signing key",
|
|
131
|
-
"payloadMissingSubject": "The JSON Web token payload does not contain a subject",
|
|
132
|
-
"payloadMissingOrganization": "The JSON Web token payload does not contain an organization",
|
|
133
|
-
"expired": "The JSON Web token has expired",
|
|
134
|
-
"insufficientScopes": "The JSON Web token does not have the required scopes to access this resource",
|
|
135
|
-
"userNotVerified": "The user associated with the JSON Web token could not be verified",
|
|
136
|
-
"organizationNotVerified": "The organization associated with the JSON Web token could not be verified",
|
|
137
|
-
"tenantNotVerified": "The tenant associated with the JSON Web token could not be verified"
|
|
138
|
-
},
|
|
139
97
|
"validation": {
|
|
140
|
-
"saltEntropyTooLow": "Salt must have at least 8 unique characters for sufficient entropy.",
|
|
141
98
|
"beEmpty": "{fieldName} must be empty",
|
|
142
99
|
"beNotEmpty": "{fieldName} must not be empty",
|
|
143
100
|
"beText": "{fieldName} must be text",
|
|
@@ -183,11 +140,11 @@
|
|
|
183
140
|
"atLeastOneUpperCase": "The value should contain at least one uppercase character",
|
|
184
141
|
"atLeastOneNumber": "The value should contain at least one number",
|
|
185
142
|
"atLeastOneSpecialChar": "The value should contain at least one symbol",
|
|
143
|
+
"saltEntropyTooLow": "Salt must have at least 8 unique characters for sufficient entropy.",
|
|
186
144
|
"schema": {
|
|
187
145
|
"missingType": "Failed to validate as there is no handler for type \"{dataType}\""
|
|
188
146
|
},
|
|
189
147
|
"schemaFailed": "Schema failed validation, \"{message}\", keyword: \"{keyword}\", schemaPath: \"{schemaPath}\"",
|
|
190
|
-
"missingType": "The object must include at least one @type value",
|
|
191
148
|
"geo": {
|
|
192
149
|
"coordinatesLatitudeNumber": "The latitude value must be a number",
|
|
193
150
|
"coordinatesLatitudeRange": "The latitude value must be between -90 and 90",
|
|
@@ -196,7 +153,8 @@
|
|
|
196
153
|
},
|
|
197
154
|
"auditableItemGraphService": {
|
|
198
155
|
"edgeIdSameAsVertexId": "The edge with target id \"{targetId}\" can not point to the vertex it belongs to"
|
|
199
|
-
}
|
|
156
|
+
},
|
|
157
|
+
"missingType": "The object must include at least one @type value"
|
|
200
158
|
},
|
|
201
159
|
"guard": {
|
|
202
160
|
"undefined": "Property \"{property}\" must be defined, it is \"{value}\"",
|
|
@@ -347,6 +305,49 @@
|
|
|
347
305
|
"pbkdf2": {
|
|
348
306
|
"keyLengthTooSmall": "The key length must be at least 1, it is \"{keyLength}\""
|
|
349
307
|
},
|
|
308
|
+
"entityStorageAuthenticationService": {
|
|
309
|
+
"loginFailed": "Login failed",
|
|
310
|
+
"userNotFound": "The user with the specified e-mail could not be found",
|
|
311
|
+
"passwordMismatch": "The password does not match the user's password",
|
|
312
|
+
"nodeIdNotSet": "The node ID has not been set"
|
|
313
|
+
},
|
|
314
|
+
"entityStorageAuthenticationAdminService": {
|
|
315
|
+
"userExists": "The user with the specified e-mail already exists",
|
|
316
|
+
"createUserFailed": "Creating the user failed",
|
|
317
|
+
"getUserFailed": "Getting the user failed",
|
|
318
|
+
"updateUserFailed": "Updating the user failed",
|
|
319
|
+
"removeUserFailed": "Removing the user failed",
|
|
320
|
+
"updatePasswordFailed": "Updating the user's password failed",
|
|
321
|
+
"userNotFound": "The user with the specified e-mail could not be found \"{notFoundId}\""
|
|
322
|
+
},
|
|
323
|
+
"authHeaderProcessor": {
|
|
324
|
+
"nodeIdNotSet": "The node ID has not been set"
|
|
325
|
+
},
|
|
326
|
+
"passwordHelper": {
|
|
327
|
+
"currentPasswordMismatch": "The current password is incorrect"
|
|
328
|
+
},
|
|
329
|
+
"entityStorageAuthenticationAuditService": {
|
|
330
|
+
"auditEntryNotFound": "The audit entry with the specified identifier could not be found \"{notFoundId}\"",
|
|
331
|
+
"getAuditEntryFailed": "Getting the audit entry failed",
|
|
332
|
+
"updateAuditEntryFailed": "Updating the audit entry failed",
|
|
333
|
+
"removeAuditEntryFailed": "Removing the audit entry failed"
|
|
334
|
+
},
|
|
335
|
+
"entityStorageAuthenticationRateService": {
|
|
336
|
+
"actionConfigMissing": "No rate-limit configuration exists for action \"{action}\".",
|
|
337
|
+
"rateLimitExceeded": "The rate limit for action \"{action}\" has been exceeded. Retry after {retryAfterSeconds} seconds."
|
|
338
|
+
},
|
|
339
|
+
"tokenHelper": {
|
|
340
|
+
"missing": "The JSON Web token could not be found in the authorization header",
|
|
341
|
+
"headerKeyIdMismatch": "The JSON Web token key identifier does not match the expected signing key",
|
|
342
|
+
"payloadIssuerMismatch": "The JSON Web token issuer does not match the expected signing key",
|
|
343
|
+
"payloadMissingSubject": "The JSON Web token payload does not contain a subject",
|
|
344
|
+
"payloadMissingOrganization": "The JSON Web token payload does not contain an organization",
|
|
345
|
+
"expired": "The JSON Web token has expired",
|
|
346
|
+
"insufficientScopes": "The JSON Web token does not have the required scopes to access this resource",
|
|
347
|
+
"userNotVerified": "The user associated with the JSON Web token could not be verified",
|
|
348
|
+
"organizationNotVerified": "The organization associated with the JSON Web token could not be verified",
|
|
349
|
+
"tenantNotVerified": "The tenant associated with the JSON Web token could not be verified"
|
|
350
|
+
},
|
|
350
351
|
"baseRestClient": {
|
|
351
352
|
"missingRouteProp": "Missing route parameter in data \"{routeProp}\" for route \"{route}\"",
|
|
352
353
|
"decodingFailed": "Decoding JSON failed for route \"{route}\"",
|
|
@@ -374,7 +375,9 @@
|
|
|
374
375
|
"invalidEntityProperty": "The entity value of \"{value}\" does not match the type \"{type}\" for property \"{property}\"",
|
|
375
376
|
"invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
|
|
376
377
|
"invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\"",
|
|
377
|
-
"versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}"
|
|
378
|
+
"versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}",
|
|
379
|
+
"multipleVersionProperties": "The schema has more than one property with isVersion set, only one is allowed",
|
|
380
|
+
"versionPropertyMustBeInteger": "The version property \"{property}\" has type \"{type}\" but must be of type integer"
|
|
378
381
|
},
|
|
379
382
|
"entityStorageHelper": {
|
|
380
383
|
"sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
|
|
@@ -424,45 +427,47 @@
|
|
|
424
427
|
"invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
|
|
425
428
|
"jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
|
|
426
429
|
},
|
|
427
|
-
"
|
|
428
|
-
"
|
|
429
|
-
"
|
|
430
|
-
},
|
|
431
|
-
"verificationHelper": {
|
|
432
|
-
"jwtDecodeFailed": "Decoding the JWT failed",
|
|
433
|
-
"proofMissingVerificationMethod": "The proof is missing the verification method"
|
|
434
|
-
},
|
|
435
|
-
"documentHelper": {
|
|
436
|
-
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
437
|
-
"verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
|
|
438
|
-
},
|
|
439
|
-
"proofHelper": {
|
|
440
|
-
"unsupportedProofType": "Proof type \"{proofType}\" not supported."
|
|
441
|
-
},
|
|
442
|
-
"jsonWebSignature2020SignerVerifier": {
|
|
443
|
-
"missingJws": "JWS is missing from proof."
|
|
444
|
-
},
|
|
445
|
-
"dataIntegrityProofSignerVerifier": {
|
|
446
|
-
"cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
|
|
447
|
-
"missingPrivateKey": "Private key is missing.",
|
|
448
|
-
"missingPublicKey": "Public key is missing."
|
|
430
|
+
"accountHelper": {
|
|
431
|
+
"addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
|
|
432
|
+
"missingPublicKey": "The public key is missing for vault key \"{keyName}\""
|
|
449
433
|
},
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"
|
|
453
|
-
"
|
|
454
|
-
"
|
|
455
|
-
"
|
|
456
|
-
"
|
|
434
|
+
"iota": {
|
|
435
|
+
"insufficientFunds": "There were insufficient funds to complete the operation",
|
|
436
|
+
"packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
|
|
437
|
+
"packageObjectError": "Failed to fetch the package object \"{packageId}\"",
|
|
438
|
+
"valueTransactionFailed": "The value transaction failed",
|
|
439
|
+
"transactionFailed": "The transaction failed",
|
|
440
|
+
"objectReservationConflict": "One or more of the transaction's owned objects are contended by another in-flight transaction; submit transactions that share objects sequentially and retry",
|
|
441
|
+
"gasStationTransactionFailed": "The gas station transaction failed",
|
|
442
|
+
"dryRunFailed": "The dry run execution failed",
|
|
443
|
+
"fundingFailed": "Fund the address from faucet failed",
|
|
444
|
+
"faucetRateLimit": "Faucet rate limit exceeded"
|
|
457
445
|
},
|
|
458
|
-
"
|
|
459
|
-
"
|
|
446
|
+
"vaultJwkStorage": {
|
|
447
|
+
"generateNotSupported": "Key generation is not supported; keys are managed by the vault"
|
|
460
448
|
},
|
|
461
|
-
"
|
|
462
|
-
"
|
|
449
|
+
"iotaIdentityUtils": {
|
|
450
|
+
"getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
|
|
451
|
+
"identityNotFound": "The identity could not be found \"{notFoundId}\"",
|
|
452
|
+
"identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
|
|
453
|
+
"controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
|
|
463
454
|
},
|
|
464
|
-
"
|
|
465
|
-
"
|
|
455
|
+
"iotaSmartContractUtils": {
|
|
456
|
+
"migrationFailed": "Smart contract migration failed",
|
|
457
|
+
"migrateSmartContractFailed": "Failed to migrate smart contract for object \"{objectId}\"",
|
|
458
|
+
"enableMigrationFailed": "Failed to enable migration for smart contract",
|
|
459
|
+
"disableMigrationFailed": "Failed to disable migration for smart contract",
|
|
460
|
+
"migrationStateNotReadable": "Cannot read migration state for ID \"{migrationStateId}\"",
|
|
461
|
+
"isMigrationActiveFailed": "Failed to check if migration is active",
|
|
462
|
+
"invalidVersionData": "Invalid version data received from smart contract",
|
|
463
|
+
"getCurrentContractVersionNoData": "No version data returned from contract",
|
|
464
|
+
"getCurrentContractVersionFailed": "Failed to get current contract version",
|
|
465
|
+
"objectNotReadable": "Cannot read object with ID \"{objectId}\"",
|
|
466
|
+
"objectInvalidFormat": "Object \"{objectId}\" has invalid format",
|
|
467
|
+
"validateObjectVersionFailed": "Failed to validate object version for \"{objectId}\"",
|
|
468
|
+
"getContractObjectIdsFailed": "Failed to get contract object IDs for namespace \"{namespace}\" on network \"{network}\"",
|
|
469
|
+
"adminCapNotFound": "AdminCap object not found for type \"{adminCapType}\" and address \"{adminAddress}\"",
|
|
470
|
+
"migrationStateNotFound": "MigrationState object not found for type \"{migrationStateType}\" and address \"{adminAddress}\""
|
|
466
471
|
},
|
|
467
472
|
"engineCore": {
|
|
468
473
|
"componentUnknownType": "Unknown component type \"{type}\" specified for \"{componentType}\"",
|
|
@@ -488,9 +493,10 @@
|
|
|
488
493
|
"connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\""
|
|
489
494
|
},
|
|
490
495
|
"healthService": {
|
|
491
|
-
"componentHealthInitFailed": "Health check init failed for component \"{className}\"",
|
|
492
496
|
"componentHealthCheckFailed": "Health check failed for component \"{className}\"",
|
|
493
|
-
"
|
|
497
|
+
"componentHealthApplicationInitFailed": "Application health check init failed for component \"{className}\"",
|
|
498
|
+
"componentHealthApplicationCheckFailed": "Application health check failed for component \"{className}\"",
|
|
499
|
+
"componentHealthApplicationTeardownFailed": "Application health check teardown failed for component \"{className}\""
|
|
494
500
|
},
|
|
495
501
|
"nftAttestationConnector": {
|
|
496
502
|
"attestingFailed": "Attesting the data failed",
|
|
@@ -499,6 +505,36 @@
|
|
|
499
505
|
"destroyFailed": "Destroying the attestation failed",
|
|
500
506
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the NFT Attestation connector \"{namespace}\""
|
|
501
507
|
},
|
|
508
|
+
"proofHelper": {
|
|
509
|
+
"unsupportedProofType": "Proof type \"{proofType}\" not supported."
|
|
510
|
+
},
|
|
511
|
+
"jsonWebSignature2020SignerVerifier": {
|
|
512
|
+
"missingJws": "JWS is missing from proof."
|
|
513
|
+
},
|
|
514
|
+
"dataIntegrityProofSignerVerifier": {
|
|
515
|
+
"cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
|
|
516
|
+
"missingPrivateKey": "Private key is missing.",
|
|
517
|
+
"missingPublicKey": "Public key is missing."
|
|
518
|
+
},
|
|
519
|
+
"multikeyHelper": {
|
|
520
|
+
"invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
|
|
521
|
+
"invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
|
|
522
|
+
"unsupportedCrv": "Curve \"{crv}\" is not supported.",
|
|
523
|
+
"unsupportedKty": "Key type \"{kty}\" is not supported.",
|
|
524
|
+
"publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
|
|
525
|
+
"secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
|
|
526
|
+
},
|
|
527
|
+
"silentTelemetryConnector": {
|
|
528
|
+
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
529
|
+
},
|
|
530
|
+
"verificationHelper": {
|
|
531
|
+
"jwtDecodeFailed": "Decoding the JWT failed",
|
|
532
|
+
"proofMissingVerificationMethod": "The proof is missing the verification method"
|
|
533
|
+
},
|
|
534
|
+
"documentHelper": {
|
|
535
|
+
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
536
|
+
"verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
|
|
537
|
+
},
|
|
502
538
|
"attestationService": {
|
|
503
539
|
"noConnectors": "There are no connectors registered with the attestation factory",
|
|
504
540
|
"attestFailed": "The attestation of the data failed",
|
|
@@ -722,6 +758,16 @@
|
|
|
722
758
|
"pushTransferDataPathNotConfigured": "POST transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
|
|
723
759
|
"providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process"
|
|
724
760
|
},
|
|
761
|
+
"odrlPolicyHelper": {
|
|
762
|
+
"policyMissingAssignee": "The {policyType} with id \"{policyId}\" is missing an assignee.",
|
|
763
|
+
"policyMissingAssigner": "The {policyType} with id \"{policyId}\" is missing an assigner."
|
|
764
|
+
},
|
|
765
|
+
"dataspaceProtocolHelper": {
|
|
766
|
+
"schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
|
|
767
|
+
},
|
|
768
|
+
"trustHelper": {
|
|
769
|
+
"trustVerifyFailed": "Trust verification failed for action \"{action}\""
|
|
770
|
+
},
|
|
725
771
|
"dataspaceDataPlaneRestClient": {
|
|
726
772
|
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
727
773
|
},
|
|
@@ -781,7 +827,7 @@
|
|
|
781
827
|
"queryFailed": "The query failed",
|
|
782
828
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
783
829
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
784
|
-
"
|
|
830
|
+
"sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
|
|
785
831
|
"containerCreateFailed": "The container couldn't be created \"{containerId}\"",
|
|
786
832
|
"databaseCreateFailed": "Unable to create database \"{databaseId}\"",
|
|
787
833
|
"containerDoesNotExist": "Container \"{containerId}\" does not exist",
|
|
@@ -802,7 +848,7 @@
|
|
|
802
848
|
"queryFailed": "The query failed",
|
|
803
849
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
804
850
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
805
|
-
"
|
|
851
|
+
"sortUnsupported": "Sorting supports at most one property other than the primary key \"{primaryKey}\"",
|
|
806
852
|
"propertyNotFound": "The property \"{property}\" was not found on the entity schema",
|
|
807
853
|
"getPartitionContextIdsFailed": "Unable to get partition context ids",
|
|
808
854
|
"setBatchFailed": "Unable to set batch of entities",
|
|
@@ -1019,46 +1065,6 @@
|
|
|
1019
1065
|
"signatureVerificationFailed": "The document integrity check failed",
|
|
1020
1066
|
"verifyProofFailed": "Verifying the signature for the data failed"
|
|
1021
1067
|
},
|
|
1022
|
-
"iota": {
|
|
1023
|
-
"insufficientFunds": "There were insufficient funds to complete the operation",
|
|
1024
|
-
"packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
|
|
1025
|
-
"packageObjectError": "Failed to fetch the package object \"{packageId}\"",
|
|
1026
|
-
"valueTransactionFailed": "The value transaction failed",
|
|
1027
|
-
"transactionFailed": "The transaction failed",
|
|
1028
|
-
"objectReservationConflict": "One or more of the transaction's owned objects are contended by another in-flight transaction; submit transactions that share objects sequentially and retry",
|
|
1029
|
-
"addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
|
|
1030
|
-
"gasStationTransactionFailed": "The gas station transaction failed",
|
|
1031
|
-
"dryRunFailed": "The dry run execution failed",
|
|
1032
|
-
"fundingFailed": "Fund the address from faucet failed",
|
|
1033
|
-
"faucetRateLimit": "Faucet rate limit exceeded",
|
|
1034
|
-
"missingPublicKey": "The public key is missing for vault key \"{keyName}\""
|
|
1035
|
-
},
|
|
1036
|
-
"vaultJwkStorage": {
|
|
1037
|
-
"generateNotSupported": "Key generation is not supported; keys are managed by the vault"
|
|
1038
|
-
},
|
|
1039
|
-
"iotaIdentityUtils": {
|
|
1040
|
-
"getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
|
|
1041
|
-
"identityNotFound": "The identity could not be found \"{notFoundId}\"",
|
|
1042
|
-
"identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
|
|
1043
|
-
"controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
|
|
1044
|
-
},
|
|
1045
|
-
"iotaSmartContractUtils": {
|
|
1046
|
-
"migrationFailed": "Smart contract migration failed",
|
|
1047
|
-
"migrateSmartContractFailed": "Failed to migrate smart contract for object \"{objectId}\"",
|
|
1048
|
-
"enableMigrationFailed": "Failed to enable migration for smart contract",
|
|
1049
|
-
"disableMigrationFailed": "Failed to disable migration for smart contract",
|
|
1050
|
-
"migrationStateNotReadable": "Cannot read migration state for ID \"{migrationStateId}\"",
|
|
1051
|
-
"isMigrationActiveFailed": "Failed to check if migration is active",
|
|
1052
|
-
"invalidVersionData": "Invalid version data received from smart contract",
|
|
1053
|
-
"getCurrentContractVersionNoData": "No version data returned from contract",
|
|
1054
|
-
"getCurrentContractVersionFailed": "Failed to get current contract version",
|
|
1055
|
-
"objectNotReadable": "Cannot read object with ID \"{objectId}\"",
|
|
1056
|
-
"objectInvalidFormat": "Object \"{objectId}\" has invalid format",
|
|
1057
|
-
"validateObjectVersionFailed": "Failed to validate object version for \"{objectId}\"",
|
|
1058
|
-
"getContractObjectIdsFailed": "Failed to get contract object IDs for namespace \"{namespace}\" on network \"{network}\"",
|
|
1059
|
-
"adminCapNotFound": "AdminCap object not found for type \"{adminCapType}\" and address \"{adminAddress}\"",
|
|
1060
|
-
"migrationStateNotFound": "MigrationState object not found for type \"{migrationStateType}\" and address \"{adminAddress}\""
|
|
1061
|
-
},
|
|
1062
1068
|
"universalResolverConnector": {
|
|
1063
1069
|
"resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
|
|
1064
1070
|
},
|
|
@@ -1107,7 +1113,8 @@
|
|
|
1107
1113
|
"removeFailed": "Removing the Immutable Proof failed",
|
|
1108
1114
|
"removeNotarizationFailed": "Removing notarization entry from the Immutable Proof failed",
|
|
1109
1115
|
"proofNotFound": "The proof with the Id \"{notFoundId}\" was not found",
|
|
1110
|
-
"createProofFailed": "Creating the immutable proof failed"
|
|
1116
|
+
"createProofFailed": "Creating the immutable proof failed",
|
|
1117
|
+
"sweepFailed": "The reconciliation sweep cycle failed"
|
|
1111
1118
|
},
|
|
1112
1119
|
"immutableProofTask": {
|
|
1113
1120
|
"taskNotarizationFailed": "The notarization for proof \"{proofId}\" failed after {elapsedMs}ms, the task will not be retried as the notarization may already be on the ledger"
|
|
@@ -1346,6 +1353,18 @@
|
|
|
1346
1353
|
"metricsCollectorService": {
|
|
1347
1354
|
"producerCollectionFailed": "Failed to collect metrics from producer \"{producer}\""
|
|
1348
1355
|
},
|
|
1356
|
+
"entityStorageTracingConnector": {
|
|
1357
|
+
"spanNotFound": "The span could not be found \"{notFoundId}\""
|
|
1358
|
+
},
|
|
1359
|
+
"spanHelper": {
|
|
1360
|
+
"traceFlagsOutOfRange": "The trace flags value \"{traceFlags}\" is outside the valid range 0 to 255"
|
|
1361
|
+
},
|
|
1362
|
+
"openTelemetryTracingConnector": {
|
|
1363
|
+
"sampleRatioOutOfRange": "The sample ratio \"{sampleRatio}\" must be between 0 and 1"
|
|
1364
|
+
},
|
|
1365
|
+
"tracingRoutes": {
|
|
1366
|
+
"spanIdMismatch": "The span id in the path \"{pathSpanId}\" does not match the span id in the body \"{bodySpanId}\""
|
|
1367
|
+
},
|
|
1349
1368
|
"trustService": {
|
|
1350
1369
|
"notVerified": "Payload verification failed",
|
|
1351
1370
|
"noGeneratorsRegistered": "No trust generators are registered in the factory",
|
|
@@ -1464,7 +1483,11 @@
|
|
|
1464
1483
|
"transferRetrievalRecordFailed": "Failed to record the transfer retrieval (consumerPid: {consumerPid})"
|
|
1465
1484
|
},
|
|
1466
1485
|
"immutableProofService": {
|
|
1467
|
-
"taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires"
|
|
1486
|
+
"taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires",
|
|
1487
|
+
"orphanedTaskRemoveFailed": "Removing the background task \"{taskId}\" for proof \"{proofId}\" failed after the proof entity could not be persisted; the task will still run to completion",
|
|
1488
|
+
"supersededTaskRemoveFailed": "Removing the superseded background task \"{taskId}\" for proof \"{proofId}\" failed, the record will be removed when its retention expires",
|
|
1489
|
+
"sweepParked": "Parked proof \"{proofId}\" after {sweepAttempts} sweep attempts",
|
|
1490
|
+
"sweepParkedTotal": "{totalParked} proof(s) are currently parked and require operator investigation"
|
|
1468
1491
|
},
|
|
1469
1492
|
"immutableProofTask": {
|
|
1470
1493
|
"taskEngineStopFailed": "Stopping the task engine for proof \"{proofId}\" failed, the task result is unaffected"
|
|
@@ -1473,7 +1496,8 @@
|
|
|
1473
1496
|
"sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
|
|
1474
1497
|
},
|
|
1475
1498
|
"policyNegotiationPointService": {
|
|
1476
|
-
"terminatedCallbackFailed": "Failed to notify requester via terminated() for negotiation id: \"{negotiationId}\""
|
|
1499
|
+
"terminatedCallbackFailed": "Failed to notify requester via terminated() for negotiation id: \"{negotiationId}\"",
|
|
1500
|
+
"callbackDeliveryFailed": "Failed to deliver the negotiation callback to \"{callbackAddress}\" for negotiation id: \"{negotiationId}\" in state \"{state}\"; the negotiation is unchanged and remains discoverable by polling"
|
|
1477
1501
|
}
|
|
1478
1502
|
},
|
|
1479
1503
|
"node": {
|
|
@@ -2315,13 +2339,12 @@
|
|
|
2315
2339
|
"migrateSchemaFinalizing": "Finalizing migration of schema \"{schemaName}\"",
|
|
2316
2340
|
"migrateSchemaComplete": "Migration of schema \"{schemaName}\" complete"
|
|
2317
2341
|
},
|
|
2342
|
+
"iota": {
|
|
2343
|
+
"transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
|
|
2344
|
+
},
|
|
2318
2345
|
"engineTypes": {
|
|
2319
2346
|
"configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector"
|
|
2320
2347
|
},
|
|
2321
|
-
"memoryEntityStorageConnector": {
|
|
2322
|
-
"storeTearingDown": "Tearing down entity storage",
|
|
2323
|
-
"storeTornDown": "Entity storage torn down"
|
|
2324
|
-
},
|
|
2325
2348
|
"fetchAction": {
|
|
2326
2349
|
"fetch": "Fetch \"{url}\" with method \"{method}\""
|
|
2327
2350
|
},
|
|
@@ -2388,6 +2411,7 @@
|
|
|
2388
2411
|
"offerFoundInCatalog": "Offer found in Federated Catalogue and validated",
|
|
2389
2412
|
"negotiationInitiated": "Contract negotiation initiated successfully",
|
|
2390
2413
|
"implicitTrustAgreementCreated": "Implicit trust agreement created (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2414
|
+
"agreementReused": "Existing agreement reused (agreementId: {agreementId}, offerId: {offerId}, datasetId: {datasetId})",
|
|
2391
2415
|
"implicitTrustAgreementReused": "Existing implicit trust agreement reused (agreementId: {agreementId}, datasetId: {datasetId}, organizationId: {organizationId})",
|
|
2392
2416
|
"getNegotiation": "Retrieving negotiation status",
|
|
2393
2417
|
"negotiationStateRetrieved": "Negotiation state retrieved successfully",
|
|
@@ -2447,6 +2471,10 @@
|
|
|
2447
2471
|
"storeTearingDown": "Tearing down entity storage",
|
|
2448
2472
|
"storeTornDown": "Entity storage torn down"
|
|
2449
2473
|
},
|
|
2474
|
+
"memoryEntityStorageConnector": {
|
|
2475
|
+
"storeTearingDown": "Tearing down entity storage",
|
|
2476
|
+
"storeTornDown": "Entity storage torn down"
|
|
2477
|
+
},
|
|
2450
2478
|
"mongoDbEntityStorageConnector": {
|
|
2451
2479
|
"databaseCreating": "Database \"{databaseName}\" creating",
|
|
2452
2480
|
"databaseExists": "Database \"{databaseName}\" created or it already exists",
|
|
@@ -2515,11 +2543,10 @@
|
|
|
2515
2543
|
"catalogQueryComplete": "Catalogue query complete, found {resultCount} results",
|
|
2516
2544
|
"filterIndexPersisted": "Filter indexes persisted for dataset \"{datasetId}\" using filter \"{filterType}\", {indexCount} entries"
|
|
2517
2545
|
},
|
|
2518
|
-
"iota": {
|
|
2519
|
-
"transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
|
|
2520
|
-
},
|
|
2521
2546
|
"immutableProofService": {
|
|
2522
|
-
"createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully"
|
|
2547
|
+
"createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully",
|
|
2548
|
+
"sweepReEnqueued": "Re-enqueued stuck proof \"{proofId}\" as task \"{taskId}\"",
|
|
2549
|
+
"sweepCompleted": "Reconciliation sweep cycle completed (scanned: {scanned}, reEnqueued: {reEnqueued}, skippedInFlight: {skippedInFlight}, newlyParked: {newlyParked}, totalParked: {totalParked})"
|
|
2523
2550
|
},
|
|
2524
2551
|
"openTelemetryLoggingConnector": {
|
|
2525
2552
|
"connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
|
|
@@ -2618,6 +2645,10 @@
|
|
|
2618
2645
|
"connectorStarted": "The connector was started with \"{readerCount}\" metric reader(s)",
|
|
2619
2646
|
"connectorStopped": "The connector was stopped"
|
|
2620
2647
|
},
|
|
2648
|
+
"openTelemetryTracingConnector": {
|
|
2649
|
+
"connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
|
|
2650
|
+
"connectorStopped": "The connector was stopped"
|
|
2651
|
+
},
|
|
2621
2652
|
"trustService": {
|
|
2622
2653
|
"verifying": "Verifying payload: \"{payload}\"",
|
|
2623
2654
|
"verified": "Payload verified successfully"
|
|
@@ -2627,7 +2658,7 @@
|
|
|
2627
2658
|
},
|
|
2628
2659
|
"fastifyWebServer": {
|
|
2629
2660
|
"building": "Building Web Server",
|
|
2630
|
-
"starting": "Starting Web Server
|
|
2661
|
+
"starting": "Starting Web Server with binding \"{host}\" on port \"{port}\"",
|
|
2631
2662
|
"started": "The Web Server started on {addresses}",
|
|
2632
2663
|
"stopped": "The Web Server was stopped",
|
|
2633
2664
|
"restRouteAdded": "Added REST route \"{route}\" \"{method}\"",
|
|
@@ -2715,8 +2746,17 @@
|
|
|
2715
2746
|
}
|
|
2716
2747
|
},
|
|
2717
2748
|
"health": {
|
|
2718
|
-
"
|
|
2719
|
-
"healthDescription": "
|
|
2749
|
+
"attestationService": {
|
|
2750
|
+
"healthDescription": "Attestation lifecycle (create, get, destroy) using the \"{namespace}\" namespace",
|
|
2751
|
+
"getAttestationFailed": "Failed to get the health check attestation"
|
|
2752
|
+
},
|
|
2753
|
+
"auditableItemGraphService": {
|
|
2754
|
+
"healthDescription": "Auditable item graph service application health check",
|
|
2755
|
+
"getVertexFailed": "Failed to complete the auditable item graph vertex storage health check"
|
|
2756
|
+
},
|
|
2757
|
+
"auditableItemStreamService": {
|
|
2758
|
+
"healthDescription": "Auditable item stream service application health check",
|
|
2759
|
+
"getStreamFailed": "Failed to complete the auditable item stream storage health check"
|
|
2720
2760
|
},
|
|
2721
2761
|
"s3BlobStorageConnector": {
|
|
2722
2762
|
"healthDescription": "S3 blob storage connector is healthy, bucket \"{bucketName}\" in region \"{region}\"",
|
|
@@ -2743,6 +2783,10 @@
|
|
|
2743
2783
|
"memoryBlobStorageConnector": {
|
|
2744
2784
|
"healthDescription": "Memory blob storage connector is healthy, storing \"{storedItemCount}\" items"
|
|
2745
2785
|
},
|
|
2786
|
+
"documentManagementService": {
|
|
2787
|
+
"healthDescription": "Document management service application health check",
|
|
2788
|
+
"getBlobFailed": "Failed to retrieve the health check blob"
|
|
2789
|
+
},
|
|
2746
2790
|
"cosmosDbEntityStorageConnector": {
|
|
2747
2791
|
"healthDescription": "Checks if the Cosmos DB container \"{containerId}\" in database \"{databaseId}\" is available",
|
|
2748
2792
|
"connectionFailed": "Failed to connect to Cosmos DB container \"{containerId}\" in database \"{databaseId}\""
|
|
@@ -2761,6 +2805,9 @@
|
|
|
2761
2805
|
"healthDescription": "Checks if the Firestore collection \"{collectionName}\" in project \"{projectId}\" is available",
|
|
2762
2806
|
"connectionFailed": "Failed to connect to Firestore collection \"{collectionName}\" in project \"{projectId}\""
|
|
2763
2807
|
},
|
|
2808
|
+
"memoryEntityStorageConnector": {
|
|
2809
|
+
"healthDescription": "Memory entity storage for \"{entityType}\" is always available"
|
|
2810
|
+
},
|
|
2764
2811
|
"mongoDbEntityStorageConnector": {
|
|
2765
2812
|
"healthDescription": "Checks if the MongoDB collection \"{collection}\" in database \"{database}\" is available",
|
|
2766
2813
|
"connectionFailed": "Failed to connect to MongoDB collection \"{collection}\" in database \"{database}\""
|
|
@@ -2779,11 +2826,11 @@
|
|
|
2779
2826
|
},
|
|
2780
2827
|
"iotaIdentityConnector": {
|
|
2781
2828
|
"healthDescription": "Connectivity and availability of the IOTA node \"{endpoint}\"",
|
|
2782
|
-
"nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\""
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
"
|
|
2786
|
-
"
|
|
2829
|
+
"nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\"",
|
|
2830
|
+
"healthDescriptionGasStationConnectivity": "Connectivity and availability of the IOTA gas station \"{endpoint}\"",
|
|
2831
|
+
"healthCheckFailedGasStationConnectivity": "Failed to check gas station connectivity \"{endpoint}\"",
|
|
2832
|
+
"healthDescriptionGasStationWorking": "Operational status of the IOTA gas station \"{endpoint}\"",
|
|
2833
|
+
"healthCheckFailedGasStationWorking": "Gas station sponsored transaction check failed \"{endpoint}\""
|
|
2787
2834
|
},
|
|
2788
2835
|
"iotaIdentityResolverConnector": {
|
|
2789
2836
|
"healthDescription": "Connectivity and availability of the IOTA resolver node \"{endpoint}\"",
|
|
@@ -2798,14 +2845,42 @@
|
|
|
2798
2845
|
"createDocumentFailed": "Failed to create the health check identity document",
|
|
2799
2846
|
"resolveDocumentFailed": "Failed to resolve the health check identity document"
|
|
2800
2847
|
},
|
|
2848
|
+
"immutableProofService": {
|
|
2849
|
+
"healthDescription": "Immutable proof service application health check",
|
|
2850
|
+
"getNotarizationFailed": "Failed to retrieve the health check notarization"
|
|
2851
|
+
},
|
|
2852
|
+
"nftService": {
|
|
2853
|
+
"healthDescription": "NFT service application health check",
|
|
2854
|
+
"resolveNftFailed": "Failed to resolve the health check NFT"
|
|
2855
|
+
},
|
|
2856
|
+
"notarizationService": {
|
|
2857
|
+
"healthDescription": "Notarization service application health check",
|
|
2858
|
+
"getNotarizationFailed": "Failed to retrieve the health check notarization"
|
|
2859
|
+
},
|
|
2801
2860
|
"hashicorpVaultConnector": {
|
|
2802
2861
|
"healthDescription": "Connectivity and availability of the Hashicorp Vault server \"{endpoint}\"",
|
|
2803
2862
|
"vaultHealthCheckFailed": "Failed to check Vault health status \"{endpoint}\""
|
|
2804
2863
|
},
|
|
2864
|
+
"entityStorageWalletConnector": {
|
|
2865
|
+
"healthDescription": "Entity storage wallet connector application health check",
|
|
2866
|
+
"fundFromFaucet": "Fund wallet from faucet on address \"{address}\"",
|
|
2867
|
+
"healthNoFaucet": "No faucet available for the network",
|
|
2868
|
+
"fundWalletFailed": "Failed to fund the wallet"
|
|
2869
|
+
},
|
|
2870
|
+
"iotaWalletConnector": {
|
|
2871
|
+
"healthDescription": "IOTA wallet connector application health check",
|
|
2872
|
+
"fundFromFaucet": "Fund wallet from faucet on address \"{address}\"",
|
|
2873
|
+
"healthNoFaucet": "No faucet available for the network",
|
|
2874
|
+
"fundWalletFailed": "Failed to fund the wallet"
|
|
2875
|
+
},
|
|
2805
2876
|
"fastifyWebServer": {
|
|
2806
|
-
"
|
|
2877
|
+
"healthConnectivityDescription": "Checks if the Web Server is reachable",
|
|
2807
2878
|
"reachable": "The Web Server is reachable",
|
|
2808
|
-
"unreachable": "The Web Server is unreachable"
|
|
2879
|
+
"unreachable": "The Web Server is unreachable",
|
|
2880
|
+
"healthApplicationDescription": "Checks if the root endpoint is reachable",
|
|
2881
|
+
"rootEndpointReachable": "The root endpoint is reachable",
|
|
2882
|
+
"rootEndpointError": "The root endpoint returned an unexpected response",
|
|
2883
|
+
"serverNotBuilt": "The server has not been built"
|
|
2809
2884
|
}
|
|
2810
2885
|
},
|
|
2811
2886
|
"auditableItemGraphService": {},
|
|
@@ -2828,6 +2903,9 @@
|
|
|
2828
2903
|
"activityLogStatusConnected": "Web Socket Connected: Socket Id: \"{socketId}\"",
|
|
2829
2904
|
"activityLogStatusDisconnected": "Web Socket disconnected: Socket Id: \"{socketId}\""
|
|
2830
2905
|
},
|
|
2906
|
+
"immutableProofService": {
|
|
2907
|
+
"sweepSkippedInFlight": "Skipped sweeping proof \"{proofId}\", a task is already in flight"
|
|
2908
|
+
},
|
|
2831
2909
|
"immutableProofTask": {
|
|
2832
2910
|
"taskEngineStarted": "The proof task engine started for proof \"{proofId}\" in {elapsedMs}ms",
|
|
2833
2911
|
"taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.2-next.7](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.6...node-v0.9.2-next.7) (2026-08-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* additional env vars and validation ([#324](https://github.com/iotaledger/twin-node/issues/324)) ([6b01e8c](https://github.com/iotaledger/twin-node/commit/6b01e8c10f9aa7181f51f13534d8164db3e7322d))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/node-core bumped from 0.9.2-next.6 to 0.9.2-next.7
|
|
16
|
+
|
|
17
|
+
## [0.9.2-next.6](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.5...node-v0.9.2-next.6) (2026-08-07)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add tracing support ([a4986fc](https://github.com/iotaledger/twin-node/commit/a4986fc4af603ee461ec8d18ff502dddbc43edec))
|
|
23
|
+
* update docs ([61e5a00](https://github.com/iotaledger/twin-node/commit/61e5a004089a0c11ec03e354b076604ecdeb4817))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Dependencies
|
|
27
|
+
|
|
28
|
+
* The following workspace dependencies were updated
|
|
29
|
+
* dependencies
|
|
30
|
+
* @twin.org/node-core bumped from 0.9.2-next.5 to 0.9.2-next.6
|
|
31
|
+
|
|
3
32
|
## [0.9.2-next.5](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.4...node-v0.9.2-next.5) (2026-08-03)
|
|
4
33
|
|
|
5
34
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -2390,6 +2390,15 @@
|
|
|
2390
2390
|
},
|
|
2391
2391
|
"style": "simple",
|
|
2392
2392
|
"example": "did:iota:tst:0xe3088ba9aa8c28e1d139708a14e8c0fdff11ee8223baac4aa5bcf3321e4bfc6a"
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
"name": "removeKeys",
|
|
2396
|
+
"description": "Also remove any associated private keys from the vault.",
|
|
2397
|
+
"in": "query",
|
|
2398
|
+
"required": false,
|
|
2399
|
+
"schema": {
|
|
2400
|
+
"type": "string"
|
|
2401
|
+
}
|
|
2393
2402
|
}
|
|
2394
2403
|
],
|
|
2395
2404
|
"security": [
|
|
@@ -2730,6 +2739,15 @@
|
|
|
2730
2739
|
},
|
|
2731
2740
|
"style": "simple",
|
|
2732
2741
|
"example": "my-assertion"
|
|
2742
|
+
},
|
|
2743
|
+
{
|
|
2744
|
+
"name": "removeKeys",
|
|
2745
|
+
"description": "Also remove any associated private key from the vault.",
|
|
2746
|
+
"in": "query",
|
|
2747
|
+
"required": false,
|
|
2748
|
+
"schema": {
|
|
2749
|
+
"type": "string"
|
|
2750
|
+
}
|
|
2733
2751
|
}
|
|
2734
2752
|
],
|
|
2735
2753
|
"security": [
|
|
@@ -12512,7 +12530,7 @@
|
|
|
12512
12530
|
}
|
|
12513
12531
|
],
|
|
12514
12532
|
"requestBody": {
|
|
12515
|
-
"description": "Update an auditable item graph vertex (PUT
|
|
12533
|
+
"description": "Update an auditable item graph vertex (PUT - full replacement of vertex state).",
|
|
12516
12534
|
"required": true,
|
|
12517
12535
|
"content": {
|
|
12518
12536
|
"application/json": {
|
|
@@ -12694,7 +12712,7 @@
|
|
|
12694
12712
|
}
|
|
12695
12713
|
],
|
|
12696
12714
|
"requestBody": {
|
|
12697
|
-
"description": "Partially update an auditable item graph vertex (PATCH
|
|
12715
|
+
"description": "Partially update an auditable item graph vertex (PATCH - explicit list patches).",
|
|
12698
12716
|
"required": true,
|
|
12699
12717
|
"content": {
|
|
12700
12718
|
"application/json": {
|
|
@@ -18005,7 +18023,7 @@
|
|
|
18005
18023
|
}
|
|
18006
18024
|
],
|
|
18007
18025
|
"requestBody": {
|
|
18008
|
-
"description": "API request to register an app dataset.\n\nThe owning `tenantId` is captured automatically from the request's tenant\ncontext
|
|
18026
|
+
"description": "API request to register an app dataset.\n\nThe owning `tenantId` is captured automatically from the request's tenant\ncontext - callers do not supply it.",
|
|
18009
18027
|
"required": true,
|
|
18010
18028
|
"content": {
|
|
18011
18029
|
"application/json": {
|
|
@@ -23587,11 +23605,11 @@
|
|
|
23587
23605
|
"properties": {
|
|
23588
23606
|
"dateCreated": {
|
|
23589
23607
|
"type": "string",
|
|
23590
|
-
"description": "schema.org dateCreated
|
|
23608
|
+
"description": "schema.org dateCreated - ISO 8601 date-time set by PAP on create."
|
|
23591
23609
|
},
|
|
23592
23610
|
"dateModified": {
|
|
23593
23611
|
"type": "string",
|
|
23594
|
-
"description": "schema.org dateModified
|
|
23612
|
+
"description": "schema.org dateModified - ISO 8601 date-time set by PAP on create and update."
|
|
23595
23613
|
}
|
|
23596
23614
|
}
|
|
23597
23615
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.2-next.
|
|
3
|
+
"version": "0.9.2-next.7",
|
|
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.9.2-next.
|
|
17
|
+
"@twin.org/node-core": "0.9.2-next.7"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|