eligible 3.0.0.beta8 → 3.0.0.beta9

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: 53592214bfd4b6268ac1b0aa61440c61772aa1fc27508db1ebec7e5a7204ccf5
4
- data.tar.gz: f5290a7b78595181c9c294eb6ed1e5d766c9fe737d335f330dc6b72074d07c05
3
+ metadata.gz: '0980900a3206860647c35d61795ceaa176b18621dd6def8089864870ac93a725'
4
+ data.tar.gz: bdefbc5efb86e2f482be2fbc5d8a757214dc9d0165cf9684ac1a9e4247ca2c82
5
5
  SHA512:
6
- metadata.gz: b2126a3662966130bd79b7467b329eb17d2dccc75cbd2d5d43e390fcd032ebded283f930dd43f799ec23a773e9559a0507ae88ecee932e9609089a045bf518ec
7
- data.tar.gz: 51c19b4405d0d2f92e3f859ad581f2c06fb99ef41d34d3212e589de314100f585ceca214cd7b0f86982586dc1b736c8845797558e70f995bb28592bab30f8fca
6
+ metadata.gz: a2e929c67ce8e77af613aa16d838981eed8fe2afe1e470a19e9aa536093359082b6ab498f0c2051a035663b99514f1d88af45ad89f74e43c4ef28830495fcaa9
7
+ data.tar.gz: 1cabd417dbc9b7d4df37b9835b597ffd0339030f01d09d1a04e3059db526d26b3cdf0beb8d5fced5803214eb10a9a5f4c71b8951e5da69eda0dc7a8f3689ec32
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.0.0.beta9 - 2020-05-04
4
+ - Added support for new REST API endpoints "Charge, Estimate, EstimateServiceLine, Product, Treatment"
5
+
3
6
  ## 3.0.0.beta8 - 2020-04-30
4
7
  - Fixed payment and payment_reports API urls for new PatientStatement endpoint
5
8
 
@@ -43,12 +43,17 @@ require 'eligible/icd'
43
43
 
44
44
  # New REST API Endpoints
45
45
  require 'eligible/v1_0/rest_api_base'
46
+ require 'eligible/v1_0/charge'
47
+ require 'eligible/v1_0/estimate'
48
+ require 'eligible/v1_0/estimate_service_line'
46
49
  require 'eligible/v1_0/file_object'
47
50
  require 'eligible/v1_0/insurance_company'
48
51
  require 'eligible/v1_0/insurance_policy'
49
52
  require 'eligible/v1_0/patient'
50
53
  require 'eligible/v1_0/patient_statement'
51
54
  require 'eligible/v1_0/patient_statement_service_line'
55
+ require 'eligible/v1_0/product'
56
+ require 'eligible/v1_0/treatment'
52
57
 
53
58
  # Errors
54
59
  require 'eligible/errors/eligible_error'
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ class Charge < RestAPIBase
5
+ ENDPOINT_NAME = 'charges'.freeze
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ class Estimate < RestAPIBase
5
+ ENDPOINT_NAME = 'estimates'.freeze
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ class EstimateServiceLine < RestAPIBase
5
+ ENDPOINT_NAME = 'estimate_service_lines'.freeze
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ class Product < RestAPIBase
5
+ ENDPOINT_NAME = 'products'.freeze
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ class Treatment < RestAPIBase
5
+ ENDPOINT_NAME = 'treatments'.freeze
6
+ end
7
+ end
@@ -1,3 +1,3 @@
1
1
  module Eligible
2
- VERSION = '3.0.0.beta8'.freeze
2
+ VERSION = '3.0.0.beta9'.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.beta8
4
+ version: 3.0.0.beta9
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-04-30 00:00:00.000000000 Z
13
+ date: 2020-05-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client
@@ -155,13 +155,18 @@ files:
155
155
  - lib/eligible/session_token.rb
156
156
  - lib/eligible/ticket.rb
157
157
  - lib/eligible/util.rb
158
+ - lib/eligible/v1_0/charge.rb
159
+ - lib/eligible/v1_0/estimate.rb
160
+ - lib/eligible/v1_0/estimate_service_line.rb
158
161
  - lib/eligible/v1_0/file_object.rb
159
162
  - lib/eligible/v1_0/insurance_company.rb
160
163
  - lib/eligible/v1_0/insurance_policy.rb
161
164
  - lib/eligible/v1_0/patient.rb
162
165
  - lib/eligible/v1_0/patient_statement.rb
163
166
  - lib/eligible/v1_0/patient_statement_service_line.rb
167
+ - lib/eligible/v1_0/product.rb
164
168
  - lib/eligible/v1_0/rest_api_base.rb
169
+ - lib/eligible/v1_0/treatment.rb
165
170
  - lib/eligible/version.rb
166
171
  - lib/eligible/visit_type.rb
167
172
  - lib/eligible/x12.rb