change_health 3.5.0 → 3.5.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7885934a9f3e1fba5250c70c43ebcc0ed9b4df5b4bf78e832e6f542efa20923
|
|
4
|
+
data.tar.gz: e5eb64dc022f02cbee0ac756823bf66fe8857f7fa00e0bd4e1249ddda57b0823
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9016ac80c8164a66cab62a1a2078bbcbcbb53f0249d37c2214954a5a7e9c0f5f40bebf173ce37275e219b785dcc31a912e4e21a86657e377ad832f07084cd76f
|
|
7
|
+
data.tar.gz: 57cab83269d9615344adeef02b4c6f7b021c0604368cff9966697595fc75243e02cfcb62f8aef7c4334215a92f49a2f1740d5e8cbb6ebafc247967844b3c4a23
|
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
|
+
# [3.5.1] - 2022-04-12
|
|
9
|
+
|
|
10
|
+
* Added properties of `lineAdjudicationInformation` and `otherSubscriberInformation` so they can serialize correctly into JSON
|
|
11
|
+
|
|
8
12
|
# [3.5.0] - 2022-04-08
|
|
9
13
|
|
|
10
14
|
### Added
|
|
@@ -341,6 +345,8 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
|
341
345
|
* Authentication
|
|
342
346
|
* Configuration
|
|
343
347
|
|
|
348
|
+
[3.5.1]: https://github.com/WeInfuse/change_health/compare/v3.4.0...v3.5.1
|
|
349
|
+
[3.5.0]: https://github.com/WeInfuse/change_health/compare/v3.4.0...v3.5.0
|
|
344
350
|
[3.4.0]: https://github.com/WeInfuse/change_health/compare/v3.3.0...v3.4.0
|
|
345
351
|
[3.3.0]: https://github.com/WeInfuse/change_health/compare/v3.2.0...v3.3.0
|
|
346
352
|
[3.2.0]: https://github.com/WeInfuse/change_health/compare/v3.1.0...v3.2.0
|
|
@@ -15,6 +15,7 @@ module ChangeHealth
|
|
|
15
15
|
property :serviceFacilityLocation, from: :service_facility_location, required: false
|
|
16
16
|
property :serviceLines, from: :service_lines, required: false
|
|
17
17
|
property :signatureIndicator, from: :signature_indicator, required: false
|
|
18
|
+
property :otherSubscriberInformation, from: :other_subscriber_information, required: false
|
|
18
19
|
|
|
19
20
|
def add_service_line(service_line)
|
|
20
21
|
self[:serviceLines] ||= []
|
|
@@ -6,6 +6,7 @@ module ChangeHealth
|
|
|
6
6
|
property :serviceDate, from: :service_date, required: false
|
|
7
7
|
property :professionalService, from: :professional_service, required: false
|
|
8
8
|
property :renderingProvider, from: :rendering_provider, required: false
|
|
9
|
+
property :lineAdjudicationInformation, from: :line_adjudication_information, required: false
|
|
9
10
|
end
|
|
10
11
|
end
|
|
11
12
|
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: 3.5.
|
|
4
|
+
version: 3.5.1
|
|
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-04-
|
|
11
|
+
date: 2022-04-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|