change_health 6.4.0 → 6.4.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3078cdf4fb2d282de47c8729d92580795f49d0683eba85889df51c96cca3040
|
|
4
|
+
data.tar.gz: 4094c1b12885436f0b3a5f4031093eef429ffe502096195daee9a84d0ba73f75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '063177931fed5fb4a0dad4aaff49f29b830312062f62b6019026a72f7ec52c402c4b610c63513078dde6c756f3504d335f27c5b0c670888864f8bdb303ae5bd7'
|
|
7
|
+
data.tar.gz: 2500bd2ed193c5904ef9ff241aa717028d022a5dd7de483aaddc6521c9fa5234a06af08fbc2f9e37810374d24015285a032fc34bf31e232011db870c653fe4a2
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
# [6.4.1] - 2025-11-05
|
|
9
|
+
|
|
10
|
+
### Bug Fix
|
|
11
|
+
|
|
12
|
+
* Doesn't throw on trading partner 'not found' response
|
|
13
|
+
|
|
8
14
|
# [6.4.0] - 2025-11-03
|
|
9
15
|
|
|
10
16
|
### Added
|
|
@@ -810,6 +816,7 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
|
810
816
|
* Authentication
|
|
811
817
|
* Configuration
|
|
812
818
|
|
|
819
|
+
[6.4.1]: https://github.com/WeInfuse/change_health/compare/v6.4.0...v6.4.1
|
|
813
820
|
[6.4.0]: https://github.com/WeInfuse/change_health/compare/v6.3.0...v6.4.0
|
|
814
821
|
[6.3.0]: https://github.com/WeInfuse/change_health/compare/v6.2.0...v6.3.0
|
|
815
822
|
[6.2.0]: https://github.com/WeInfuse/change_health/compare/v6.1.2...v6.2.0
|
|
@@ -4,7 +4,7 @@ module ChangeHealth
|
|
|
4
4
|
module Response
|
|
5
5
|
class TradingPartnersData < Array
|
|
6
6
|
def initialize(trading_partners)
|
|
7
|
-
super(trading_partners.map do |trading_partner|
|
|
7
|
+
super((trading_partners || []).map do |trading_partner|
|
|
8
8
|
ChangeHealth::Response::TradingPartnerData.new(trading_partner)
|
|
9
9
|
end)
|
|
10
10
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: change_health
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.4.
|
|
4
|
+
version: 6.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Crockett
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: hashie
|