├── .eslintrc.js ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .nvmrc ├── .prettierrc.js ├── README.md ├── nodemon.json ├── package.json ├── src ├── index.ts ├── services │ ├── postagens │ │ ├── carta.ts │ │ ├── grandesFormatos.ts │ │ ├── index.ts │ │ ├── pac.ts │ │ └── sedex.ts │ ├── preListaDePostagem │ │ ├── index.ts │ │ ├── objetoPostalItem.ts │ │ ├── plp.ts │ │ └── types.ts │ └── sigep │ │ ├── api.ts │ │ ├── buscaCEP.ts │ │ ├── buscaCliente.ts │ │ ├── buscaStatusCartaoPostagem.ts │ │ ├── exportXml.ts │ │ ├── fechaPlpVariosServicos.ts │ │ ├── index.ts │ │ ├── solicitaEtiquetas.ts │ │ ├── solicitaXmlPlp.ts │ │ ├── types.ts │ │ └── verificaDisponibilidadeServico.ts └── utils │ ├── digitoVerificador.ts │ ├── index.ts │ └── xmlValidator.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/README.md -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/services/postagens/carta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/postagens/carta.ts -------------------------------------------------------------------------------- /src/services/postagens/grandesFormatos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/postagens/grandesFormatos.ts -------------------------------------------------------------------------------- /src/services/postagens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/postagens/index.ts -------------------------------------------------------------------------------- /src/services/postagens/pac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/postagens/pac.ts -------------------------------------------------------------------------------- /src/services/postagens/sedex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/postagens/sedex.ts -------------------------------------------------------------------------------- /src/services/preListaDePostagem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/preListaDePostagem/index.ts -------------------------------------------------------------------------------- /src/services/preListaDePostagem/objetoPostalItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/preListaDePostagem/objetoPostalItem.ts -------------------------------------------------------------------------------- /src/services/preListaDePostagem/plp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/preListaDePostagem/plp.ts -------------------------------------------------------------------------------- /src/services/preListaDePostagem/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/preListaDePostagem/types.ts -------------------------------------------------------------------------------- /src/services/sigep/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/api.ts -------------------------------------------------------------------------------- /src/services/sigep/buscaCEP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/buscaCEP.ts -------------------------------------------------------------------------------- /src/services/sigep/buscaCliente.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/buscaCliente.ts -------------------------------------------------------------------------------- /src/services/sigep/buscaStatusCartaoPostagem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/buscaStatusCartaoPostagem.ts -------------------------------------------------------------------------------- /src/services/sigep/exportXml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/exportXml.ts -------------------------------------------------------------------------------- /src/services/sigep/fechaPlpVariosServicos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/fechaPlpVariosServicos.ts -------------------------------------------------------------------------------- /src/services/sigep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/index.ts -------------------------------------------------------------------------------- /src/services/sigep/solicitaEtiquetas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/solicitaEtiquetas.ts -------------------------------------------------------------------------------- /src/services/sigep/solicitaXmlPlp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/solicitaXmlPlp.ts -------------------------------------------------------------------------------- /src/services/sigep/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/types.ts -------------------------------------------------------------------------------- /src/services/sigep/verificaDisponibilidadeServico.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/services/sigep/verificaDisponibilidadeServico.ts -------------------------------------------------------------------------------- /src/utils/digitoVerificador.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/utils/digitoVerificador.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/xmlValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/src/utils/xmlValidator.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleye-me/sigep/HEAD/yarn.lock --------------------------------------------------------------------------------