Skip to content

Commit

Permalink
✨ Release 1.2.3
Browse files Browse the repository at this point in the history
- 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
joao-muniz-efi committed Aug 22, 2024
1 parent 3fed379 commit af29e37
Show file tree
Hide file tree
Showing 154 changed files with 30,420 additions and 306 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Importe o módulo:

```js
const EfiPay = require('sdk-node-apis-efi')
// ou
import EfiPay from 'sdk-node-apis-efi'
```

Insira suas credenciais e defina se deseja usar o sandbox ou não.
Expand All @@ -30,6 +32,7 @@ module.exports = {
client_id: 'seuClientId',
client_secret: 'seuClientSecret',
certificate: 'caminho/Ate/O/Certificado/Pix',
cert_base64: false, // Indica se o certificado está em base64 ou não
}
```

Expand Down Expand Up @@ -81,6 +84,7 @@ module.exports = {
client_id: 'seuClientId',
client_secret: 'seuClientSecret',
certificate: 'caminhoAteOCertificadoPix',
cert_base64: false, // Indica se o certificado está em base64 ou não
}
```

Expand Down
13 changes: 13 additions & 0 deletions babel.config.js
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',
},
},
],
],
};
Loading

0 comments on commit af29e37

Please sign in to comment.