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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce58ab4bcb4de406ced460aa9c930023787d8afdfa9d603da5b51eea5940f848
4
- data.tar.gz: 4446f6ebf258825dd4c6310bf0ba673560dd860e5eba813fe71cafa69e3e55e8
3
+ metadata.gz: a8c57fd811488f2050499f6d54989829cac578479e2d463fa4784909611f9913
4
+ data.tar.gz: b1d64e539b3905fb3cd360a1cb558b36f4e7195e74d19cb5124fc30e78b4a697
5
5
  SHA512:
6
- metadata.gz: febd04dd34ce99c1dacf234160403be82215308e50b5acf487d0fa79154a7c9ccc7930fdbcbe3de3627f0048789ba9452d0d7d339d86eaa9361fabbffd5c3568
7
- data.tar.gz: 3d85a68891c0f50a9972fdd4848c137eecb19d56b97a630e0472de569598e0a2c4e57eec62741d4ecde2c87112e9f797ffea503b2563094245d4d0c61a9ba08a
6
+ metadata.gz: 027fdd3f290da7a679ac0c8f8e55aba1748204330be089a09e041d518848aa4ead23ca4a8a9c32be788b764130475c2e13655a677adbf54cb0727befd45e3e2f
7
+ data.tar.gz: 17c73894d9df42807f2b9ae78970c8bf7cbeb254fc04a8bd59452381b29297b89d11701a17cffcc709087b1da4f2402d3e6cc6f18de9417623f2ae15dea15da9
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Eligible
2
- VERSION = '3.0.0.beta17'.freeze
2
+ VERSION = '3.0.0.beta18'.freeze
3
3
  end
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.beta17
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 00:00:00.000000000 Z
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
- rubygems_version: 3.0.6
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