chargebee 1.7.4 → 1.7.5
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 +7 -0
- data/chargebee.gemspec +2 -2
- data/lib/chargebee/models/payment_intent.rb +2 -2
- data/lib/chargebee.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: 0cdbb84e97810da089f28a80f9bf30b5fcf72b68
|
|
4
|
+
data.tar.gz: 289eee525495e75501ad9d4caaf961f742f6ff51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2fcce06741815623c265e9a5d305805ce4637ab75eede6b8be1804532990a450905207d911756de7ee1d0eb1a122e1515b37d38e729a4571826662ea3160160
|
|
7
|
+
data.tar.gz: 355fabbe04eddf1e464955d20009b3c60794852790d3b3b26f9949819915dd72e559741d5db6afd7405425f2eebf98cb19db103f5f635391d6e8f4747449121e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
### v1.7.5(2019-08-27)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
* New input parameter replace_primary_payment_source has been added in create_an_invoice api.
|
|
5
|
+
* New input parameter payment_intent has been added in create_an_invoice and reactivate_a_subscription api.
|
|
6
|
+
* New attribute currency_code has been added in payment_intent resource.
|
|
7
|
+
|
|
1
8
|
### v1.7.4(2019-08-14)
|
|
2
9
|
* * *
|
|
3
10
|
|
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.7.
|
|
8
|
-
s.date = '2019-08-
|
|
7
|
+
s.version = '1.7.5'
|
|
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."
|
|
@@ -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
|
#-----------
|
data/lib/chargebee.rb
CHANGED
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.7.
|
|
4
|
+
version: 1.7.5
|
|
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
|