candidhealth 0.36.1 → 0.37.0
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/charge_capture/client.rb +30 -0
- data/lib/candidhealth/charge_capture/v_1/client.rb +1250 -0
- data/lib/candidhealth/charge_capture/v_1/types/charge_capture.rb +116 -0
- data/lib/candidhealth/charge_capture/v_1/types/charge_capture_data.rb +727 -0
- data/lib/candidhealth/charge_capture/v_1/types/charge_capture_page.rb +88 -0
- data/lib/candidhealth/charge_capture/v_1/types/charge_capture_status.rb +19 -0
- data/lib/candidhealth/commons/types/not_implemented_error_message.rb +60 -0
- data/lib/candidhealth/diagnoses/client.rb +2 -2
- data/lib/candidhealth/encounter_providers/v_2/client.rb +16 -16
- data/lib/candidhealth/encounters/v_4/client.rb +34 -34
- data/lib/candidhealth/guarantor/v_1/client.rb +2 -2
- data/lib/candidhealth/service_lines/v_2/client.rb +2 -2
- data/lib/candidhealth.rb +7 -0
- data/lib/requests.rb +2 -2
- data/lib/types_export.rb +5 -0
- metadata +12 -5
data/lib/requests.rb
CHANGED
@@ -43,7 +43,7 @@ module CandidApiClient
|
|
43
43
|
|
44
44
|
# @return [Hash{String => String}]
|
45
45
|
def get_headers
|
46
|
-
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.
|
46
|
+
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.37.0" }
|
47
47
|
headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless token.nil?
|
48
48
|
headers
|
49
49
|
end
|
@@ -87,7 +87,7 @@ module CandidApiClient
|
|
87
87
|
|
88
88
|
# @return [Hash{String => String}]
|
89
89
|
def get_headers
|
90
|
-
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.
|
90
|
+
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.37.0" }
|
91
91
|
headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless token.nil?
|
92
92
|
headers
|
93
93
|
end
|
data/lib/types_export.rb
CHANGED
@@ -4,6 +4,10 @@ require_relative "candidhealth/auth/v_2/types/auth_get_token_response"
|
|
4
4
|
require_relative "candidhealth/auth/v_2/types/too_many_requests_error_type"
|
5
5
|
require_relative "candidhealth/billing_notes/v_2/types/billing_note_base"
|
6
6
|
require_relative "candidhealth/billing_notes/v_2/types/billing_note"
|
7
|
+
require_relative "candidhealth/charge_capture/v_1/types/charge_capture_page"
|
8
|
+
require_relative "candidhealth/charge_capture/v_1/types/charge_capture"
|
9
|
+
require_relative "candidhealth/charge_capture/v_1/types/charge_capture_data"
|
10
|
+
require_relative "candidhealth/charge_capture/v_1/types/charge_capture_status"
|
7
11
|
require_relative "candidhealth/claim_submission/v_1/types/claim_frequency_type_code"
|
8
12
|
require_relative "candidhealth/claim_submission/v_1/types/external_claim_submission_create"
|
9
13
|
require_relative "candidhealth/claim_submission/v_1/types/claim_submission_record_create"
|
@@ -356,6 +360,7 @@ require_relative "candidhealth/commons/types/http_service_unavailable_error_mess
|
|
356
360
|
require_relative "candidhealth/commons/types/request_validation_error"
|
357
361
|
require_relative "candidhealth/commons/types/updates_disabled_due_to_external_system_integration_error_message"
|
358
362
|
require_relative "candidhealth/commons/types/organization_not_authorized_error_message"
|
363
|
+
require_relative "candidhealth/commons/types/not_implemented_error_message"
|
359
364
|
require_relative "candidhealth/commons/types/phone_number"
|
360
365
|
require_relative "candidhealth/commons/types/phone_number_type"
|
361
366
|
require_relative "candidhealth/commons/types/delay_reason_code"
|
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.
|
4
|
+
version: 0.37.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ''
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: async-http-faraday
|
@@ -105,6 +105,12 @@ files:
|
|
105
105
|
- lib/candidhealth/billing_notes/v_2/client.rb
|
106
106
|
- lib/candidhealth/billing_notes/v_2/types/billing_note.rb
|
107
107
|
- lib/candidhealth/billing_notes/v_2/types/billing_note_base.rb
|
108
|
+
- lib/candidhealth/charge_capture/client.rb
|
109
|
+
- lib/candidhealth/charge_capture/v_1/client.rb
|
110
|
+
- lib/candidhealth/charge_capture/v_1/types/charge_capture.rb
|
111
|
+
- lib/candidhealth/charge_capture/v_1/types/charge_capture_data.rb
|
112
|
+
- lib/candidhealth/charge_capture/v_1/types/charge_capture_page.rb
|
113
|
+
- lib/candidhealth/charge_capture/v_1/types/charge_capture_status.rb
|
108
114
|
- lib/candidhealth/claim_submission/v_1/types/claim_frequency_type_code.rb
|
109
115
|
- lib/candidhealth/claim_submission/v_1/types/claim_submission_record_create.rb
|
110
116
|
- lib/candidhealth/claim_submission/v_1/types/external_claim_submission_create.rb
|
@@ -123,6 +129,7 @@ files:
|
|
123
129
|
- lib/candidhealth/commons/types/insurance_type_code.rb
|
124
130
|
- lib/candidhealth/commons/types/intended_submission_medium.rb
|
125
131
|
- lib/candidhealth/commons/types/network_type.rb
|
132
|
+
- lib/candidhealth/commons/types/not_implemented_error_message.rb
|
126
133
|
- lib/candidhealth/commons/types/organization_not_authorized_error_message.rb
|
127
134
|
- lib/candidhealth/commons/types/patient_relationship_to_insured_code_all.rb
|
128
135
|
- lib/candidhealth/commons/types/phone_number.rb
|
@@ -622,7 +629,7 @@ metadata:
|
|
622
629
|
homepage_uri: https://github.com/candidhealth/candid-ruby
|
623
630
|
source_code_uri: https://github.com/candidhealth/candid-ruby
|
624
631
|
changelog_uri: https://github.com/candidhealth/candid-ruby/blob/master/CHANGELOG.md
|
625
|
-
post_install_message:
|
632
|
+
post_install_message:
|
626
633
|
rdoc_options: []
|
627
634
|
require_paths:
|
628
635
|
- lib
|
@@ -638,7 +645,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
638
645
|
version: '0'
|
639
646
|
requirements: []
|
640
647
|
rubygems_version: 3.1.6
|
641
|
-
signing_key:
|
648
|
+
signing_key:
|
642
649
|
specification_version: 4
|
643
650
|
summary: ''
|
644
651
|
test_files: []
|