eligible 3.0.0.beta18 → 3.0.0.beta19
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 +3 -0
- data/lib/eligible.rb +2 -0
- data/lib/eligible/v1_0/balance_capture.rb +21 -0
- data/lib/eligible/v1_0/refund.rb +21 -0
- data/lib/eligible/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 137406adb75553021c583abcabdad5d75eb8108aee90003f3fb8e7cd5f58f683
|
4
|
+
data.tar.gz: 4593dfca466f2045e4b9d1c79f04f77db7852243a4ee4480b51d44e637332a4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dffc18fe9e6c62d516e3d3785c7f0a2c4ec2f686e7de2f7928ab25d1ebd35f6776ab5473d9694a8106f8261d93dc61b1fd6f79bbae9d88eb13ff79126543c5a
|
7
|
+
data.tar.gz: ac9dbbec2efedcd42fca46e41677aa8d81b5b5034d2e6417e9484723bbc17beb41ca95f5663ca5853f73cd819e8084d2f85604f9b525d07cfa14b03fe183e2b9
|
data/CHANGELOG.md
CHANGED
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'
|
@@ -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
|
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.beta19
|
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-27 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,6 +182,7 @@ 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
187
|
- lib/eligible/v1_0/reports/accuracy_stats.rb
|
186
188
|
- lib/eligible/v1_0/reports/estimate_friction.rb
|
@@ -215,8 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
215
217
|
- !ruby/object:Gem::Version
|
216
218
|
version: 1.3.1
|
217
219
|
requirements: []
|
218
|
-
|
219
|
-
rubygems_version: 2.7.10
|
220
|
+
rubygems_version: 3.0.6
|
220
221
|
signing_key:
|
221
222
|
specification_version: 4
|
222
223
|
summary: Ruby wrapper for the Eligible API
|