Skip to content

Commit

Permalink
PAY-1870: Update pledge flows with PaymentSheet (#1698)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkariang committed Oct 6, 2022
1 parent 86148c8 commit 78f2717
Show file tree
Hide file tree
Showing 8 changed files with 120 additions and 294 deletions.
8 changes: 3 additions & 5 deletions .circleci/config.yml
Expand Up @@ -11,7 +11,6 @@ base_job: &base_job

version: 2.1
orbs:
codecov: codecov/codecov@3.2.3
android: circleci/android@2.1.2

jobs:
Expand Down Expand Up @@ -46,13 +45,12 @@ jobs:
- v5-android-
- attach_workspace:
at: ~/project
- run: ./gradlew :app:clean
- run: ./gradlew checkstyle
- run: ./gradlew ktlint
- run: ./gradlew lintExternalRelease
- run: ./gradlew jacocoExternalReleaseReport -PdisablePreDex # jacoco executes internally testExternalRelease
- codecov/upload:
file: app/build/reports/jacoco/jacocoExternalReleaseReport/jacocoExternalReleaseReport.xml
- run:
command: ./gradlew testExternalRelease -PdisablePreDex
no_output_timeout: 30m
- store_artifacts:
path: app/build/reports
destination: reports
Expand Down
2 changes: 1 addition & 1 deletion app/internal_version_code.txt
@@ -1 +1 @@
2013150896
2013150898
2 changes: 1 addition & 1 deletion app/internal_version_name.txt
@@ -1 +1 @@
3.6.0
3.7.0
4 changes: 2 additions & 2 deletions app/src/main/graphql/checkout.graphql
Expand Up @@ -17,8 +17,8 @@ mutation CancelBacking($backingId: ID!, $note: String) {
}
}

mutation UpdateBacking($backingId: ID!, $amount: String, $locationId: String,$rewardIds: [ID!], $paymentSourceId: String) {
updateBacking(input: { id: $backingId, amount: $amount, locationId: $locationId, rewardIds: $rewardIds, paymentSourceId: $paymentSourceId}) {
mutation UpdateBacking($backingId: ID!, $amount: String, $locationId: String,$rewardIds: [ID!], $paymentSourceId: String, $intentClientSecret: String) {
updateBacking(input: { id: $backingId, amount: $amount, locationId: $locationId, rewardIds: $rewardIds, paymentSourceId: $paymentSourceId, intentClientSecret: $intentClientSecret}) {
checkout {
id
backing {
Expand Down

0 comments on commit 78f2717

Please sign in to comment.