change_health 4.2.1 → 4.2.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a838027e737aa327d1e8abde630eb09124f839916def61fbdf8ef7652ad9fc4
|
4
|
+
data.tar.gz: cfa9d621184f64fe3fe65323488c908fdb4bb0554ccd2598c90d1ca5adffb9a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b9cc402ff58889e4b0505512f203fafe2e6824117022cb04d346b7a11b87d74aa894fa725d340d6ac447bc84804b87ee4149e3373abce9bd07d304511f7a1d9
|
7
|
+
data.tar.gz: c3ac5bdbdb18d40a846aedbec278979833052bacd80ea3a15a0a475660682d91e447ee793aaa0fd995cd19a20b7a4fe1120fc33e943e769924a8b107a873c120
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,10 @@ 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.2.2] - 2022-07-27
|
9
|
+
|
10
|
+
* Fixed ChangeHealth::Response::Claim::Report835ServiceLine's `create_adjustment_detail_array` so that if it is `nil` for `health_care_check_remark_codes`, it does not error out
|
11
|
+
|
8
12
|
# [4.2.1] - 2022-07-08
|
9
13
|
|
10
14
|
### Added
|
@@ -389,6 +393,7 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
389
393
|
* Authentication
|
390
394
|
* Configuration
|
391
395
|
|
396
|
+
[4.2.2]: https://github.com/WeInfuse/change_health/compare/v4.2.0...v4.2.2
|
392
397
|
[4.2.1]: https://github.com/WeInfuse/change_health/compare/v4.2.0...v4.2.1
|
393
398
|
[4.2.0]: https://github.com/WeInfuse/change_health/compare/v4.1.0...v4.2.0
|
394
399
|
[4.1.0]: https://github.com/WeInfuse/change_health/compare/v4.0.0...v4.1.0
|
@@ -42,7 +42,7 @@ module ChangeHealth
|
|
42
42
|
end
|
43
43
|
|
44
44
|
health_care_check_remark_codes = self[:health_care_check_remark_codes]
|
45
|
-
health_care_check_remark_codes
|
45
|
+
health_care_check_remark_codes&.each do |remark_codes|
|
46
46
|
adjustment_details << create_remark_code_adjustments(remark_codes)
|
47
47
|
end
|
48
48
|
adjustment_details
|
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.2.
|
4
|
+
version: 4.2.2
|
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-07-
|
11
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|