rock_rms 9.19.0 → 9.20.0

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: 93942de5bc0730b0857592a1ba4a914dadebeacc233f2c840a0cd4531a79ce43
4
- data.tar.gz: 776db819d6a4b6ab6a583d0e3e4afad2d99b4261393344c5dec0fcec47911a11
3
+ metadata.gz: 3a47a90e0cf5276b8f7a82f4773ca6fa0dea78e3ccaea73725ca9de6a3ae7771
4
+ data.tar.gz: f6acd478f4cc58384e70b732f94a711d43a07a72a1f4cc0fba9121cedb46d238
5
5
  SHA512:
6
- metadata.gz: ccbdd51323e08c90202eed8a61c1ed3a82790fceab7475a8cd7b96b3e74cfa888657f89964828bfe10288da4f7a05f20b2f97708108c4c23aac027ddef279012
7
- data.tar.gz: 0db3d055f7a09120119a815dc249cbedfcc325cc3947b43d2d71d882e546984ff0a582eb6059c67757a033dbb0c4bd648bf893cbde85cb47ba1ed191f11620a8
6
+ metadata.gz: e30ea015ac2a6b2016a95f354647ad5a1230b4b29a416864271c5d3496f2a126eb8dabe05d5f1bf752ed690b63b0096db9f2a50c17f119f725e546023579b7d8
7
+ data.tar.gz: 89402d5f760b4ab13c65786b693f9006eac69bb55c0b06edb082fac9176ec2f5cbf0fd88b919dcab53f381a4f6e4cb2da846ae0a7856e7e398ad175d65588ccd
@@ -11,7 +11,8 @@ module RockRMS
11
11
  created_by_person_alias_id: 'CreatedByPersonAliasId',
12
12
  attributes: 'Attributes',
13
13
  attribute_values: 'AttributeValues',
14
- foreign_key: 'ForeignKey'
14
+ foreign_key: 'ForeignKey',
15
+ foreign_id: 'ForeignId'
15
16
  }.freeze
16
17
 
17
18
  def self.format(data)
@@ -9,8 +9,7 @@ module RockRMS
9
9
  is_active: 'IsActive',
10
10
  is_public: 'IsPublic',
11
11
  is_tax_deductible: 'IsTaxDeductible',
12
- gl_code: 'GlCode',
13
- foreign_id: 'ForeignId'
12
+ gl_code: 'GlCode'
14
13
  }.freeze
15
14
 
16
15
  def format_single(data)
@@ -14,7 +14,7 @@ module RockRMS
14
14
  alias_id: 'PrimaryAliasId',
15
15
  connection_status_value_id: 'ConnectionStatusValueId',
16
16
  record_type_value_id: 'RecordTypeValueId',
17
- primary_family_id: 'PrimaryFamilyId',
17
+ primary_family_id: 'PrimaryFamilyId'
18
18
  }.freeze
19
19
 
20
20
  def format_single(data)
@@ -1,3 +1,3 @@
1
1
  module RockRMS
2
- VERSION = '9.19.0'.freeze
2
+ VERSION = '9.20.0'.freeze
3
3
  end
@@ -14,7 +14,7 @@ RSpec.describe RockRMS::Response::AttributeValue, type: :model do
14
14
 
15
15
  it 'has the correct number keys' do
16
16
  keys = result.first.keys
17
- expect(keys.count).to eq(13)
17
+ expect(keys.count).to eq(14)
18
18
  end
19
19
 
20
20
  it 'translates keys' do
@@ -33,6 +33,7 @@ RSpec.describe RockRMS::Response::AttributeValue, type: :model do
33
33
  description: nil,
34
34
  entity_type_id: 7,
35
35
  foreign_key: nil,
36
+ foreign_id: nil,
36
37
  guid: "abcd",
37
38
  id: 22,
38
39
  key: "JobPulse",
@@ -14,7 +14,7 @@ RSpec.describe RockRMS::Response::ContentChannelItem, type: :model do
14
14
 
15
15
  it 'has the correct number keys' do
16
16
  keys = result.first.keys
17
- expect(keys.count).to eq(14)
17
+ expect(keys.count).to eq(15)
18
18
  end
19
19
 
20
20
  it 'translates keys' do
@@ -14,7 +14,7 @@ RSpec.describe RockRMS::Response::ContentChannel, type: :model do
14
14
 
15
15
  it 'has the correct number keys' do
16
16
  keys = result.first.keys
17
- expect(keys.count).to eq(13)
17
+ expect(keys.count).to eq(14)
18
18
  end
19
19
 
20
20
  it 'translates keys' do
@@ -14,7 +14,7 @@ RSpec.describe RockRMS::Response::ContentChannelType, type: :model do
14
14
 
15
15
  it 'has the correct number keys' do
16
16
  keys = result.first.keys
17
- expect(keys.count).to eq(9)
17
+ expect(keys.count).to eq(10)
18
18
  end
19
19
 
20
20
  it 'translates keys' do
@@ -14,7 +14,7 @@ RSpec.describe RockRMS::Response::DefinedValue, type: :model do
14
14
 
15
15
  it 'has the correct number keys' do
16
16
  keys = result.first.keys
17
- expect(keys.count).to eq(12)
17
+ expect(keys.count).to eq(13)
18
18
  end
19
19
 
20
20
  it 'translates keys' do
@@ -39,6 +39,7 @@ RSpec.describe RockRMS::Response::RecurringDonation, type: :model do
39
39
  attributes
40
40
  attribute_values
41
41
  foreign_key
42
+ foreign_id
42
43
  ]
43
44
 
44
45
  expect(response.keys).to eq(expected_keys)
@@ -31,6 +31,7 @@ RSpec.describe RockRMS::Response::RegistrationSession, type: :model do
31
31
  attributes
32
32
  attribute_values
33
33
  foreign_key
34
+ foreign_id
34
35
  ]
35
36
 
36
37
  expect(response.keys).to eq(expected_keys)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rock_rms
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.19.0
4
+ version: 9.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks