1.24.0 • Published 1 month ago

@bowbridge/vtiger-js v1.24.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

vtiger-js

Javascript client for vtiger.com Rest API.

Installation

npm i @bowbridge/vtiger-js axios

 or

yarn add @bowbridge/vtiger-js axios

Peer Dependencies

This package uses axios as a http client. Please make sure that you have already installed it.

TypeScript

First class Typescript Support

Example

import { createClient } from '@bowbridge/vtiger-js';

const vtiger = createClient(url, username, password);

vtiger
  .from<Account>('Accounts')
  .select(['accountname', 'accountstatus'])
  .where('id', '=', '3x16554')
  .get()
  .then(res => {
    res.data.result.forEach(acc => {
      console.log(acc.accountname);
    });
  });
1.24.0

1 month ago

1.23.0

4 months ago

1.22.0

4 months ago

1.21.0

4 months ago

1.20.0

4 months ago

1.19.0

5 months ago

1.18.0

5 months ago

1.15.0

6 months ago

1.14.0

7 months ago

1.13.0

7 months ago

1.12.0

7 months ago

1.17.0

6 months ago

1.16.0

6 months ago

1.9.0

9 months ago

1.8.0

9 months ago

1.7.0

9 months ago

1.6.0

10 months ago

1.11.0

7 months ago

1.10.0

9 months ago

1.4.0

2 years ago

1.2.0

2 years ago

1.3.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago