eligible 3.0.0.beta18 → 3.0.0.beta24

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: a8c57fd811488f2050499f6d54989829cac578479e2d463fa4784909611f9913
4
- data.tar.gz: b1d64e539b3905fb3cd360a1cb558b36f4e7195e74d19cb5124fc30e78b4a697
3
+ metadata.gz: 8e57779a8a0f203990c6057592dc118459d42fd0fd6a384de625a11ff6233f72
4
+ data.tar.gz: dab69b1825791f3944fc0ab28e5dfcea9207291e3d8f556609113d8d9ad3e40d
5
5
  SHA512:
6
- metadata.gz: 027fdd3f290da7a679ac0c8f8e55aba1748204330be089a09e041d518848aa4ead23ca4a8a9c32be788b764130475c2e13655a677adbf54cb0727befd45e3e2f
7
- data.tar.gz: 17c73894d9df42807f2b9ae78970c8bf7cbeb254fc04a8bd59452381b29297b89d11701a17cffcc709087b1da4f2402d3e6cc6f18de9417623f2ae15dea15da9
6
+ metadata.gz: d1d34b721e811ec7f678919f82f2c053f3ae050690f99387c028c2ab3b83e8f89d28663f226279590dc4a0f00da62b2d63604e0a31dbf526fa47dc71d01b30d8
7
+ data.tar.gz: 135dfc80b156d359046b7fba0d9af421a21f42d811b33480a6987bd4635096830ddab7a656078c668dbd4ea66e72011ee556178f81dfe564356f42f2b6fb1922
data/CHANGELOG.md CHANGED
@@ -1,10 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.0.0.beta24 - 2021-04-01
4
+ - Updated pinned GDS SSL certificate
5
+
6
+ ## 3.0.0.beta23 - 2020-11-13
7
+ - Bug fixes
8
+
9
+ ## 3.0.0.beta22 - 2020-10-21
10
+ - Bug fixes
11
+
12
+ ## 3.0.0.beta21 - 2020-10-21
13
+ - Add post method for CE API to avoid 414 error with large X12 inputs
14
+
15
+ ## 3.0.0.beta20 - 2020-08-17
16
+ - Bug fixes
17
+
18
+ ## 3.0.0.beta19 - 2020-07-28
19
+ - Added refunds and balance_captures REST API endpoints
20
+
3
21
  ## 3.0.0.beta18 - 2020-07-24
4
22
  - Added claim_submit endpoint API url for PatientStatement endpoint
5
23
 
6
24
  ## 3.0.0.beta17 - 2020-07-13
7
- - Added support for report API endpoints
25
+ - Bug fixes
8
26
 
9
27
  ## 3.0.0.beta16 - 2020-07-10
10
28
  - Migrated "Patient" endpoint to "PatientRecord"
data/lib/eligible.rb CHANGED
@@ -45,6 +45,7 @@ require 'eligible/icd'
45
45
  require 'eligible/v1_0/rest_api_base'
46
46
  require 'eligible/v1_0/action'
47
47
  require 'eligible/v1_0/attribute'
48
+ require 'eligible/v1_0/balance_capture'
48
49
  require 'eligible/v1_0/charge'
49
50
  require 'eligible/v1_0/claim'
50
51
  require 'eligible/v1_0/claim_service_line'
@@ -69,6 +70,7 @@ require 'eligible/v1_0/patient_question'
69
70
  require 'eligible/v1_0/patient_questionnaire'
70
71
  require 'eligible/v1_0/product'
71
72
  require 'eligible/v1_0/provider'
73
+ require 'eligible/v1_0/refund'
72
74
  require 'eligible/v1_0/remark'
73
75
  require 'eligible/v1_0/rule'
74
76
  require 'eligible/v1_0/session'
@@ -77,9 +79,6 @@ require 'eligible/v1_0/treatment'
77
79
  require 'eligible/v1_0/value_list'
78
80
  require 'eligible/v1_0/value_list_item'
79
81
  require 'eligible/v1_0/verification'
80
- require 'eligible/v1_0/reports/accuracy_stats'
81
- require 'eligible/v1_0/reports/estimate_friction'
82
- require 'eligible/v1_0/reports/in_scope_distribution'
83
82
 
84
83
  # Errors
85
84
  require 'eligible/errors/eligible_error'
@@ -93,7 +92,8 @@ module Eligible
93
92
  @@test = false
94
93
  @@api_version = '1.5'
95
94
  @@api_base = "https://gds.eligibleapi.com/v#{@@api_version}"
96
- @@fingerprints = %w(a1cd762a9f4be0f3b6bdd6300e52c6ce8d7d67f5
95
+ @@fingerprints = %w(75132C1AB844500C6AD1F26B49C11D36933CE868
96
+ a1cd762a9f4be0f3b6bdd6300e52c6ce8d7d67f5
97
97
  36d6b6f98a2b9bcdf4321d1978553e23cf044b53
98
98
  d93b7697100fe978ae0f78fbf2a2443cc1958ca3
99
99
  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
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class BalanceCapture < RestAPIBase
6
+ ENDPOINT_NAME = 'balance_captures'.freeze
7
+
8
+ def self.create(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.update(_params, _opts = {})
13
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
14
+ end
15
+
16
+ def self.delete(_params, _opts = {})
17
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class Refund < RestAPIBase
6
+ ENDPOINT_NAME = 'refunds'.freeze
7
+
8
+ def self.create(_params, _opts = {})
9
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
10
+ end
11
+
12
+ def self.update(_params, _opts = {})
13
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
14
+ end
15
+
16
+ def self.delete(_params, _opts = {})
17
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
18
+ end
19
+ end
20
+ end
21
+ end
@@ -1,3 +1,3 @@
1
1
  module Eligible
2
- VERSION = '3.0.0.beta18'.freeze
2
+ VERSION = '3.0.0.beta24'.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.beta18
4
+ version: 3.0.0.beta24
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-07-24 00:00:00.000000000 Z
13
+ date: 2021-04-01 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client
@@ -157,6 +157,7 @@ files:
157
157
  - lib/eligible/util.rb
158
158
  - lib/eligible/v1_0/action.rb
159
159
  - lib/eligible/v1_0/attribute.rb
160
+ - lib/eligible/v1_0/balance_capture.rb
160
161
  - lib/eligible/v1_0/charge.rb
161
162
  - lib/eligible/v1_0/claim.rb
162
163
  - lib/eligible/v1_0/claim_service_line.rb
@@ -181,10 +182,8 @@ files:
181
182
  - lib/eligible/v1_0/payment_report.rb
182
183
  - lib/eligible/v1_0/product.rb
183
184
  - lib/eligible/v1_0/provider.rb
185
+ - lib/eligible/v1_0/refund.rb
184
186
  - lib/eligible/v1_0/remark.rb
185
- - lib/eligible/v1_0/reports/accuracy_stats.rb
186
- - lib/eligible/v1_0/reports/estimate_friction.rb
187
- - lib/eligible/v1_0/reports/in_scope_distribution.rb
188
187
  - lib/eligible/v1_0/rest_api_base.rb
189
188
  - lib/eligible/v1_0/rule.rb
190
189
  - lib/eligible/v1_0/session.rb
@@ -200,7 +199,7 @@ homepage: https://github.com/eligible/eligible-ruby
200
199
  licenses:
201
200
  - MIT
202
201
  metadata: {}
203
- post_install_message:
202
+ post_install_message:
204
203
  rdoc_options: []
205
204
  require_paths:
206
205
  - lib
@@ -215,9 +214,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
215
214
  - !ruby/object:Gem::Version
216
215
  version: 1.3.1
217
216
  requirements: []
218
- rubyforge_project:
219
- rubygems_version: 2.7.10
220
- signing_key:
217
+ rubygems_version: 3.0.9
218
+ signing_key:
221
219
  specification_version: 4
222
220
  summary: Ruby wrapper for the Eligible API
223
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 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 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