candidhealth 1.14.3 → 1.16.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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/lib/candid/client.rb +11 -1
  3. data/lib/candid/commons/types/bad_request_error_message.rb +11 -0
  4. data/lib/candid/commons/types/claim_adjustment_group_codes.rb +22 -0
  5. data/lib/candid/commons/types/internal_error_message.rb +11 -0
  6. data/lib/candid/commons/types/procedure_modifier.rb +1 -0
  7. data/lib/candid/events/client.rb +17 -0
  8. data/lib/candid/events/v_1/client.rb +64 -0
  9. data/lib/candid/events/v_1/types/event.rb +18 -0
  10. data/lib/candid/events/v_1/types/event_scan_page.rb +16 -0
  11. data/lib/candid/events/v_1/types/get_event_scan_request.rb +17 -0
  12. data/lib/candid/insurance_adjudications/client.rb +17 -0
  13. data/lib/candid/insurance_adjudications/v_1/client.rb +37 -0
  14. data/lib/candid/insurance_adjudications/v_1/types/claim_adjudication.rb +23 -0
  15. data/lib/candid/insurance_adjudications/v_1/types/insurance_adjudication.rb +21 -0
  16. data/lib/candid/insurance_adjudications/v_1/types/service_line_adjudication.rb +27 -0
  17. data/lib/candid/patient_ar/v_1/client.rb +0 -4
  18. data/lib/candid/patient_payments/v_4/types/card_payment_method.rb +11 -0
  19. data/lib/candid/patient_payments/v_4/types/cash_payment_method.rb +11 -0
  20. data/lib/candid/patient_payments/v_4/types/check_payment_method.rb +13 -0
  21. data/lib/candid/patient_payments/v_4/types/patient_payment.rb +3 -0
  22. data/lib/candid/patient_payments/v_4/types/payment_method.rb +19 -0
  23. data/lib/candid/patient_payments/v_4/types/payment_method_detail.rb +18 -0
  24. data/lib/candid/pre_encounter/eligibility_checks/v_1/types/eligibility_request.rb +2 -0
  25. data/lib/candid/service_lines/v_2/types/service_line.rb +1 -0
  26. data/lib/candid/service_lines/v_2/types/service_line_create_base_base.rb +1 -0
  27. data/lib/candid/service_lines/v_2/types/service_line_create_optional.rb +1 -0
  28. data/lib/candid/service_lines/v_2/types/service_line_create_standalone.rb +1 -0
  29. data/lib/candid/service_lines/v_2/types/service_line_update_base.rb +1 -0
  30. data/lib/candid/service_lines/v_2/types/universal_service_line_create_standalone.rb +1 -0
  31. data/lib/candid/version.rb +1 -1
  32. data/lib/candid/x_12/v_1/types/carc.rb +418 -0
  33. data/lib/candid/x_12/v_1/types/claim_adjustment_reason_code.rb +15 -0
  34. data/lib/candid/x_12/v_1/types/rarc.rb +1201 -0
  35. data/lib/candid/x_12/v_1/types/remittance_advice_remark_code.rb +13 -0
  36. data/lib/candid.rb +22 -0
  37. data/reference.md +182 -4
  38. metadata +23 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 268d3b96d7ce14f8e3840b82f54c75b1afc4bde41f18354051decfe45df5148d
4
- data.tar.gz: 36241f5cddbc999ac0eba9f5dd1801e8b7dd9c3231e314c02eb35f1716a4b58f
3
+ metadata.gz: 6895f5f4be310fc99a79e4a950741d7a52ab05cc8e15a1d62d7a7fea6f63a344
4
+ data.tar.gz: 1ffc220cda0f77fa7f57e9d7e78748d1eb1384ef0d69522c533f51086b7d99f8
5
5
  SHA512:
6
- metadata.gz: 155a2fa0a4949376abeae7eba3a23eba05d7045bbe5e7750735d3f8157f16c120ba39699b70d36e57470c18128972339eed83c441cbbdd8e45d41a4f117bf01a
7
- data.tar.gz: e465f77c8c2a235a285e5f0b5f1d1d660b8f7e176b948e8eb8b70e86239b8e70fc05f35c74b958efcefe7aeb283d48a4972b2b1e4b0f4450a3d7efdd65eedc4c
6
+ metadata.gz: ee354cd3227e7868dbda9c9a4342dbafcd75ee316cde74ecb763f33c1f8819e3d8a149f847ee45da4aab45f323d952410df06c4d06395a840be8fafe209e79b1
7
+ data.tar.gz: 7dff42df91a60ee25188ef4832100e616b8713514465b74056fb238ff8145f3a9cd71f23b23c29da54d598c432498da9119eee3cd6fb39b31b62c56b503263ec
data/lib/candid/client.rb CHANGED
@@ -7,7 +7,7 @@ module Candid
7
7
  @raw_client = Candid::Internal::Http::RawClient.new(
8
8
  base_url: base_url,
9
9
  headers: {
10
- "User-Agent": "candidhealth/1.14.3",
10
+ "User-Agent": "candidhealth/1.16.0",
11
11
  "X-Fern-Language": "Ruby"
12
12
  }
13
13
  )
@@ -73,6 +73,11 @@ module Candid
73
73
  @encounters ||= Candid::Encounters::Client.new(client: @raw_client)
74
74
  end
75
75
 
76
+ # @return [Candid::Events::Client]
77
+ def events
78
+ @events ||= Candid::Events::Client.new(client: @raw_client)
79
+ end
80
+
76
81
  # @return [Candid::ExpectedNetworkStatus::Client]
77
82
  def expected_network_status
78
83
  @expected_network_status ||= Candid::ExpectedNetworkStatus::Client.new(client: @raw_client)
@@ -108,6 +113,11 @@ module Candid
108
113
  @import_invoice ||= Candid::ImportInvoice::Client.new(client: @raw_client)
109
114
  end
110
115
 
116
+ # @return [Candid::InsuranceAdjudications::Client]
117
+ def insurance_adjudications
118
+ @insurance_adjudications ||= Candid::InsuranceAdjudications::Client.new(client: @raw_client)
119
+ end
120
+
111
121
  # @return [Candid::InsurancePayments::Client]
112
122
  def insurance_payments
113
123
  @insurance_payments ||= Candid::InsurancePayments::Client.new(client: @raw_client)
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module Commons
5
+ module Types
6
+ class BadRequestErrorMessage < Internal::Types::Model
7
+ field :message, -> { String }, optional: true, nullable: false
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module Commons
5
+ module Types
6
+ module ClaimAdjustmentGroupCodes
7
+ extend Candid::Internal::Types::Enum
8
+
9
+ CO = "CO"
10
+ CR = "CR"
11
+ DE = "DE"
12
+ MA = "MA"
13
+ OA = "OA"
14
+ PI = "PI"
15
+ PR = "PR"
16
+ RR = "RR"
17
+ NC = "NC"
18
+ UNKNOWN = "UNKNOWN"
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module Commons
5
+ module Types
6
+ class InternalErrorMessage < Internal::Types::Model
7
+ field :message, -> { String }, optional: true, nullable: false
8
+ end
9
+ end
10
+ end
11
+ end
@@ -417,6 +417,7 @@ module Candid
417
417
  XS = "XS"
418
418
  XU = "XU"
419
419
  XY = "XY"
420
+ ZZ = "ZZ"
420
421
  end
421
422
  end
422
423
  end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module Events
5
+ class Client
6
+ # @return [Candid::Events::Client]
7
+ def initialize(client:)
8
+ @client = client
9
+ end
10
+
11
+ # @return [Candid::V1::Client]
12
+ def v_1
13
+ @v_1 ||= Candid::Events::V1::Client.new(client: @client)
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,64 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module Events
5
+ module V1
6
+ class Client
7
+ # @return [Candid::Events::V1::Client]
8
+ def initialize(client:)
9
+ @client = client
10
+ end
11
+
12
+ # Scans the last 30 days of events. All results are sorted by created date, descending.
13
+ #
14
+ # @return [Candid::Events::V1::Types::EventScanPage]
15
+ def scan(request_options: {}, **params)
16
+ params = Candid::Internal::Types::Utils.symbolize_keys(params)
17
+ _query_param_names = %i[page_token limit event_types created_before created_after]
18
+ _query = params.slice(*_query_param_names)
19
+ params.except(*_query_param_names)
20
+
21
+ _request = Candid::Internal::JSON::Request.new(
22
+ base_url: request_options[:base_url] || Candid::Environment::PRODUCTION,
23
+ method: "GET",
24
+ path: "/api/events/v1/",
25
+ query: _query
26
+ )
27
+ begin
28
+ _response = @client.send(_request)
29
+ rescue Net::HTTPRequestTimeout
30
+ raise Candid::Errors::TimeoutError
31
+ end
32
+ code = _response.code.to_i
33
+ if code.between?(200, 299)
34
+ Candid::Events::V1::Types::EventScanPage.load(_response.body)
35
+ else
36
+ error_class = Candid::Errors::ResponseError.subclass_for_code(code)
37
+ raise error_class.new(_response.body, code: code)
38
+ end
39
+ end
40
+
41
+ # @return [Candid::Events::V1::Types::Event]
42
+ def get(request_options: {}, **params)
43
+ _request = Candid::Internal::JSON::Request.new(
44
+ base_url: request_options[:base_url] || Candid::Environment::PRODUCTION,
45
+ method: "GET",
46
+ path: "/api/events/v1/#{params[:event_id]}"
47
+ )
48
+ begin
49
+ _response = @client.send(_request)
50
+ rescue Net::HTTPRequestTimeout
51
+ raise Candid::Errors::TimeoutError
52
+ end
53
+ code = _response.code.to_i
54
+ if code.between?(200, 299)
55
+ Candid::Events::V1::Types::Event.load(_response.body)
56
+ else
57
+ error_class = Candid::Errors::ResponseError.subclass_for_code(code)
58
+ raise error_class.new(_response.body, code: code)
59
+ end
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module Events
5
+ module V1
6
+ module Types
7
+ class Event < Internal::Types::Model
8
+ field :id, -> { String }, optional: false, nullable: false
9
+ field :created_at, -> { String }, optional: false, nullable: false
10
+ field :timestamp, -> { String }, optional: false, nullable: false
11
+ field :event_type, -> { String }, optional: false, nullable: false
12
+ field :schema_version, -> { String }, optional: false, nullable: false
13
+ field :payload, -> { Internal::Types::Hash[String, Object] }, optional: false, nullable: false
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module Events
5
+ module V1
6
+ module Types
7
+ class EventScanPage < Internal::Types::Model
8
+ field :next_page_token, -> { String }, optional: true, nullable: false
9
+ field :items, lambda {
10
+ Internal::Types::Array[Candid::Events::V1::Types::Event]
11
+ }, optional: false, nullable: false
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module Events
5
+ module V1
6
+ module Types
7
+ class GetEventScanRequest < Internal::Types::Model
8
+ field :page_token, -> { String }, optional: true, nullable: false
9
+ field :limit, -> { Integer }, optional: true, nullable: false
10
+ field :event_types, -> { String }, optional: true, nullable: false
11
+ field :created_before, -> { String }, optional: true, nullable: false
12
+ field :created_after, -> { String }, optional: true, nullable: false
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module InsuranceAdjudications
5
+ class Client
6
+ # @return [Candid::InsuranceAdjudications::Client]
7
+ def initialize(client:)
8
+ @client = client
9
+ end
10
+
11
+ # @return [Candid::V1::Client]
12
+ def v_1
13
+ @v_1 ||= Candid::InsuranceAdjudications::V1::Client.new(client: @client)
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module InsuranceAdjudications
5
+ module V1
6
+ class Client
7
+ # @return [Candid::InsuranceAdjudications::V1::Client]
8
+ def initialize(client:)
9
+ @client = client
10
+ end
11
+
12
+ # Retrieves a previously created insurance adjudication by its `insurance_adjudication_id`.
13
+ #
14
+ # @return [Candid::InsuranceAdjudications::V1::Types::InsuranceAdjudication]
15
+ def get(request_options: {}, **params)
16
+ _request = Candid::Internal::JSON::Request.new(
17
+ base_url: request_options[:base_url] || Candid::Environment::PRODUCTION,
18
+ method: "GET",
19
+ path: "/api/insurance-adjudications/v1/#{params[:insurance_adjudication_id]}"
20
+ )
21
+ begin
22
+ _response = @client.send(_request)
23
+ rescue Net::HTTPRequestTimeout
24
+ raise Candid::Errors::TimeoutError
25
+ end
26
+ code = _response.code.to_i
27
+ if code.between?(200, 299)
28
+ Candid::InsuranceAdjudications::V1::Types::InsuranceAdjudication.load(_response.body)
29
+ else
30
+ error_class = Candid::Errors::ResponseError.subclass_for_code(code)
31
+ raise error_class.new(_response.body, code: code)
32
+ end
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module InsuranceAdjudications
5
+ module V1
6
+ module Types
7
+ class ClaimAdjudication < Internal::Types::Model
8
+ field :claim_id, -> { String }, optional: false, nullable: false
9
+ field :insurance_allowed_amount_cents, -> { Integer }, optional: true, nullable: false
10
+ field :insurance_paid_amount_cents, -> { Integer }, optional: true, nullable: false
11
+ field :charge_amount_cents, -> { Integer }, optional: true, nullable: false
12
+ field :service_lines, lambda {
13
+ Internal::Types::Hash[String, Internal::Types::Array[Candid::InsuranceAdjudications::V1::Types::ServiceLineAdjudication]]
14
+ }, optional: false, nullable: false
15
+ field :payer_claim_number, -> { String }, optional: true, nullable: false
16
+ field :carcs, lambda {
17
+ Internal::Types::Array[Candid::X12::V1::Types::ClaimAdjustmentReasonCode]
18
+ }, optional: false, nullable: false
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module InsuranceAdjudications
5
+ module V1
6
+ module Types
7
+ class InsuranceAdjudication < Internal::Types::Model
8
+ field :insurance_adjudication_id, -> { String }, optional: false, nullable: false
9
+ field :payer_uuid, -> { String }, optional: false, nullable: false
10
+ field :post_date, -> { String }, optional: true, nullable: false
11
+ field :check_number, -> { String }, optional: true, nullable: false
12
+ field :check_date, -> { String }, optional: false, nullable: false
13
+ field :note, -> { String }, optional: true, nullable: false
14
+ field :claims, lambda {
15
+ Internal::Types::Hash[String, Internal::Types::Array[Candid::InsuranceAdjudications::V1::Types::ClaimAdjudication]]
16
+ }, optional: false, nullable: false
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module InsuranceAdjudications
5
+ module V1
6
+ module Types
7
+ class ServiceLineAdjudication < Internal::Types::Model
8
+ field :service_line_adjudication_id, -> { String }, optional: false, nullable: false
9
+ field :denial_reason, lambda {
10
+ Candid::ServiceLines::V2::Types::DenialReasonContent
11
+ }, optional: true, nullable: false
12
+ field :insurance_allowed_amount_cents, -> { Integer }, optional: true, nullable: false
13
+ field :insurance_paid_amount_cents, -> { Integer }, optional: true, nullable: false
14
+ field :deductible_amount_cents, -> { Integer }, optional: true, nullable: false
15
+ field :coinsurance_amount_cents, -> { Integer }, optional: true, nullable: false
16
+ field :copay_amount_cents, -> { Integer }, optional: true, nullable: false
17
+ field :carcs, lambda {
18
+ Internal::Types::Array[Candid::X12::V1::Types::ClaimAdjustmentReasonCode]
19
+ }, optional: false, nullable: false
20
+ field :rarcs, lambda {
21
+ Internal::Types::Array[Candid::X12::V1::Types::RemittanceAdviceRemarkCode]
22
+ }, optional: false, nullable: false
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -9,8 +9,6 @@ module Candid
9
9
  @client = client
10
10
  end
11
11
 
12
- # NOTE: This service is in-development and can only be used by select partners. Please contact Candid Health to request access.
13
- #
14
12
  # Retrieve a list of inventory records based on the provided filters. Each inventory record provides the latest invoiceable status of the associated claim.
15
13
  # The response is paginated, and the `page_token` can be used to retrieve subsequent pages. Initial requests should not include `page_token`.
16
14
  #
@@ -41,8 +39,6 @@ module Candid
41
39
  end
42
40
  end
43
41
 
44
- # NOTE: This service is in-development and can only be used by select partners. Please contact Candid Health to request access.
45
- #
46
42
  # Provides detailed itemization of invoice data for a specific claim.
47
43
  #
48
44
  # @return [Candid::PatientAr::V1::Types::InvoiceItemizationResponse]
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module PatientPayments
5
+ module V4
6
+ module Types
7
+ class CardPaymentMethod < Internal::Types::Model; end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module PatientPayments
5
+ module V4
6
+ module Types
7
+ class CashPaymentMethod < Internal::Types::Model; end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module PatientPayments
5
+ module V4
6
+ module Types
7
+ class CheckPaymentMethod < Internal::Types::Model
8
+ field :check_number, -> { String }, optional: false, nullable: false
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -19,6 +19,9 @@ module Candid
19
19
  Internal::Types::Array[Candid::Financials::Types::Allocation]
20
20
  }, optional: false, nullable: false
21
21
  field :invoice, -> { String }, optional: true, nullable: false
22
+ field :payment_method_detail, lambda {
23
+ Candid::PatientPayments::V4::Types::PaymentMethodDetail
24
+ }, optional: true, nullable: false
22
25
  end
23
26
  end
24
27
  end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module PatientPayments
5
+ module V4
6
+ module Types
7
+ class PaymentMethod < Internal::Types::Model
8
+ extend Candid::Internal::Types::Union
9
+
10
+ discriminant :type
11
+
12
+ member -> { Candid::PatientPayments::V4::Types::CashPaymentMethod }, key: "CASH"
13
+ member -> { Candid::PatientPayments::V4::Types::CheckPaymentMethod }, key: "CHECK"
14
+ member -> { Candid::PatientPayments::V4::Types::CardPaymentMethod }, key: "CARD"
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module PatientPayments
5
+ module V4
6
+ module Types
7
+ class PaymentMethodDetail < Internal::Types::Model
8
+ field :payment_method, lambda {
9
+ Candid::PatientPayments::V4::Types::PaymentMethod
10
+ }, optional: false, nullable: false
11
+ field :collected_at_address, lambda {
12
+ Candid::Commons::Types::StreetAddressShortZip
13
+ }, optional: true, nullable: false
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -21,6 +21,8 @@ module Candid
21
21
  field :encounter, lambda {
22
22
  Candid::PreEncounter::EligibilityChecks::V1::Types::Encounter
23
23
  }, optional: true, nullable: false
24
+ field :get_existing_check_initiated_after, -> { String }, optional: true, nullable: false
25
+ field :source, -> { String }, optional: true, nullable: false
24
26
  end
25
27
  end
26
28
  end
@@ -68,6 +68,7 @@ module Candid
68
68
  field :has_epsdt_indicator, -> { Internal::Types::Boolean }, optional: true, nullable: false
69
69
  field :has_family_planning_indicator, -> { Internal::Types::Boolean }, optional: true, nullable: false
70
70
  field :note, -> { String }, optional: true, nullable: false
71
+ field :prior_authorization_number, -> { String }, optional: true, nullable: false
71
72
  end
72
73
  end
73
74
  end
@@ -27,6 +27,7 @@ module Candid
27
27
  Internal::Types::Array[Candid::ServiceLines::V2::Types::TestResult]
28
28
  }, optional: true, nullable: false
29
29
  field :note, -> { String }, optional: true, nullable: false
30
+ field :prior_authorization_number, -> { String }, optional: true, nullable: false
30
31
  end
31
32
  end
32
33
  end
@@ -30,6 +30,7 @@ module Candid
30
30
  }, optional: true, nullable: false
31
31
  field :note, -> { String }, optional: true, nullable: false
32
32
  field :revenue_code, -> { String }, optional: true, nullable: false
33
+ field :prior_authorization_number, -> { String }, optional: true, nullable: false
33
34
  end
34
35
  end
35
36
  end
@@ -9,6 +9,7 @@ module Candid
9
9
  field :diagnosis_id_one, -> { String }, optional: true, nullable: false
10
10
  field :diagnosis_id_two, -> { String }, optional: true, nullable: false
11
11
  field :diagnosis_id_three, -> { String }, optional: true, nullable: false
12
+ field :prior_authorization_number, -> { String }, optional: true, nullable: false
12
13
  end
13
14
  end
14
15
  end
@@ -29,6 +29,7 @@ module Candid
29
29
  field :has_epsdt_indicator, -> { Internal::Types::Boolean }, optional: true, nullable: false
30
30
  field :has_family_planning_indicator, -> { Internal::Types::Boolean }, optional: true, nullable: false
31
31
  field :note, -> { String }, optional: true, nullable: false
32
+ field :prior_authorization_number, -> { String }, optional: true, nullable: false
32
33
  end
33
34
  end
34
35
  end
@@ -11,6 +11,7 @@ module Candid
11
11
  field :diagnosis_id_three, -> { String }, optional: true, nullable: false
12
12
  field :revenue_code, -> { String }, optional: true, nullable: false
13
13
  field :procedure_code, -> { String }, optional: true, nullable: false
14
+ field :prior_authorization_number, -> { String }, optional: true, nullable: false
14
15
  end
15
16
  end
16
17
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Candid
4
- VERSION = "1.14.3"
4
+ VERSION = "1.16.0"
5
5
  end