Skip to content

Commit 29a2193

Browse files
Release 1.2.23
Adicionado endpoints e exemplos do Pix Automático
1 parent e3ae9ab commit 29a2193

File tree

52 files changed

+1410
-144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1410
-144
lines changed

dist/cjs/index.cjs

Lines changed: 103 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -440,9 +440,101 @@ var constants = {
440440
route: '/v2/gn/webhook/reenviar',
441441
method: 'post'
442442
},
443-
pixGetReceipt: {
443+
pixgetReceipt: {
444444
route: '/v2/gn/pix/comprovantes',
445445
method: 'get'
446+
},
447+
pixDetailRecurrenceAutomatic: {
448+
route: '/v2/rec/:idRec',
449+
method: 'get'
450+
},
451+
pixUpdateRecurrenceAutomatic: {
452+
route: '/v2/rec/:idRec',
453+
method: 'patch'
454+
},
455+
pixListRecurrenceAutomatic: {
456+
route: '/v2/rec',
457+
method: 'get'
458+
},
459+
pixCreateRecurrenceAutomatic: {
460+
route: '/v2/rec',
461+
method: 'post'
462+
},
463+
pixCreateRequestRecurrenceAutomatic: {
464+
route: '/v2/solicrec',
465+
method: 'post'
466+
},
467+
pixDetailRequestRecurrenceAutomatic: {
468+
route: '/v2/solicrec/:idSolicRec',
469+
method: 'get'
470+
},
471+
pixUpdateRequestRecurrenceAutomatic: {
472+
route: '/v2/solicrec/:idSolicRec',
473+
method: 'patch'
474+
},
475+
pixCreateAutomaticChargeTxid: {
476+
route: '/v2/cobr/:txid',
477+
method: 'put'
478+
},
479+
pixUpdateAutomaticCharge: {
480+
route: '/v2/cobr/:txid',
481+
method: 'patch'
482+
},
483+
pixDetailAutomaticCharge: {
484+
route: '/v2/cobr/:txid',
485+
method: 'get'
486+
},
487+
pixCreateAutomaticCharge: {
488+
route: '/v2/cobr',
489+
method: 'post'
490+
},
491+
pixListAutomaticCharge: {
492+
route: '/v2/cobr',
493+
method: 'get'
494+
},
495+
pixRetryRequestAutomaticCharge: {
496+
route: '/v2/cobr/:txid/retentativa/:data',
497+
method: 'post'
498+
},
499+
pixCreateLocationRecurrenceAutomatic: {
500+
route: '/v2/locrec',
501+
method: 'post'
502+
},
503+
pixListLocationRecurrenceAutomatic: {
504+
route: '/v2/locrec',
505+
method: 'get'
506+
},
507+
pixDetailLocationRecurrenceAutomatic: {
508+
route: '/v2/locrec/:id',
509+
method: 'get'
510+
},
511+
pixUnlinkLocationRecurrenceAutomatic: {
512+
route: '/v2/locrec/:id/:idRec',
513+
method: 'delete'
514+
},
515+
pixConfigWebhookRecurrenceAutomatic: {
516+
route: '/v2/webhookrec',
517+
method: 'put'
518+
},
519+
pixListWebhookRecurrenceAutomatic: {
520+
route: '/v2/webhookrec',
521+
method: 'get'
522+
},
523+
pixDeleteWebhookRecurrenceAutomatic: {
524+
route: '/v2/webhookrec',
525+
method: 'delete'
526+
},
527+
pixConfigWebhookAutomaticCharge: {
528+
route: '/v2/webhookcobr',
529+
method: 'put'
530+
},
531+
pixListWebhookAutomaticCharge: {
532+
route: '/v2/webhookcobr',
533+
method: 'get'
534+
},
535+
pixDeleteWebhookAutomaticCharge: {
536+
route: '/v2/webhookcobr',
537+
method: 'delete'
446538
}
447539
}
448540
},
@@ -458,23 +550,23 @@ var constants = {
458550
},
459551
ofListParticipants: {
460552
route: '/participantes/',
461-
method: 'GET'
553+
method: 'get'
462554
},
463555
ofStartPixPayment: {
464556
route: '/pagamentos/pix',
465-
method: 'POST'
557+
method: 'post'
466558
},
467559
ofListPixPayment: {
468560
route: '/pagamentos/pix',
469-
method: 'GET'
561+
method: 'get'
470562
},
471563
ofConfigUpdate: {
472564
route: '/config',
473-
method: 'PUT'
565+
method: 'put'
474566
},
475567
ofConfigDetail: {
476568
route: '/config',
477-
method: 'GET'
569+
method: 'get'
478570
},
479571
ofDevolutionPix: {
480572
route: '/pagamentos/pix/:identificadorPagamento/devolver',
@@ -570,19 +662,19 @@ var constants = {
570662
},
571663
payDetailBarCode: {
572664
route: '/codBarras/:codBarras',
573-
method: 'GET'
665+
method: 'get'
574666
},
575667
payRequestBarCode: {
576668
route: '/codBarras/:codBarras',
577-
method: 'POST'
669+
method: 'post'
578670
},
579671
payDetailPayment: {
580672
route: '/:idPagamento',
581-
method: 'GET'
673+
method: 'get'
582674
},
583675
payListPayments: {
584676
route: '/resumo',
585-
method: 'GET'
677+
method: 'get'
586678
}
587679
}
588680
},
@@ -676,7 +768,7 @@ var exports$1 = {
676768
}
677769
};
678770
var description = "Module for integration with Efi Bank API";
679-
var version = "1.2.22";
771+
var version = "1.2.23";
680772
var author = "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas";
681773
var license = "MIT";
682774
var repository = "efipay/sdk-node-apis-efi";

dist/esm/index.mjs

Lines changed: 103 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -431,9 +431,101 @@ var constants = {
431431
route: '/v2/gn/webhook/reenviar',
432432
method: 'post'
433433
},
434-
pixGetReceipt: {
434+
pixgetReceipt: {
435435
route: '/v2/gn/pix/comprovantes',
436436
method: 'get'
437+
},
438+
pixDetailRecurrenceAutomatic: {
439+
route: '/v2/rec/:idRec',
440+
method: 'get'
441+
},
442+
pixUpdateRecurrenceAutomatic: {
443+
route: '/v2/rec/:idRec',
444+
method: 'patch'
445+
},
446+
pixListRecurrenceAutomatic: {
447+
route: '/v2/rec',
448+
method: 'get'
449+
},
450+
pixCreateRecurrenceAutomatic: {
451+
route: '/v2/rec',
452+
method: 'post'
453+
},
454+
pixCreateRequestRecurrenceAutomatic: {
455+
route: '/v2/solicrec',
456+
method: 'post'
457+
},
458+
pixDetailRequestRecurrenceAutomatic: {
459+
route: '/v2/solicrec/:idSolicRec',
460+
method: 'get'
461+
},
462+
pixUpdateRequestRecurrenceAutomatic: {
463+
route: '/v2/solicrec/:idSolicRec',
464+
method: 'patch'
465+
},
466+
pixCreateAutomaticChargeTxid: {
467+
route: '/v2/cobr/:txid',
468+
method: 'put'
469+
},
470+
pixUpdateAutomaticCharge: {
471+
route: '/v2/cobr/:txid',
472+
method: 'patch'
473+
},
474+
pixDetailAutomaticCharge: {
475+
route: '/v2/cobr/:txid',
476+
method: 'get'
477+
},
478+
pixCreateAutomaticCharge: {
479+
route: '/v2/cobr',
480+
method: 'post'
481+
},
482+
pixListAutomaticCharge: {
483+
route: '/v2/cobr',
484+
method: 'get'
485+
},
486+
pixRetryRequestAutomaticCharge: {
487+
route: '/v2/cobr/:txid/retentativa/:data',
488+
method: 'post'
489+
},
490+
pixCreateLocationRecurrenceAutomatic: {
491+
route: '/v2/locrec',
492+
method: 'post'
493+
},
494+
pixListLocationRecurrenceAutomatic: {
495+
route: '/v2/locrec',
496+
method: 'get'
497+
},
498+
pixDetailLocationRecurrenceAutomatic: {
499+
route: '/v2/locrec/:id',
500+
method: 'get'
501+
},
502+
pixUnlinkLocationRecurrenceAutomatic: {
503+
route: '/v2/locrec/:id/:idRec',
504+
method: 'delete'
505+
},
506+
pixConfigWebhookRecurrenceAutomatic: {
507+
route: '/v2/webhookrec',
508+
method: 'put'
509+
},
510+
pixListWebhookRecurrenceAutomatic: {
511+
route: '/v2/webhookrec',
512+
method: 'get'
513+
},
514+
pixDeleteWebhookRecurrenceAutomatic: {
515+
route: '/v2/webhookrec',
516+
method: 'delete'
517+
},
518+
pixConfigWebhookAutomaticCharge: {
519+
route: '/v2/webhookcobr',
520+
method: 'put'
521+
},
522+
pixListWebhookAutomaticCharge: {
523+
route: '/v2/webhookcobr',
524+
method: 'get'
525+
},
526+
pixDeleteWebhookAutomaticCharge: {
527+
route: '/v2/webhookcobr',
528+
method: 'delete'
437529
}
438530
}
439531
},
@@ -449,23 +541,23 @@ var constants = {
449541
},
450542
ofListParticipants: {
451543
route: '/participantes/',
452-
method: 'GET'
544+
method: 'get'
453545
},
454546
ofStartPixPayment: {
455547
route: '/pagamentos/pix',
456-
method: 'POST'
548+
method: 'post'
457549
},
458550
ofListPixPayment: {
459551
route: '/pagamentos/pix',
460-
method: 'GET'
552+
method: 'get'
461553
},
462554
ofConfigUpdate: {
463555
route: '/config',
464-
method: 'PUT'
556+
method: 'put'
465557
},
466558
ofConfigDetail: {
467559
route: '/config',
468-
method: 'GET'
560+
method: 'get'
469561
},
470562
ofDevolutionPix: {
471563
route: '/pagamentos/pix/:identificadorPagamento/devolver',
@@ -561,19 +653,19 @@ var constants = {
561653
},
562654
payDetailBarCode: {
563655
route: '/codBarras/:codBarras',
564-
method: 'GET'
656+
method: 'get'
565657
},
566658
payRequestBarCode: {
567659
route: '/codBarras/:codBarras',
568-
method: 'POST'
660+
method: 'post'
569661
},
570662
payDetailPayment: {
571663
route: '/:idPagamento',
572-
method: 'GET'
664+
method: 'get'
573665
},
574666
payListPayments: {
575667
route: '/resumo',
576-
method: 'GET'
668+
method: 'get'
577669
}
578670
}
579671
},
@@ -667,7 +759,7 @@ var exports = {
667759
}
668760
};
669761
var description = "Module for integration with Efi Bank API";
670-
var version = "1.2.22";
762+
var version = "1.2.23";
671763
var author = "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas";
672764
var license = "MIT";
673765
var repository = "efipay/sdk-node-apis-efi";

0 commit comments

Comments
 (0)