chargebee 1.4.4 → 1.4.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.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### v1.4.5 (2014-08-28)
2
+ * * *
3
+ * Customer id can be passed to the checkout new subscription operation.
4
+
5
+ * Added support for affiliate integration to accept affiliate token and the ip address from where the subscription was created.
6
+
1
7
  ### v1.4.4 (2014-08-13)
2
8
  * * *
3
9
  Added properties:
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.4.4'
8
- s.date = '2014-08-16'
7
+ s.version = '1.4.5'
8
+ s.date = '2014-08-28'
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
@@ -27,7 +27,7 @@ require File.dirname(__FILE__) + '/chargebee/models/download'
27
27
 
28
28
  module ChargeBee
29
29
 
30
- VERSION = '1.4.4'
30
+ VERSION = '1.4.5'
31
31
 
32
32
  @@default_env = nil
33
33
  @@verify_ca_certs = true
@@ -15,8 +15,8 @@ module ChargeBee
15
15
 
16
16
  attr_accessor :id, :plan_id, :plan_quantity, :status, :start_date, :trial_start, :trial_end,
17
17
  :current_term_start, :current_term_end, :remaining_billing_cycles, :created_at, :started_at,
18
- :activated_at, :cancelled_at, :cancel_reason, :due_invoices_count, :due_since, :total_dues,
19
- :addons, :coupon, :coupons, :shipping_address, :has_scheduled_changes
18
+ :activated_at, :cancelled_at, :cancel_reason, :affiliate_token, :created_from_ip, :due_invoices_count,
19
+ :due_since, :total_dues, :addons, :coupon, :coupons, :shipping_address, :has_scheduled_changes
20
20
 
21
21
  # OPERATIONS
22
22
  #-----------
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: chargebee
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.4.4
5
+ version: 1.4.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Rajaraman S
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2014-08-16 00:00:00 Z
14
+ date: 2014-08-28 00:00:00 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: json_pure