chargebee 2.7.7 → 2.7.8
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 +12 -0
- data/chargebee.gemspec +2 -2
- data/lib/chargebee.rb +1 -1
- data/lib/chargebee/models/addon.rb +2 -2
- data/lib/chargebee/models/coupon.rb +2 -1
- data/lib/chargebee/models/customer.rb +6 -6
- data/lib/chargebee/models/subscription.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: 3bc4e637fa00ed6995d79c0c80413b81dcef6c52
|
|
4
|
+
data.tar.gz: 64c223bec7c54c7b365553292cb70350defe9aa6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7421bbfe4074776ffe46c6db1a4ccc0ab16b96cd28364bf7bba728e9098f516c4cb7f9391df8c1e113a2b3e918179ab52e9f98b3225b137900e64c5dccb9094
|
|
7
|
+
data.tar.gz: 09a9c355e90a457be99a1d1451d99077aa752d25754ac58eea2540c9a7a6034da4c14e0ef013fc2627ccdcfc4b1d0cc3b64fa7cef50d388c13febf9b43301883
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
### v2.7.8 (2020-09-29)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
* New attribute included_in_mrr has been added in addon and coupon resource
|
|
5
|
+
* New attribute offline_payment_method has been added in subscription and customer resource
|
|
6
|
+
* New input parameter included_in_mrr has been added in create_an_addon, update_an_addon, create_a_coupon and update_a_coupon apis.
|
|
7
|
+
* New input parameter offline_payment_method has been added in create_a_customer, list_customers, update_a_customer, create_a_subscription, create_subscription_for_customer and list_subscriptions apis
|
|
8
|
+
* New input parameter auto_collection has been added in update_a_subscription
|
|
9
|
+
* New input parameter subscription[offline_payment_method] has been added in create_subscription_estimate, create_subscription_for_a_customer_estimate, update_subscription_estimate, export_revenue_recognition_reports, export_deferred_revenue_reports, export_subscriptions, checkout_new_subscription and checkout_existing_subscription apis
|
|
10
|
+
* New input parameter subscription[auto_collection] has been added in checkout_existing_subscription and update_subscription_estimate apis
|
|
11
|
+
* New input parameter customer[offline_payment_method] has been added in export_revenue_recognition_reports, export_deferred_revenue_reports, export_customers and create_a_subscription
|
|
12
|
+
|
|
1
13
|
### v2.7.7 (2020-09-09)
|
|
2
14
|
* * *
|
|
3
15
|
|
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.7.
|
|
8
|
-
s.date = '2020-09-
|
|
7
|
+
s.version = '2.7.8'
|
|
8
|
+
s.date = '2020-09-29'
|
|
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
|
@@ -9,8 +9,8 @@ module ChargeBee
|
|
|
9
9
|
:price, :currency_code, :period, :period_unit, :unit, :status, :archived_at, :enabled_in_portal,
|
|
10
10
|
:tax_code, :taxjar_product_code, :avalara_sale_type, :avalara_transaction_type, :avalara_service_type,
|
|
11
11
|
:sku, :accounting_code, :accounting_category1, :accounting_category2, :is_shippable, :shipping_frequency_period,
|
|
12
|
-
:shipping_frequency_period_unit, :resource_version, :updated_at, :
|
|
13
|
-
:meta_data, :tiers, :show_description_in_invoices, :show_description_in_quotes
|
|
12
|
+
:shipping_frequency_period_unit, :resource_version, :updated_at, :included_in_mrr, :invoice_notes,
|
|
13
|
+
:taxable, :tax_profile_id, :meta_data, :tiers, :show_description_in_invoices, :show_description_in_quotes
|
|
14
14
|
|
|
15
15
|
# OPERATIONS
|
|
16
16
|
#-----------
|
|
@@ -4,7 +4,8 @@ module ChargeBee
|
|
|
4
4
|
attr_accessor :id, :name, :invoice_name, :discount_type, :discount_percentage, :discount_amount,
|
|
5
5
|
:discount_quantity, :currency_code, :duration_type, :duration_month, :valid_till, :max_redemptions,
|
|
6
6
|
:status, :apply_discount_on, :apply_on, :plan_constraint, :addon_constraint, :created_at, :archived_at,
|
|
7
|
-
:resource_version, :updated_at, :plan_ids, :addon_ids, :redemptions, :invoice_notes,
|
|
7
|
+
:resource_version, :updated_at, :included_in_mrr, :plan_ids, :addon_ids, :redemptions, :invoice_notes,
|
|
8
|
+
:meta_data
|
|
8
9
|
|
|
9
10
|
# OPERATIONS
|
|
10
11
|
#-----------
|
|
@@ -34,15 +34,15 @@ module ChargeBee
|
|
|
34
34
|
end
|
|
35
35
|
|
|
36
36
|
attr_accessor :id, :first_name, :last_name, :email, :phone, :company, :vat_number, :auto_collection,
|
|
37
|
-
:net_term_days, :vat_number_validated_time, :vat_number_status, :allow_direct_debit,
|
|
38
|
-
:created_at, :created_from_ip, :exemption_details, :taxability, :entity_code,
|
|
39
|
-
:resource_version, :updated_at, :locale, :
|
|
37
|
+
:offline_payment_method, :net_term_days, :vat_number_validated_time, :vat_number_status, :allow_direct_debit,
|
|
38
|
+
:is_location_valid, :created_at, :created_from_ip, :exemption_details, :taxability, :entity_code,
|
|
39
|
+
:exempt_number, :resource_version, :updated_at, :locale, :billing_date, :billing_date_mode,
|
|
40
40
|
:billing_day_of_week, :billing_day_of_week_mode, :pii_cleared, :card_status, :fraud_flag, :primary_payment_source_id,
|
|
41
41
|
:backup_payment_source_id, :billing_address, :referral_urls, :contacts, :payment_method, :invoice_notes,
|
|
42
42
|
:preferred_currency_code, :promotional_credits, :unbilled_charges, :refundable_credits, :excess_payments,
|
|
43
|
-
:balances, :meta_data, :deleted, :registered_for_gst, :
|
|
44
|
-
:client_profile_id, :relationship, :use_default_hierarchy_settings,
|
|
45
|
-
:child_account_access
|
|
43
|
+
:balances, :meta_data, :deleted, :registered_for_gst, :consolidated_invoicing, :customer_type,
|
|
44
|
+
:business_customer_without_vat_number, :client_profile_id, :relationship, :use_default_hierarchy_settings,
|
|
45
|
+
:parent_account_access, :child_account_access
|
|
46
46
|
|
|
47
47
|
# OPERATIONS
|
|
48
48
|
#-----------
|
|
@@ -35,7 +35,7 @@ module ChargeBee
|
|
|
35
35
|
:remaining_billing_cycles, :po_number, :created_at, :started_at, :activated_at, :gift_id, :contract_term_billing_cycle_on_renewal,
|
|
36
36
|
:override_relationship, :pause_date, :resume_date, :cancelled_at, :cancel_reason, :affiliate_token,
|
|
37
37
|
:created_from_ip, :resource_version, :updated_at, :has_scheduled_changes, :payment_source_id,
|
|
38
|
-
:auto_collection, :due_invoices_count, :due_since,
|
|
38
|
+
:auto_collection, :offline_payment_method, :due_invoices_count, :due_since,
|
|
39
39
|
:total_dues, :mrr, :exchange_rate, :base_currency_code, :addons, :event_based_addons, :charged_event_based_addons,
|
|
40
40
|
:coupon, :coupons, :shipping_address, :referral_info, :invoice_notes, :meta_data, :deleted,
|
|
41
41
|
:contract_term, :cancel_reason_code, :free_period, :free_period_unit
|
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.7.
|
|
4
|
+
version: 2.7.8
|
|
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: 2020-09-
|
|
12
|
+
date: 2020-09-29 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json_pure
|