eligible 3.0.0.beta17 → 3.0.0.beta18
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 +4 -4
- data/CHANGELOG.md +4 -1
- data/lib/eligible/v1_0/patient_statement.rb +5 -0
- data/lib/eligible/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a8c57fd811488f2050499f6d54989829cac578479e2d463fa4784909611f9913
|
|
4
|
+
data.tar.gz: b1d64e539b3905fb3cd360a1cb558b36f4e7195e74d19cb5124fc30e78b4a697
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 027fdd3f290da7a679ac0c8f8e55aba1748204330be089a09e041d518848aa4ead23ca4a8a9c32be788b764130475c2e13655a677adbf54cb0727befd45e3e2f
|
|
7
|
+
data.tar.gz: 17c73894d9df42807f2b9ae78970c8bf7cbeb254fc04a8bd59452381b29297b89d11701a17cffcc709087b1da4f2402d3e6cc6f18de9417623f2ae15dea15da9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.0.0.beta18 - 2020-07-24
|
|
4
|
+
- Added claim_submit endpoint API url for PatientStatement endpoint
|
|
5
|
+
|
|
3
6
|
## 3.0.0.beta17 - 2020-07-13
|
|
4
7
|
- Added support for report API endpoints
|
|
5
8
|
|
|
6
9
|
## 3.0.0.beta16 - 2020-07-10
|
|
7
|
-
- Migrated "Patient" endpoint to "PatientRecord"
|
|
10
|
+
- Migrated "Patient" endpoint to "PatientRecord"
|
|
8
11
|
|
|
9
12
|
## 3.0.0.beta15 - 2020-06-12
|
|
10
13
|
- Added support for patient questionnaire, patient questions API endpoints
|
|
@@ -49,6 +49,11 @@ module Eligible
|
|
|
49
49
|
def self.reestimate(params, opts = {})
|
|
50
50
|
send_request :post, "/#{endpoint_name}/#{object_id(params)}/reestimate", rest_api_params(params), opts.merge(required_params: [:id])
|
|
51
51
|
end
|
|
52
|
+
|
|
53
|
+
# Submit a claim for a patient statement
|
|
54
|
+
def self.submit_claim(params, opts = {})
|
|
55
|
+
send_request :post, "/#{endpoint_name}/#{object_id(params)}/submit_claim", rest_api_params(params), opts.merge(required_params: [:id])
|
|
56
|
+
end
|
|
52
57
|
end
|
|
53
58
|
end
|
|
54
59
|
end
|
data/lib/eligible/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eligible
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.0.
|
|
4
|
+
version: 3.0.0.beta18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katelyn Gleaon
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2020-07-
|
|
13
|
+
date: 2020-07-24 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rest-client
|
|
@@ -215,7 +215,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
215
215
|
- !ruby/object:Gem::Version
|
|
216
216
|
version: 1.3.1
|
|
217
217
|
requirements: []
|
|
218
|
-
|
|
218
|
+
rubyforge_project:
|
|
219
|
+
rubygems_version: 2.7.10
|
|
219
220
|
signing_key:
|
|
220
221
|
specification_version: 4
|
|
221
222
|
summary: Ruby wrapper for the Eligible API
|