rock_rms 9.11.0 → 9.12.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: e4f07cd77c57944ea52c4264eaf89d0911d002c3cc8d6b326b1d2834747ce47d
4
+ data.tar.gz: 8128a9f917cb0cc2b792157d9b41d97d22ccbbaa10bb766d84b88d78e3201f9b
5
5
  SHA512:
6
- metadata.gz: 6b4074d68ebba687263afd91aa9fc7f8e4d23ced4605549293af715316b8a0072be47a4abb5a610a9bf36841154d5fc2eb2faa239482a3d3307a50f819e8d499
7
- data.tar.gz: 1d95449a355b7caccc3e8fa52189fbc5d86b4566b0db2f89704b28d19a170ca1c80d51b8d500c67a1c9ce50bc4e1e31b8d39a6921093dc15fa896ac6d1f9afe7
6
+ metadata.gz: 17dc283717b0b4b9591ca985ba59a6bba6ca8f925f5f7237cb88f0bbafe401ad26cf69912b31d980ca4ac19e23cbd3632cf86476bf7939e90816610de6c2b69c
7
+ data.tar.gz: 74beaf6a72b6699bb6279800a69572ab901453bcf7be6f4e496006d4978efaddf287fad6b7315c86f8962b6a98b47806502b71b1558b366c4d269c1d8335ca0e
@@ -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)
@@ -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.12.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: 9.11.0
4
+ version: 9.12.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-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday