Skip to content

Commit 27f680a

Browse files
Added a new endpoint and example for Detail QrCode and Pay QrCode
1 parent 89d6b4c commit 27f680a

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 1.1.1
2+
3+
- Added routes to the config.json file
4+
5+
6+
# 1.1.0
7+
8+
- Added a new endpoint and example for Detail QrCode and Pay QrCode
9+
- Renamed the pix and send folders to management and payment respectively
10+
111
# 1.0.6
212

313
- Added a new endpoint to refund of a payment made via credit card

README-en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ For more informations about [parameters](http://dev.sejaefi.com.br) and [values]
2222
**Via gradle:**
2323

2424
```gradle
25-
implementation 'br.com.efipay.efisdk:sdk-java-apis-efi:1.0.5'
25+
implementation 'br.com.efipay.efisdk:sdk-java-apis-efi:1.1.1'
2626
```
2727

2828
**Via maven:**
@@ -31,7 +31,7 @@ implementation 'br.com.efipay.efisdk:sdk-java-apis-efi:1.0.5'
3131
<dependency>
3232
    <groupId>br.com.efipay.efisdk</groupId>
3333
<artifactId>sdk-java-apis-efi</artifactId>
34-
<version>1.0.6</version>
34+
<version>1.1.1</version>
3535
</dependency>
3636
```
3737

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Para mais informações sobre [parâmetros](http://sejaefi.com.br/api) e [valore
2323
**Via gradle:**
2424

2525
```gradle
26-
implementation 'br.com.efipay.efisdk:sdk-java-apis-efi:1.0.5'
26+
implementation 'br.com.efipay.efisdk:sdk-java-apis-efi:1.1.1'
2727
```
2828

2929
**Via maven:**
@@ -32,7 +32,7 @@ implementation 'br.com.efipay.efisdk:sdk-java-apis-efi:1.0.5'
3232
<dependency>
3333
<groupId>br.com.efipay.efisdk</groupId>
3434
<artifactId>sdk-java-apis-efi</artifactId>
35-
<version>1.0.6</version>
35+
<version>1.1.1</version>
3636
</dependency>
3737
```
3838

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>br.com.efipay.efisdk</groupId>
55
<artifactId>sdk-java-apis-efi</artifactId>
6-
<version>1.0.6</version>
6+
<version>1.1.1</version>
77

88
<name>SDK JAVA APIS EFI</name>
99
<description>Java SDK for integrating with Efí API</description>

src/main/java/br/com/efi/efisdk/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
*/
1313
public class Config {
14-
private final static String version = "1.0.6";
14+
private final static String version = "1.1.1";
1515
private JSONObject conf = new JSONObject();
1616
private JSONObject endpoints = new JSONObject();
1717
private JSONObject urls = new JSONObject();

src/main/resources/config.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,14 @@
401401
"medDefense": {
402402
"route": "/v2/gn/infracoes/:idInfracao/defesa",
403403
"method": "post"
404+
},
405+
"pixQrCodePay": {
406+
"route": "/v2/gn/pix/:idEnvio/qrcode",
407+
"method": "put"
408+
},
409+
"pixQrCodeDetail": {
410+
"route": "/v2/gn/qrcodes/detalhar",
411+
"method": "post"
404412
}
405413

406414
}

0 commit comments

Comments
 (0)