Skip to content

Commit

Permalink
v0.2.4: Add new endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipeMata committed Jul 10, 2018
1 parent a74d1f0 commit 4088827
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.2.4

- Added: new endpoint (create charge balance sheet)

# 0.2.3

- Added: new endpoint (update plan)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.gerencianet.gnsdk</groupId>
<artifactId>gn-api-sdk-java</artifactId>
<version>0.2.3</version>
<version>0.2.4</version>

<name>GN API SDK JAVA</name>
<description>Java SDK for integrating with Gerencianet API</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/br/com/gerencianet/gnsdk/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@
"createSubscriptionHistory": {
"route": "/v1/subscription/:id/history",
"method": "post"
},
"createChargeBalanceSheet": {
"route": "/v1/charge/:id/balance-sheet",
"method": "post"
}
}
}

0 comments on commit 4088827

Please sign in to comment.