Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
0f80623111 | |||
6c02861a79 | |||
a25e758faf | |||
14f2ba0692 | |||
0c391c1fd1 | |||
0c9decce3e |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@mojoio/tink",
|
||||
"version": "1.0.13",
|
||||
"version": "1.0.16",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@mojoio/tink",
|
||||
"version": "1.0.13",
|
||||
"version": "1.0.16",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@pushrocks/smartrequest": "^1.1.56"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@mojoio/tink",
|
||||
"version": "1.0.13",
|
||||
"version": "1.0.16",
|
||||
"private": false,
|
||||
"description": "an unofficial api abstraction for tink.com",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -33,7 +33,7 @@ Use TypeScript for best inclass intellisense
|
||||
import * as tink from '@mojoio/tink';
|
||||
|
||||
const tinkAccount = new TinkAccount('<clientId>', '<clientSecret>');
|
||||
const tinkUser = await tinkAccount.createTinkUser('<YourOwnUniqueUserId>');
|
||||
const tinkUser = await tinkAccount.createTinkUser('<YourOwnUniqueUserId/externalUserId>');
|
||||
const tinkLinkUrl = await tinkUser.getTinkLink('<marketCode like DE>');
|
||||
|
||||
// present the link to your user to connect their bank accounts to the tink platform.
|
||||
@ -47,6 +47,9 @@ for (const providerConsent of tinkProviderConsents) {
|
||||
}
|
||||
}
|
||||
|
||||
// additional stuff
|
||||
const existingTinkUser = await tinkAccount.getUser('<YourOwnUniqueUserId/externalUserId>')
|
||||
await existingTinkuser.delete(); // delete the user on the tink platform
|
||||
```
|
||||
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
export * from './tink.classes.tinkaccount';
|
||||
export * from './tink.classes.tinkuser';
|
||||
export * from './tink.classes.tinkuser';
|
||||
export * from './tink.classes.tinkproviderconsent';
|
@ -80,8 +80,6 @@ export class TinkUser {
|
||||
public tinkUserId: string;
|
||||
public externalUserIdArg: string;
|
||||
|
||||
public authorizationToken: string;
|
||||
|
||||
constructor(tinkAccountrefArg: TinkAccount, tinkUserIdArg: string, externalUserIdArg: string) {
|
||||
this.tinkAccountRef = tinkAccountrefArg;
|
||||
this.tinkUserId = tinkUserIdArg;
|
||||
|
Reference in New Issue
Block a user