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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2bdb428f9fe1f931bb101fe742dd06824c00c351
4
- data.tar.gz: 515f1870e848b2f99b56b1fcb285637cacc5ccd6
3
+ metadata.gz: 7c471f2dbe1622f0800aecc1cdd5bf694d1d3df6
4
+ data.tar.gz: 78596ac7b41f5495ba431c3cdf8c220d4deea8d2
5
5
  SHA512:
6
- metadata.gz: b0c3b85915e0570a614b8d2e42d69a52ebc1af62e3689967a728c47b2083d2a8c8cb8461d6447660338c38a65ed8e71382863f1c43875fe52d825a49caf8b76f
7
- data.tar.gz: e7ad6f55284a3d2312258e07e9a563e49395f7ffbfa09874cc0f5216751c422a9e7357e28460cccddf3cf3b3e197816e10a7f736513015be242aed992df549b9
6
+ metadata.gz: e4bf66110ed5b96786a587e7ce4d5a9dc3e4883cb76d53cf9877c2087f81f2f0a2c948109a21dd3efc652dc57f09504d6bfd7bed59321588a4641279f3fc6409
7
+ data.tar.gz: 2f7e6c3c8ec76e8976f609ecc79104d98ffff72aa7eb31147eed60f0523a35768ebce94cfd3e5fadb0e10acc4b0ff0bca1f3c9d4208aab9a841b8af04eaaaec0
@@ -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
 
@@ -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'
8
- s.date = '2017-09-14'
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."
@@ -38,7 +38,7 @@ require File.dirname(__FILE__) + '/chargebee/models/time_machine'
38
38
 
39
39
  module ChargeBee
40
40
 
41
- VERSION = '2.3.8'
41
+ VERSION = '2.3.9'
42
42
 
43
43
  @@default_env = nil
44
44
  @@verify_ca_certs = true
@@ -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, :payment_method, :reference_number,
17
- :gateway, :type, :date, :currency_code, :amount, :id_at_gateway, :status, :fraud_flag, :error_code,
18
- :error_text, :voided_at, :resource_version, :updated_at, :fraud_reason, :amount_unused, :masked_card_number,
19
- :reference_transaction_id, :refunded_txn_id, :reversal_transaction_id, :linked_invoices, :linked_credit_notes,
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.8
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-14 00:00:00.000000000 Z
12
+ date: 2017-09-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json_pure