change_health 5.6.0 → 5.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/change_health/request/submission.rb +17 -12
- data/lib/change_health/version.rb +1 -1
- 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: 2474bb16e85188bc6cd475f6d4af2171db908ebf6bbee0b8d1c4999bf3b53251
|
4
|
+
data.tar.gz: 269d3c75f370cf70828bd8b30614c00c16df551cb7c0745d4216076b7bfc6c73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 992532c9d41db62fc2ed362dbbda6cbadffbea55c03809733625788ec60fd490c608cf1b3eac095fb78a627cf8c9b24e5d37790f1ab1a7b62528eda7d1cf4fb2
|
7
|
+
data.tar.gz: e7b5c2aabd8a61fa9846f3605255a3b05d6a7c3ee377e68badadc1c5845c1dd938207cfb5e4f2c5a6962aaa06d74747a822673b6d917ef68f1a15d6ec02e5742
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
# [5.7.0] - 2024-03-07
|
9
|
+
|
10
|
+
### Added
|
11
|
+
|
12
|
+
* providers - attending, billing, referring, rendering, and supervising - directly to ChangeHealth::Request::Claim::Submission
|
13
|
+
|
8
14
|
# [5.6.0] - 2024-03-06
|
9
15
|
|
10
16
|
### Added
|
@@ -613,6 +619,7 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
613
619
|
* Authentication
|
614
620
|
* Configuration
|
615
621
|
|
622
|
+
[5.7.0]: https://github.com/WeInfuse/change_health/compare/v5.6.0...v5.7.0
|
616
623
|
[5.6.0]: https://github.com/WeInfuse/change_health/compare/v5.5.0...v5.6.0
|
617
624
|
[5.5.0]: https://github.com/WeInfuse/change_health/compare/v5.4.2...v5.5.0
|
618
625
|
[5.4.2]: https://github.com/WeInfuse/change_health/compare/v5.4.1...v5.4.2
|
@@ -15,20 +15,25 @@ module ChangeHealth
|
|
15
15
|
VALIDATION_ENDPOINT = ENDPOINT + '/validation'.freeze
|
16
16
|
# End Deprecated
|
17
17
|
|
18
|
-
property :
|
19
|
-
property :
|
18
|
+
property :attending
|
19
|
+
property :billing
|
20
|
+
property :billingPayToAddressName, from: :billing_pay_to_address_name
|
21
|
+
property :claimInformation, from: :claim_information
|
20
22
|
property :controlNumber, from: :control_number, required: true, default: ChangeHealth::Models::CONTROL_NUMBER
|
21
|
-
property :dependent
|
22
|
-
property :headers
|
23
|
-
property :payToAddress, from: :pay_to_address
|
24
|
-
property :providers
|
25
|
-
property :receiver
|
26
|
-
property :
|
27
|
-
property :
|
23
|
+
property :dependent
|
24
|
+
property :headers
|
25
|
+
property :payToAddress, from: :pay_to_address
|
26
|
+
property :providers
|
27
|
+
property :receiver
|
28
|
+
property :referring
|
29
|
+
property :rendering
|
30
|
+
property :submitter
|
31
|
+
property :subscriber
|
32
|
+
property :supervising
|
28
33
|
# Need one or the other, trading partner id or trading partner service id
|
29
|
-
property :tradingPartnerId, from: :trading_partner_id
|
30
|
-
property :tradingPartnerName, from: :trading_partner_name
|
31
|
-
property :tradingPartnerServiceId, from: :trading_partner_service_id
|
34
|
+
property :tradingPartnerId, from: :trading_partner_id
|
35
|
+
property :tradingPartnerName, from: :trading_partner_name
|
36
|
+
property :tradingPartnerServiceId, from: :trading_partner_service_id
|
32
37
|
|
33
38
|
def add_provider(provider)
|
34
39
|
self[:providers] ||= []
|