candidhealth 1.17.2 → 1.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3eb7a40db31098feb00087d7c723d1b7591fab773c2be2888a91ddf1d0c184a
4
- data.tar.gz: 5d0364b74a509eef5b7a086469c27db74579f2fd31bec58a24465a8b7317e51e
3
+ metadata.gz: 014caa83a47bf64c4618f1cf66a2a0b0e219dbe9d0af23552ebbe5be320a2a2c
4
+ data.tar.gz: bff5822110009fa07cc4874310266df9eb03e626a2764ea7db67b228bcbd4ae3
5
5
  SHA512:
6
- metadata.gz: 864a5f17ec17836105e54c80a340bd95f052550684e4dd00998b1778b9c9d42b59e365725ddd622401433affa3b44a24ecc07ea166948024a4e3c1dced864433
7
- data.tar.gz: be0a035e096169ccc7bff6a2fb7ba5580ceb8e90d0b3e981b6cfa2ae077c8194b3d4db409101008985422cbba109d55bc593759e70627948df72daa4661ed444
6
+ metadata.gz: ed9c09b1a00b8f6c625c687fed22fdc5fb744526a6f6f2f353ecadb15d7f9794afbf6c9a4af436220e9153281fa8009113eb1e8204489cc722cc10fef82faaff
7
+ data.tar.gz: dafcfbcb4fcfb29b5858e8f8da4a1015f4265b252731654bc87cb248179d166ed598e3c76935943d0f6e7832754b83a15fe944f1b9adc7f9456a4a7087d271d6
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.17.2",
10
+ "User-Agent": "candidhealth/1.17.3",
11
11
  "X-Fern-Language": "Ruby"
12
12
  }
13
13
  )
@@ -6,6 +6,9 @@ module Candid
6
6
  module Types
7
7
  class ProviderSecondaryIdentification < Internal::Types::Model
8
8
  field :reference_identification, -> { String }, optional: false, nullable: false
9
+ field :reference_identification_qualifier, lambda {
10
+ Candid::EncounterProviders::V2::Types::ProviderSecondaryIdentificationQualifier
11
+ }, optional: true, nullable: false
9
12
  end
10
13
  end
11
14
  end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module EncounterProviders
5
+ module V2
6
+ module Types
7
+ module ProviderSecondaryIdentificationQualifier
8
+ extend Candid::Internal::Types::Enum
9
+
10
+ G_2 = "G2"
11
+ LU = "LU"
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -10,6 +10,7 @@ module Candid
10
10
  field :plan_type, -> { Candid::Commons::Types::SourceOfPaymentCode }, optional: true, nullable: false
11
11
  field :insurance_type, -> { Candid::Commons::Types::InsuranceTypeCode }, optional: true, nullable: false
12
12
  field :payer_plan_group_id, -> { String }, optional: true, nullable: false
13
+ field :payer_address, -> { Candid::Commons::Types::StreetAddressLongZip }, optional: true, nullable: false
13
14
  end
14
15
  end
15
16
  end
@@ -19,6 +19,7 @@ module Candid
19
19
  PAYER_CONFIGURATION_ERROR = "PAYER_CONFIGURATION_ERROR"
20
20
  DENIAL_RESOLUTION = "DENIAL_RESOLUTION"
21
21
  MISSING_ENROLLMENT = "MISSING_ENROLLMENT"
22
+ CHARGE_CAPTURE_UPDATE = "CHARGE_CAPTURE_UPDATE"
22
23
  end
23
24
  end
24
25
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Candid
4
- VERSION = "1.17.2"
4
+ VERSION = "1.17.3"
5
5
  end
data/lib/candid.rb CHANGED
@@ -53,6 +53,7 @@ require_relative "candid/commons/types/state"
53
53
  require_relative "candid/commons/types/street_address_optional_base"
54
54
  require_relative "candid/commons/types/street_address_long_zip_optional"
55
55
  require_relative "candid/encounter_providers/v_2/types/ordering_provider_optional"
56
+ require_relative "candid/encounter_providers/v_2/types/provider_secondary_identification_qualifier"
56
57
  require_relative "candid/encounter_providers/v_2/types/provider_secondary_identification"
57
58
  require_relative "candid/commons/types/street_address_short_zip_optional"
58
59
  require_relative "candid/commons/types/billing_provider_commercial_license_type"
@@ -91,6 +92,8 @@ require_relative "candid/encounters/v_4/types/vitals_update"
91
92
  require_relative "candid/commons/types/phone_number_type"
92
93
  require_relative "candid/commons/types/phone_number_optional"
93
94
  require_relative "candid/guarantor/v_1/types/guarantor_optional"
95
+ require_relative "candid/commons/types/street_address_base"
96
+ require_relative "candid/commons/types/street_address_long_zip"
94
97
  require_relative "candid/commons/types/source_of_payment_code"
95
98
  require_relative "candid/commons/types/insurance_type_code"
96
99
  require_relative "candid/insurance_cards/v_2/types/insurance_card_base"
@@ -153,8 +156,6 @@ require_relative "candid/contracts/v_2/types/contract_base"
153
156
  require_relative "candid/organization_providers/v_2/types/provider_type"
154
157
  require_relative "candid/organization_providers/v_2/types/license_type"
155
158
  require_relative "candid/organization_providers/v_2/types/address_type"
156
- require_relative "candid/commons/types/street_address_base"
157
- require_relative "candid/commons/types/street_address_long_zip"
158
159
  require_relative "candid/organization_providers/v_2/types/organization_provider_address"
159
160
  require_relative "candid/organization_providers/v_2/types/organization_provider_base"
160
161
  require_relative "candid/organization_providers/v_2/types/employment_status"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: candidhealth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.2
4
+ version: 1.17.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Candid
@@ -215,6 +215,7 @@ files:
215
215
  - lib/candid/encounter_providers/v_2/types/ordering_provider_optional.rb
216
216
  - lib/candid/encounter_providers/v_2/types/ordering_provider_update.rb
217
217
  - lib/candid/encounter_providers/v_2/types/provider_secondary_identification.rb
218
+ - lib/candid/encounter_providers/v_2/types/provider_secondary_identification_qualifier.rb
218
219
  - lib/candid/encounter_providers/v_2/types/referring_provider.rb
219
220
  - lib/candid/encounter_providers/v_2/types/referring_provider_update.rb
220
221
  - lib/candid/encounter_providers/v_2/types/referring_provider_update_with_optional_address.rb