fineract_sdk
v0.0.5
Published
Wrapper around fineract api.
Downloads
276
Maintainers
Readme
Fineract SDK
An wrapper for fineract api to work in nodejs. The base is generated using openapi gen
Notes
- Install using
npm i fineract_sdk
- Usage in javascript
const fin = require('fineract_sdk');
let usersApi = new fin.UsersApi(cbsConfig);
response = await usersApi.retrieveAll();
console.log(response.data)
TODO:
- ~~Generate models and api funcs seperatly, for now getting generating error when we use
withSeparateModelsAndApi
as true.~~ - ~~Changing the json file using patches.~~ (Solved usong json-patch library to modify base.json)
- Mapping of operationIds to custom names (for more readability).
- Either provide name for inline object or move the objects to schemas in which we can gove it a name.