Compare commits

..

2 Commits

Author SHA1 Message Date
a0fa17fa1d 1.0.5 2022-02-17 11:54:44 +01:00
f5373c8c8d fix(core): update 2022-02-17 11:54:44 +01:00
4 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@mojoio/tink", "name": "@mojoio/tink",
"version": "1.0.4", "version": "1.0.5",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@mojoio/tink", "name": "@mojoio/tink",
"version": "1.0.4", "version": "1.0.5",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@pushrocks/smartrequest": "^1.1.56" "@pushrocks/smartrequest": "^1.1.56"

View File

@ -1,6 +1,6 @@
{ {
"name": "@mojoio/tink", "name": "@mojoio/tink",
"version": "1.0.4", "version": "1.0.5",
"private": false, "private": false,
"description": "an unofficial api abstraction for tink.com", "description": "an unofficial api abstraction for tink.com",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -26,7 +26,7 @@ export class TinkAccount {
) { ) {
// check health // check health
if (!(await this.getTinkHealthyBoolean())) { if (!(await this.getTinkHealthyBoolean())) {
throw new Error('TINK is not healthy tight now. Please try again later.'); throw new Error('TINK is not healthy right now. Please try again later.');
} else { } else {
console.log('tink is healthy, continuing...'); console.log('tink is healthy, continuing...');
} }