diff --git a/README.md b/README.md index 957794d..25794b2 100644 --- a/README.md +++ b/README.md @@ -40,4 +40,5 @@ All tests in the package can be executed by running: `npm test`. 1.0.4 - TuitioState's token property can be null 1.1.0 - In this version, the account logout method and the latest changes published by Tuitio were implemented. 1.2.0 - Has been implemented the "user-info" method exposed by the Tuitio API. -1.2.1 - Added decodeToken function. The token is obtained directly by the function from local storage. If the token is missing, the function returns null. +1.2.1 - Added decodeToken function. The token is obtained directly by the function from local storage. If the token is missing, the function returns null. +1.2.2 - Upgraded @flare/js-utils package diff --git a/package-lock.json b/package-lock.json index ab401bd..bf43aaa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "@flare/tuitio-client", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@flare/tuitio-client", - "version": "1.2.1", + "version": "1.2.2", "license": "MIT", "dependencies": { - "@flare/js-utils": "^1.0.4", + "@flare/js-utils": "^1.1.0", "axios": "^1.3.2" }, "devDependencies": { @@ -610,9 +610,9 @@ "dev": true }, "node_modules/@flare/js-utils": { - "version": "1.0.4", - "resolved": "https://lab.code-rove.com/public-node-registry/@flare/js-utils/-/js-utils-1.0.4.tgz", - "integrity": "sha512-U55xP+4E9DYWWaq4YnlNoi/MeAw3dDvhWSPN2hqQiO08dBBGIdKFZDYSLOMSzc5ccqErbiAc+dCuJ+ZSjfkptA==" + "version": "1.1.0", + "resolved": "https://lab.code-rove.com/public-node-registry/@flare/js-utils/-/js-utils-1.1.0.tgz", + "integrity": "sha512-6NBXdZgRrHbLXw4EMgyqCIzOVAlUgr1+8QGHjlA+n5Iw2Lp/+dP3FTgAfPW/cHR/PBI3cj7gUDVUf/zD/qTPOQ==" }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", @@ -4917,9 +4917,9 @@ "dev": true }, "@flare/js-utils": { - "version": "1.0.4", - "resolved": "https://lab.code-rove.com/public-node-registry/@flare/js-utils/-/js-utils-1.0.4.tgz", - "integrity": "sha512-U55xP+4E9DYWWaq4YnlNoi/MeAw3dDvhWSPN2hqQiO08dBBGIdKFZDYSLOMSzc5ccqErbiAc+dCuJ+ZSjfkptA==" + "version": "1.1.0", + "resolved": "https://lab.code-rove.com/public-node-registry/@flare/js-utils/-/js-utils-1.1.0.tgz", + "integrity": "sha512-6NBXdZgRrHbLXw4EMgyqCIzOVAlUgr1+8QGHjlA+n5Iw2Lp/+dP3FTgAfPW/cHR/PBI3cj7gUDVUf/zD/qTPOQ==" }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", diff --git a/package.json b/package.json index 4a3b868..2e50696 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@flare/tuitio-client", - "version": "1.2.1", + "version": "1.2.2", "description": "Tuitio client is an npm package written in typescript that facilitates the integration of a javascript application with Tuitio.", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -54,7 +54,7 @@ "typescript": "^4.9.5" }, "dependencies": { - "@flare/js-utils": "^1.0.4", + "@flare/js-utils": "^1.1.0", "axios": "^1.3.2" } }