@twin.org/node 0.9.0 → 0.9.1-next.10
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 +308 -68
- package/docs/changelog.md +225 -0
- package/docs/open-api/spec.json +574 -9
- package/docs/usage.md +265 -5
- package/package.json +3 -3
package/dist/locales/en.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"error": {
|
|
3
3
|
"node": {
|
|
4
|
-
"nodeIdentityNotSet": "The node identity is enabled in config but is not set, please set it using the \"node-set
|
|
5
|
-
"nodeOrganizationIdNotSet": "The node organization is not set, please set it using the \"
|
|
6
|
-
"tenantsWithoutOrganizationId": "The following tenants have no organization ID assigned. Use the \"
|
|
4
|
+
"nodeIdentityNotSet": "The node identity is enabled in config but is not set, please set it using the \"node-identity-set\" CLI command.",
|
|
5
|
+
"nodeOrganizationIdNotSet": "The node organization is not set, please set it using the \"node-org-id-set\".",
|
|
6
|
+
"tenantsWithoutOrganizationId": "The following tenants have no organization ID assigned. Use the \"tenant-org-id-set\" command to assign one before starting the node: {tenantIds}",
|
|
7
7
|
"storageFileRootNotSet": "{storageFileRoot} is not set, the server will not start without it, please set it in the shell or create a .env file",
|
|
8
8
|
"extensionLoadingError": "Failed to load extension \"{extension}\"",
|
|
9
9
|
"insecureProtocol": "Cannot load extension from insecure protocol: {protocol}. Only HTTPS is allowed for remote extensions.",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"bootstrapLegacy": {
|
|
20
20
|
"noFeaturesEnabled": "No features are enabled in legacy bootstrap mode, at least one feature must be enabled.",
|
|
21
|
-
"organizationNotSet": "The organisation identity has not been set. Run \"
|
|
21
|
+
"organizationNotSet": "The organisation identity has not been set. Run \"node-org-id-set\"."
|
|
22
22
|
},
|
|
23
23
|
"identityCreate": {
|
|
24
24
|
"invalidMnemonic": "The mnemonic is invalid, it should be 24 words from the standard wordlist.",
|
|
@@ -49,17 +49,27 @@
|
|
|
49
49
|
"userAlreadyExists": "The user with ID already exists and overwriteMode is set to \"error\".",
|
|
50
50
|
"tenantIdRequired": "The tenant ID is required when multi-tenancy is enabled."
|
|
51
51
|
},
|
|
52
|
+
"userGet": {
|
|
53
|
+
"tenantIdRequired": "The tenant ID is required when multi-tenancy is enabled."
|
|
54
|
+
},
|
|
52
55
|
"userUpdate": {
|
|
53
56
|
"tenantIdRequired": "The tenant ID is required when multi-tenancy is enabled."
|
|
54
57
|
},
|
|
58
|
+
"orgUsersList": {
|
|
59
|
+
"orgDidRequired": "The organization DID is required in multi-tenant mode. Provide --org-did or switch to single-tenant mode."
|
|
60
|
+
},
|
|
55
61
|
"vaultKeyCreate": {
|
|
56
62
|
"vaultKeyAlreadyExists": "The vault key with ID already exists and overwriteMode is set to \"error\"."
|
|
57
63
|
},
|
|
58
|
-
"
|
|
64
|
+
"nodeIdentitySet": {
|
|
59
65
|
"identityNotFound": "The identity with DID \"{notFoundId}\" was not found in the system."
|
|
60
66
|
},
|
|
61
|
-
"
|
|
62
|
-
"notAvailableInMultiTenantMode": "The
|
|
67
|
+
"nodeOrgIdGet": {
|
|
68
|
+
"notAvailableInMultiTenantMode": "The node-org-id-get command is not available in multi-tenant mode, use tenant-org-id-set instead.",
|
|
69
|
+
"nodeOrganizationIdNotSet": "The node organization ID is not set. Use \"node-org-id-set\" to set it first."
|
|
70
|
+
},
|
|
71
|
+
"nodeOrgIdSet": {
|
|
72
|
+
"notAvailableInMultiTenantMode": "The node-org-id-set command is not available in multi-tenant mode, use tenant-org-id-set instead."
|
|
63
73
|
},
|
|
64
74
|
"applyOrganizationIdToTenant": {
|
|
65
75
|
"tenantAdminComponentNotRegistered": "Multi-tenant support must be enabled to use this command."
|
|
@@ -68,6 +78,21 @@
|
|
|
68
78
|
"tenantAdminComponentNotRegistered": "Multi-tenant support must be enabled to use this command.",
|
|
69
79
|
"aliasNotFound": "The alias \"{alias}\" was not found in the tenant organization legacy list."
|
|
70
80
|
},
|
|
81
|
+
"tenantList": {
|
|
82
|
+
"tenantAdminComponentNotRegistered": "Multi-tenant support must be enabled to use this command."
|
|
83
|
+
},
|
|
84
|
+
"tenantGet": {
|
|
85
|
+
"tenantAdminComponentNotRegistered": "Multi-tenant support must be enabled to use this command."
|
|
86
|
+
},
|
|
87
|
+
"tenantListByOrg": {
|
|
88
|
+
"tenantAdminComponentNotRegistered": "Multi-tenant support must be enabled to use this command."
|
|
89
|
+
},
|
|
90
|
+
"nodeIdentityGet": {
|
|
91
|
+
"nodeIdentityNotSet": "The node identity is not set. Use \"node-identity-set\" to set it first."
|
|
92
|
+
},
|
|
93
|
+
"identityResolve": {
|
|
94
|
+
"identityNotFound": "The identity \"{identity}\" was not found."
|
|
95
|
+
},
|
|
71
96
|
"entityStorageAuthenticationService": {
|
|
72
97
|
"loginFailed": "Login failed",
|
|
73
98
|
"userNotFound": "The user with the specified e-mail could not be found",
|
|
@@ -89,6 +114,12 @@
|
|
|
89
114
|
"passwordHelper": {
|
|
90
115
|
"currentPasswordMismatch": "The current password is incorrect"
|
|
91
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
|
+
},
|
|
92
123
|
"entityStorageAuthenticationRateService": {
|
|
93
124
|
"actionConfigMissing": "No rate-limit configuration exists for action \"{action}\".",
|
|
94
125
|
"rateLimitExceeded": "The rate limit for action \"{action}\" has been exceeded. Retry after {retryAfterSeconds} seconds."
|
|
@@ -198,6 +229,8 @@
|
|
|
198
229
|
"uint8Array": "Property \"{property}\" must be a Uint8Array, it is \"{value}\"",
|
|
199
230
|
"function": "Property \"{property}\" must be a function, it is \"{value}\"",
|
|
200
231
|
"urn": "Property \"{property}\" must be a URN formatted string, it is \"{value}\"",
|
|
232
|
+
"urnNamespaceIdentifier": "Property \"{property}\" must be a URN with namespace identifier \"{options}\", it is \"{value}\"",
|
|
233
|
+
"urnNamespaceSpecific": "Property \"{property}\" must be a URN with namespace specific \"{options}\", it is \"{value}\"",
|
|
201
234
|
"url": "Property \"{property}\" must be a URL formatted string, it is \"{value}\"",
|
|
202
235
|
"email": "Property \"{property}\" must be string in e-mail format, it is \"{value}\"",
|
|
203
236
|
"uuidV7": "Property \"{property}\" must be a UUIDv7 formatted string, it is \"{value}\"",
|
|
@@ -319,6 +352,10 @@
|
|
|
319
352
|
"decodingFailed": "Decoding JSON failed for route \"{route}\"",
|
|
320
353
|
"failureStatusText": "The request to the API failed: \"{statusText}\""
|
|
321
354
|
},
|
|
355
|
+
"httpHeaderHelper": {
|
|
356
|
+
"locationMissing": "The Location response header is missing or empty",
|
|
357
|
+
"idNotFound": "The resource ID could not be extracted from the Location header"
|
|
358
|
+
},
|
|
322
359
|
"contextIdHelper": {
|
|
323
360
|
"contextIdMissing": "The context ID \"{key}\" is missing from the provided context IDs",
|
|
324
361
|
"contextIdSplitMismatch": "The context ID split parts length \"{actual}\" does not match the provided keys length \"{expected}\""
|
|
@@ -341,7 +378,10 @@
|
|
|
341
378
|
},
|
|
342
379
|
"entityStorageHelper": {
|
|
343
380
|
"sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
|
|
344
|
-
"propertyNotInSchema": "The property \"{property}\" does not exist in the schema and cannot be used for projection"
|
|
381
|
+
"propertyNotInSchema": "The property \"{property}\" does not exist in the schema and cannot be used for projection",
|
|
382
|
+
"unknownPropertyInConditionProperty": "The property \"{property}\" is not a recognised schema property and cannot be used as a condition property",
|
|
383
|
+
"unknownPropertyInConditions": "The property \"{property}\" is not a recognised schema property and cannot be used in conditions",
|
|
384
|
+
"invalidConditionPropertyPath": "The property \"{property}\" has an invalid path: the root must be an object or array type, segments must not exceed 128 characters, and must not contain SQL metacharacters or control characters"
|
|
345
385
|
},
|
|
346
386
|
"migrationHelper": {
|
|
347
387
|
"migrateSchemaFailed": "Migration failed for schema \"{schemaName}\".",
|
|
@@ -384,12 +424,46 @@
|
|
|
384
424
|
"invalidUrl": "The JSON-LD processing failed to retrieve from the following url \"{url}\"",
|
|
385
425
|
"jsonLdError": "The JSON-LD processing failed due to the following error: \"{code}\""
|
|
386
426
|
},
|
|
387
|
-
"
|
|
388
|
-
"
|
|
427
|
+
"odrlPolicyHelper": {
|
|
428
|
+
"policyMissingAssignee": "The {policyType} with id \"{policyId}\" is missing an assignee.",
|
|
429
|
+
"policyMissingAssigner": "The {policyType} with id \"{policyId}\" is missing an assigner."
|
|
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."
|
|
449
|
+
},
|
|
450
|
+
"multikeyHelper": {
|
|
451
|
+
"invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
|
|
452
|
+
"invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
|
|
453
|
+
"unsupportedCrv": "Curve \"{crv}\" is not supported.",
|
|
454
|
+
"unsupportedKty": "Key type \"{kty}\" is not supported.",
|
|
455
|
+
"publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
|
|
456
|
+
"secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
|
|
389
457
|
},
|
|
390
458
|
"silentTelemetryConnector": {
|
|
391
459
|
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
392
460
|
},
|
|
461
|
+
"dataspaceProtocolHelper": {
|
|
462
|
+
"schemaNotRegistered": "JSON Schema \"{schemaId}\" is not registered in DataTypeHandlerFactory"
|
|
463
|
+
},
|
|
464
|
+
"trustHelper": {
|
|
465
|
+
"trustVerifyFailed": "Trust verification failed for action \"{action}\""
|
|
466
|
+
},
|
|
393
467
|
"engineCore": {
|
|
394
468
|
"componentUnknownType": "Unknown component type \"{type}\" specified for \"{componentType}\"",
|
|
395
469
|
"bootstrapFailed": "Failed to bootstrap component type \"{className}\" with instance type \"{instanceType}\"",
|
|
@@ -423,33 +497,6 @@
|
|
|
423
497
|
"destroyFailed": "Destroying the attestation failed",
|
|
424
498
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the NFT Attestation connector \"{namespace}\""
|
|
425
499
|
},
|
|
426
|
-
"proofHelper": {
|
|
427
|
-
"unsupportedProofType": "Proof type \"{proofType}\" not supported."
|
|
428
|
-
},
|
|
429
|
-
"jsonWebSignature2020SignerVerifier": {
|
|
430
|
-
"missingJws": "JWS is missing from proof."
|
|
431
|
-
},
|
|
432
|
-
"dataIntegrityProofSignerVerifier": {
|
|
433
|
-
"cryptosuiteNotSupported": "Cryptosuite \"{cryptoSuite}\" is not supported.",
|
|
434
|
-
"missingPrivateKey": "Private key is missing.",
|
|
435
|
-
"missingPublicKey": "Public key is missing."
|
|
436
|
-
},
|
|
437
|
-
"multikeyHelper": {
|
|
438
|
-
"invalidPublicKeyMultibase": "Public key multibase \"{publicKeyMultibase}\" is invalid.",
|
|
439
|
-
"invalidSecretKeyMultibase": "Secret key multibase \"{secretKeyMultibase}\" is invalid.",
|
|
440
|
-
"unsupportedCrv": "Curve \"{crv}\" is not supported.",
|
|
441
|
-
"unsupportedKty": "Key type \"{kty}\" is not supported.",
|
|
442
|
-
"publicKeyMultibaseMissingHeader": "Public key multibase \"{publicKeyMultibase}\" is missing the multi codec header",
|
|
443
|
-
"secretKeyMultibaseMissingHeader": "Secret key multibase \"{secretKeyMultibase}\" is missing the multi codec header"
|
|
444
|
-
},
|
|
445
|
-
"verificationHelper": {
|
|
446
|
-
"jwtDecodeFailed": "Decoding the JWT failed",
|
|
447
|
-
"proofMissingVerificationMethod": "The proof is missing the verification method"
|
|
448
|
-
},
|
|
449
|
-
"documentHelper": {
|
|
450
|
-
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
451
|
-
"verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
|
|
452
|
-
},
|
|
453
500
|
"attestationService": {
|
|
454
501
|
"noConnectors": "There are no connectors registered with the attestation factory",
|
|
455
502
|
"attestFailed": "The attestation of the data failed",
|
|
@@ -607,7 +654,6 @@
|
|
|
607
654
|
"autoStartFailed": "Provider auto-start of a requested transfer failed (consumerPid: {consumerPid})",
|
|
608
655
|
"autoStartPublicOriginMissing": "Cannot auto-start the transfer: this node's public origin could not be resolved; holding the transfer in REQUESTED (consumerPid: {consumerPid})",
|
|
609
656
|
"transferProcessNotFound": "Transfer Process not found",
|
|
610
|
-
"pullTransfersNotSupported": "PULL transfers are not supported. Configure dataPlanePath in service configuration to enable PULL transfers.",
|
|
611
657
|
"transferProcessTerminated": "Transfer Process \"{consumerPid}\" is terminated and cannot be used",
|
|
612
658
|
"transferProcessTerminatedProvider": "Transfer Process \"{providerPid}\" is terminated and cannot be used",
|
|
613
659
|
"invalidTransferRequest": "Transfer Request does not conform to Dataspace Protocol specification",
|
|
@@ -648,9 +694,6 @@
|
|
|
648
694
|
"callerNotAuthorizedAsProvider": "The caller's verified identity does not match the provider for this transfer process",
|
|
649
695
|
"callerNotAuthorizedForTransfer": "The caller's verified identity does not match the consumer or provider for this transfer process",
|
|
650
696
|
"multipleAssignersNotSupported": "Multiple assigners found in agreement, which is not supported. Only single assigner agreements are supported.",
|
|
651
|
-
"invalidPushDataAddress": "PUSH transfer cannot start: consumer dataAddress is missing endpoint or endpointType (consumerPid: {consumerPid})",
|
|
652
|
-
"pushTransferDataPathNotConfigured": "PUSH transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
|
|
653
|
-
"dataPlaneNotRegistered": "Push-mode transfer requires the data plane component to be registered (factory key: \"dataspace-data-plane\"). This deployment was configured without a data plane — register one to enable push, or use pull-mode transfers only.",
|
|
654
697
|
"datasetPublishFailed": "Failed to publish dataset \"{datasetId}\" for app \"{appId}\" (tenant: \"{tenantId}\")",
|
|
655
698
|
"datasetRemoveFailed": "Failed to remove dataset \"{datasetId}\" from the Federated Catalogue (tenant: \"{tenantId}\")",
|
|
656
699
|
"datasetAlreadyExists": "A dataset with id \"{existingId}\" already exists.",
|
|
@@ -660,12 +703,17 @@
|
|
|
660
703
|
"invalidDatasetId": "Dataset ID \"{id}\" is not a valid URN or URL"
|
|
661
704
|
},
|
|
662
705
|
"dataspaceControlPlanePolicyRequester": {},
|
|
663
|
-
"
|
|
664
|
-
"
|
|
706
|
+
"httpDataPullTransferHandler": {
|
|
707
|
+
"pullTransfersNotSupported": "PULL transfers are not supported: dataPlanePath is not configured (consumerPid: {consumerPid}, providerPid: {providerPid})",
|
|
708
|
+
"providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process"
|
|
665
709
|
},
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
"
|
|
710
|
+
"httpDataPushTransferHandler": {
|
|
711
|
+
"pushTransferDataPathNotConfigured": "PUSH transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
|
|
712
|
+
"invalidPushDataAddress": "PUSH transfer cannot start: consumer dataAddress is missing endpoint or endpointType (consumerPid: {consumerPid})"
|
|
713
|
+
},
|
|
714
|
+
"httpDataPostTransferHandler": {
|
|
715
|
+
"pushTransferDataPathNotConfigured": "POST transfer cannot start: dataPlanePath is not configured (consumerPid: {consumerPid})",
|
|
716
|
+
"providerIdentityMissing": "Provider identity (DID) is required to sign data access tokens but was not set on the Transfer Process"
|
|
669
717
|
},
|
|
670
718
|
"dataspaceDataPlaneRestClient": {
|
|
671
719
|
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
@@ -693,6 +741,7 @@
|
|
|
693
741
|
"pushSubscriptionNotFound": "Push subscription not found for consumerPid \"{notFoundId}\"",
|
|
694
742
|
"activityLogEntryNotAuthorized": "Unauthorised access to activity log entry — the verified identity is not the entry generator",
|
|
695
743
|
"pushActivityNotAuthorized": "Unauthorized push activity — no matching STARTED transfer found for the activity generator",
|
|
744
|
+
"dataReadNotAuthorized": "Unauthorized data read: the verified identity is not a party to the transfer (consumerPid: {consumerPid})",
|
|
696
745
|
"pushActivityNotPermittedByPolicy": "Push activity rejected — the transfer's agreement (\"{agreementId}\") does not permit the activity for consumerPid \"{consumerPid}\"",
|
|
697
746
|
"processOutboxActivityMultipleTo": "processOutboxActivity does not support multiple recipients — activity.to contains {count} values, expected exactly one consumerPid",
|
|
698
747
|
"pushSubscriptionCompensationFailed": "Compensating unsubscribeToData failed after push-subscription storage write failed (consumerPid: {consumerPid}, providerPid: {providerPid}) — app may be left with a dangling Follow until orphan cleanup runs",
|
|
@@ -968,6 +1017,7 @@
|
|
|
968
1017
|
"packageObjectError": "Failed to fetch the package object \"{packageId}\"",
|
|
969
1018
|
"valueTransactionFailed": "The value transaction failed",
|
|
970
1019
|
"transactionFailed": "The transaction failed",
|
|
1020
|
+
"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",
|
|
971
1021
|
"addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
|
|
972
1022
|
"gasStationTransactionFailed": "The gas station transaction failed",
|
|
973
1023
|
"dryRunFailed": "The dry run execution failed",
|
|
@@ -1051,6 +1101,12 @@
|
|
|
1051
1101
|
"proofNotFound": "The proof with the Id \"{notFoundId}\" was not found",
|
|
1052
1102
|
"createProofFailed": "Creating the immutable proof failed"
|
|
1053
1103
|
},
|
|
1104
|
+
"fileLoggingConnector": {
|
|
1105
|
+
"maxFileSizeTooSmall": "The maximum file size of {maxFileSizeBytes} bytes is below the minimum of {minimum} bytes, use 0 to disable rotation"
|
|
1106
|
+
},
|
|
1107
|
+
"openTelemetryLoggingConnector": {
|
|
1108
|
+
"unknownExporterType": "The exporter type \"{type}\" is not supported, valid values are: otlp"
|
|
1109
|
+
},
|
|
1054
1110
|
"awsMessagingSmsConnector": {
|
|
1055
1111
|
"sendSMSFailed": "Failed to send SMS"
|
|
1056
1112
|
},
|
|
@@ -1177,9 +1233,10 @@
|
|
|
1177
1233
|
"transferFailed": "The transfer of the notarization failed"
|
|
1178
1234
|
},
|
|
1179
1235
|
"dataAccessPointService": {
|
|
1180
|
-
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\""
|
|
1236
|
+
"noHandlerForAssetType": "No handler registered for asset type \"{assetType}\"",
|
|
1237
|
+
"notAuthorizedToQuery": "Not authorized to query asset type \"{assetType}\"",
|
|
1238
|
+
"notAuthorizedToGet": "Not authorized to get asset type \"{assetType}\" with id \"{id}\""
|
|
1181
1239
|
},
|
|
1182
|
-
"dataAccessRequestPointService": {},
|
|
1183
1240
|
"policyAdministrationPointService": {
|
|
1184
1241
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the rights management components \"{namespace}\"",
|
|
1185
1242
|
"policyAlreadyExists": "A policy with id: \"{existingId}\" already exists",
|
|
@@ -1268,6 +1325,7 @@
|
|
|
1268
1325
|
},
|
|
1269
1326
|
"entityStorageTelemetryConnector": {
|
|
1270
1327
|
"metricNotFound": "The metric could not be found \"{notFoundId}\"",
|
|
1328
|
+
"metricValueNotFound": "The metric value could not be found \"{notFoundId}\"",
|
|
1271
1329
|
"metricAlreadyExists": "The metric already exists \"{existingId}\"",
|
|
1272
1330
|
"counterIncOnly": "A counter metric can only be incremented, or added to with an integer",
|
|
1273
1331
|
"upDownCounterIncOrDecOnly": "An up/down counter metric can only be incremented, decremented or adjusted with an integer",
|
|
@@ -1416,15 +1474,18 @@
|
|
|
1416
1474
|
"cli": {
|
|
1417
1475
|
"commands": {
|
|
1418
1476
|
"command": "Command",
|
|
1477
|
+
"deprecatedAlias": "\"{alias}\" is a deprecated alias, please use \"{command}\" instead.",
|
|
1419
1478
|
"help": {
|
|
1420
1479
|
"description": "Display help information about CLI commands",
|
|
1421
1480
|
"labels": {
|
|
1422
1481
|
"commands": "All the commands available are listed below, for more information use the --help option with a specific command.",
|
|
1423
1482
|
"example": "Example",
|
|
1483
|
+
"aliases": "Deprecated aliases",
|
|
1424
1484
|
"optional": "optional",
|
|
1425
1485
|
"required": "required",
|
|
1426
1486
|
"default": "default",
|
|
1427
|
-
"options": "options"
|
|
1487
|
+
"options": "options",
|
|
1488
|
+
"singleTenantOnly": "single-tenant only"
|
|
1428
1489
|
}
|
|
1429
1490
|
},
|
|
1430
1491
|
"bootstrap-legacy": {
|
|
@@ -1665,9 +1726,9 @@
|
|
|
1665
1726
|
"publicKeyHex": "Public Key Hex"
|
|
1666
1727
|
}
|
|
1667
1728
|
},
|
|
1668
|
-
"node-set
|
|
1729
|
+
"node-identity-set": {
|
|
1669
1730
|
"description": "Set the node identity",
|
|
1670
|
-
"example": "node-set
|
|
1731
|
+
"example": "node-identity-set --identity=\"did:iota...\"",
|
|
1671
1732
|
"params": {
|
|
1672
1733
|
"env-prefix": {
|
|
1673
1734
|
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
@@ -1791,6 +1852,31 @@
|
|
|
1791
1852
|
"updated": "Updated tenant"
|
|
1792
1853
|
}
|
|
1793
1854
|
},
|
|
1855
|
+
"user-get": {
|
|
1856
|
+
"description": "Get a user by email address",
|
|
1857
|
+
"example": "user-get --email=\"bob@example.com\"",
|
|
1858
|
+
"params": {
|
|
1859
|
+
"env-prefix": {
|
|
1860
|
+
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
1861
|
+
},
|
|
1862
|
+
"email": {
|
|
1863
|
+
"description": "The email address of the user to retrieve."
|
|
1864
|
+
},
|
|
1865
|
+
"tenant-id": {
|
|
1866
|
+
"description": "The tenant ID to retrieve the user from (multi-tenant mode only)."
|
|
1867
|
+
},
|
|
1868
|
+
"load-env": {
|
|
1869
|
+
"description": "Comma separated list of paths to .env files to read input parameters from."
|
|
1870
|
+
}
|
|
1871
|
+
},
|
|
1872
|
+
"labels": {
|
|
1873
|
+
"retrieving": "Retrieving user",
|
|
1874
|
+
"email": "Email",
|
|
1875
|
+
"identity": "Identity",
|
|
1876
|
+
"organization": "Organization",
|
|
1877
|
+
"scope": "Scope"
|
|
1878
|
+
}
|
|
1879
|
+
},
|
|
1794
1880
|
"user-create": {
|
|
1795
1881
|
"description": "Create a user",
|
|
1796
1882
|
"example": "user-create --user-identity=\"did:iota:....\" --organization-identity=\"did:iota:....\" --email=\"bob@examples.com\" --password=\"pass1234\" --scope=\"tenant-admin\" --givenName=\"Bob\" --familyName=\"Smith\"",
|
|
@@ -1933,9 +2019,24 @@
|
|
|
1933
2019
|
"publicKeyHex": "Public Key Hex"
|
|
1934
2020
|
}
|
|
1935
2021
|
},
|
|
1936
|
-
"
|
|
2022
|
+
"node-org-id-get": {
|
|
2023
|
+
"description": "Get the organization ID currently assigned to the node",
|
|
2024
|
+
"example": "node-org-id-get",
|
|
2025
|
+
"params": {
|
|
2026
|
+
"env-prefix": {
|
|
2027
|
+
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
2028
|
+
},
|
|
2029
|
+
"load-env": {
|
|
2030
|
+
"description": "Comma separated list of paths to .env files to read input parameters from."
|
|
2031
|
+
}
|
|
2032
|
+
},
|
|
2033
|
+
"labels": {
|
|
2034
|
+
"organizationId": "Organization ID"
|
|
2035
|
+
}
|
|
2036
|
+
},
|
|
2037
|
+
"node-org-id-set": {
|
|
1937
2038
|
"description": "Set the node organization ID",
|
|
1938
|
-
"example": "
|
|
2039
|
+
"example": "node-org-id-set --organization-id=\"did:iota:...\"",
|
|
1939
2040
|
"params": {
|
|
1940
2041
|
"env-prefix": {
|
|
1941
2042
|
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
@@ -1951,9 +2052,9 @@
|
|
|
1951
2052
|
"stored": "The node organization ID has been stored"
|
|
1952
2053
|
}
|
|
1953
2054
|
},
|
|
1954
|
-
"
|
|
2055
|
+
"tenant-org-id-set": {
|
|
1955
2056
|
"description": "Set the organization ID for a tenant",
|
|
1956
|
-
"example": "
|
|
2057
|
+
"example": "tenant-org-id-set --tenant-id=\"0011..aabb\" --organization-id=\"did:iota:...\"",
|
|
1957
2058
|
"params": {
|
|
1958
2059
|
"env-prefix": {
|
|
1959
2060
|
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
@@ -2023,6 +2124,153 @@
|
|
|
2023
2124
|
"importing": "Importing key",
|
|
2024
2125
|
"imported": "Imported key"
|
|
2025
2126
|
}
|
|
2127
|
+
},
|
|
2128
|
+
"tenant-list": {
|
|
2129
|
+
"description": "List all tenants",
|
|
2130
|
+
"example": "tenant-list",
|
|
2131
|
+
"params": {
|
|
2132
|
+
"env-prefix": {
|
|
2133
|
+
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
2134
|
+
},
|
|
2135
|
+
"load-env": {
|
|
2136
|
+
"description": "Comma separated list of paths to .env files to read input parameters from."
|
|
2137
|
+
}
|
|
2138
|
+
},
|
|
2139
|
+
"labels": {
|
|
2140
|
+
"listing": "Listing tenants",
|
|
2141
|
+
"tenantId": "Tenant ID",
|
|
2142
|
+
"apiKey": "API Key",
|
|
2143
|
+
"organizationId": "Organization ID",
|
|
2144
|
+
"label": "Label",
|
|
2145
|
+
"count": "Total tenants"
|
|
2146
|
+
}
|
|
2147
|
+
},
|
|
2148
|
+
"tenant-get": {
|
|
2149
|
+
"description": "Get the full configuration record for a single tenant",
|
|
2150
|
+
"example": "tenant-get --tenant-id=\"0011..aabb\"",
|
|
2151
|
+
"params": {
|
|
2152
|
+
"env-prefix": {
|
|
2153
|
+
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
2154
|
+
},
|
|
2155
|
+
"tenant-id": {
|
|
2156
|
+
"description": "The tenant ID to retrieve."
|
|
2157
|
+
},
|
|
2158
|
+
"load-env": {
|
|
2159
|
+
"description": "Comma separated list of paths to .env files to read input parameters from."
|
|
2160
|
+
}
|
|
2161
|
+
},
|
|
2162
|
+
"labels": {
|
|
2163
|
+
"retrieving": "Retrieving tenant",
|
|
2164
|
+
"tenantId": "Tenant ID",
|
|
2165
|
+
"apiKey": "API Key",
|
|
2166
|
+
"organizationId": "Organization ID",
|
|
2167
|
+
"label": "Label",
|
|
2168
|
+
"publicOrigin": "Public Origin",
|
|
2169
|
+
"dateCreated": "Date Created",
|
|
2170
|
+
"dateModified": "Date Modified"
|
|
2171
|
+
}
|
|
2172
|
+
},
|
|
2173
|
+
"tenant-list-by-org": {
|
|
2174
|
+
"description": "List all tenants associated with a given organization DID",
|
|
2175
|
+
"example": "tenant-list-by-org --org-id=\"did:iota:...\"",
|
|
2176
|
+
"params": {
|
|
2177
|
+
"env-prefix": {
|
|
2178
|
+
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
2179
|
+
},
|
|
2180
|
+
"org-id": {
|
|
2181
|
+
"description": "The organization DID to filter tenants by."
|
|
2182
|
+
},
|
|
2183
|
+
"load-env": {
|
|
2184
|
+
"description": "Comma separated list of paths to .env files to read input parameters from."
|
|
2185
|
+
}
|
|
2186
|
+
},
|
|
2187
|
+
"labels": {
|
|
2188
|
+
"listing": "Listing tenants for organization",
|
|
2189
|
+
"tenantId": "Tenant ID",
|
|
2190
|
+
"apiKey": "API Key",
|
|
2191
|
+
"organizationId": "Organization ID",
|
|
2192
|
+
"label": "Label",
|
|
2193
|
+
"count": "Total tenants"
|
|
2194
|
+
}
|
|
2195
|
+
},
|
|
2196
|
+
"node-identity-get": {
|
|
2197
|
+
"description": "Get the identity currently assigned to the node",
|
|
2198
|
+
"example": "node-identity-get",
|
|
2199
|
+
"params": {
|
|
2200
|
+
"env-prefix": {
|
|
2201
|
+
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
2202
|
+
},
|
|
2203
|
+
"load-env": {
|
|
2204
|
+
"description": "Comma separated list of paths to .env files to read input parameters from."
|
|
2205
|
+
}
|
|
2206
|
+
},
|
|
2207
|
+
"labels": {
|
|
2208
|
+
"resolving": "Resolving node identity",
|
|
2209
|
+
"did": "DID",
|
|
2210
|
+
"verificationMethods": "Verification Methods"
|
|
2211
|
+
}
|
|
2212
|
+
},
|
|
2213
|
+
"identity-list": {
|
|
2214
|
+
"description": "List all identities held in custody by the node",
|
|
2215
|
+
"example": "identity-list",
|
|
2216
|
+
"params": {
|
|
2217
|
+
"env-prefix": {
|
|
2218
|
+
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
2219
|
+
},
|
|
2220
|
+
"load-env": {
|
|
2221
|
+
"description": "Comma separated list of paths to .env files to read input parameters from."
|
|
2222
|
+
}
|
|
2223
|
+
},
|
|
2224
|
+
"labels": {
|
|
2225
|
+
"listing": "Listing identities",
|
|
2226
|
+
"did": "DID",
|
|
2227
|
+
"controller": "Controller",
|
|
2228
|
+
"count": "Total identities"
|
|
2229
|
+
}
|
|
2230
|
+
},
|
|
2231
|
+
"identity-resolve": {
|
|
2232
|
+
"description": "Resolve an identity DID to its full document",
|
|
2233
|
+
"example": "identity-resolve --identity=\"did:iota:...\"",
|
|
2234
|
+
"params": {
|
|
2235
|
+
"env-prefix": {
|
|
2236
|
+
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
2237
|
+
},
|
|
2238
|
+
"identity": {
|
|
2239
|
+
"description": "The DID to resolve."
|
|
2240
|
+
},
|
|
2241
|
+
"load-env": {
|
|
2242
|
+
"description": "Comma separated list of paths to .env files to read input parameters from."
|
|
2243
|
+
},
|
|
2244
|
+
"output-json": {
|
|
2245
|
+
"description": "Path to a .json file to store the resolved DID document."
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
"labels": {
|
|
2249
|
+
"resolving": "Resolving identity",
|
|
2250
|
+
"did": "DID"
|
|
2251
|
+
}
|
|
2252
|
+
},
|
|
2253
|
+
"org-users-list": {
|
|
2254
|
+
"description": "List all users belonging to an organization DID",
|
|
2255
|
+
"example": "org-users-list --org-did=\"did:iota:...\"",
|
|
2256
|
+
"params": {
|
|
2257
|
+
"env-prefix": {
|
|
2258
|
+
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
2259
|
+
},
|
|
2260
|
+
"org-did": {
|
|
2261
|
+
"description": "The organization DID to list users for. Defaults to the node organization ID in single-tenant mode."
|
|
2262
|
+
},
|
|
2263
|
+
"load-env": {
|
|
2264
|
+
"description": "Comma separated list of paths to .env files to read input parameters from."
|
|
2265
|
+
}
|
|
2266
|
+
},
|
|
2267
|
+
"labels": {
|
|
2268
|
+
"listing": "Listing organization users",
|
|
2269
|
+
"email": "Email",
|
|
2270
|
+
"identity": "Identity",
|
|
2271
|
+
"scope": "Scope",
|
|
2272
|
+
"count": "Total users"
|
|
2273
|
+
}
|
|
2026
2274
|
}
|
|
2027
2275
|
}
|
|
2028
2276
|
}
|
|
@@ -2110,7 +2358,6 @@
|
|
|
2110
2358
|
"transferProcessInitiated": "Transfer Process initiated",
|
|
2111
2359
|
"transferProcessQueried": "Transfer Process queried (role: {role})",
|
|
2112
2360
|
"transferProcessStarted": "Transfer Process started",
|
|
2113
|
-
"dataAccessTokenGenerated": "Data access token generated for PULL transfer",
|
|
2114
2361
|
"transferProcessCompleted": "Transfer Process completed",
|
|
2115
2362
|
"transferProcessSuspended": "Transfer Process suspended",
|
|
2116
2363
|
"transferProcessTerminated": "Transfer Process terminated",
|
|
@@ -2118,8 +2365,6 @@
|
|
|
2118
2365
|
"resolvedProviderPid": "Resolved providerPid to Transfer Context",
|
|
2119
2366
|
"catalogDatasetFound": "Dataset validated in Federated Catalogue",
|
|
2120
2367
|
"agreementMatchedOffer": "Agreement matched Catalog Offer",
|
|
2121
|
-
"populatingFederatedCatalogue": "Populating Federated Catalogue with stored app datasets",
|
|
2122
|
-
"federatedCataloguePopulated": "Federated Catalogue population completed (registered: {registeredCount}, errors: {errorCount}, datasets: {totalDatasets})",
|
|
2123
2368
|
"startingContractNegotiation": "Starting contract negotiation with provider",
|
|
2124
2369
|
"offerFoundInCatalog": "Offer found in Federated Catalogue and validated",
|
|
2125
2370
|
"negotiationInitiated": "Contract negotiation initiated successfully",
|
|
@@ -2131,7 +2376,6 @@
|
|
|
2131
2376
|
"negotiationHistoryRetrieved": "Negotiation history retrieved successfully",
|
|
2132
2377
|
"stalledNegotiationsCleanupComplete": "Stalled negotiations cleanup completed (cleanedUp: {cleanedUp})",
|
|
2133
2378
|
"stalledTransfersCleanupComplete": "Stalled transfers cleanup completed (cleanedUp: {cleanedUp})",
|
|
2134
|
-
"pushTransferStarted": "PUSH transfer started (consumerPid: {consumerPid}, providerPid: {providerPid}, endpoint: {endpoint})",
|
|
2135
2379
|
"preparingTransfer": "Preparing consumer-initiated data transfer (agreementId: {agreementId}, providerEndpoint: {providerEndpoint}, format: {format})",
|
|
2136
2380
|
"transferPrepared": "Consumer data transfer prepared successfully (consumerPid: {consumerPid}, providerPid: {providerPid}, agreementId: {agreementId}, format: {format})"
|
|
2137
2381
|
},
|
|
@@ -2257,6 +2501,10 @@
|
|
|
2257
2501
|
"immutableProofService": {
|
|
2258
2502
|
"createdProof": "The immutable proof with Id \"{proofId}\" has been created successfully"
|
|
2259
2503
|
},
|
|
2504
|
+
"openTelemetryLoggingConnector": {
|
|
2505
|
+
"connectorStarted": "The connector was started with \"{exporterCount}\" exporter(s)",
|
|
2506
|
+
"connectorStopped": "The connector was stopped"
|
|
2507
|
+
},
|
|
2260
2508
|
"awsMessagingSmsConnector": {
|
|
2261
2509
|
"smsSending": "Sending SMS of type"
|
|
2262
2510
|
},
|
|
@@ -2286,13 +2534,6 @@
|
|
|
2286
2534
|
"contractReady": "Contract ready for use"
|
|
2287
2535
|
},
|
|
2288
2536
|
"iotaNotarizationConnector": {},
|
|
2289
|
-
"dataAccessPointService": {
|
|
2290
|
-
"registeredHandler": "Handler registered with id: \"{handlerId}\"",
|
|
2291
|
-
"unregisteredHandler": "Handler unregistered with id: \"{handlerId}\""
|
|
2292
|
-
},
|
|
2293
|
-
"dataAccessRequestPointService": {
|
|
2294
|
-
"missingNodeIdentity": "The node identity is missing"
|
|
2295
|
-
},
|
|
2296
2537
|
"policyEnforcementPointService": {
|
|
2297
2538
|
"processing": "Processing information using processor with id: \"{processorId}\", policy id: \"{policyId}\"",
|
|
2298
2539
|
"intercepting": "Intercepting information for policy id: \"{policyId}\""
|
|
@@ -2541,8 +2782,7 @@
|
|
|
2541
2782
|
"auditableItemGraphService": {},
|
|
2542
2783
|
"debug": {
|
|
2543
2784
|
"dataspaceControlPlaneService": {
|
|
2544
|
-
"engineCloneStart": "Skipping
|
|
2545
|
-
"datasetRegistered": "Dataset {datasetId} registered for app {appId} (tenant: {tenantId})"
|
|
2785
|
+
"engineCloneStart": "Skipping control plane startup tasks (engine clone or no engine)"
|
|
2546
2786
|
},
|
|
2547
2787
|
"dataspaceDataPlaneService": {
|
|
2548
2788
|
"newActivity": "New Activity of type \"{activityType}\" notified by \"{generator}\"",
|