diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c9a329..e74df5a 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.4 + +- Added: new endpoint (create charge balance sheet) + # 0.2.3 - Added: new endpoint (update plan) diff --git a/pom.xml b/pom.xml index e619b99..621139a 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.gerencianet.gnsdk gn-api-sdk-java - 0.2.3 + 0.2.4 GN API SDK JAVA Java SDK for integrating with Gerencianet API diff --git a/src/main/java/br/com/gerencianet/gnsdk/Config.java b/src/main/java/br/com/gerencianet/gnsdk/Config.java index e4b3150..1a8bf08 100755 --- a/src/main/java/br/com/gerencianet/gnsdk/Config.java +++ b/src/main/java/br/com/gerencianet/gnsdk/Config.java @@ -8,7 +8,7 @@ * */ public class Config { - private final static String version = "0.2.3"; + private final static String version = "0.2.4"; private JSONObject conf = new JSONObject(); private JSONObject endpoints = new JSONObject(); private JSONObject urls = new JSONObject(); diff --git a/src/main/resources/config.json b/src/main/resources/config.json index ae13f22..12e5455 100755 --- a/src/main/resources/config.json +++ b/src/main/resources/config.json @@ -135,6 +135,10 @@ "createSubscriptionHistory": { "route": "/v1/subscription/:id/history", "method": "post" + }, + "createChargeBalanceSheet": { + "route": "/v1/charge/:id/balance-sheet", + "method": "post" } } } \ No newline at end of file