candidhealth 0.35.2 → 0.35.3
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/lib/candidhealth/pre_encounter/appointments/v_1/types/appointment.rb +12 -14
- data/lib/candidhealth/pre_encounter/client.rb +5 -5
- data/lib/candidhealth/pre_encounter/common/types/base_model.rb +104 -0
- data/lib/candidhealth/pre_encounter/coverages/v_1/types/coverage.rb +10 -10
- data/lib/candidhealth/pre_encounter/notes/client.rb +32 -0
- data/lib/candidhealth/pre_encounter/notes/v_1/client.rb +257 -0
- data/lib/candidhealth/pre_encounter/notes/v_1/types/mutable_note.rb +86 -0
- data/lib/candidhealth/pre_encounter/notes/v_1/types/note.rb +149 -0
- data/lib/candidhealth/pre_encounter/patients/v_1/client.rb +18 -6
- data/lib/candidhealth/pre_encounter/patients/v_1/types/mutable_patient.rb +18 -2
- data/lib/candidhealth/pre_encounter/patients/v_1/types/mutable_patient_with_mrn.rb +18 -2
- data/lib/candidhealth/pre_encounter/patients/v_1/types/patient.rb +26 -10
- data/lib/candidhealth/pre_encounter/tags/client.rb +32 -0
- data/lib/candidhealth/pre_encounter/tags/v_1/client.rb +311 -0
- data/lib/candidhealth/pre_encounter/tags/v_1/types/mutable_tag.rb +63 -0
- data/lib/candidhealth/pre_encounter/tags/v_1/types/tag.rb +123 -0
- data/lib/candidhealth/pre_encounter/tags/v_1/types/tag_page.rb +90 -0
- data/lib/requests.rb +2 -2
- data/lib/types_export.rb +6 -0
- metadata +12 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: candidhealth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.35.
|
4
|
+
version: 0.35.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ''
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: async-http-faraday
|
@@ -471,6 +471,7 @@ files:
|
|
471
471
|
- lib/candidhealth/pre_encounter/common/types/additional_payer_information.rb
|
472
472
|
- lib/candidhealth/pre_encounter/common/types/address.rb
|
473
473
|
- lib/candidhealth/pre_encounter/common/types/address_use.rb
|
474
|
+
- lib/candidhealth/pre_encounter/common/types/base_model.rb
|
474
475
|
- lib/candidhealth/pre_encounter/common/types/canonical_non_insurance_payer_association.rb
|
475
476
|
- lib/candidhealth/pre_encounter/common/types/contact_point.rb
|
476
477
|
- lib/candidhealth/pre_encounter/common/types/contact_point_use.rb
|
@@ -524,6 +525,10 @@ files:
|
|
524
525
|
- lib/candidhealth/pre_encounter/lists/v_1/types/appointment_list_page.rb
|
525
526
|
- lib/candidhealth/pre_encounter/lists/v_1/types/patient_list_item.rb
|
526
527
|
- lib/candidhealth/pre_encounter/lists/v_1/types/patient_list_page.rb
|
528
|
+
- lib/candidhealth/pre_encounter/notes/client.rb
|
529
|
+
- lib/candidhealth/pre_encounter/notes/v_1/client.rb
|
530
|
+
- lib/candidhealth/pre_encounter/notes/v_1/types/mutable_note.rb
|
531
|
+
- lib/candidhealth/pre_encounter/notes/v_1/types/note.rb
|
527
532
|
- lib/candidhealth/pre_encounter/patients/client.rb
|
528
533
|
- lib/candidhealth/pre_encounter/patients/v_1/client.rb
|
529
534
|
- lib/candidhealth/pre_encounter/patients/v_1/types/authorization.rb
|
@@ -539,6 +544,11 @@ files:
|
|
539
544
|
- lib/candidhealth/pre_encounter/patients/v_1/types/patient.rb
|
540
545
|
- lib/candidhealth/pre_encounter/patients/v_1/types/patient_page.rb
|
541
546
|
- lib/candidhealth/pre_encounter/patients/v_1/types/referral.rb
|
547
|
+
- lib/candidhealth/pre_encounter/tags/client.rb
|
548
|
+
- lib/candidhealth/pre_encounter/tags/v_1/client.rb
|
549
|
+
- lib/candidhealth/pre_encounter/tags/v_1/types/mutable_tag.rb
|
550
|
+
- lib/candidhealth/pre_encounter/tags/v_1/types/tag.rb
|
551
|
+
- lib/candidhealth/pre_encounter/tags/v_1/types/tag_page.rb
|
542
552
|
- lib/candidhealth/remits/v_1/types/payee.rb
|
543
553
|
- lib/candidhealth/remits/v_1/types/payee_identifier.rb
|
544
554
|
- lib/candidhealth/service_facility/client.rb
|