chargebee 1.6.1 → 1.6.2
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/CHANGELOG.md +15 -0
- data/chargebee.gemspec +2 -2
- data/lib/chargebee.rb +1 -1
- data/lib/chargebee/models/event.rb +6 -1
- data/lib/chargebee/result.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a4cd41db97067c52168df4e4828412f59d85855c
|
|
4
|
+
data.tar.gz: 9f5522335e9070133b2c54828c08477d1b702095
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 499155b7ea8a2a7ebe2ade5bcc8154eb5fd2370e0023435da02e666eee559dd5b92e1fb5713670772f26fda6458f279d8b3d0bce7b864f9683f04b57fb9a5482
|
|
7
|
+
data.tar.gz: f001c2f4e77fb83bbf24b7b0c2a836eda5182941fba88f08a720ce6c7feebf81d787006308a9127ca9caeaf5b78162b8b12ecf9b98db2f51fe067fcd1f777632
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
### v1.6.2 (2015-09-07)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
** APIs updated**:
|
|
5
|
+
|
|
6
|
+
The attribute for "user" is returned as part of Event resource.
|
|
7
|
+
See : https://apidocs.chargebee.com/docs/api/events#event_attributes
|
|
8
|
+
|
|
9
|
+
Support for multiple webhooks. The attribute "webhooks" contains list of Webhook subresource is returned as part of Event API.
|
|
10
|
+
See : https://apidocs.chargebee.com/docs/api/events#event_attributes
|
|
11
|
+
|
|
12
|
+
** APIs deprecated**:
|
|
13
|
+
|
|
14
|
+
Attributes "webhook_status" & "webhook_failure_reason" of event resource has been deprecated.
|
|
15
|
+
|
|
1
16
|
### v1.6.1 (2015-08-25)
|
|
2
17
|
* * *
|
|
3
18
|
|
data/chargebee.gemspec
CHANGED
|
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
|
|
|
4
4
|
s.rubygems_version = '1.3.5'
|
|
5
5
|
|
|
6
6
|
s.name = 'chargebee'
|
|
7
|
-
s.version = '1.6.
|
|
8
|
-
s.date = '2015-
|
|
7
|
+
s.version = '1.6.2'
|
|
8
|
+
s.date = '2015-09-07'
|
|
9
9
|
|
|
10
10
|
s.summary = "Ruby client for Chargebee API."
|
|
11
11
|
s.description = "Subscription Billing - Simple. Secure. Affordable. More details at www.chargebee.com."
|
data/lib/chargebee.rb
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
module ChargeBee
|
|
2
2
|
class Event < Model
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
class Webhook < Model
|
|
5
|
+
attr_accessor :id, :webhook_status
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
attr_accessor :id, :occurred_at, :source, :user, :webhook_status, :webhook_failure_reason, :webhooks,
|
|
9
|
+
:event_type
|
|
5
10
|
|
|
6
11
|
class Content < Result
|
|
7
12
|
end
|
data/lib/chargebee/result.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chargebee
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rajaraman S
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
12
|
+
date: 2015-09-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json_pure
|