chargebee 2.4.3 → 2.4.4
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 +12 -0
- data/LICENSE +1 -1
- data/chargebee.gemspec +2 -2
- data/lib/chargebee.rb +1 -1
- data/lib/chargebee/models/credit_note.rb +3 -2
- data/lib/chargebee/models/invoice.rb +3 -3
- data/lib/chargebee/models/transaction.rb +5 -4
- 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: 90bac18b45c3653541a1b9dca50631266ca9a686
|
|
4
|
+
data.tar.gz: 786f946fd14fe145d3d277893fc01afb09a8b8f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf39bb711dbc1867cbb7ebe1b7f252ed01dbd3596da0ff638356be2a81245ab6978949095143b640e05dba5bd2c7d05934bf9931a1c72ba8af58796b1626fc19
|
|
7
|
+
data.tar.gz: 3a537b228e410ba20f689a1b38cbd98144c92fc93abe24ff604d4ef2cae87cdcea0ad3d24ceb4a191b88e511b728a58e806fd9040638037be259362041e28b57
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
### v2.4.4 (2018-02-01)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
The attribute 'round_off_amount' have been added in Invoice an Credit note resources.
|
|
5
|
+
See : https://apidocs.chargebee.com/docs/api/invoices#invoice_attributes
|
|
6
|
+
|
|
7
|
+
The attribute 'settled_at' has been added to transaction resource.
|
|
8
|
+
See : https://apidocs.chargebee.com/docs/api/transactions#transaction_attributes
|
|
9
|
+
|
|
10
|
+
'Collect now' API in Hosted pages resource has been undeprecated.
|
|
11
|
+
See : https://apidocs.chargebee.com/docs/api/hosted_pages#collect_now
|
|
12
|
+
|
|
1
13
|
### v2.4.3 (2018-01-12)
|
|
2
14
|
* New endpoint "Update invoice details" has been added to Invoice resource.
|
|
3
15
|
|
data/LICENSE
CHANGED
data/chargebee.gemspec
CHANGED
|
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
|
|
|
4
4
|
s.rubygems_version = '1.3.5'
|
|
5
5
|
s.required_ruby_version = '>= 1.9.3'
|
|
6
6
|
s.name = 'chargebee'
|
|
7
|
-
s.version = '2.4.
|
|
8
|
-
s.date = '2018-01
|
|
7
|
+
s.version = '2.4.4'
|
|
8
|
+
s.date = '2018-02-01'
|
|
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
|
@@ -31,8 +31,9 @@ module ChargeBee
|
|
|
31
31
|
|
|
32
32
|
attr_accessor :id, :customer_id, :subscription_id, :reference_invoice_id, :type, :reason_code,
|
|
33
33
|
:status, :vat_number, :date, :price_type, :currency_code, :total, :amount_allocated, :amount_refunded,
|
|
34
|
-
:amount_available, :refunded_at, :voided_at, :resource_version, :updated_at, :sub_total, :
|
|
35
|
-
:discounts, :line_item_discounts, :taxes, :line_item_taxes, :linked_refunds, :allocations,
|
|
34
|
+
:amount_available, :refunded_at, :voided_at, :resource_version, :updated_at, :sub_total, :round_off_amount,
|
|
35
|
+
:line_items, :discounts, :line_item_discounts, :taxes, :line_item_taxes, :linked_refunds, :allocations,
|
|
36
|
+
:deleted
|
|
36
37
|
|
|
37
38
|
# OPERATIONS
|
|
38
39
|
#-----------
|
|
@@ -57,9 +57,9 @@ module ChargeBee
|
|
|
57
57
|
:price_type, :date, :due_date, :net_term_days, :currency_code, :total, :amount_paid, :amount_adjusted,
|
|
58
58
|
:write_off_amount, :credits_applied, :amount_due, :paid_at, :dunning_status, :next_retry_at,
|
|
59
59
|
:voided_at, :resource_version, :updated_at, :sub_total, :tax, :first_invoice, :has_advance_charges,
|
|
60
|
-
:amount_to_collect, :line_items, :discounts, :line_item_discounts, :taxes,
|
|
61
|
-
:linked_payments, :applied_credits, :adjustment_credit_notes, :issued_credit_notes,
|
|
62
|
-
:notes, :shipping_address, :billing_address, :deleted
|
|
60
|
+
:amount_to_collect, :round_off_amount, :line_items, :discounts, :line_item_discounts, :taxes,
|
|
61
|
+
:line_item_taxes, :linked_payments, :applied_credits, :adjustment_credit_notes, :issued_credit_notes,
|
|
62
|
+
:linked_orders, :notes, :shipping_address, :billing_address, :deleted
|
|
63
63
|
|
|
64
64
|
# OPERATIONS
|
|
65
65
|
#-----------
|
|
@@ -14,10 +14,11 @@ module ChargeBee
|
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
attr_accessor :id, :customer_id, :subscription_id, :gateway_account_id, :payment_source_id,
|
|
17
|
-
:payment_method, :reference_number, :gateway, :type, :date, :
|
|
18
|
-
:status, :fraud_flag, :error_code, :error_text, :voided_at, :resource_version,
|
|
19
|
-
:fraud_reason, :amount_unused, :masked_card_number, :reference_transaction_id,
|
|
20
|
-
:reversal_transaction_id, :linked_invoices, :linked_credit_notes, :linked_refunds,
|
|
17
|
+
:payment_method, :reference_number, :gateway, :type, :date, :settled_at, :currency_code, :amount,
|
|
18
|
+
:id_at_gateway, :status, :fraud_flag, :error_code, :error_text, :voided_at, :resource_version,
|
|
19
|
+
:updated_at, :fraud_reason, :amount_unused, :masked_card_number, :reference_transaction_id,
|
|
20
|
+
:refunded_txn_id, :reversal_transaction_id, :linked_invoices, :linked_credit_notes, :linked_refunds,
|
|
21
|
+
:deleted
|
|
21
22
|
|
|
22
23
|
# OPERATIONS
|
|
23
24
|
#-----------
|
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: 2.4.
|
|
4
|
+
version: 2.4.4
|
|
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: 2018-01
|
|
12
|
+
date: 2018-02-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json_pure
|