change_health 4.2.1 → 4.2.4

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: ab6434a50dea3253f56d988e9728d4daccb27ee1e41e78cb8b642a4f0346cc62
4
- data.tar.gz: 64d7f86261cb9478a1f4b6707047be21cdd9d76efad0d61121bc536985ffbc4c
3
+ metadata.gz: 5a4c04d63b5d1b40ebcd57353e31098ca6b27ae453f371e9b67c09e4f0c6033a
4
+ data.tar.gz: cbe7ac2226e15502a5816a3fc87eb57fd498fcb4c8c379024affdda1a2d96f89
5
5
  SHA512:
6
- metadata.gz: cd3d0602a6cfdbefbd680ee6bdc9bca214a53b778bd9935e7889c248443479a1dda2ac039074a7f65cf14e46dcf6be4c8dede2dbf97ac5d2930a229fedb87380
7
- data.tar.gz: 4a10d6a31399dd3cf400df2fe52cfb8753b1b57e4d8c16a62cdad4e705d134e65f60cf8994be32dac15d9a74c649928666a256e914c1e9994860901204cd8005
6
+ metadata.gz: 15e4aa4b661a142eab4877e175e245393a40c2d12ec56f6287c6d62992e538e01bf402ca383168fe54bc084856d41eb6c0b3ce2ef9761d8485edb267a0464bf2
7
+ data.tar.gz: 73360d910bde419b9afad65415c7fa0731ce470c117f7525215289aebb9a4404ef7e4f3866ad178c67938c0e322e7b7542ff7a844deb3da8fdbb6e3716f4932b
data/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ 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.4] - 2022-07-28
9
+
10
+ * Removed all RARC Codes (HealthCareCheckRemarkCodes) from JSON
11
+
12
+ # [4.2.3] - 2022-07-28
13
+
14
+ * Adjusted `adjustmentAmount` in object returned from create_adjustment_detail_array to a `0` value instead of an empty string
15
+
16
+ # [4.2.2] - 2022-07-27
17
+
18
+ * 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
19
+
8
20
  # [4.2.1] - 2022-07-08
9
21
 
10
22
  ### Added
@@ -389,6 +401,9 @@ Added the ability to hit professional claim submission API. For more details, se
389
401
  * Authentication
390
402
  * Configuration
391
403
 
404
+ [4.2.4]: https://github.com/WeInfuse/change_health/compare/v4.2.3...v4.2.4
405
+ [4.2.3]: https://github.com/WeInfuse/change_health/compare/v4.2.2...v4.2.3
406
+ [4.2.2]: https://github.com/WeInfuse/change_health/compare/v4.2.1...v4.2.2
392
407
  [4.2.1]: https://github.com/WeInfuse/change_health/compare/v4.2.0...v4.2.1
393
408
  [4.2.0]: https://github.com/WeInfuse/change_health/compare/v4.1.0...v4.2.0
394
409
  [4.1.0]: https://github.com/WeInfuse/change_health/compare/v4.0.0...v4.1.0
@@ -22,29 +22,11 @@ module ChangeHealth
22
22
  }
23
23
  end
24
24
 
25
- def create_remark_code_adjustments(remark_codes_array)
26
- adjustment_array = remark_codes_array.map do |_key, value|
27
- {
28
- adjustmentReasonCode: value,
29
- adjustmentAmount: ""
30
- }
31
- end
32
- {
33
- adjustmentDetails: adjustment_array,
34
- adjustmentGroupCode: ""
35
- }
36
- end
37
-
38
25
  def create_adjustment_detail_array
39
26
  all_service_adjustments = self.service_adjustments
40
27
  adjustment_details = all_service_adjustments.map do |service_adjustments|
41
28
  create_group_adjustments(service_adjustments)
42
29
  end
43
-
44
- health_care_check_remark_codes = self[:health_care_check_remark_codes]
45
- health_care_check_remark_codes.each do |remark_codes|
46
- adjustment_details << create_remark_code_adjustments(remark_codes)
47
- end
48
30
  adjustment_details
49
31
  end
50
32
  end
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '4.2.1'.freeze
2
+ VERSION = '4.2.4'.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.1
4
+ version: 4.2.4
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-08 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