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: 662e2ffab8b29a602148c99d26a99b1d19bf4ddb8fdf70f8307e0099ea39283b
4
- data.tar.gz: 7d521347d6d866e0bf47bf592d1ec4ba18a008311a81a2d3835be048b92ef54e
3
+ metadata.gz: af43602cc9e01d2d00aaf0c370af2b4181b73f6eb44a274dc2ca6f3a4f2db587
4
+ data.tar.gz: 69c3b4623a0980c90c5f08bb32e5678db24828b2f2c88ba430d60b3556155c9e
5
5
  SHA512:
6
- metadata.gz: '064021867b8b53a42d923fb58285698360313fb7742022fe625487bde8d372c8aa7ccdf2aca67f9cf68fce45678943e4ba5466d1449ead7175b45ceb56365c2f'
7
- data.tar.gz: 1846e1127af573bcc7373f277aea0e668b7c1554318f37f43a4e120fc6603e8dfa57d08c39511397c148accf14914dd52061ef64e74d42611df284e1a037c75e
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
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '5.4.1'.freeze
2
+ VERSION = '5.4.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_health
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.4.1
4
+ version: 5.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Crockett