1.3.0 - Migrate from @flare/js-utils to @flare/utiliyo. Dependencies upgraded to the latest versions.

master
Tudor Stanciu 2025-03-30 04:21:05 +03:00
parent da93f72c1a
commit f9a1eac426
3 changed files with 1669 additions and 1608 deletions

View File

@ -47,3 +47,4 @@ All tests in the package can be executed by running: `npm test`.
1.2.5 - The token "expires in" information measuring unit was changed from milliseconds to seconds.
1.2.6 - Use custom type for request headers.
1.2.7 - Rename 'fetch' to 'acquire' to avoid conflict with built-in fetch function. Update axios to latest version and remove usage of axios.request alias.
1.3.0 - Migrate from @flare/js-utils to @flare/utiliyo. Dependencies upgraded to the latest versions.

3256
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@flare/tuitio-client",
"version": "1.2.7",
"version": "1.3.0",
"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",
@ -44,17 +44,17 @@
"LICENSE"
],
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.2",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
"typescript": "^5.8.2"
},
"dependencies": {
"@flare/js-utils": "^1.1.0",
"axios": "^1.6.8"
"@flare/utiliyo": "^1.2.1",
"axios": "^1.8.4"
}
}