chargebee 2.6.9 → 2.7.0
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 +9 -0
- data/chargebee.gemspec +2 -2
- data/lib/chargebee.rb +1 -1
- data/lib/chargebee/models/customer.rb +1 -1
- data/lib/chargebee/models/payment_intent.rb +2 -2
- 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: e33d70e691b26d7aacf9a5b3f7150b337665db10
|
|
4
|
+
data.tar.gz: c0dad38d4c54f9c62d04bb0a22c641e3a9104e6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2991c047b78ccee6d8f6d3ea9ff7ceea1fdf25d1f9db0162581f049f80afa644d9f0d151ad393a2fcf0dcd126e345d8aebc5b8447e13a9a1184b6428ec1a258d
|
|
7
|
+
data.tar.gz: 9397a8bcd07e75869ebfb4fd61e39e32bf110e21d4779f223a439e95c80ef2b5ad227f2711b4fa2e2724c62b68bbe87624caf60069dd95fe4b637edba612c45f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
### v2.7.0 (2019-08-27)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
* New attribute client_profile_id has been added in customer resource.
|
|
5
|
+
* New input parameter client_profile_id has been added in create_a_customer, update_a_customer, create_subscription_estimate, create_a_subscription and import_a_subscription api.
|
|
6
|
+
* New input parameter payment_intent has been added in create_a_gift, create_an_invoice, reactivate_a_subscription and resume_a_subscription api.
|
|
7
|
+
* New input parameter replace_primary_payment_source has been added in create_an_invoice api.
|
|
8
|
+
* New attribute currency_code has been added in payment_intent resource.
|
|
9
|
+
|
|
1
10
|
### v2.6.9 (2019-08-14)
|
|
2
11
|
* * *
|
|
3
12
|
|
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.
|
|
8
|
-
s.date = '2019-08-
|
|
7
|
+
s.version = '2.7.0'
|
|
8
|
+
s.date = '2019-08-27'
|
|
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
|
@@ -33,7 +33,7 @@ module ChargeBee
|
|
|
33
33
|
:backup_payment_source_id, :billing_address, :referral_urls, :contacts, :payment_method, :invoice_notes,
|
|
34
34
|
:preferred_currency_code, :promotional_credits, :unbilled_charges, :refundable_credits, :excess_payments,
|
|
35
35
|
:balances, :meta_data, :deleted, :registered_for_gst, :business_customer_without_vat_number,
|
|
36
|
-
:customer_type, :relationship
|
|
36
|
+
:customer_type, :client_profile_id, :relationship
|
|
37
37
|
|
|
38
38
|
# OPERATIONS
|
|
39
39
|
#-----------
|
|
@@ -5,8 +5,8 @@ module ChargeBee
|
|
|
5
5
|
attr_accessor :id, :status, :id_at_gateway, :error_code, :error_text, :created_at, :modified_at
|
|
6
6
|
end
|
|
7
7
|
|
|
8
|
-
attr_accessor :id, :status, :amount, :gateway_account_id, :expires_at, :reference_id,
|
|
9
|
-
:modified_at, :customer_id, :gateway, :active_payment_attempt
|
|
8
|
+
attr_accessor :id, :status, :currency_code, :amount, :gateway_account_id, :expires_at, :reference_id,
|
|
9
|
+
:created_at, :modified_at, :customer_id, :gateway, :active_payment_attempt
|
|
10
10
|
|
|
11
11
|
# OPERATIONS
|
|
12
12
|
#-----------
|
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
|
+
version: 2.7.0
|
|
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: 2019-08-
|
|
12
|
+
date: 2019-08-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json_pure
|