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 +4 -4
- data/lib/candid/client.rb +1 -1
- data/lib/candid/encounter_providers/v_2/types/provider_secondary_identification.rb +3 -0
- data/lib/candid/encounter_providers/v_2/types/provider_secondary_identification_qualifier.rb +16 -0
- data/lib/candid/insurance_cards/v_2/types/insurance_card_base.rb +1 -0
- data/lib/candid/tasks/commons/types/task_type.rb +1 -0
- data/lib/candid/version.rb +1 -1
- data/lib/candid.rb +3 -2
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 014caa83a47bf64c4618f1cf66a2a0b0e219dbe9d0af23552ebbe5be320a2a2c
|
|
4
|
+
data.tar.gz: bff5822110009fa07cc4874310266df9eb03e626a2764ea7db67b228bcbd4ae3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed9c09b1a00b8f6c625c687fed22fdc5fb744526a6f6f2f353ecadb15d7f9794afbf6c9a4af436220e9153281fa8009113eb1e8204489cc722cc10fef82faaff
|
|
7
|
+
data.tar.gz: dafcfbcb4fcfb29b5858e8f8da4a1015f4265b252731654bc87cb248179d166ed598e3c76935943d0f6e7832754b83a15fe944f1b9adc7f9456a4a7087d271d6
|
data/lib/candid/client.rb
CHANGED
|
@@ -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
|
data/lib/candid/version.rb
CHANGED
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.
|
|
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
|