diff --git a/lightspark-sdk/README.md b/lightspark-sdk/README.md index e2d84790..14577555 100644 --- a/lightspark-sdk/README.md +++ b/lightspark-sdk/README.md @@ -17,14 +17,14 @@ Start by installing the SDK from maven: **build.gradle:** ```groovy dependencies { - implementation "com.lightspark:lightspark-sdk:0.19.0" + implementation "com.lightspark:lightspark-sdk:0.19.1" } ``` or with **build.gradle.kts:** ```kotlin dependencies { - implementation("com.lightspark:lightspark-sdk:0.19.0") + implementation("com.lightspark:lightspark-sdk:0.19.1") } ``` diff --git a/lightspark-sdk/gradle.properties b/lightspark-sdk/gradle.properties index 27033c36..399428d5 100644 --- a/lightspark-sdk/gradle.properties +++ b/lightspark-sdk/gradle.properties @@ -1,7 +1,7 @@ GROUP=com.lightspark POM_ARTIFACT_ID=lightspark-sdk # Don't bump this manually. Run `scripts/versions.main.kt ` to bump the version instead. -VERSION_NAME=0.19.0 +VERSION_NAME=0.19.1 POM_DESCRIPTION=The Lightspark API SDK for Kotlin and Java. POM_INCEPTION_YEAR=2023 diff --git a/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt b/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt index 13e68ccd..ed6893dc 100644 --- a/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt +++ b/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt @@ -7,8 +7,7 @@ query OutgoingPaymentForIdempotencyKey( ${'$'}idempotency_key: String! ) { outgoing_payment_for_idempotency_key(input: { - idempotency_key: ${'$'}idempotency_key, - statuses: ${'$'}transactionStatuses + idempotency_key: ${'$'}idempotency_key }) { payment { ...OutgoingPaymentFragment