Compare commits

..

2 Commits

Author SHA1 Message Date
80373424b4 1.0.12 2022-02-19 13:29:08 +01:00
d108baf672 fix(core): update 2022-02-19 13:29:08 +01:00
3 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.11", "version": "1.0.12",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@mojoio/tink", "name": "@mojoio/tink",
"version": "1.0.11", "version": "1.0.12",
"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.11", "version": "1.0.12",
"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

@ -33,7 +33,7 @@ Use TypeScript for best inclass intellisense
import * as tink from '@mojoio/tink'; import * as tink from '@mojoio/tink';
const tinkAccount = new TinkAccount('clientId', 'clientSecret'); const tinkAccount = new TinkAccount('clientId', 'clientSecret');
const tinkUser = await tinkAccount.createTinkUser('YouOwnUniqueUserId'); const tinkUser = await tinkAccount.createTinkUser('YourOwnUniqueUserId');
const tinkLinkUrl = await tinkUser.getTinkLink(); const tinkLinkUrl = await tinkUser.getTinkLink();
// present the link to your user to connect their bank accounts to the tink platform. // present the link to your user to connect their bank accounts to the tink platform.