rock_rms 6.0.5 → 6.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0c860673f10c0a690acb6b028347d8a1710ccb53b014a096103060cdc93a914e
4
- data.tar.gz: 31960073bd5ae7af6ce63e2a83b559f7377a07f2fdfadcc265e02cb8ca3136a0
3
+ metadata.gz: 20e7d7e1e833ece1a5641e1a74ee0b6240ec4ce8a512c8b7fe973adc3780339c
4
+ data.tar.gz: 8391948e2cd15912b483d6a819302ac41d0035381dc5a5518a1df22b4c928acb
5
5
  SHA512:
6
- metadata.gz: d5fdcfeec02a400267129f701274df44eceaf98e5a8f28bf36acf96967ec7306cea4afc764d886babde61d326b677ad998e4f9a2d4de9557eb5758e3158db880
7
- data.tar.gz: 32ce26f879b8f55ccbb748c29765da3c9df53284a7f0eb4a26422492643dfa03a9620359467d57c3b5f434b336733ec8d9f34a6f99cf0c25b21a727573a9d965
6
+ metadata.gz: 687e8a8a571e589abe59a181ea509cc69987fe498ad55f4196b0e10fd6738fa907f40615d36e81e9371d15236db61c6f67db7c5c61be27b92bb48c5e78e15c9e
7
+ data.tar.gz: 573f11a04dbe380cf2383ea803f09df6b608068d595f3dc1e04d72be81729f1b518390a72b269f26f0e95499c33d73560669389672487847d0295b0689d87099
@@ -5,16 +5,18 @@ module RockRMS
5
5
  module RecurringDonationDetail
6
6
  def create_recurring_donation_detail(
7
7
  recurring_donation_id:,
8
+ fee_coverage_amount: nil,
8
9
  fund_id:,
9
10
  amount:
10
11
  )
11
-
12
12
  options = {
13
13
  'AccountId' => fund_id,
14
14
  'Amount' => amount,
15
15
  'ScheduledTransactionId' => recurring_donation_id
16
16
  }
17
17
 
18
+ options['FeeCoverageAmount'] = fee_coverage_amount if fee_coverage_amount
19
+
18
20
  post(recurring_donation_detail_path, options)
19
21
  end
20
22
 
@@ -1,3 +1,3 @@
1
1
  module RockRMS
2
- VERSION = '6.0.5'.freeze
2
+ VERSION = '6.0.6'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rock_rms
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.5
4
+ version: 6.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-16 00:00:00.000000000 Z
11
+ date: 2022-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday