rock_rms 8.16.0 → 8.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c0a94190def4023aaec70bf13cd3691534982a338ea21e9a4e8a73bf99183d9
4
- data.tar.gz: d349931b6b325f1be9fc634cdaf0d5af69778804c3622eb6344c9579b32385cd
3
+ metadata.gz: b7e99fc8409c0d590cb572fb128150b77d957a72cf1675b53df7519d94c05790
4
+ data.tar.gz: 379e1b22537833b6984a6817707923b23a592880633847c091a835f47edf5f30
5
5
  SHA512:
6
- metadata.gz: 052ae0fb7b862b3f3a65e9b718f9eeae3e1bab8d3cb2a38f9aab9b5896bd891b1dc591b2775ffbd14cabc08085e8dbda47207be1207e56aa1657314100626944
7
- data.tar.gz: 8225f87526939f7e0f4d90c676c2e08291059591782575eadad8ebe81893dab8f0cc6b0dc3e95bcd1ff1fdc79ca41e7b29869d41056ce2d8dbecae7b170b50e1
6
+ metadata.gz: d2bd36bb32306724434c43bef67c8af7b721100fe3993507ac7150a643d43711093b23f959763e16f0f589d9d67f6307dd8343c4f9d1c55c796dff5976928161
7
+ data.tar.gz: e4c9b6577f2d4a05afc8d5867f2f908bbfd3635d196fc91db6d00f007d673272f2e4b8033eb3b69b67dd68366dc1932fe40ff1669fb29baab824cdd19f497d8a
@@ -27,7 +27,8 @@ module RockRMS
27
27
  start_date:,
28
28
  summary: nil,
29
29
  status: nil,
30
- status_message: nil
30
+ status_message: nil,
31
+ guid: nil
31
32
  )
32
33
 
33
34
  options = {
@@ -49,6 +50,7 @@ module RockRMS
49
50
  }
50
51
 
51
52
  options['EndDate'] = end_date if end_date
53
+ options['Guid'] = guid if guid
52
54
 
53
55
  post(recurring_donation_path, options)
54
56
  end
@@ -63,7 +65,7 @@ module RockRMS
63
65
  end_date: nil,
64
66
  summary: nil,
65
67
  status: nil,
66
- status_message: nil
68
+ status_message: :default_value
67
69
  )
68
70
  options = { 'NextPaymentDate' => next_payment_date }
69
71
  options['FinancialPaymentDetailId'] = payment_detail_id if payment_detail_id
@@ -73,7 +75,7 @@ module RockRMS
73
75
  options['EndDate'] = end_date if end_date
74
76
  options['Summary'] = summary if summary
75
77
  options['Status'] = status if status
76
- options['StatusMessage'] = status_message if status_message || status_message == ''
78
+ options['StatusMessage'] = status_message unless status_message == :default_value
77
79
 
78
80
  patch(recurring_donation_path(id), options)
79
81
  end
@@ -1,3 +1,3 @@
1
1
  module RockRMS
2
- VERSION = '8.16.0'.freeze
2
+ VERSION = '8.18.0'.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: 8.16.0
4
+ version: 8.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-27 00:00:00.000000000 Z
11
+ date: 2024-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday