chargebee 1.6.0 → 1.6.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 +4 -4
- data/CHANGELOG.md +14 -0
- data/chargebee.gemspec +2 -2
- data/lib/chargebee.rb +1 -1
- data/lib/chargebee/models/invoice.rb +2 -2
- data/lib/chargebee/models/transaction.rb +1 -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: 0f1a9bc744202ae2c3a0bd267ae3089a2682de37
|
|
4
|
+
data.tar.gz: 6d4c6853ed835e467e4a9fd58d740d08ae9e8daa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5b3beed82df8f9a578123199222fccde14dec0d63331c7f014794bf0f62f75067f6db84d6410a1736a21aba28f870a5ed8895c94910ff56c629ed3909502745
|
|
7
|
+
data.tar.gz: a6182b2dd4251a770bda8f8535531eaf3a9c80490c0a0ff0729edb93290af9342d42cc85cf5ea7cff07eac47fe222ca8056f52243515642d62c0137a79d1b3ed
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
### v1.6.1 (2015-08-25)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
** APIs updated**:
|
|
5
|
+
|
|
6
|
+
The attribute for "first_invoice" & "currency_code" is returned as part of Invoice resource.
|
|
7
|
+
See : https://apidocs.chargebee.com/docs/api/invoices#invoice_attributes
|
|
8
|
+
|
|
9
|
+
The attribute for "currency_code" is returned as part of Transaction resource.
|
|
10
|
+
See : https://apidocs.chargebee.com/docs/api/transactions#transaction_attributes
|
|
11
|
+
|
|
12
|
+
A new source type "bulk_operation" is returned as part of "source" attribute of event resource.
|
|
13
|
+
See : https://apidocs.chargebee.com/docs/api/events#event_attributes
|
|
14
|
+
|
|
1
15
|
### v1.6.0 (2015-07-20)
|
|
2
16
|
* * *
|
|
3
17
|
|
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.1'
|
|
8
|
+
s.date = '2015-08-25'
|
|
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
|
@@ -35,8 +35,8 @@ module ChargeBee
|
|
|
35
35
|
|
|
36
36
|
attr_accessor :id, :po_number, :customer_id, :subscription_id, :recurring, :status, :vat_number,
|
|
37
37
|
:start_date, :end_date, :amount, :amount_due, :paid_on, :dunning_status, :next_retry, :sub_total,
|
|
38
|
-
:tax, :
|
|
39
|
-
:billing_address
|
|
38
|
+
:tax, :first_invoice, :currency_code, :line_items, :discounts, :taxes, :linked_transactions,
|
|
39
|
+
:linked_orders, :notes, :shipping_address, :billing_address
|
|
40
40
|
|
|
41
41
|
# OPERATIONS
|
|
42
42
|
#-----------
|
|
@@ -7,7 +7,7 @@ module ChargeBee
|
|
|
7
7
|
|
|
8
8
|
attr_accessor :id, :customer_id, :subscription_id, :payment_method, :reference_number, :gateway,
|
|
9
9
|
:description, :type, :date, :amount, :id_at_gateway, :status, :error_code, :error_text, :voided_at,
|
|
10
|
-
:void_description, :masked_card_number, :refunded_txn_id, :linked_invoices
|
|
10
|
+
:void_description, :masked_card_number, :refunded_txn_id, :linked_invoices, :currency_code
|
|
11
11
|
|
|
12
12
|
# OPERATIONS
|
|
13
13
|
#-----------
|
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.1
|
|
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-08-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json_pure
|