├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── code-of-conduct.md ├── package.json ├── rollup.config.ts ├── src ├── const.ts ├── helperGenerateRemessaCNAB240.ts ├── helperGenerateRemessaCNAB400.ts ├── nodejs-cnab.ts ├── remessa.ts ├── retorno.ts └── utils.ts ├── test ├── data │ └── cnab400 │ │ ├── 237 │ │ ├── detalhe.json │ │ ├── example-400-237.rem │ │ ├── header_arquivo.json │ │ └── trailer_arquivo.json │ │ ├── 756 │ │ └── example-400-756.rem │ │ └── 001 │ │ ├── detalhe.json │ │ ├── example-400-001.rem │ │ └── header_arquivo.json ├── gen │ ├── .keep │ ├── example-400-001.rem │ ├── example-400-237.rem │ ├── retorno-400-001.json │ ├── retorno-400-033.json │ ├── retorno-400-041.json │ ├── retorno-400-104.json │ ├── retorno-400-237.json │ ├── retorno-400-341.json │ └── retorno-400-756.json ├── remessa.041.240.json ├── remessa.041.400.json ├── remessa.341.400.json ├── remessa.test.ts ├── remessa240.test.ts ├── remessa400.test.ts ├── retorno.test.ts └── utils.test.ts ├── tools ├── gh-pages-publish.ts └── semantic-release-prepare.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/src/const.ts -------------------------------------------------------------------------------- /src/helperGenerateRemessaCNAB240.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/src/helperGenerateRemessaCNAB240.ts -------------------------------------------------------------------------------- /src/helperGenerateRemessaCNAB400.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/src/helperGenerateRemessaCNAB400.ts -------------------------------------------------------------------------------- /src/nodejs-cnab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/src/nodejs-cnab.ts -------------------------------------------------------------------------------- /src/remessa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/src/remessa.ts -------------------------------------------------------------------------------- /src/retorno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/src/retorno.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/data/cnab400/001/detalhe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/data/cnab400/001/detalhe.json -------------------------------------------------------------------------------- /test/data/cnab400/001/example-400-001.rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/data/cnab400/001/example-400-001.rem -------------------------------------------------------------------------------- /test/data/cnab400/001/header_arquivo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/data/cnab400/001/header_arquivo.json -------------------------------------------------------------------------------- /test/data/cnab400/237/detalhe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/data/cnab400/237/detalhe.json -------------------------------------------------------------------------------- /test/data/cnab400/237/example-400-237.rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/data/cnab400/237/example-400-237.rem -------------------------------------------------------------------------------- /test/data/cnab400/237/header_arquivo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/data/cnab400/237/header_arquivo.json -------------------------------------------------------------------------------- /test/data/cnab400/237/trailer_arquivo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/data/cnab400/237/trailer_arquivo.json -------------------------------------------------------------------------------- /test/data/cnab400/756/example-400-756.rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/data/cnab400/756/example-400-756.rem -------------------------------------------------------------------------------- /test/gen/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/gen/example-400-001.rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/gen/example-400-001.rem -------------------------------------------------------------------------------- /test/gen/example-400-237.rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/gen/example-400-237.rem -------------------------------------------------------------------------------- /test/gen/retorno-400-001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/gen/retorno-400-001.json -------------------------------------------------------------------------------- /test/gen/retorno-400-033.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/gen/retorno-400-033.json -------------------------------------------------------------------------------- /test/gen/retorno-400-041.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/gen/retorno-400-041.json -------------------------------------------------------------------------------- /test/gen/retorno-400-104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/gen/retorno-400-104.json -------------------------------------------------------------------------------- /test/gen/retorno-400-237.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/gen/retorno-400-237.json -------------------------------------------------------------------------------- /test/gen/retorno-400-341.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/gen/retorno-400-341.json -------------------------------------------------------------------------------- /test/gen/retorno-400-756.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/gen/retorno-400-756.json -------------------------------------------------------------------------------- /test/remessa.041.240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/remessa.041.240.json -------------------------------------------------------------------------------- /test/remessa.041.400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/remessa.041.400.json -------------------------------------------------------------------------------- /test/remessa.341.400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/remessa.341.400.json -------------------------------------------------------------------------------- /test/remessa.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/remessa.test.ts -------------------------------------------------------------------------------- /test/remessa240.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/remessa240.test.ts -------------------------------------------------------------------------------- /test/remessa400.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/remessa400.test.ts -------------------------------------------------------------------------------- /test/retorno.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/retorno.test.ts -------------------------------------------------------------------------------- /test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/test/utils.test.ts -------------------------------------------------------------------------------- /tools/gh-pages-publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/tools/gh-pages-publish.ts -------------------------------------------------------------------------------- /tools/semantic-release-prepare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/tools/semantic-release-prepare.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banco-br/nodejs-cnab/HEAD/tslint.json --------------------------------------------------------------------------------