change_health 4.3.0 → 4.4.0

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: c847271b7069a65df06a0d61b2c50d5700c1260a8ed772523a0a8388c8b2d877
4
- data.tar.gz: 898a336cf9e50e168ccf2ac55e4b331cb8bcc3b28e43c354f5558a1009edf876
3
+ metadata.gz: 925c1aa8fb56ca2030f17a15859e2fdb82e75b446857b79bb65919e2dd90b264
4
+ data.tar.gz: 26f4bd0b3061f4a9bcf2862b38094f4bb2a9d2237e7f83fdc6f2286ce4b8b19f
5
5
  SHA512:
6
- metadata.gz: 7ffb725eb781443ad6d626ed064ce241db49def1cd2d9f986c929361c589d0a0d3f5b0bcd8292b3f751f2b4f54bf4b190d2d1d3efa7ea1fe7f8b97bc5a28acad
7
- data.tar.gz: 5b2cf697ca016cd380cc7f1202eb8adaeb3c87521a35db1d60d3c2c4d579da8e69295963a2765742cba81c54902ce1018795bc2bb449155e5d3f36b738e28686
6
+ metadata.gz: 33cc945934d5be4c8a4dcd873808631e5fe05e4c7ab2e9223c0f2b1189b2508304760f618c589f6dd3fc1bcb9fff2011a2d2d99f2f1883283e6d6369a595ba41
7
+ data.tar.gz: ecd2f03947b4c36c955f2882b692363835578cd35d168f7405506f8315b75048c8d157b982ff36ab35345861992f86fd161a0ea454b56febf23be0ce5275911f
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
+ # [4.4.0] - 2022-08-29
9
+
10
+ ### Added
11
+
12
+ * Claim Submission - add payToAddress field
13
+
8
14
  # [4.3.0] - 2022-08-08
9
15
 
10
16
  ### Added
@@ -412,6 +418,7 @@ Added the ability to hit professional claim submission API. For more details, se
412
418
  * Authentication
413
419
  * Configuration
414
420
 
421
+ [4.4.0]: https://github.com/WeInfuse/change_health/compare/v4.3.0...v4.4.0
415
422
  [4.3.0]: https://github.com/WeInfuse/change_health/compare/v4.2.5...v4.3.0
416
423
  [4.2.5]: https://github.com/WeInfuse/change_health/compare/v4.2.4...v4.2.5
417
424
  [4.2.4]: https://github.com/WeInfuse/change_health/compare/v4.2.3...v4.2.4
data/README.md CHANGED
@@ -205,6 +205,7 @@ claim_submission = ChangeHealth::Request::Claim::Submission.new(
205
205
  claim_information: claim_information,
206
206
  dependent: dependent,
207
207
  headers: professional_headers,
208
+ pay_to_address: address,
208
209
  providers: [provider],
209
210
  receiver: receiver,
210
211
  submitter: claim_submitter,
@@ -10,6 +10,7 @@ module ChangeHealth
10
10
  property :claimInformation, from: :claim_information, required: false
11
11
  property :controlNumber, from: :control_number, required: true, default: ChangeHealth::Models::CONTROL_NUMBER
12
12
  property :dependent, required: false
13
+ property :payToAddress, from: :pay_to_address, required: false
13
14
  property :providers, required: false
14
15
  property :receiver, required: false
15
16
  property :submitter, required: false
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '4.3.0'.freeze
2
+ VERSION = '4.4.0'.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.3.0
4
+ version: 4.4.0
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-08-08 00:00:00.000000000 Z
11
+ date: 2022-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty