Skip to content

Commit eb278ec

Browse files
Release 1.2.19
- Adicionado método pixGetReceipt
1 parent ab21145 commit eb278ec

File tree

9 files changed

+179
-61
lines changed

9 files changed

+179
-61
lines changed

dist/cjs/index.cjs

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,10 @@ var constants = {
439439
pixResendWebhook: {
440440
route: '/v2/gn/webhook/reenviar',
441441
method: 'post'
442+
},
443+
pixGetReceipt: {
444+
route: '/v2/gn/pix/comprovantes',
445+
method: 'get'
442446
}
443447
}
444448
},
@@ -632,7 +636,7 @@ var exports$1 = {
632636
}
633637
};
634638
var description = "Module for integration with Efi Bank API";
635-
var version = "1.2.18";
639+
var version = "1.2.19";
636640
var author = "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas";
637641
var license = "MIT";
638642
var repository = "efipay/sdk-node-apis-efi";
@@ -5006,6 +5010,26 @@ class PixMethods extends CobrancasMethods {
50065010
*
50075011
*/
50085012
pixResendWebhook(params, body) {}
5013+
5014+
/**
5015+
* **GET /v2/gn/pix/comprovantes**
5016+
*
5017+
* Obter comprovantes
5018+
*
5019+
* Endpoint com a finalidade de obter comprovantes de transações Pix realizadas via API.
5020+
*
5021+
* Para capturar uma falha utilize o `catch`, os campos disponíveis no objeto serão `type`, `title`, `status`, `detail` e `violacoes`.
5022+
*
5023+
* @param { {
5024+
* e2eid?: string,
5025+
* idEnvio?: string,
5026+
* rtrId?: string,
5027+
* txid?: string
5028+
* } } params
5029+
*
5030+
* @returns { Promise<Buffer> }
5031+
*/
5032+
pixGetReceipt(params) {}
50095033
}
50105034

50115035
// @ts-nocheck

dist/esm/index.mjs

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,10 @@ var constants = {
430430
pixResendWebhook: {
431431
route: '/v2/gn/webhook/reenviar',
432432
method: 'post'
433+
},
434+
pixGetReceipt: {
435+
route: '/v2/gn/pix/comprovantes',
436+
method: 'get'
433437
}
434438
}
435439
},
@@ -623,7 +627,7 @@ var exports = {
623627
}
624628
};
625629
var description = "Module for integration with Efi Bank API";
626-
var version = "1.2.18";
630+
var version = "1.2.19";
627631
var author = "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas";
628632
var license = "MIT";
629633
var repository = "efipay/sdk-node-apis-efi";
@@ -4997,6 +5001,26 @@ class PixMethods extends CobrancasMethods {
49975001
*
49985002
*/
49995003
pixResendWebhook(params, body) {}
5004+
5005+
/**
5006+
* **GET /v2/gn/pix/comprovantes**
5007+
*
5008+
* Obter comprovantes
5009+
*
5010+
* Endpoint com a finalidade de obter comprovantes de transações Pix realizadas via API.
5011+
*
5012+
* Para capturar uma falha utilize o `catch`, os campos disponíveis no objeto serão `type`, `title`, `status`, `detail` e `violacoes`.
5013+
*
5014+
* @param { {
5015+
* e2eid?: string,
5016+
* idEnvio?: string,
5017+
* rtrId?: string,
5018+
* txid?: string
5019+
* } } params
5020+
*
5021+
* @returns { Promise<Buffer> }
5022+
*/
5023+
pixGetReceipt(params) {}
50005024
}
50015025

50025026
// @ts-nocheck

0 commit comments

Comments
 (0)