Skip to content

Commit

Permalink
added headers to plaid calls
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronk-bixly committed Apr 15, 2022
1 parent 665c840 commit 8b49ca5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/common/rest/plaid/get-plaid-access-token/index.ts
@@ -1,5 +1,6 @@
import { MethodMetadata, Parameter } from '..';
import { useRestCall } from '../../../helpers/rest-calls';
import { Headers } from '../../../helpers/axios';

const path = 'plaid-access-token/:publicToken';

Expand Down
1 change: 1 addition & 0 deletions src/common/rest/plaid/get-plaid-account/index.ts
@@ -1,5 +1,6 @@
import { MethodMetadata, Parameter } from '..';
import { useRestCall } from '../../../helpers/rest-calls';
import { Headers } from '../../../helpers/axios';

const path = 'plaid-account/:accountId';

Expand Down
1 change: 1 addition & 0 deletions src/common/rest/plaid/get-plaid-link-token/index.ts
@@ -1,4 +1,5 @@
import { MethodMetadata, Parameter } from '..';
import { Headers } from '../../../helpers/axios';
import { useRestCall } from '../../../helpers/rest-calls';

const path = 'plaid-link-token/:clientId';
Expand Down
1 change: 1 addition & 0 deletions src/common/rest/plaid/get-plaid-transaction/index.ts
@@ -1,5 +1,6 @@
import { MethodMetadata, Parameter } from '..';
import { useRestCall } from '../../../helpers/rest-calls';
import { Headers } from '../../../helpers/axios';

const path = 'plaid-transaction/:txId';

Expand Down
1 change: 1 addition & 0 deletions src/common/rest/plaid/list-plaid-accounts/index.ts
@@ -1,5 +1,6 @@
import { MethodMetadata, Parameter } from '..';
import { useRestCall } from '../../../helpers/rest-calls';
import { Headers } from '../../../helpers/axios';

const path = 'plaid-accounts/:userId';

Expand Down
1 change: 1 addition & 0 deletions src/common/rest/plaid/list-plaid-transactions/index.ts
@@ -1,5 +1,6 @@
import { MethodMetadata, Parameter } from '..';
import { useRestCall } from '../../../helpers/rest-calls';
import { Headers } from '../../../helpers/axios';

const path = 'plaid-transactions/:userId';

Expand Down
1 change: 1 addition & 0 deletions src/common/rest/plaid/save-plaid-accounts/index.ts
@@ -1,5 +1,6 @@
import { MethodMetadata, Parameter } from '..';
import { useRestCall } from '../../../helpers/rest-calls';
import { Headers } from '../../../helpers/axios';

const path = 'plaid-accounts/:userId';

Expand Down
1 change: 1 addition & 0 deletions src/common/rest/plaid/save-plaid-transactions/index.ts
@@ -1,5 +1,6 @@
import { MethodMetadata, Parameter } from '..';
import { useRestCall } from '../../../helpers/rest-calls';
import { Headers } from '../../../helpers/axios';

const path = 'plaid-transactions/:userId';

Expand Down

0 comments on commit 8b49ca5

Please sign in to comment.