change_health 4.2.2 → 4.2.3

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: 6a838027e737aa327d1e8abde630eb09124f839916def61fbdf8ef7652ad9fc4
4
- data.tar.gz: cfa9d621184f64fe3fe65323488c908fdb4bb0554ccd2598c90d1ca5adffb9a4
3
+ metadata.gz: b059abf622d3d96ec78d14583cc9314685522a64dbe61c5a7128cb27a4cbe65a
4
+ data.tar.gz: fb4c0fd30b948916bd8afe89f304bfc7a44645d4b7410daa4a0b774f818957e6
5
5
  SHA512:
6
- metadata.gz: 7b9cc402ff58889e4b0505512f203fafe2e6824117022cb04d346b7a11b87d74aa894fa725d340d6ac447bc84804b87ee4149e3373abce9bd07d304511f7a1d9
7
- data.tar.gz: c3ac5bdbdb18d40a846aedbec278979833052bacd80ea3a15a0a475660682d91e447ee793aaa0fd995cd19a20b7a4fe1120fc33e943e769924a8b107a873c120
6
+ metadata.gz: 3132df55edb34e77aa510220e13a5ed4656dcc77e5b634e7f5f1798a6a8266557ab68bf032932b3a8b803a935781c83009630387b2963acabd9e2509a4b3834e
7
+ data.tar.gz: 4c061079950821c04077e99621d70abad892fcf1b7f8af39e39a176f7f15fbdacc54e0a4a55db72ff7339d65f5af434d066509fee713e5c50fd43f9484aad7d8
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.3] - 2022-07-28
9
+
10
+ * Adjusted `adjustmentAmount` in object returned from create_adjustment_detail_array to a `0` value instead of an empty string
11
+
8
12
  # [4.2.2] - 2022-07-27
9
13
 
10
14
  * 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
@@ -393,7 +397,8 @@ Added the ability to hit professional claim submission API. For more details, se
393
397
  * Authentication
394
398
  * Configuration
395
399
 
396
- [4.2.2]: https://github.com/WeInfuse/change_health/compare/v4.2.0...v4.2.2
400
+ [4.2.2]: https://github.com/WeInfuse/change_health/compare/v4.2.2...v4.2.3
401
+ [4.2.2]: https://github.com/WeInfuse/change_health/compare/v4.2.1...v4.2.2
397
402
  [4.2.1]: https://github.com/WeInfuse/change_health/compare/v4.2.0...v4.2.1
398
403
  [4.2.0]: https://github.com/WeInfuse/change_health/compare/v4.1.0...v4.2.0
399
404
  [4.1.0]: https://github.com/WeInfuse/change_health/compare/v4.0.0...v4.1.0
@@ -26,7 +26,7 @@ module ChangeHealth
26
26
  adjustment_array = remark_codes_array.map do |_key, value|
27
27
  {
28
28
  adjustmentReasonCode: value,
29
- adjustmentAmount: ""
29
+ adjustmentAmount: "0"
30
30
  }
31
31
  end
32
32
  {
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '4.2.2'.freeze
2
+ VERSION = '4.2.3'.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.2.2
4
+ version: 4.2.3
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-27 00:00:00.000000000 Z
11
+ date: 2022-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty