change_healthcare-professional_claims 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67b89d0cdb11cba5c0cfa6a92b3258c6228329e11013f2aadc46ce970b5908d3
4
- data.tar.gz: dc6b1198280d8e889e8445dc4474d68daab5d58c28655f01e379081ac843cc99
3
+ metadata.gz: 5d3bd07c296b9662b295f52b596b52743382470c8e832e16fb1f2cb3d75e1703
4
+ data.tar.gz: 1da87fcf6b275ed88e640a2ad170882582b6f8ee3660cdd8fd523bdd8e653b4f
5
5
  SHA512:
6
- metadata.gz: 63323abe7d3757bcc61aaf919e93df65849adbf1dcbe267c5889d230db6d6a5a07f619b21cd8b59dce764269260d30ea1f37b1168909835e4da1664ad899ff15
7
- data.tar.gz: fba4c4150a5cc3b952aba78418bce5d141e56d6bce55088c9c5e0c23b41d32601ba2c23080454788c825b509650bf8a9206d7acf9e6b1dcea4a07f119a2d2cc9
6
+ metadata.gz: e8ffca82eecd6d0b3fb4969766b0f08c74fe9c2f673899f587ff28752bdafaae2e607276dc6c770a26ade26e468bcb45f61622ceef04092a202f7031aff66073
7
+ data.tar.gz: 5410ada7966b9888aa34d6cc2c4cf91dc596e06cf769f3cee4cfec1eee80b66b270b8c8db1498bdccfd66dbd268081e3c2e3c3b006910ce78707cf2e8211563e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## V0.6.1 - 2024-04-15
2
+
3
+ - Fixed the `claim_filing_indicator_code` validator in the `OtherSubscriberInformation` model.
4
+
1
5
  ## V0.6.0 - 2023-11-17
2
6
 
3
7
  - Add the `meta` object to the response model.
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- change_healthcare-professional_claims (0.6.0)
4
+ change_healthcare-professional_claims (0.6.1)
5
5
  addressable (~> 2.5)
6
6
  typhoeus (~> 1.4)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- addressable (2.8.1)
11
+ addressable (2.8.6)
12
12
  public_suffix (>= 2.0.2, < 6.0)
13
13
  ast (2.4.2)
14
14
  backport (1.1.2)
@@ -18,9 +18,9 @@ GEM
18
18
  diff-lcs (1.4.4)
19
19
  docile (1.3.5)
20
20
  e2mmap (0.1.0)
21
- ethon (0.15.0)
21
+ ethon (0.16.0)
22
22
  ffi (>= 1.15.0)
23
- ffi (1.15.5)
23
+ ffi (1.16.3)
24
24
  jaro_winkler (1.5.4)
25
25
  kramdown (2.3.1)
26
26
  rexml
@@ -37,7 +37,7 @@ GEM
37
37
  pry (0.14.0)
38
38
  coderay (~> 1.1)
39
39
  method_source (~> 1.0)
40
- public_suffix (5.0.0)
40
+ public_suffix (5.0.5)
41
41
  racc (1.5.2)
42
42
  rainbow (3.0.0)
43
43
  rake (10.5.0)
@@ -95,7 +95,7 @@ GEM
95
95
  yard (~> 0.9, >= 0.9.24)
96
96
  thor (1.1.0)
97
97
  tilt (2.0.10)
98
- typhoeus (1.4.0)
98
+ typhoeus (1.4.1)
99
99
  ethon (>= 0.9.0)
100
100
  unicode-display_width (2.0.0)
101
101
  yard (0.9.26)
@@ -115,4 +115,4 @@ DEPENDENCIES
115
115
  solargraph
116
116
 
117
117
  BUNDLED WITH
118
- 2.1.4
118
+ 2.2.33
@@ -180,7 +180,7 @@ module ChangeHealthcare
180
180
  return false unless benefits_assignment_certification_indicator_validator.valid?(@benefits_assignment_certification_indicator)
181
181
 
182
182
  claim_filing_indicator_code_validator = EnumAttributeValidator.new('String',
183
- %w[11 12 13 14 15 16 17 AM BL CH DS FI HM LM
183
+ %w[11 12 13 14 15 16 17 AM BL CH CI DS FI HM LM
184
184
  MA MB MC OF TV VA WC ZZ])
185
185
  return false unless claim_filing_indicator_code_validator.valid?(@claim_filing_indicator_code)
186
186
 
@@ -218,7 +218,7 @@ module ChangeHealthcare
218
218
  # @param [Object] claim_filing_indicator_code Object to be assigned
219
219
  def claim_filing_indicator_code=(claim_filing_indicator_code)
220
220
  validator = EnumAttributeValidator.new('String',
221
- %w[11 12 13 14 15 16 17 AM BL CH DS FI HM LM MA MB MC OF TV VA WC ZZ])
221
+ %w[11 12 13 14 15 16 17 AM BL CH CI DS FI HM LM MA MB MC OF TV VA WC ZZ])
222
222
  unless validator.valid?(claim_filing_indicator_code)
223
223
  raise ArgumentError,
224
224
  %(invalid value for "claim_filing_indicator_code", must be one of #{validator.allowable_values}.)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ChangeHealthcare
4
4
  module ProfessionalClaims
5
- VERSION = '0.6.0'
5
+ VERSION = '0.6.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_healthcare-professional_claims
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony Super
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-17 00:00:00.000000000 Z
11
+ date: 2024-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -268,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
268
268
  - !ruby/object:Gem::Version
269
269
  version: '0'
270
270
  requirements: []
271
- rubygems_version: 3.1.6
271
+ rubygems_version: 3.2.33
272
272
  signing_key:
273
273
  specification_version: 4
274
274
  summary: Change Healthcare Professional Claims API (Unofficial)