├── .babelrc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── docs └── manualECommAPISicredi.pdf ├── exemples └── index.js ├── index.js ├── lib ├── config.js ├── erros │ └── sicredi.js └── index.js ├── package.json ├── src ├── config.js ├── erros │ └── sicredi.js └── index.js └── tests ├── auth.spec.js ├── change.spec.js ├── create.spec.js ├── find.spec.js ├── fixtures ├── auth-with-invalid-token.json ├── auth-with-success.json ├── auth-with-token-registered.json ├── change-with-success.json ├── create-with-erro.json ├── create-with-success.json ├── create-without-agency.json ├── find-with-success.json └── print-with-success.json ├── health.spec.js ├── index.spec.js └── print.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/README.md -------------------------------------------------------------------------------- /docs/manualECommAPISicredi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/docs/manualECommAPISicredi.pdf -------------------------------------------------------------------------------- /exemples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/exemples/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/index').default 2 | -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/erros/sicredi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/lib/erros/sicredi.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/package.json -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/src/config.js -------------------------------------------------------------------------------- /src/erros/sicredi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/src/erros/sicredi.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/auth.spec.js -------------------------------------------------------------------------------- /tests/change.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/change.spec.js -------------------------------------------------------------------------------- /tests/create.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/create.spec.js -------------------------------------------------------------------------------- /tests/find.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/find.spec.js -------------------------------------------------------------------------------- /tests/fixtures/auth-with-invalid-token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/fixtures/auth-with-invalid-token.json -------------------------------------------------------------------------------- /tests/fixtures/auth-with-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/fixtures/auth-with-success.json -------------------------------------------------------------------------------- /tests/fixtures/auth-with-token-registered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/fixtures/auth-with-token-registered.json -------------------------------------------------------------------------------- /tests/fixtures/change-with-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/fixtures/change-with-success.json -------------------------------------------------------------------------------- /tests/fixtures/create-with-erro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/fixtures/create-with-erro.json -------------------------------------------------------------------------------- /tests/fixtures/create-with-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/fixtures/create-with-success.json -------------------------------------------------------------------------------- /tests/fixtures/create-without-agency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/fixtures/create-without-agency.json -------------------------------------------------------------------------------- /tests/fixtures/find-with-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/fixtures/find-with-success.json -------------------------------------------------------------------------------- /tests/fixtures/print-with-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/fixtures/print-with-success.json -------------------------------------------------------------------------------- /tests/health.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/health.spec.js -------------------------------------------------------------------------------- /tests/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/index.spec.js -------------------------------------------------------------------------------- /tests/print.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murilosandiego/node-sicredi/HEAD/tests/print.spec.js --------------------------------------------------------------------------------