rock_rms 9.11.0 → 9.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rock_rms/resources/transaction.rb +5 -2
- data/lib/rock_rms/response/fund.rb +7 -1
- data/lib/rock_rms/response/recurring_donation.rb +1 -0
- data/lib/rock_rms/response/transaction.rb +1 -0
- data/lib/rock_rms/version.rb +1 -1
- data/spec/rock_rms/response/recurring_donation_spec.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85ae43bf13dc9325edc082f80bd9202495f6aed6e8efcbb79e0024a5da21b2d9
|
4
|
+
data.tar.gz: 75d9394810465df9dbafb2caa8fc84ceb4b71e6733738fda9c86efe5d57060fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de57ad9342da60e6c2db73976fcebc16be2e67f2845d0e896a73b68412cdb1c98e9b379dcefddf40fefbc9d175fd9857765dd7b80135c8c3f29cff44b07d28fa
|
7
|
+
data.tar.gz: 9aef85a50b889a2f0f51dac785556f91187cc9a92e2eb0f3564c8e7bd470682d2fe16b30d4042df70acca6cd103ea09aa87a7325ce3e26e3c4e4f2866ddf56fe
|
@@ -29,7 +29,8 @@ module RockRMS
|
|
29
29
|
summary: nil,
|
30
30
|
recurring_donation_id: nil,
|
31
31
|
gateway_id: nil,
|
32
|
-
transaction_type_value_id: 53 # contribution, registration
|
32
|
+
transaction_type_value_id: 53, # contribution, registration
|
33
|
+
show_as_anonymous: nil
|
33
34
|
)
|
34
35
|
|
35
36
|
options = {
|
@@ -59,7 +60,8 @@ module RockRMS
|
|
59
60
|
transaction_type_value_id: nil,
|
60
61
|
authorized_person_id: nil,
|
61
62
|
date: nil,
|
62
|
-
foreign_currency_code_value_id: nil
|
63
|
+
foreign_currency_code_value_id: nil,
|
64
|
+
show_as_anonymous: nil
|
63
65
|
)
|
64
66
|
options = {}
|
65
67
|
|
@@ -73,6 +75,7 @@ module RockRMS
|
|
73
75
|
options['AuthorizedPersonAliasId'] = authorized_person_id if authorized_person_id
|
74
76
|
options['TransactionDateTime'] = date if date
|
75
77
|
options['ForeignCurrencyCodeValueId'] = foreign_currency_code_value_id if foreign_currency_code_value_id
|
78
|
+
options['ShowAsAnonymous'] = show_as_anonymous if show_as_anonymous
|
76
79
|
|
77
80
|
patch(transaction_path(id), options)
|
78
81
|
end
|
@@ -4,7 +4,13 @@ module RockRMS
|
|
4
4
|
MAP = {
|
5
5
|
campus_id: 'CampusId',
|
6
6
|
name: 'Name',
|
7
|
-
|
7
|
+
public_name: 'PublicName',
|
8
|
+
description: 'Description',
|
9
|
+
is_active: 'IsActive',
|
10
|
+
is_public: 'IsPublic',
|
11
|
+
is_tax_deductible: 'IsTaxDeductible',
|
12
|
+
gl_code: 'GlCode',
|
13
|
+
foreign_id: 'ForeignId'
|
8
14
|
}.freeze
|
9
15
|
|
10
16
|
def format_single(data)
|
@@ -10,6 +10,7 @@ module RockRMS
|
|
10
10
|
next_payment_date: 'NextPaymentDate',
|
11
11
|
payment_details: 'FinancialPaymentDetail',
|
12
12
|
person_id: 'AuthorizedPersonAliasId',
|
13
|
+
previous_gateway_schedule_ids: 'PreviousGatewayScheduleIdsJson',
|
13
14
|
start_date: 'StartDate',
|
14
15
|
transaction_details: 'ScheduledTransactionDetails',
|
15
16
|
transaction_code: 'TransactionCode',
|
data/lib/rock_rms/version.rb
CHANGED
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: 9.
|
4
|
+
version: 9.13.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-12-
|
11
|
+
date: 2024-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|