change_health 5.4.1 → 5.4.2
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: af43602cc9e01d2d00aaf0c370af2b4181b73f6eb44a274dc2ca6f3a4f2db587
|
|
4
|
+
data.tar.gz: 69c3b4623a0980c90c5f08bb32e5678db24828b2f2c88ba430d60b3556155c9e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a016fd6bdeecfb3675b84a221e4be8833363852f3202251e0d52de44ff9e27f585a7c6ab9f407b184a2a733e3fa099f3d116f328dea58c48c2e552172686751
|
|
7
|
+
data.tar.gz: 6ab2c8f756d52aee78c4cf1de226f51b25625f2375a9fa6b25423c91e022f9a54328f0053e9168cf453a795651e0b0a8e49aa0bfc6c179ef4251ed09dd7c1daf
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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
|
+
# [5.4.2] - 2023-10-31
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
* Added demoProjectIdentifier attribute to ChangeHealth::Models::Claim::ClaimSupplementalInformation
|
|
13
|
+
|
|
8
14
|
# [5.4.1] - 2023-10-30
|
|
9
15
|
|
|
10
16
|
### Added
|
|
@@ -593,6 +599,7 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
|
593
599
|
* Authentication
|
|
594
600
|
* Configuration
|
|
595
601
|
|
|
602
|
+
[5.4.2]: https://github.com/WeInfuse/change_health/compare/v5.4.1...v5.4.2
|
|
596
603
|
[5.4.1]: https://github.com/WeInfuse/change_health/compare/v5.4.0...v5.4.1
|
|
597
604
|
[5.4.0]: https://github.com/WeInfuse/change_health/compare/v5.3.1...v5.4.0
|
|
598
605
|
[5.3.1]: https://github.com/WeInfuse/change_health/compare/v5.3.0...v5.3.1
|
data/README.md
CHANGED
|
@@ -363,6 +363,14 @@ claim_submission = ChangeHealth::Request::Claim::Submission.new(
|
|
|
363
363
|
billing_pay_to_address_name: billing_pay_to_address_name
|
|
364
364
|
)
|
|
365
365
|
|
|
366
|
+
claim_supplemental_information = ChangeHealth::Models::Claim::ClaimSupplementalInformation.new(
|
|
367
|
+
claim_control_number: 'claimControlNumber',
|
|
368
|
+
demo_project_identifier: 'demoProjectIdentifier',
|
|
369
|
+
prior_authorization_number: 'priorAuthorizationNumber',
|
|
370
|
+
referral_number: 'referralNumber',
|
|
371
|
+
report_information: 'reportInformation'
|
|
372
|
+
)
|
|
373
|
+
|
|
366
374
|
claim_submission_data = claim_submission.submission(is_professional: false)
|
|
367
375
|
|
|
368
376
|
validation = claim_submission.validation(is_professional: false)
|
|
@@ -3,6 +3,7 @@ module ChangeHealth
|
|
|
3
3
|
module Claim
|
|
4
4
|
class ClaimSupplementalInformation < Model
|
|
5
5
|
property :claimControlNumber, from: :claim_control_number
|
|
6
|
+
property :demoProjectIdentifier, from: :demo_project_identifier
|
|
6
7
|
property :priorAuthorizationNumber, from: :prior_authorization_number
|
|
7
8
|
property :referralNumber, from: :referral_number
|
|
8
9
|
property :reportInformation, from: :report_information
|