zuora_api 1.6.16 → 1.6.17

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
  SHA1:
3
- metadata.gz: cf22e129425646f0333a0fbfba46454caed076d8
4
- data.tar.gz: 8bef1bdcdc8d148b6450846f8d8fc014f6964543
3
+ metadata.gz: a4806b451ff659e1af176ef392d2f87b54e2c30d
4
+ data.tar.gz: 8743c12254499f03a513a19d1e071db251e92399
5
5
  SHA512:
6
- metadata.gz: b7f61fe146b9593d91315f95e91dbc073229b80e71274630c76b5c30d099b12ed4b282c54cdac7106bb02141f490cfd2d2df8d881623af200be415435d77070f
7
- data.tar.gz: 7a4e6c34d8c7019c1d1d474b7c946db1d85b075ea173bc4571fb29ae15d28113857002e5ec03f809b8c681e4dc8345f80840adede4f5ff899e931eddaac2b636
6
+ metadata.gz: 0a6ff5531ef2fb34f77b2ce4b08f55451652796c1512cd13497b4b1ada416f58c8951ebbe9d059b3ea588dae7ecca4c0679630135dc4ea8ada700b85982277c4
7
+ data.tar.gz: 6ecb9fa1f3963a834588350363bc37d8d746920fb8e91538d49028fb3f925629a156c9bd2d3034b2d652ca8b8d874fda2791b3a371acfe80e8eb5832b317d6e5
data/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ ## [1.6.16] - 2018-12-09
5
+ ### Added
6
+ - Example
7
+
8
+ ### Changed
9
+ - Example
10
+
11
+ ### Removed
12
+ - Example
@@ -648,7 +648,8 @@ module ZuoraAPI
648
648
  headers = self.entity_id.present? ? {"Zuora-Entity-Ids" => self.entity_id, 'Content-Type' => "text/xml; charset=utf-8"} : {'Content-Type' => "text/xml; charset=utf-8"}
649
649
  response = HTTParty.get(url, headers: {"Authorization" => self.get_session(prefix: true, auth_type: :basic)}.merge(headers), :timeout => 120)
650
650
 
651
- raise ZuoraAPI::Exceptions::ZuoraAPISessionError.new("Session Expired") if response.code == 401
651
+ raise ZuoraAPI::Exceptions::ZuoraAPISessionError.new(self.current_error.present? ? self.current_error : 'Describe call 401' ) if response.code == 401
652
+
652
653
  output_xml = Nokogiri::XML(response.body)
653
654
  des_hash = Hash.new
654
655
  if object == nil
@@ -1,3 +1,3 @@
1
1
  module ZuoraAPI
2
- VERSION = "1.6.16"
2
+ VERSION = "1.6.17"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zuora_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.16
4
+ version: 1.6.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zuora Strategic Solutions Group
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-12-06 00:00:00.000000000 Z
11
+ date: 2018-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -153,6 +153,7 @@ files:
153
153
  - ".gitlab-ci.yml"
154
154
  - ".rspec"
155
155
  - ".travis.yml"
156
+ - CHANGELOG.md
156
157
  - Gemfile
157
158
  - Gemfile.lock
158
159
  - README.md