aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine A <>2024-01-03 02:39:32 +0000
committerAntoine A <>2024-01-03 03:01:48 +0000
commit846830610dc444377ded8b8e8c9f43d2c82adba6 (patch)
treeb6d2be19d3498e97eee37b097727a3567fecae3a
parenta8300c3edc9d9d19097e752e43f954a84428febb (diff)
downloadlibeufin-846830610dc444377ded8b8e8c9f43d2c82adba6.tar.gz
libeufin-846830610dc444377ded8b8e8c9f43d2c82adba6.tar.bz2
libeufin-846830610dc444377ded8b8e8c9f43d2c82adba6.zip
Bump API version
-rw-r--r--API_CHANGES.md9
-rw-r--r--bank/src/main/kotlin/tech/libeufin/bank/Constants.kt2
2 files changed, 10 insertions, 1 deletions
diff --git a/API_CHANGES.md b/API_CHANGES.md
index 30fc5509..436e9373 100644
--- a/API_CHANGES.md
+++ b/API_CHANGES.md
@@ -19,6 +19,15 @@ This files contains all the API changes for the current release:
- POST /accounts/USERNAME/transactions: prohibit transaction to admin account
- Deprecate POST /accounts/USERNAME/withdrawals/WITHDRAWAL_ID/abort
- Add POST /taler-integration/withdrawal-operation/WITHDRAWAL_ID/abort
+- Add 2FA logic
+- Remove POST /accounts/USERNAME/cashouts/CASHOUT_ID/abort
+- Remove POST /accounts/USERNAME/cashouts/CASHOUT_ID/confirm
+- Add POST /accounts/USERNAME/challenge/CHALLENGE_ID
+- Add POST /accounts/USERNAME/challenge/CHALLENGE_ID/confirm
+- POST /accounts/USERNAME/cashouts: remove tan_channel field
+- POST /accounts/USERNAME/cashouts/CASHOUT_ID: remove confirmation_time, tan_channel, tan_info and status fields
+- POST /accounts/$USERNAME/cashouts: remove status field
+- POST /cashouts: remove status field
## bank cli
diff --git a/bank/src/main/kotlin/tech/libeufin/bank/Constants.kt b/bank/src/main/kotlin/tech/libeufin/bank/Constants.kt
index 5567e13c..d61d767e 100644
--- a/bank/src/main/kotlin/tech/libeufin/bank/Constants.kt
+++ b/bank/src/main/kotlin/tech/libeufin/bank/Constants.kt
@@ -44,7 +44,7 @@ const val MIN_VERSION: Int = 14
const val SERIALIZATION_RETRY: Int = 10;
// API version
-const val COREBANK_API_VERSION: String = "3:0:3"
+const val COREBANK_API_VERSION: String = "4:0:0"
const val CONVERSION_API_VERSION: String = "0:0:0"
const val INTEGRATION_API_VERSION: String = "2:0:2"
const val WIRE_GATEWAY_API_VERSION: String = "0:1:0" \ No newline at end of file