zuora_api 1.7.65d → 1.7.65e
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/zuora_api/login.rb +1 -1
- data/lib/zuora_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abffdf9c6298ccf256b1dfdae3232d66080ae349ca16d0cc257d81671244fd60
|
|
4
|
+
data.tar.gz: a86e9e56024321ca860e92df050407341b2c46ea07b592f604ebccc143810dc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24191f35512cf7a1a86fd8f807bb051bd69b6aa7ab9ca7517ede2432fec08b0e06cbe52dc64fb5c86cd58ad87275fe63b312aed3859372f2c28b64d139727db7
|
|
7
|
+
data.tar.gz: 1c19a627ca1a287645c61078d667090ba84d185795d6d434245ab077531afca16f29b37168d4b3cab2cffc60d8e332f651842d37a5179d651c8e3942bfdff5f6
|
data/lib/zuora_api/login.rb
CHANGED
|
@@ -652,7 +652,7 @@ module ZuoraAPI
|
|
|
652
652
|
if reporting_message&.include?("com.zuora.rest.RestUsageException: The user does not have permissions for this API.")
|
|
653
653
|
raise ZuoraAPI::Exceptions::ZuoraAPIError.new(reporting_message, response)
|
|
654
654
|
elsif reporting_message&.include?("500 Internal Server Error")
|
|
655
|
-
raise ZuoraAPI::Exceptions::ZuoraAPIInternalServerError.new("Internal Server Error. The Reporting API is down. Contact Support.")
|
|
655
|
+
raise ZuoraAPI::Exceptions::ZuoraAPIInternalServerError.new("Internal Server Error. The Reporting API is down. Contact Support.", response)
|
|
656
656
|
end
|
|
657
657
|
case match_string
|
|
658
658
|
when /^GET::400::\/api\/rest\/v1\/reports\/(reportlabels\/)?([a-zA-Z0-9\-_]+)\/report-details$/ # Get report, capture of the id is present if needed in future error responses.
|
data/lib/zuora_api/version.rb
CHANGED