change_health 5.6.0 → 5.7.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: 8495cb12f20da060485853dced1cd55349f12f832d2248fac2df969cb010bdac
4
- data.tar.gz: 146f312abc8a2e1aa29ba48aec980201c100b6675ddeb3552a8a9b0f7428c5ba
3
+ metadata.gz: 2474bb16e85188bc6cd475f6d4af2171db908ebf6bbee0b8d1c4999bf3b53251
4
+ data.tar.gz: 269d3c75f370cf70828bd8b30614c00c16df551cb7c0745d4216076b7bfc6c73
5
5
  SHA512:
6
- metadata.gz: 59fea4e29a8a61b08fd30ddaba4e507b0e7aa0f4caaeb99aa50445121e5f8e408ea71dd91074800a5277dba545d3a1bb48040e2ef690f7d8c663f63b516893ba
7
- data.tar.gz: 97eced181397c5c9629028a077c068e7e4aed773d919488eb6979d6e19ea5caf707ba290b785cfa2a56985f0eefa3e79f163b9ec1bbaaf2809ab8222008a862f
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 :billingPayToAddressName, from: :billing_pay_to_address_name, required: false
19
- property :claimInformation, from: :claim_information, required: false
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, required: false
22
- property :headers, required: false
23
- property :payToAddress, from: :pay_to_address, required: false
24
- property :providers, required: false
25
- property :receiver, required: false
26
- property :submitter, required: false
27
- property :subscriber, required: false
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, required: false
30
- property :tradingPartnerName, from: :trading_partner_name, required: false
31
- property :tradingPartnerServiceId, from: :trading_partner_service_id, required: false
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] ||= []
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '5.6.0'.freeze
2
+ VERSION = '5.7.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_health
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.6.0
4
+ version: 5.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Crockett