change_health 5.11.0 → 5.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/change_health/request/report.rb +2 -2
- data/lib/change_health/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: befb490616371ee0383cd25a2f9eff8a5b755afa3382a7f143c418db6237d719
|
4
|
+
data.tar.gz: 935bf936aa51f76482366e313194bc6f5ac2e04114f75fadd7c4a991862ed27c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31bdc7fae7e01cddfab61ab8bbed0b0c121b6fd4d27f8b5fac079e5c4e85cb7d4a530eedd4a2a7230deb086a9f5c10a17e781c19839cc35038ba752619233c6d
|
7
|
+
data.tar.gz: e629c5213a541f4536d4b7e7fb293230c54147b1794b9d26c6a48cfdef4e835ccc10bc43e9723594fc6bb2c3f65bf208c264444f5ca3479739ef2415787a5a99
|
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.12.0] - 2024-04-26
|
9
|
+
|
10
|
+
### Added
|
11
|
+
|
12
|
+
* more_url option to ChangeHealth::Request::Claim::Report
|
13
|
+
|
8
14
|
# [5.11.0] - 2024-04-23
|
9
15
|
|
10
16
|
### Added
|
@@ -650,6 +656,7 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
650
656
|
* Authentication
|
651
657
|
* Configuration
|
652
658
|
|
659
|
+
[5.12.0]: https://github.com/WeInfuse/change_health/compare/v5.11.0...v5.12.0
|
653
660
|
[5.11.0]: https://github.com/WeInfuse/change_health/compare/v5.10.0...v5.11.0
|
654
661
|
[5.10.0]: https://github.com/WeInfuse/change_health/compare/v5.9.0...v5.10.0
|
655
662
|
[5.9.0]: https://github.com/WeInfuse/change_health/compare/v5.8.1...v5.9.0
|
@@ -5,8 +5,8 @@ module ChangeHealth
|
|
5
5
|
ENDPOINT = '/medicalnetwork/reports/v2'.freeze
|
6
6
|
HEALTH_CHECK_ENDPOINT = ENDPOINT + '/healthcheck'.freeze
|
7
7
|
|
8
|
-
def self.report_list(headers: nil)
|
9
|
-
endpoint = ChangeHealth::Connection.endpoint_for(self)
|
8
|
+
def self.report_list(headers: nil, more_url: nil)
|
9
|
+
endpoint = ChangeHealth::Connection.endpoint_for(self) + more_url.to_s
|
10
10
|
final_headers = ChangeHealth::Request::Claim::Report.report_headers(headers)
|
11
11
|
ChangeHealth::Response::Claim::ReportListData.new(response: ChangeHealth::Connection.new.request(
|
12
12
|
endpoint: endpoint, verb: :get, headers: final_headers
|
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.
|
4
|
+
version: 5.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Crockett
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-04-
|
11
|
+
date: 2024-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -128,7 +128,7 @@ dependencies:
|
|
128
128
|
- - "~>"
|
129
129
|
- !ruby/object:Gem::Version
|
130
130
|
version: '0.9'
|
131
|
-
description:
|
131
|
+
description:
|
132
132
|
email:
|
133
133
|
- mike.crockett@weinfuse.com
|
134
134
|
executables: []
|
@@ -206,7 +206,7 @@ licenses:
|
|
206
206
|
- MIT
|
207
207
|
metadata:
|
208
208
|
allowed_push_host: https://rubygems.org
|
209
|
-
post_install_message:
|
209
|
+
post_install_message:
|
210
210
|
rdoc_options: []
|
211
211
|
require_paths:
|
212
212
|
- lib
|
@@ -222,7 +222,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
222
222
|
version: '0'
|
223
223
|
requirements: []
|
224
224
|
rubygems_version: 3.1.6
|
225
|
-
signing_key:
|
225
|
+
signing_key:
|
226
226
|
specification_version: 4
|
227
227
|
summary: Ruby wrapper for the ChangeHealth API
|
228
228
|
test_files: []
|