eligible 3.0.0.beta20 → 3.0.0.beta26

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: bd6809d35bb19d0e9e4ed2540a37afbeb2a52dd01edcd3f28f27ada9577d30c6
4
- data.tar.gz: 8dee37527a5152fd97853ea16edcbf64676d785bbf66ad9c63548cc21e98fffb
3
+ metadata.gz: 9a68c74a027216a43debf740282bc9a28c205e14b35cb8e6c80bbb39c3f1f140
4
+ data.tar.gz: 596eeabe29e060b7c7e17f7a1dd9e37a1cfaf24cda5d56d3ad9ce07852c4656c
5
5
  SHA512:
6
- metadata.gz: d20d05b944f2dd2ba6a72e8bbc697cd192511deb09753c15ab2546275a8647ffe78549b360d46094f9c43e45d85b6e7db3175e5e0a141bfb5ea9b1f45ce391b8
7
- data.tar.gz: 9fe91b93db9a15d087ca526288e081e917f3ef87461c7f0f6aa3b650e0bdcb8dced577fcc7c5974e336bc1f0d6e91735441dd56e20ef5e84b51c10747995d309
6
+ metadata.gz: c0105a112b08fe25fc7f8cf6c9de0505ecbd9ff582d164343d3035842572fba5d2f45bb55524e2e6043fc604a14daa7c468c50726bade8b0b9a7d801548eb081
7
+ data.tar.gz: 4f310201373eb766edf91df8a81ab9b236d9d976787fff7852dc9c30fc086bd7539a5039d07eaf46fcbf616e3fecd9a9d604cd7f911808f89b74811dab102bfe
data/CHANGELOG.md CHANGED
@@ -1,12 +1,25 @@
1
1
  # Changelog
2
2
 
3
- ## 3.0.0.beta20 - 2020-08-17
3
+ ## 3.0.0.beta26 - 2021-05-12
4
+ - Updated pinned GDS SSL certificate for Staging
5
+
6
+ ## 3.0.0.beta25 - 2021-04-12
7
+ - Updated pinned GDS SSL certificate
8
+
9
+ ## 3.0.0.beta24 - 2021-04-01
10
+ - Updated pinned GDS SSL certificate
4
11
 
5
- - Added support for report API endpoint Eligible::V1_0::Reports::Collections
6
- - Added support for report API endpoint Eligible::V1_0::Reports::DenialCounts
7
- - Added support for report API endpoint Eligible::V1_0::Reports::DenialReports
8
- - Added support for report API endpoint Eligible::V1_0::Reports::DistributionRatios
9
- - Added support for report API endpoint Eligible::V1_0::Reports::FinancialMeasures
12
+ ## 3.0.0.beta23 - 2020-11-13
13
+ - Bug fixes
14
+
15
+ ## 3.0.0.beta22 - 2020-10-21
16
+ - Bug fixes
17
+
18
+ ## 3.0.0.beta21 - 2020-10-21
19
+ - Add post method for CE API to avoid 414 error with large X12 inputs
20
+
21
+ ## 3.0.0.beta20 - 2020-08-17
22
+ - Bug fixes
10
23
 
11
24
  ## 3.0.0.beta19 - 2020-07-28
12
25
  - Added refunds and balance_captures REST API endpoints
@@ -15,7 +28,7 @@
15
28
  - Added claim_submit endpoint API url for PatientStatement endpoint
16
29
 
17
30
  ## 3.0.0.beta17 - 2020-07-13
18
- - Added support for report API endpoints
31
+ - Bug fixes
19
32
 
20
33
  ## 3.0.0.beta16 - 2020-07-10
21
34
  - Migrated "Patient" endpoint to "PatientRecord"
@@ -143,7 +156,7 @@
143
156
  - Documentation updates for the endpoints
144
157
 
145
158
  ## 2.6.0 - 2016-02-23
146
- - Added new endpoints customer, original signature pdf and payer.
159
+ - Added new endpoints customer, original signature pdf, and payer.
147
160
  - Added specs
148
161
  - Bumped api version to 1.5
149
162
  - Fixed few bugs
data/lib/eligible.rb CHANGED
@@ -79,14 +79,6 @@ require 'eligible/v1_0/treatment'
79
79
  require 'eligible/v1_0/value_list'
80
80
  require 'eligible/v1_0/value_list_item'
81
81
  require 'eligible/v1_0/verification'
82
- require 'eligible/v1_0/reports/accuracy_stats'
83
- require 'eligible/v1_0/reports/collections'
84
- require 'eligible/v1_0/reports/denial_counts'
85
- require 'eligible/v1_0/reports/denial_reports'
86
- require 'eligible/v1_0/reports/distribution_ratios'
87
- require 'eligible/v1_0/reports/estimate_friction'
88
- require 'eligible/v1_0/reports/financial_measures'
89
- require 'eligible/v1_0/reports/in_scope_distribution'
90
82
 
91
83
  # Errors
92
84
  require 'eligible/errors/eligible_error'
@@ -100,7 +92,9 @@ module Eligible
100
92
  @@test = false
101
93
  @@api_version = '1.5'
102
94
  @@api_base = "https://gds.eligibleapi.com/v#{@@api_version}"
103
- @@fingerprints = %w(a1cd762a9f4be0f3b6bdd6300e52c6ce8d7d67f5
95
+ @@fingerprints = %w(75132c1ab844500c6ad1f26b49c11d36933ce868
96
+ 1c3fe254bded256ea30d0a235bb9881b82701082
97
+ a1cd762a9f4be0f3b6bdd6300e52c6ce8d7d67f5
104
98
  36d6b6f98a2b9bcdf4321d1978553e23cf044b53
105
99
  d93b7697100fe978ae0f78fbf2a2443cc1958ca3
106
100
  896ce24f7a83eb656c040985fdb50ce39f90b813)
@@ -12,6 +12,10 @@ module Eligible
12
12
  send_request :get, '/coverage/cost_estimates.json', params, opts
13
13
  end
14
14
 
15
+ def self.cost_estimate_post(params, opts = {})
16
+ send_request :post, '/coverage/cost_estimates.json', params, opts
17
+ end
18
+
15
19
  def self.batch_medicare_post(params, opts = {})
16
20
  send_request :post, '/medicare/coverage/batch.json', params, opts
17
21
  end
@@ -1,3 +1,3 @@
1
1
  module Eligible
2
- VERSION = '3.0.0.beta20'.freeze
2
+ VERSION = '3.0.0.beta26'.freeze
3
3
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eligible
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.beta20
4
+ version: 3.0.0.beta26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katelyn Gleaon
8
8
  - Rodrigo Dominguez
9
9
  - Aaron Bedra
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-08-17 00:00:00.000000000 Z
13
+ date: 2021-05-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client
@@ -184,14 +184,6 @@ files:
184
184
  - lib/eligible/v1_0/provider.rb
185
185
  - lib/eligible/v1_0/refund.rb
186
186
  - lib/eligible/v1_0/remark.rb
187
- - lib/eligible/v1_0/reports/accuracy_stats.rb
188
- - lib/eligible/v1_0/reports/collections.rb
189
- - lib/eligible/v1_0/reports/denial_counts.rb
190
- - lib/eligible/v1_0/reports/denial_reports.rb
191
- - lib/eligible/v1_0/reports/distribution_ratios.rb
192
- - lib/eligible/v1_0/reports/estimate_friction.rb
193
- - lib/eligible/v1_0/reports/financial_measures.rb
194
- - lib/eligible/v1_0/reports/in_scope_distribution.rb
195
187
  - lib/eligible/v1_0/rest_api_base.rb
196
188
  - lib/eligible/v1_0/rule.rb
197
189
  - lib/eligible/v1_0/session.rb
@@ -207,7 +199,7 @@ homepage: https://github.com/eligible/eligible-ruby
207
199
  licenses:
208
200
  - MIT
209
201
  metadata: {}
210
- post_install_message:
202
+ post_install_message:
211
203
  rdoc_options: []
212
204
  require_paths:
213
205
  - lib
@@ -222,8 +214,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
222
214
  - !ruby/object:Gem::Version
223
215
  version: 1.3.1
224
216
  requirements: []
225
- rubygems_version: 3.0.6
226
- signing_key:
217
+ rubygems_version: 3.0.9
218
+ signing_key:
227
219
  specification_version: 4
228
220
  summary: Ruby wrapper for the Eligible API
229
221
  test_files: []
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- module Reports
6
- class AccuracyStats < RestAPIBase
7
- ENDPOINT_NAME = 'reports/accuracy_stats'.freeze
8
-
9
- def self.create(_params, _opts = {})
10
- fail NotImplementedError, "Not an allowed operation for this endpoint"
11
- end
12
-
13
- def self.update(_params, _opts = {})
14
- fail NotImplementedError, "Not an allowed operation for this endpoint"
15
- end
16
-
17
- def self.delete(_params, _opts = {})
18
- fail NotImplementedError, "Not an allowed operation for this endpoint"
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- module Reports
6
- class Collections < RestAPIBase
7
- ENDPOINT_NAME = 'reports/collections'.freeze
8
-
9
- def self.create(_params, _opts = {})
10
- fail NotImplementedError, "Not an allowed operation for this endpoint"
11
- end
12
-
13
- def self.update(_params, _opts = {})
14
- fail NotImplementedError, "Not an allowed operation for this endpoint"
15
- end
16
-
17
- def self.delete(_params, _opts = {})
18
- fail NotImplementedError, "Not an allowed operation for this endpoint"
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- module Reports
6
- class DenialCounts < RestAPIBase
7
- ENDPOINT_NAME = 'reports/denial_counts'.freeze
8
-
9
- def self.create(_params, _opts = {})
10
- fail NotImplementedError, "Not an allowed operation for this endpoint"
11
- end
12
-
13
- def self.update(_params, _opts = {})
14
- fail NotImplementedError, "Not an allowed operation for this endpoint"
15
- end
16
-
17
- def self.delete(_params, _opts = {})
18
- fail NotImplementedError, "Not an allowed operation for this endpoint"
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- module Reports
6
- class DenialReports < RestAPIBase
7
- ENDPOINT_NAME = 'reports/denial_reports'.freeze
8
-
9
- def self.create(_params, _opts = {})
10
- fail NotImplementedError, "Not an allowed operation for this endpoint"
11
- end
12
-
13
- def self.update(_params, _opts = {})
14
- fail NotImplementedError, "Not an allowed operation for this endpoint"
15
- end
16
-
17
- def self.delete(_params, _opts = {})
18
- fail NotImplementedError, "Not an allowed operation for this endpoint"
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- module Reports
6
- class DistributionRatios < RestAPIBase
7
- ENDPOINT_NAME = 'reports/distribution_ratios'.freeze
8
-
9
- def self.create(_params, _opts = {})
10
- fail NotImplementedError, "Not an allowed operation for this endpoint"
11
- end
12
-
13
- def self.update(_params, _opts = {})
14
- fail NotImplementedError, "Not an allowed operation for this endpoint"
15
- end
16
-
17
- def self.delete(_params, _opts = {})
18
- fail NotImplementedError, "Not an allowed operation for this endpoint"
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- module Reports
6
- class EstimateFriction < RestAPIBase
7
- ENDPOINT_NAME = 'reports/estimate_frictions'.freeze
8
-
9
- def self.create(_params, _opts = {})
10
- fail NotImplementedError, "Not an allowed operation for this endpoint"
11
- end
12
-
13
- def self.update(_params, _opts = {})
14
- fail NotImplementedError, "Not an allowed operation for this endpoint"
15
- end
16
-
17
- def self.delete(_params, _opts = {})
18
- fail NotImplementedError, "Not an allowed operation for this endpoint"
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- module Reports
6
- class FinancialMeasures < RestAPIBase
7
- ENDPOINT_NAME = 'reports/financial_measures'.freeze
8
-
9
- def self.create(_params, _opts = {})
10
- fail NotImplementedError, "Not an allowed operation for this endpoint"
11
- end
12
-
13
- def self.update(_params, _opts = {})
14
- fail NotImplementedError, "Not an allowed operation for this endpoint"
15
- end
16
-
17
- def self.delete(_params, _opts = {})
18
- fail NotImplementedError, "Not an allowed operation for this endpoint"
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- module Reports
6
- class InScopeDistribution < RestAPIBase
7
- ENDPOINT_NAME = 'reports/in_scope_distributions'.freeze
8
-
9
- def self.create(_params, _opts = {})
10
- fail NotImplementedError, "Not an allowed operation for this endpoint"
11
- end
12
-
13
- def self.update(_params, _opts = {})
14
- fail NotImplementedError, "Not an allowed operation for this endpoint"
15
- end
16
-
17
- def self.delete(_params, _opts = {})
18
- fail NotImplementedError, "Not an allowed operation for this endpoint"
19
- end
20
- end
21
- end
22
- end
23
- end