eligible 3.0.0.beta22 → 3.0.0.beta23

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: 3841d177af1db7fcc0aefbe2958e8ed40e87803cc456bbc6688ad249201b69c6
4
- data.tar.gz: 13472b60e88b2e7c62a99faaa446a46312d86be3c1cb9257482f9d2ff17d4a9d
3
+ metadata.gz: db10d28c31accb934e67e1f550bc099bb0c60f2d152d49e13a77c599cded2805
4
+ data.tar.gz: 5f36e403ad32770c7fc65be4456efc4bb8de46aac34047dd801544bc1ff4a66a
5
5
  SHA512:
6
- metadata.gz: 96152f327de15484635abea11d4435972df55a8d2cb52620395cf30b9437bb4a6dd3a6a06c7d9a28f7a672e90f59ab976289cda0864cb3f79524cee781f8f01d
7
- data.tar.gz: 767da8f6c1b424eda30c49f90db3a5d74b1f78c9f8f3f99e5feaa020bfe6564fc51202ea2c28d5b5e7544de753b4658404ce05a9a3949772bc833db317ecf574
6
+ metadata.gz: be9d3d9177090867ac0b6ce997442e1d9d320b2eb022fc817dacaac5851c3933dbb4d9769023fa079c6255f2301364e7bd202abe7f93eb1335d7e786bbda19a1
7
+ data.tar.gz: ecf1bb064487814c6f4ee5d18ff87b64796d705bbc2e1dd3abf883563bda7aea41260fa6498302946326e1d794e57fc491e5a98bcdeeceff882cee1f15893d84
@@ -1,12 +1,16 @@
1
1
  # Changelog
2
2
 
3
- ## 3.0.0.beta20 - 2020-08-17
3
+ ## 3.0.0.beta23 - 2020-11-13
4
+ - Bug fixes
5
+
6
+ ## 3.0.0.beta22 - 2020-10-21
7
+ - Bug fixes
4
8
 
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
9
+ ## 3.0.0.beta21 - 2020-10-21
10
+ - Add post method for CE API to avoid 414 error with large X12 inputs
11
+
12
+ ## 3.0.0.beta20 - 2020-08-17
13
+ - Bug fixes
10
14
 
11
15
  ## 3.0.0.beta19 - 2020-07-28
12
16
  - Added refunds and balance_captures REST API endpoints
@@ -15,7 +19,7 @@
15
19
  - Added claim_submit endpoint API url for PatientStatement endpoint
16
20
 
17
21
  ## 3.0.0.beta17 - 2020-07-13
18
- - Added support for report API endpoints
22
+ - Bug fixes
19
23
 
20
24
  ## 3.0.0.beta16 - 2020-07-10
21
25
  - Migrated "Patient" endpoint to "PatientRecord"
@@ -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'
@@ -1,3 +1,3 @@
1
1
  module Eligible
2
- VERSION = '3.0.0.beta22'.freeze
2
+ VERSION = '3.0.0.beta23'.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.beta22
4
+ version: 3.0.0.beta23
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-10-21 00:00:00.000000000 Z
13
+ date: 2020-11-18 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,9 +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
- rubyforge_project:
226
- rubygems_version: 2.7.10
227
- signing_key:
217
+ rubygems_version: 3.0.8
218
+ signing_key:
228
219
  specification_version: 4
229
220
  summary: Ruby wrapper for the Eligible API
230
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