change_health 4.2.0 → 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: 2637bc096949ab2c8f7b81fa9309775c6eaa85c11deccc290ffcb9f4bb1087bf
4
- data.tar.gz: ff804042b7637317f61235c0c9a1a3b14ce3e0e5dd2b50abeb35e5d4ca186626
3
+ metadata.gz: b059abf622d3d96ec78d14583cc9314685522a64dbe61c5a7128cb27a4cbe65a
4
+ data.tar.gz: fb4c0fd30b948916bd8afe89f304bfc7a44645d4b7410daa4a0b774f818957e6
5
5
  SHA512:
6
- metadata.gz: 78583b56f70eebd10a5548c027255fe3634c364d2e8851ae2c3b59f3d4c2d2fa3320a05b443b8d580bc75dbe6ab31d6b51968b4d563965c1431b53dafa901ed3
7
- data.tar.gz: 95ee855e844601a69b79a3298b4a04cac51bb5294635f4691187a2db2542c32d31fd289dba0ae5ef78ebfd35f475b966519348e86ef17c354bf79a36ec597c39
6
+ metadata.gz: 3132df55edb34e77aa510220e13a5ed4656dcc77e5b634e7f5f1798a6a8266557ab68bf032932b3a8b803a935781c83009630387b2963acabd9e2509a4b3834e
7
+ data.tar.gz: 4c061079950821c04077e99621d70abad892fcf1b7f8af39e39a176f7f15fbdacc54e0a4a55db72ff7339d65f5af434d066509fee713e5c50fd43f9484aad7d8
data/CHANGELOG.md CHANGED
@@ -5,20 +5,38 @@ 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
+
12
+ # [4.2.2] - 2022-07-27
13
+
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
15
+
16
+ # [4.2.1] - 2022-07-08
17
+
18
+ ### Added
19
+
20
+ * Added `taxonomyCode` property on `ChangeHealth::Models::Claim` so it will serialize properly into JSON
21
+
8
22
  # [4.2.0] - 2022-06-23
9
23
 
10
24
  ### Added
25
+
11
26
  * Dependent for Claim Submission
12
27
 
13
28
  # [4.1.0] - 2022-06-17
14
29
 
15
30
  ### Added
31
+
16
32
  Report835Claim - Add another way to get `service_provider_npi`
17
33
 
18
34
  # [4.0.0] - 2022-05-26
19
35
 
20
36
  ### Changed
37
+
21
38
  The assumption that only one payment would be in a report835 was wrong. Corrected that by adding in a model to hold the payment information - Report835Payment. Removed payment related info from Report835Data and Report835Claim. See README for usage
39
+
22
40
  * check_issue_or_eft_effective_date
23
41
  * check_or_eft_trace_number
24
42
  * payer_identifier
@@ -52,6 +70,7 @@ The assumption that only one payment would be in a report835 was wrong. Correcte
52
70
  # [3.4.0] - 2022-03-23
53
71
 
54
72
  ### Added
73
+
55
74
  * Report835Claim - check_or_eft_trace_number & check_issue_or_eft_effective_date
56
75
 
57
76
  # [3.3.0] - 2022-02-11
@@ -378,6 +397,9 @@ Added the ability to hit professional claim submission API. For more details, se
378
397
  * Authentication
379
398
  * Configuration
380
399
 
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
402
+ [4.2.1]: https://github.com/WeInfuse/change_health/compare/v4.2.0...v4.2.1
381
403
  [4.2.0]: https://github.com/WeInfuse/change_health/compare/v4.1.0...v4.2.0
382
404
  [4.1.0]: https://github.com/WeInfuse/change_health/compare/v4.0.0...v4.1.0
383
405
  [4.0.0]: https://github.com/WeInfuse/change_health/compare/v3.5.4...v4.0.0
@@ -10,6 +10,7 @@ module ChangeHealth
10
10
  property :organizationName, from: :organization_name, required: false
11
11
  property :npi, required: false
12
12
  property :providerType, from: :provider_type, required: false
13
+ property :taxonomyCode, from: :taxonomy_code, required: false
13
14
  property :ssn, required: false # or employer id
14
15
  end
15
16
  end
@@ -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
  {
@@ -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.each do |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
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '4.2.0'.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.0
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-06-23 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