chargebee 2.1.7 → 2.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5853c3e3c9e7bd296abb441da97c84f3e99e392f
4
- data.tar.gz: 2baeddc4f6094d4a6c965b25452efbeee0b9b126
3
+ metadata.gz: a2be260982365f9b6d73ac0ee6012e64ce6d6528
4
+ data.tar.gz: d96ffaa2c58a24760c6782ce07ebd2699f022a06
5
5
  SHA512:
6
- metadata.gz: 1a2531359883af4008ef0545c80ae849282b25d4fb42c07e53d98e72a07b1f4d2b62e1d4ce0da287874c4f6386d6ebc8fd0e82e8b3a44e1c1b582d19fd106198
7
- data.tar.gz: f8b685f69e7a9b81ecc26d39f5ab53bc6a4aa0743ea123e0f67d5c80605d956baef39a2d4b88e351a2581dd4b552ddbf8704301c2c930c2f64aca1e545961e79
6
+ metadata.gz: efda15f63dd1c252495bf66219d1b9e35781dbc4ba1c654c81633a641f4bde2b22c5b501a762a92dbcee44b7370080b8216bebde936fb5127d1a4be7621768b2
7
+ data.tar.gz: 73cd32d984c8ea1ea7553f8bfb91007f650e4cfc3a97433a6aad67a355398a8996f13e3f9b1c605fc974a0209f6df3862c78889bb381318054a85a8d51d2ef0b
@@ -1,3 +1,16 @@
1
+ ###v2.1.8 (2016-11-18)
2
+ * * *
3
+
4
+ ** APIs updated**:
5
+ A new attribute, 'tax_profile_id' has been added to Addon and Plan resource.
6
+ See : https://apidocs.chargebee.com/docs/api/plans#plan_attributes
7
+
8
+ The new input parameter 'tax_profile_id' has been added in Create and Update Addon and Plan APIs.
9
+ See : https://apidocs.chargebee.com/docs/api/plans#create_a_plan
10
+
11
+ The new cancel reason type 'non_compliant_customer' has been added to the Subscription resource.
12
+ See : https://apidocs.chargebee.com/docs/api/subscriptions#subscription_attributes
13
+
1
14
  ###v2.1.7 (2016-11-09)
2
15
  * * *
3
16
 
@@ -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 = '2.1.7'
8
- s.date = '2016-11-09'
7
+ s.version = '2.1.8'
8
+ s.date = '2016-11-18'
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."
@@ -33,9 +33,7 @@ Gem::Specification.new do |s|
33
33
  README.rdoc
34
34
  Rakefile
35
35
  chargebee.gemspec
36
- lib/.DS_Store
37
36
  lib/chargebee.rb
38
- lib/chargebee/.DS_Store
39
37
  lib/chargebee/environment.rb
40
38
  lib/chargebee/errors.rb
41
39
  lib/chargebee/list_result.rb
@@ -33,7 +33,7 @@ require File.dirname(__FILE__) + '/chargebee/models/download'
33
33
 
34
34
  module ChargeBee
35
35
 
36
- VERSION = '2.1.7'
36
+ VERSION = '2.1.8'
37
37
 
38
38
  @@default_env = nil
39
39
  @@verify_ca_certs = true
@@ -3,7 +3,7 @@ module ChargeBee
3
3
 
4
4
  attr_accessor :id, :name, :invoice_name, :description, :type, :charge_type, :price, :currency_code,
5
5
  :period, :period_unit, :unit, :status, :archived_at, :enabled_in_portal, :tax_code, :resource_version,
6
- :updated_at, :invoice_notes, :taxable, :meta_data
6
+ :updated_at, :invoice_notes, :taxable, :tax_profile_id, :meta_data
7
7
 
8
8
  # OPERATIONS
9
9
  #-----------
@@ -4,7 +4,7 @@ module ChargeBee
4
4
  attr_accessor :id, :name, :invoice_name, :description, :price, :currency_code, :period, :period_unit,
5
5
  :trial_period, :trial_period_unit, :charge_model, :free_quantity, :setup_cost, :downgrade_penalty,
6
6
  :status, :archived_at, :billing_cycles, :redirect_url, :enabled_in_hosted_pages, :enabled_in_portal,
7
- :tax_code, :resource_version, :updated_at, :invoice_notes, :taxable, :meta_data
7
+ :tax_code, :resource_version, :updated_at, :invoice_notes, :taxable, :tax_profile_id, :meta_data
8
8
 
9
9
  # OPERATIONS
10
10
  #-----------
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.1.7
4
+ version: 2.1.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: 2016-11-09 00:00:00.000000000 Z
12
+ date: 2016-11-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json_pure
@@ -82,9 +82,7 @@ files:
82
82
  - README.rdoc
83
83
  - Rakefile
84
84
  - chargebee.gemspec
85
- - lib/.DS_Store
86
85
  - lib/chargebee.rb
87
- - lib/chargebee/.DS_Store
88
86
  - lib/chargebee/environment.rb
89
87
  - lib/chargebee/errors.rb
90
88
  - lib/chargebee/list_result.rb
Binary file
Binary file