chargebee 2.9.0 → 2.10.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 +19 -0
- data/chargebee.gemspec +2 -2
- data/lib/chargebee/models/order.rb +1 -1
- 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: d03fc282854cb898307e411cee36e55fbb132484
|
|
4
|
+
data.tar.gz: 6a607154dcff6dd8610a51ff196885c80d3e2736
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9869ff5135009f10765feb75ee519ee180146d1f90f7855bd148f1d632d1483bdb53d0339fda41c5d5eb2dbb8b6cac741bec47f5b5e5932b0fd61e2461e4c8e
|
|
7
|
+
data.tar.gz: 7660122305df9aaf9ae0099f5cfff629dba6856441856f7fab4e652b05c5cee3a1f87bf52c2f191ea91c526e0e0f9241b1c38257c63a6ad0dfc2929ec135837c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
|
+
### v2.10.0 (2021-10-14)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
### Fixes:
|
|
5
|
+
* Fixed .DS_Store file generation issue
|
|
6
|
+
|
|
7
|
+
#### New Attributes:
|
|
8
|
+
* entity_id has been added in order_line_item_discounts resource.
|
|
9
|
+
|
|
10
|
+
#### New Input parameters:
|
|
11
|
+
* line_items[tax5_name], line_items[tax5_amount], line_items[tax6_name], line_items[tax6_amount], line_items[tax7_name], line_items[tax7_amount], line_items[tax8_name], line_items[tax8_amount], line_items[tax9_name], line_items[tax9_amount], line_items[tax10_name], line_items[tax10_amount] have been added in import_invoice api.
|
|
12
|
+
* replace_primary_payment_source has been added in create_subscription_for_customer and create_subscription_for_items apis.
|
|
13
|
+
|
|
14
|
+
#### New Enum values:
|
|
15
|
+
* coupon_expired has been added to event_type enum.
|
|
16
|
+
* mollie has been added to gateway enum.
|
|
17
|
+
* item_level_discount and document_level_discount has been added to discount_type.
|
|
18
|
+
|
|
1
19
|
### v2.9.0 (2021-08-16)
|
|
2
20
|
* * *
|
|
21
|
+
|
|
3
22
|
#### New Attributes:
|
|
4
23
|
* generated_at has been added in credit_note and invoice resources.
|
|
5
24
|
* change_option have been added in quoted_subscription resource.
|
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 = '2021-
|
|
7
|
+
s.version = '2.10.0'
|
|
8
|
+
s.date = '2021-10-14'
|
|
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."
|
|
@@ -18,7 +18,7 @@ module ChargeBee
|
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
class LineItemDiscount < Model
|
|
21
|
-
attr_accessor :line_item_id, :discount_type, :coupon_id, :discount_amount
|
|
21
|
+
attr_accessor :line_item_id, :discount_type, :coupon_id, :entity_id, :discount_amount
|
|
22
22
|
end
|
|
23
23
|
|
|
24
24
|
class LinkedCreditNote < Model
|
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: 2.
|
|
4
|
+
version: 2.10.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: 2021-
|
|
12
|
+
date: 2021-10-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json_pure
|