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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b23081923a526432875b5bd8adfd4ae0c9919bbcf2f7b1c31e221f1f6f43c759
4
- data.tar.gz: ffb972c6a77becf7c03029c7af15d719c73564a2f3efa715fd3e7ddfc42464aa
3
+ metadata.gz: 85ae43bf13dc9325edc082f80bd9202495f6aed6e8efcbb79e0024a5da21b2d9
4
+ data.tar.gz: 75d9394810465df9dbafb2caa8fc84ceb4b71e6733738fda9c86efe5d57060fa
5
5
  SHA512:
6
- metadata.gz: 6b4074d68ebba687263afd91aa9fc7f8e4d23ced4605549293af715316b8a0072be47a4abb5a610a9bf36841154d5fc2eb2faa239482a3d3307a50f819e8d499
7
- data.tar.gz: 1d95449a355b7caccc3e8fa52189fbc5d86b4566b0db2f89704b28d19a170ca1c80d51b8d500c67a1c9ce50bc4e1e31b8d39a6921093dc15fa896ac6d1f9afe7
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
- gl_code: 'GlCode'
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',
@@ -15,6 +15,7 @@ module RockRMS
15
15
  payment_detail_id: 'FinancialPaymentDetailId',
16
16
  transaction_type_id: 'TransactionTypeValueId',
17
17
  source_type_id: 'SourceTypeValueId',
18
+ show_as_anonymous: 'ShowAsAnonymous',
18
19
  }.freeze
19
20
 
20
21
 
@@ -1,3 +1,3 @@
1
1
  module RockRMS
2
- VERSION = '9.11.0'.freeze
2
+ VERSION = '9.13.0'.freeze
3
3
  end
@@ -23,6 +23,7 @@ RSpec.describe RockRMS::Response::RecurringDonation, type: :model do
23
23
  next_payment_date
24
24
  payment_details
25
25
  person_id
26
+ previous_gateway_schedule_ids
26
27
  start_date
27
28
  transaction_details
28
29
  transaction_code
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.11.0
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-03 00:00:00.000000000 Z
11
+ date: 2024-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday