@twin.org/nft-cli 0.0.1-next.21 → 0.0.1-next.22

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.
@@ -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.21",
470
+ version: "0.0.1-next.22",
471
471
  icon: "🌍",
472
472
  supportsEnvFiles: true,
473
473
  overrideOutputWidth: options?.overrideOutputWidth
@@ -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.21",
467
+ version: "0.0.1-next.22",
468
468
  icon: "🌍",
469
469
  supportsEnvFiles: true,
470
470
  overrideOutputWidth: options?.overrideOutputWidth
@@ -204,6 +204,9 @@
204
204
  "nftTransactionFailed": "The NFT transaction failed",
205
205
  "addressNotFound": "The address is missing could not be found from the seed \"{address}\""
206
206
  },
207
+ "vaultConnectorHelper": {
208
+ "invalidSignature": "The JSON Web token signature could not be verified"
209
+ },
207
210
  "fetchHelper": {
208
211
  "decodingJSON": "Decoding JSON failed for route \"{route}\"",
209
212
  "failureStatusText": "The request to the API failed: \"{statusText}\"",
@@ -213,7 +216,17 @@
213
216
  },
214
217
  "jwt": {
215
218
  "noKeyOrSigner": "No key or signer was provided for JWT creation",
216
- "noKeyOrVerifier": "No key or verifier was provided for JWT creation"
219
+ "noKeyOrVerifier": "No key or verifier was provided for JWT creation",
220
+ "verifyFailed": "Failed to verify JWT",
221
+ "invalidTokenParts": "The JSON Web Token could not be parsed, it should contain three parts separated by dots",
222
+ "invalidSigningBytes": "The signing bytes are invalid, it should contain two parts separated by a dot"
223
+ },
224
+ "jwk": {
225
+ "jwkImportFailed": "Failed to import JWK"
226
+ },
227
+ "jws": {
228
+ "createFailed": "Failed to create JWS",
229
+ "verifyFailed": "Failed to verify JWS"
217
230
  },
218
231
  "iotaStardustNftConnector": {
219
232
  "inclusionFailed": "The transaction generated for the NFT was not included in a reasonable amount of time",
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/nft-cli - Changelog
2
2
 
3
- ## v0.0.1-next.21
3
+ ## v0.0.1-next.22
4
4
 
5
5
  - Initial Release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/nft-cli",
3
- "version": "0.0.1-next.21",
3
+ "version": "0.0.1-next.22",
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.21",
25
- "@twin.org/nft-connector-iota-stardust": "0.0.1-next.21",
24
+ "@twin.org/nft-connector-iota": "0.0.1-next.22",
25
+ "@twin.org/nft-connector-iota-stardust": "0.0.1-next.22",
26
26
  "@twin.org/vault-connector-entity-storage": "next",
27
27
  "@twin.org/vault-models": "next",
28
28
  "@twin.org/wallet-cli": "next",