change_health 4.2.0 → 4.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/change_health/models/claim/submission/provider.rb +1 -0
- data/lib/change_health/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab6434a50dea3253f56d988e9728d4daccb27ee1e41e78cb8b642a4f0346cc62
|
4
|
+
data.tar.gz: 64d7f86261cb9478a1f4b6707047be21cdd9d76efad0d61121bc536985ffbc4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd3d0602a6cfdbefbd680ee6bdc9bca214a53b778bd9935e7889c248443479a1dda2ac039074a7f65cf14e46dcf6be4c8dede2dbf97ac5d2930a229fedb87380
|
7
|
+
data.tar.gz: 4a10d6a31399dd3cf400df2fe52cfb8753b1b57e4d8c16a62cdad4e705d134e65f60cf8994be32dac15d9a74c649928666a256e914c1e9994860901204cd8005
|
data/CHANGELOG.md
CHANGED
@@ -5,20 +5,30 @@ 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.1] - 2022-07-08
|
9
|
+
|
10
|
+
### Added
|
11
|
+
|
12
|
+
* Added `taxonomyCode` property on `ChangeHealth::Models::Claim` so it will serialize properly into JSON
|
13
|
+
|
8
14
|
# [4.2.0] - 2022-06-23
|
9
15
|
|
10
16
|
### Added
|
17
|
+
|
11
18
|
* Dependent for Claim Submission
|
12
19
|
|
13
20
|
# [4.1.0] - 2022-06-17
|
14
21
|
|
15
22
|
### Added
|
23
|
+
|
16
24
|
Report835Claim - Add another way to get `service_provider_npi`
|
17
25
|
|
18
26
|
# [4.0.0] - 2022-05-26
|
19
27
|
|
20
28
|
### Changed
|
29
|
+
|
21
30
|
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
|
31
|
+
|
22
32
|
* check_issue_or_eft_effective_date
|
23
33
|
* check_or_eft_trace_number
|
24
34
|
* payer_identifier
|
@@ -52,6 +62,7 @@ The assumption that only one payment would be in a report835 was wrong. Correcte
|
|
52
62
|
# [3.4.0] - 2022-03-23
|
53
63
|
|
54
64
|
### Added
|
65
|
+
|
55
66
|
* Report835Claim - check_or_eft_trace_number & check_issue_or_eft_effective_date
|
56
67
|
|
57
68
|
# [3.3.0] - 2022-02-11
|
@@ -378,6 +389,7 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
378
389
|
* Authentication
|
379
390
|
* Configuration
|
380
391
|
|
392
|
+
[4.2.1]: https://github.com/WeInfuse/change_health/compare/v4.2.0...v4.2.1
|
381
393
|
[4.2.0]: https://github.com/WeInfuse/change_health/compare/v4.1.0...v4.2.0
|
382
394
|
[4.1.0]: https://github.com/WeInfuse/change_health/compare/v4.0.0...v4.1.0
|
383
395
|
[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
|
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.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-
|
11
|
+
date: 2022-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|