change_health 5.7.0 → 5.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2474bb16e85188bc6cd475f6d4af2171db908ebf6bbee0b8d1c4999bf3b53251
4
- data.tar.gz: 269d3c75f370cf70828bd8b30614c00c16df551cb7c0745d4216076b7bfc6c73
3
+ metadata.gz: 4a22670dd997245072215efbd6d3b597e465800767b120b37a0fa8a480c775c7
4
+ data.tar.gz: a05c3f55926ce3430f24e83fe241b1c201a628e1ff367e7f8afda8d82edf1442
5
5
  SHA512:
6
- metadata.gz: 992532c9d41db62fc2ed362dbbda6cbadffbea55c03809733625788ec60fd490c608cf1b3eac095fb78a627cf8c9b24e5d37790f1ab1a7b62528eda7d1cf4fb2
7
- data.tar.gz: e7b5c2aabd8a61fa9846f3605255a3b05d6a7c3ee377e68badadc1c5845c1dd938207cfb5e4f2c5a6962aaa06d74747a822673b6d917ef68f1a15d6ec02e5742
6
+ metadata.gz: 4fee7e348ba8663eadefa445717cb09e5beb5a303ed1ca6316730c6b2592a8313861c6a42e62568be4270b8f1a9082d34365bfad3f45b22bb17f1e256a39956b
7
+ data.tar.gz: e2bfe19dc884ef8319236aff998968e9e76d3c1200730f6d92c1fe489d08be35735bc69142bfb131a4a161afda88d568a001e267aac15fc9ec5b8ef708a0bc97
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.8.0] - 2024-03-25
9
+
10
+ ### Added
11
+
12
+ * Added configurable endpoint overide for claim report
13
+
8
14
  # [5.7.0] - 2024-03-07
9
15
 
10
16
  ### Added
@@ -619,6 +625,7 @@ Added the ability to hit professional claim submission API. For more details, se
619
625
  * Authentication
620
626
  * Configuration
621
627
 
628
+ [5.8.0]: https://github.com/WeInfuse/change_health/compare/v5.7.0...v5.8.0
622
629
  [5.7.0]: https://github.com/WeInfuse/change_health/compare/v5.6.0...v5.7.0
623
630
  [5.6.0]: https://github.com/WeInfuse/change_health/compare/v5.5.0...v5.6.0
624
631
  [5.5.0]: https://github.com/WeInfuse/change_health/compare/v5.4.2...v5.5.0
@@ -6,21 +6,31 @@ module ChangeHealth
6
6
  HEALTH_CHECK_ENDPOINT = ENDPOINT + '/healthcheck'.freeze
7
7
 
8
8
  def self.report_list(headers: nil)
9
+ endpoint = ChangeHealth::Connection.endpoint_for(self)
9
10
  final_headers = ChangeHealth::Request::Claim::Report.report_headers(headers)
10
11
  ChangeHealth::Response::Claim::ReportListData.new(response: ChangeHealth::Connection.new.request(
11
- endpoint: ENDPOINT, verb: :get, headers: final_headers
12
+ endpoint: endpoint, verb: :get, headers: final_headers
12
13
  ))
13
14
  end
14
15
 
15
- def self.get_report(report_name, as_json_report: true, headers: nil)
16
+ def self.get_report(
17
+ report_name,
18
+ as_json_report: true,
19
+ headers: nil,
20
+ report_type: nil
21
+ )
16
22
  return if report_name.nil? || report_name.empty?
17
23
 
18
24
  final_headers = ChangeHealth::Request::Claim::Report.report_headers(headers)
19
25
 
20
- individual_report_endpoint = "#{ENDPOINT}/#{report_name}"
26
+ endpoint = ChangeHealth::Connection.endpoint_for(self)
27
+
28
+ individual_report_endpoint = "#{endpoint}/#{report_name}"
21
29
 
22
30
  # https://developers.changehealthcare.com/eligibilityandclaims/docs/what-file-types-does-this-api-get-from-the-mailbox
23
- if as_json_report
31
+ if report_type
32
+ individual_report_endpoint += "/#{report_type}"
33
+ elsif as_json_report
24
34
  report_type = ChangeHealth::Response::Claim::ReportData.report_type(report_name)
25
35
  individual_report_endpoint += "/#{report_type}"
26
36
  end
@@ -53,7 +63,8 @@ module ChangeHealth
53
63
 
54
64
  final_headers = ChangeHealth::Request::Claim::Report.report_headers(headers)
55
65
 
56
- individual_report_endpoint = "#{ENDPOINT}/#{report_name}"
66
+ endpoint = ChangeHealth::Connection.endpoint_for(self)
67
+ individual_report_endpoint = "#{endpoint}/#{report_name}"
57
68
 
58
69
  ChangeHealth::Connection.new.request(
59
70
  endpoint: individual_report_endpoint,
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '5.7.0'.freeze
2
+ VERSION = '5.8.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: 5.7.0
4
+ version: 5.8.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: 2024-03-07 00:00:00.000000000 Z
11
+ date: 2024-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty