File tree Expand file tree Collapse file tree 6 files changed +24
-6
lines changed Expand file tree Collapse file tree 6 files changed +24
-6
lines changed Original file line number Diff line number Diff line change
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
+
1
11
# 1.0.6
2
12
3
13
- Added a new endpoint to refund of a payment made via credit card
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ For more informations about [parameters](http://dev.sejaefi.com.br) and [values]
22
22
** Via gradle:**
23
23
24
24
``` 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 '
26
26
```
27
27
28
28
** Via maven:**
@@ -31,7 +31,7 @@ implementation 'br.com.efipay.efisdk:sdk-java-apis-efi:1.0.5'
31
31
<dependency >
32
32
<groupId >br.com.efipay.efisdk</groupId >
33
33
<artifactId >sdk-java-apis-efi</artifactId >
34
- <version >1.0.6 </version >
34
+ <version >1.1.1 </version >
35
35
</dependency >
36
36
```
37
37
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Para mais informações sobre [parâmetros](http://sejaefi.com.br/api) e [valore
23
23
** Via gradle:**
24
24
25
25
``` 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 '
27
27
```
28
28
29
29
** Via maven:**
@@ -32,7 +32,7 @@ implementation 'br.com.efipay.efisdk:sdk-java-apis-efi:1.0.5'
32
32
<dependency >
33
33
<groupId >br.com.efipay.efisdk</groupId >
34
34
<artifactId >sdk-java-apis-efi</artifactId >
35
- <version >1.0.6 </version >
35
+ <version >1.1.1 </version >
36
36
</dependency >
37
37
```
38
38
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >br.com.efipay.efisdk</groupId >
5
5
<artifactId >sdk-java-apis-efi</artifactId >
6
- <version >1.0.6 </version >
6
+ <version >1.1.1 </version >
7
7
8
8
<name >SDK JAVA APIS EFI</name >
9
9
<description >Java SDK for integrating with Efí API</description >
Original file line number Diff line number Diff line change 11
11
*
12
12
*/
13
13
public class Config {
14
- private final static String version = "1.0.6 " ;
14
+ private final static String version = "1.1.1 " ;
15
15
private JSONObject conf = new JSONObject ();
16
16
private JSONObject endpoints = new JSONObject ();
17
17
private JSONObject urls = new JSONObject ();
Original file line number Diff line number Diff line change 401
401
"medDefense" : {
402
402
"route" : " /v2/gn/infracoes/:idInfracao/defesa" ,
403
403
"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"
404
412
}
405
413
406
414
}
You can’t perform that action at this time.
0 commit comments