├── .editorconfig ├── .gitignore ├── .jshintrc ├── Dockerfile ├── cache └── index.js ├── docker-compose.yml ├── handler.js ├── helpers ├── SignHelper.js ├── urls.js └── wsaa.js ├── package.json ├── postman └── afip_api.json.postman_collection ├── readme.md ├── routes ├── api │ └── endpoints.js └── index.js ├── server.js └── tools └── keygen.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/.jshintrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/Dockerfile -------------------------------------------------------------------------------- /cache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/cache/index.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/handler.js -------------------------------------------------------------------------------- /helpers/SignHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/helpers/SignHelper.js -------------------------------------------------------------------------------- /helpers/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/helpers/urls.js -------------------------------------------------------------------------------- /helpers/wsaa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/helpers/wsaa.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/package.json -------------------------------------------------------------------------------- /postman/afip_api.json.postman_collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/postman/afip_api.json.postman_collection -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/readme.md -------------------------------------------------------------------------------- /routes/api/endpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/routes/api/endpoints.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/routes/index.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/server.js -------------------------------------------------------------------------------- /tools/keygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarriaroman/AFIP-API/HEAD/tools/keygen.sh --------------------------------------------------------------------------------