change_health 4.0.0 → 4.1.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: 61fbaa1ebca6d1f3f6a8a2674d07e11b2f96a3eccc7e6176aa25284d541134cb
4
- data.tar.gz: 1a6abf496339d316071c33e36f8c64b2cb8c995849b8d263146c67230f4d3943
3
+ metadata.gz: 9bbc1e710e4746b0aa9a3b4b3189d512a331866898146784d8e9581b29067197
4
+ data.tar.gz: 348dcd9c463548cc237a1e505aacb0c66616d63e478ae404ea3a18fe335a7545
5
5
  SHA512:
6
- metadata.gz: 8683182931c2dbe546f5230335b5349e4362d96b01ea50d0d6811ecda55a6ce703a8404e5e6aaaed33ea4d4181af159bfc0c7293001361765e758e831097e13f
7
- data.tar.gz: a166e936b7d07d346e30434ca52417966bf6764d4af5216b262256e9d106974c3ef0f6cd38ad8dd0516aa9091b786adccfc6cddf0ea2bb257d66cb349de1b9e0
6
+ metadata.gz: 0a14286f7f3d39c38ae891c7d2094dd99df356a4169f23b3fe72daa8eaa5a7353d2aa79f8d3c12f74ceb2f73d2d63688fc463a5f746786243f978d7b70de864d
7
+ data.tar.gz: 064e0cab9b729afade6eb158ea093bbd15c512dea122f91561edc3f0c0f0daa5c805c995a4bd953f7fcf123d0209f8ee3b471356825f6c19453f83f6cec004a5
data/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ 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
+ # [4.1.0] - 2022-06-17
9
+
10
+ ### Added
11
+ Report835Claim - Add another way to get `service_provider_npi`
12
+
8
13
  # [4.0.0] - 2022-05-26
9
14
 
10
15
  ### Changed
@@ -368,6 +373,7 @@ Added the ability to hit professional claim submission API. For more details, se
368
373
  * Authentication
369
374
  * Configuration
370
375
 
376
+ [4.1.0]: https://github.com/WeInfuse/change_health/compare/v4.0.0...v4.1.0
371
377
  [4.0.0]: https://github.com/WeInfuse/change_health/compare/v3.5.4...v4.0.0
372
378
  [3.5.4]: https://github.com/WeInfuse/change_health/compare/v3.5.3...v3.5.4
373
379
  [3.5.3]: https://github.com/WeInfuse/change_health/compare/v3.5.2...v3.5.3
@@ -49,7 +49,8 @@ module ChangeHealth
49
49
  payer_claim_control_number = payment_info.dig('claimPaymentInfo', 'payerClaimControlNumber')
50
50
  service_provider_npi =
51
51
  payment_info.dig('renderingProvider', 'npi') ||
52
- detail_info.dig('providerSummaryInformation', 'providerIdentifier')
52
+ detail_info.dig('providerSummaryInformation', 'providerIdentifier') ||
53
+ transaction.dig('payee', 'npi')
53
54
  total_charge_amount = payment_info.dig('claimPaymentInfo', 'totalClaimChargeAmount')
54
55
 
55
56
  claim_payment_remark_codes = []
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '4.0.0'.freeze
2
+ VERSION = '4.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_health
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Crockett
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-05-26 00:00:00.000000000 Z
11
+ date: 2022-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty