@twin.org/identity-cli 0.0.1-next.35 → 0.0.1-next.38
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/bin/index.js +0 -0
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/locales/en.json +8 -8
- package/docs/changelog.md +1 -1
- package/package.json +4 -4
package/bin/index.js
CHANGED
|
File without changes
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1092,7 +1092,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
1092
1092
|
return this.execute({
|
|
1093
1093
|
title: "TWIN Identity",
|
|
1094
1094
|
appName: "twin-identity",
|
|
1095
|
-
version: "0.0.1-next.
|
|
1095
|
+
version: "0.0.1-next.38",
|
|
1096
1096
|
icon: "🌍",
|
|
1097
1097
|
supportsEnvFiles: true,
|
|
1098
1098
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1089,7 +1089,7 @@ class CLI extends CLIBase {
|
|
|
1089
1089
|
return this.execute({
|
|
1090
1090
|
title: "TWIN Identity",
|
|
1091
1091
|
appName: "twin-identity",
|
|
1092
|
-
version: "0.0.1-next.
|
|
1092
|
+
version: "0.0.1-next.38",
|
|
1093
1093
|
icon: "🌍",
|
|
1094
1094
|
supportsEnvFiles: true,
|
|
1095
1095
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -106,6 +106,9 @@
|
|
|
106
106
|
"base58": {
|
|
107
107
|
"invalidCharacter": "Data contains a character \"{invalidCharacter}\" which is not in the charset"
|
|
108
108
|
},
|
|
109
|
+
"jsonHelper": {
|
|
110
|
+
"failedPatch": "Failed to patch the JSON object, patch index \"{index}\" failed"
|
|
111
|
+
},
|
|
109
112
|
"bip39": {
|
|
110
113
|
"missingMnemonicWord": "The mnemonic contains a word not in the wordlist, \"{value}\"",
|
|
111
114
|
"checksumMismatch": "The checksum does not match \"{newChecksum}\" != \"{checksumBits}\""
|
|
@@ -267,27 +270,24 @@
|
|
|
267
270
|
"addServiceFailed": "Adding the service failed",
|
|
268
271
|
"removeServiceFailed": "Removing the service failed",
|
|
269
272
|
"documentNotFound": "The document could not be found",
|
|
270
|
-
"stateControllerMissing": "The state controller address is missing from the metadata",
|
|
271
273
|
"verificationMethodNotFound": "The verification method could not be found",
|
|
272
274
|
"serviceNotFound": "The service could not be found",
|
|
273
|
-
"publicKeyJwkMissing": "The verification method contains no publicKeyJwk in
|
|
275
|
+
"publicKeyJwkMissing": "The verification method contains no publicKeyJwk in JWK \"{jwk}\"",
|
|
276
|
+
"publicKeyJwkMethodMissing": "The verification method contains no publicKeyJwk in method \"{method}\"",
|
|
277
|
+
"privateKeyMissing": "The verification method contains no privateKey \"{keyId}\"",
|
|
274
278
|
"verificationKeyMissing": "The verification key is missing from the vault for method \"{method}\"",
|
|
275
279
|
"createVerifiableCredentialFailed": "Creating the verifiable credential failed",
|
|
276
280
|
"checkingVerifiableCredentialFailed": "Checking the verifiable credential failed",
|
|
277
281
|
"createVerifiablePresentationFailed": "Creating the verifiable presentation failed",
|
|
278
282
|
"checkingVerifiablePresentationFailed": "Checking the verifiable presentation failed",
|
|
279
|
-
"expectingJwtCredential": "Expecting JWT credential in the presentation",
|
|
280
|
-
"keyIndexOutOfRange": "The supplied keyIndex is not in the range of the key list",
|
|
281
283
|
"createProofFailed": "Creating the signature for the data failed",
|
|
282
284
|
"methodMissing": "The verification method specified does not exist \"{method}\"",
|
|
283
285
|
"verifyProofFailed": "Verifying the signature for the data failed",
|
|
284
286
|
"revokeVerifiableCredentialsFailed": "Revoking verifiable credentials failed",
|
|
285
287
|
"unrevokeVerifiableCredentialsFailed": "Unrevoking verifiable credentials failed",
|
|
286
|
-
"inclusionFailed": "The transaction generated for the identity was not included in a reasonable amount of time",
|
|
287
|
-
"insufficientFunds": "There were insufficient funds to complete the operation",
|
|
288
|
-
"walletConnectorMissing": "The wallet connector must be available to perform this operation",
|
|
289
288
|
"proofType": "The proof type must be DataIntegrityProof, it is currently {proofType}",
|
|
290
|
-
"
|
|
289
|
+
"integerNegative": "The value must be a positive integer, it is currently {value}",
|
|
290
|
+
"invalidDocumentIdFormat": "The document ID format is invalid, it is currently {documentId}"
|
|
291
291
|
},
|
|
292
292
|
"iota": {
|
|
293
293
|
"insufficientFunds": "There were insufficient funds to complete the operation",
|
package/docs/changelog.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-cli",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.38",
|
|
4
4
|
"description": "A command line interface for interacting with the identity connectors",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"@twin.org/data-json-ld": "next",
|
|
23
23
|
"@twin.org/entity": "next",
|
|
24
24
|
"@twin.org/entity-storage-connector-memory": "next",
|
|
25
|
-
"@twin.org/identity-connector-iota": "0.0.1-next.
|
|
26
|
-
"@twin.org/identity-connector-iota-stardust": "0.0.1-next.
|
|
27
|
-
"@twin.org/identity-models": "0.0.1-next.
|
|
25
|
+
"@twin.org/identity-connector-iota": "0.0.1-next.38",
|
|
26
|
+
"@twin.org/identity-connector-iota-stardust": "0.0.1-next.38",
|
|
27
|
+
"@twin.org/identity-models": "0.0.1-next.38",
|
|
28
28
|
"@twin.org/nameof": "next",
|
|
29
29
|
"@twin.org/standards-w3c-did": "next",
|
|
30
30
|
"@twin.org/vault-connector-entity-storage": "next",
|