chargebee 2.3.8 → 2.3.9
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/transaction.rb +5 -5
- 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: 7c471f2dbe1622f0800aecc1cdd5bf694d1d3df6
|
|
4
|
+
data.tar.gz: 78596ac7b41f5495ba431c3cdf8c220d4deea8d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4bf66110ed5b96786a587e7ce4d5a9dc3e4883cb76d53cf9877c2087f81f2f0a2c948109a21dd3efc652dc57f09504d6bfd7bed59321588a4641279f3fc6409
|
|
7
|
+
data.tar.gz: 2f7e6c3c8ec76e8976f609ecc79104d98ffff72aa7eb31147eed60f0523a35768ebce94cfd3e5fadb0e10acc4b0ff0bca1f3c9d4208aab9a841b8af04eaaaec0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
### v2.3.9 (2017-09-15)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
** APIs updated**:
|
|
5
|
+
|
|
6
|
+
The attribute payment_source_id would be added to the transaction resource.
|
|
7
|
+
See : https://apidocs.chargebee.com/docs/api/transactions#transaction_payment_source_id
|
|
8
|
+
|
|
9
|
+
The filter parameter payment_source_id would be added in List transactions API.
|
|
10
|
+
See : https://apidocs.chargebee.com/docs/api/transactions#list_transactions
|
|
11
|
+
|
|
12
|
+
The gateway types amazon_payments and paypal_express_checkout would be added.
|
|
13
|
+
See : https://apidocs.chargebee.com/docs/api/customers#customer_payment_method_gateway
|
|
14
|
+
|
|
1
15
|
### v2.3.8 (2017-09-14)
|
|
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
|
s.required_ruby_version = '>= 1.9.3'
|
|
6
6
|
s.name = 'chargebee'
|
|
7
|
-
s.version = '2.3.
|
|
8
|
-
s.date = '2017-09-
|
|
7
|
+
s.version = '2.3.9'
|
|
8
|
+
s.date = '2017-09-15'
|
|
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
|
@@ -13,11 +13,11 @@ module ChargeBee
|
|
|
13
13
|
attr_accessor :txn_id, :txn_status, :txn_date, :txn_amount
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
-
attr_accessor :id, :customer_id, :subscription_id, :gateway_account_id, :
|
|
17
|
-
:gateway, :type, :date, :currency_code, :amount, :id_at_gateway,
|
|
18
|
-
:
|
|
19
|
-
:
|
|
20
|
-
:linked_refunds, :deleted
|
|
16
|
+
attr_accessor :id, :customer_id, :subscription_id, :gateway_account_id, :payment_source_id,
|
|
17
|
+
:payment_method, :reference_number, :gateway, :type, :date, :currency_code, :amount, :id_at_gateway,
|
|
18
|
+
:status, :fraud_flag, :error_code, :error_text, :voided_at, :resource_version, :updated_at,
|
|
19
|
+
:fraud_reason, :amount_unused, :masked_card_number, :reference_transaction_id, :refunded_txn_id,
|
|
20
|
+
:reversal_transaction_id, :linked_invoices, :linked_credit_notes, :linked_refunds, :deleted
|
|
21
21
|
|
|
22
22
|
# OPERATIONS
|
|
23
23
|
#-----------
|
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.3.
|
|
4
|
+
version: 2.3.9
|
|
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: 2017-09-
|
|
12
|
+
date: 2017-09-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json_pure
|