eligible 3.0.0.beta15 → 3.0.0.beta16

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: 6aac2add3d1121cf7c670898956c0287c25308946d9f29bd55f81b8fef5526c5
4
- data.tar.gz: 5275ddcbcdbe02d833ff794e5a74e80c0b81b5d7af758491ff1d99a1819438af
3
+ metadata.gz: 0c6c01db2d68dda38fbc5dd5db33b02515fd85ed6ef386bba13a965e8254cf6e
4
+ data.tar.gz: 3967c3d073da77ce71df48b85d1761c81d5ee0ff99d92d1397405472c31586af
5
5
  SHA512:
6
- metadata.gz: ae710114851b35f5a43d38749abbef7036a3f1870e41bd8a44f2b269af2ba2f40cf2963997a23ab06639a2a03404c1d6efdf2df78bcd4018fc5d6bcc13c933c2
7
- data.tar.gz: 305d4836b384b893646b0a89bfecf7127f480ac8bf788c2fc1cbead6b1db019e7074ae7dd8285eb2d5c632f1471b6bac2ce8b94fc95da84be66bbe27b51d4bfb
6
+ metadata.gz: 2a9b614991699f09b72718b1b721054fc311764b865374efc6efe8c27c8b520d68d4db34e653498256cce27b4063ec0f6ffaef46f6597f57ded44065636c223e
7
+ data.tar.gz: ea8b3d11b9396fafd4fe0dd4ead195d798560adec990a4a2bff7f99872bdc3cd266ee496efe6520ca30e384399f6fd85f9f5654f4a4b2a626455b805ac898093
@@ -1,6 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 3.0.0.beta14 - 2020-06-12
3
+ ## 3.0.0.beta16 - 2020-07-10
4
+ - Migrated "Patient" endpoint to "PatientRecord"
5
+
6
+ ## 3.0.0.beta15 - 2020-06-12
4
7
  - Added support for patient questionnaire, patient questions API endpoints
5
8
 
6
9
  ## 3.0.0.beta14 - 2020-06-08
@@ -61,7 +61,7 @@ require 'eligible/v1_0/file_link'
61
61
  require 'eligible/v1_0/insurance_company'
62
62
  require 'eligible/v1_0/insurance_company_alias'
63
63
  require 'eligible/v1_0/insurance_policy'
64
- require 'eligible/v1_0/patient'
64
+ require 'eligible/v1_0/patient_record'
65
65
  require 'eligible/v1_0/patient_statement'
66
66
  require 'eligible/v1_0/patient_statement_service_line'
67
67
  require 'eligible/v1_0/payment_report'
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ class PatientRecord < RestAPIBase
6
+ ENDPOINT_NAME = 'patient_records'.freeze
7
+ end
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module Eligible
2
- VERSION = '3.0.0.beta15'.freeze
2
+ VERSION = '3.0.0.beta16'.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.beta15
4
+ version: 3.0.0.beta16
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-06-12 00:00:00.000000000 Z
13
+ date: 2020-07-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client
@@ -173,9 +173,9 @@ files:
173
173
  - lib/eligible/v1_0/insurance_company.rb
174
174
  - lib/eligible/v1_0/insurance_company_alias.rb
175
175
  - lib/eligible/v1_0/insurance_policy.rb
176
- - lib/eligible/v1_0/patient.rb
177
176
  - lib/eligible/v1_0/patient_question.rb
178
177
  - lib/eligible/v1_0/patient_questionnaire.rb
178
+ - lib/eligible/v1_0/patient_record.rb
179
179
  - lib/eligible/v1_0/patient_statement.rb
180
180
  - lib/eligible/v1_0/patient_statement_service_line.rb
181
181
  - lib/eligible/v1_0/payment_report.rb
@@ -1,9 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Eligible
4
- module V1_0
5
- class Patient < RestAPIBase
6
- ENDPOINT_NAME = 'patients'.freeze
7
- end
8
- end
9
- end