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 +4 -4
- data/lib/rock_rms/response/base.rb +2 -1
- data/lib/rock_rms/response/fund.rb +1 -2
- data/lib/rock_rms/response/person.rb +1 -1
- data/lib/rock_rms/version.rb +1 -1
- data/spec/rock_rms/response/attribute_value_spec.rb +2 -1
- data/spec/rock_rms/response/content_channel_item_spec.rb +1 -1
- data/spec/rock_rms/response/content_channel_spec.rb +1 -1
- data/spec/rock_rms/response/content_channel_type_spec.rb +1 -1
- data/spec/rock_rms/response/defined_value_spec.rb +1 -1
- data/spec/rock_rms/response/recurring_donation_spec.rb +1 -0
- data/spec/rock_rms/response/registration_session_spec.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a47a90e0cf5276b8f7a82f4773ca6fa0dea78e3ccaea73725ca9de6a3ae7771
|
4
|
+
data.tar.gz: f6acd478f4cc58384e70b732f94a711d43a07a72a1f4cc0fba9121cedb46d238
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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)
|
@@ -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)
|
data/lib/rock_rms/version.rb
CHANGED
@@ -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(
|
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",
|