Skip to content

Commit

Permalink
Add transaction_id to SEP-12 requests
Browse files Browse the repository at this point in the history
  • Loading branch information
philipliu committed Jun 12, 2024
1 parent 13e0975 commit 88bbd79
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ val jvmVersion = JavaVersion.VERSION_11

allprojects {
group = "org.stellar.wallet-sdk"
version = "1.6.0"
version = "1.7.0-SNAPSHOT"
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ internal constructor(
* memo is present in the decoded SEP-10 JWT's sub value, it must match this parameter value.
* @param type (optional) the type of action the customer is being KYCd for.
* @param lang (optional) Defaults to en. Language code specified using ISO 639-1. Human-readable
* @param transactionId (optional) the ID of the transaction that the customer is being KYC'ed for.
* descriptions, choices, and messages should be in this language.
* @return a customer data object
*/
Expand All @@ -33,6 +34,7 @@ internal constructor(
memo: ULong? = null,
type: String? = null,
lang: String? = null,
transactionId: String? = null,
): GetCustomerResponse {
validateMemo(memo)

Expand All @@ -42,6 +44,7 @@ internal constructor(
urlBuilder.addParameter("memo", memo?.toString())
urlBuilder.addParameter("type", type)
urlBuilder.addParameter("lang", lang)
urlBuilder.addParameter("transaction_id", transactionId)
val urlString = urlBuilder.buildString()

val response = httpClient.authGet<GetCustomerResponse>(urlString, token)
Expand Down Expand Up @@ -69,19 +72,22 @@ internal constructor(
* @param memo (optional) the client-generated memo of type ID that uniquely identifies the
* customer. If a memo is present in the decoded SEP-10 JWT's sub value, it must match this
* parameter value.
* @param transactionId (optional) the ID of the transaction that the customer is being KYC'ed for.
* @return a customer with id information
*/
suspend fun add(
sep9Info: Map<String, String>,
memo: ULong? = null,
type: String? = null,
transactionId : String? = null,
): AddCustomerResponse {
val customer: MutableMap<String, String> = mutableMapOf()

populateMap(type, customer, memo, sep9Info)

val urlBuilder = URLBuilder(baseUrl)
urlBuilder.appendPathSegments("customer")
urlBuilder.addParameter("transaction_id", transactionId)
val urlString = urlBuilder.buildString()

return httpClient.putJson(urlString, customer.toMap(), token)
Expand All @@ -98,13 +104,15 @@ internal constructor(
* @param memo (optional) the client-generated memo of type ID that uniquely identifies the
* customer. If a memo is present in the decoded SEP-10 JWT's sub value, it must match this
* parameter value.
* @param transactionId (optional) the ID of the transaction that the customer is being KYC'ed for.
* @return a customer with id information
*/
suspend fun update(
sep9Info: Map<String, String>,
id: String,
type: String? = null,
memo: ULong? = null,
transactionId: String? = null,
): AddCustomerResponse {
val customer: MutableMap<String, String> = mutableMapOf("id" to id)

Expand All @@ -116,6 +124,7 @@ internal constructor(

val urlBuilder = URLBuilder(baseUrl)
urlBuilder.appendPathSegments("customer")
urlBuilder.addParameter("transaction_id", transactionId)
val urlString = urlBuilder.buildString()

return httpClient.putJson(urlString, customer.toMap(), token)
Expand Down

0 comments on commit 88bbd79

Please sign in to comment.