Nuva usage with typescript/javascript

List all diseases:

const daphne = await initDaphne({});
daphne.repositories.diseases.all();

List all vaccines:

const daphne = await initDaphne({});
daphne.repositories.vaccines.all();

Search a vaccines using fuzzy matching (useful for finding an approximate vaccine):

const daphne = await initDaphne({});
daphne.queries.searchVaccines(searchTerm);