0.1.10 • Published 1 year ago

heytextual v0.1.10

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

HeyTextual JS SDK

Instalación

npm install heytextual
const heytextual = require('heytextual');
const client = heytextual('your_api_key');

(async () => {
  const data = await client.extract('path/to/file', 'TEMPLATEID');
  console.log(data);

  const documents = await client.documents({ startDate: '2023-01-01', endDate: '2023-01-31', last: 10 });
  console.log(documents);

  const document = await client.document('DOCUMENTID');
  console.log(document);

  const templates = await client.templates({ startDate: '2023-01-01', endDate: '2023-01-31', last: 10 });
  console.log(templates);
})();
0.1.10

1 year ago

0.1.9

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.6

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago