-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Esse pacote agora funciona para CommonJS, ESM e TypeScript - Todos os métodos agora são exibidos na sugestão de sua IDE, indicando os campos que devem ser enviados e quais serão retornados em caso de sucesso - Adicionado a possibilidade de utilizar o certificado em Base64, basta indicar no options com a propriedade cert_base_64 (booleano) - Novos exemplos adicionados - Corrigido falha que fazia com que em casos de falha não fosse possível visualizar o conteúdo do retorno após capturar a falha com o catch
- Loading branch information
1 parent
3fed379
commit af29e37
Showing
154 changed files
with
30,420 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// babel.config.js | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
node: 'current', | ||
}, | ||
}, | ||
], | ||
], | ||
}; |
Oops, something went wrong.