change_health 4.0.0 → 4.1.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/CHANGELOG.md +6 -0
- data/lib/change_health/response/claim/report/report_835_data.rb +2 -1
- data/lib/change_health/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9bbc1e710e4746b0aa9a3b4b3189d512a331866898146784d8e9581b29067197
|
|
4
|
+
data.tar.gz: 348dcd9c463548cc237a1e505aacb0c66616d63e478ae404ea3a18fe335a7545
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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 = []
|
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.
|
|
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-
|
|
11
|
+
date: 2022-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|