@twin.org/nft-cli 0.0.1-next.21 → 0.0.1-next.23
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/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/locales/en.json +19 -2
- package/docs/changelog.md +1 -1
- package/package.json +3 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -467,7 +467,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
467
467
|
return this.execute({
|
|
468
468
|
title: "TWIN NFT",
|
|
469
469
|
appName: "twin-nft",
|
|
470
|
-
version: "0.0.1-next.
|
|
470
|
+
version: "0.0.1-next.23",
|
|
471
471
|
icon: "🌍",
|
|
472
472
|
supportsEnvFiles: true,
|
|
473
473
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -464,7 +464,7 @@ class CLI extends CLIBase {
|
|
|
464
464
|
return this.execute({
|
|
465
465
|
title: "TWIN NFT",
|
|
466
466
|
appName: "twin-nft",
|
|
467
|
-
version: "0.0.1-next.
|
|
467
|
+
version: "0.0.1-next.23",
|
|
468
468
|
icon: "🌍",
|
|
469
469
|
supportsEnvFiles: true,
|
|
470
470
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -176,7 +176,11 @@
|
|
|
176
176
|
},
|
|
177
177
|
"entitySchemaHelper": {
|
|
178
178
|
"noIsPrimary": "Property \"entitySchema.properties\" must contain a value with isPrimary set",
|
|
179
|
-
"multipleIsPrimary": "Property \"entitySchema.properties\" contains more than one property with isPrimary set"
|
|
179
|
+
"multipleIsPrimary": "Property \"entitySchema.properties\" contains more than one property with isPrimary set",
|
|
180
|
+
"invalidEntityProperties": "The schema has no properties defined, but the entity has properties",
|
|
181
|
+
"invalidEntityProperty": "The entity value of \"{value}\" does not match the type \"{type}\" for property \"{property}\"",
|
|
182
|
+
"invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
|
|
183
|
+
"invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\""
|
|
180
184
|
},
|
|
181
185
|
"iotaNftConnector": {
|
|
182
186
|
"mintingFailed": "Minting the NFT failed",
|
|
@@ -204,6 +208,9 @@
|
|
|
204
208
|
"nftTransactionFailed": "The NFT transaction failed",
|
|
205
209
|
"addressNotFound": "The address is missing could not be found from the seed \"{address}\""
|
|
206
210
|
},
|
|
211
|
+
"vaultConnectorHelper": {
|
|
212
|
+
"invalidSignature": "The JSON Web token signature could not be verified"
|
|
213
|
+
},
|
|
207
214
|
"fetchHelper": {
|
|
208
215
|
"decodingJSON": "Decoding JSON failed for route \"{route}\"",
|
|
209
216
|
"failureStatusText": "The request to the API failed: \"{statusText}\"",
|
|
@@ -213,7 +220,17 @@
|
|
|
213
220
|
},
|
|
214
221
|
"jwt": {
|
|
215
222
|
"noKeyOrSigner": "No key or signer was provided for JWT creation",
|
|
216
|
-
"noKeyOrVerifier": "No key or verifier was provided for JWT creation"
|
|
223
|
+
"noKeyOrVerifier": "No key or verifier was provided for JWT creation",
|
|
224
|
+
"verifyFailed": "Failed to verify JWT",
|
|
225
|
+
"invalidTokenParts": "The JSON Web Token could not be parsed, it should contain three parts separated by dots",
|
|
226
|
+
"invalidSigningBytes": "The signing bytes are invalid, it should contain two parts separated by a dot"
|
|
227
|
+
},
|
|
228
|
+
"jwk": {
|
|
229
|
+
"jwkImportFailed": "Failed to import JWK"
|
|
230
|
+
},
|
|
231
|
+
"jws": {
|
|
232
|
+
"createFailed": "Failed to create JWS",
|
|
233
|
+
"verifyFailed": "Failed to verify JWS"
|
|
217
234
|
},
|
|
218
235
|
"iotaStardustNftConnector": {
|
|
219
236
|
"inclusionFailed": "The transaction generated for the NFT was not included in a reasonable amount of time",
|
package/docs/changelog.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/nft-cli",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.23",
|
|
4
4
|
"description": "A command line interface for interacting with the nft connectors",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"@twin.org/entity": "next",
|
|
22
22
|
"@twin.org/entity-storage-connector-memory": "next",
|
|
23
23
|
"@twin.org/nameof": "next",
|
|
24
|
-
"@twin.org/nft-connector-iota": "0.0.1-next.
|
|
25
|
-
"@twin.org/nft-connector-iota-stardust": "0.0.1-next.
|
|
24
|
+
"@twin.org/nft-connector-iota": "0.0.1-next.23",
|
|
25
|
+
"@twin.org/nft-connector-iota-stardust": "0.0.1-next.23",
|
|
26
26
|
"@twin.org/vault-connector-entity-storage": "next",
|
|
27
27
|
"@twin.org/vault-models": "next",
|
|
28
28
|
"@twin.org/wallet-cli": "next",
|