chargebee 1.6.0 → 1.6.1

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: 3ea8b0c2b9dc8e9df25b457bb58cfdf0fba93328
4
- data.tar.gz: 6553f9b49e3fd73075e693e0e59b1fa4011548a1
3
+ metadata.gz: 0f1a9bc744202ae2c3a0bd267ae3089a2682de37
4
+ data.tar.gz: 6d4c6853ed835e467e4a9fd58d740d08ae9e8daa
5
5
  SHA512:
6
- metadata.gz: c81245e4704574b77e6349f0bba7dea9c71e3eda900ee667180541cdd704503aff563c238e3912f36a052ecb1e910a49926210acab905db440a1cf590759461a
7
- data.tar.gz: b0696eeb706120e3249aae8c0b6bef5d9f0b7b98bdc39b66769c8f47ae36924851273e7b24538cdc330345f209695ed4a831f600bc48b7daa0c6ce4e616a26c2
6
+ metadata.gz: e5b3beed82df8f9a578123199222fccde14dec0d63331c7f014794bf0f62f75067f6db84d6410a1736a21aba28f870a5ed8895c94910ff56c629ed3909502745
7
+ data.tar.gz: a6182b2dd4251a770bda8f8535531eaf3a9c80490c0a0ff0729edb93290af9342d42cc85cf5ea7cff07eac47fe222ca8056f52243515642d62c0137a79d1b3ed
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ### v1.6.1 (2015-08-25)
2
+ * * *
3
+
4
+ ** APIs updated**:
5
+
6
+ The attribute for "first_invoice" & "currency_code" is returned as part of Invoice resource.
7
+ See : https://apidocs.chargebee.com/docs/api/invoices#invoice_attributes
8
+
9
+ The attribute for "currency_code" is returned as part of Transaction resource.
10
+ See : https://apidocs.chargebee.com/docs/api/transactions#transaction_attributes
11
+
12
+ A new source type "bulk_operation" is returned as part of "source" attribute of event resource.
13
+ See : https://apidocs.chargebee.com/docs/api/events#event_attributes
14
+
1
15
  ### v1.6.0 (2015-07-20)
2
16
  * * *
3
17
 
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.6.0'
8
- s.date = '2015-07-20'
7
+ s.version = '1.6.1'
8
+ s.date = '2015-08-25'
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
@@ -28,7 +28,7 @@ require File.dirname(__FILE__) + '/chargebee/models/download'
28
28
 
29
29
  module ChargeBee
30
30
 
31
- VERSION = '1.6.0'
31
+ VERSION = '1.6.1'
32
32
 
33
33
  @@default_env = nil
34
34
  @@verify_ca_certs = true
@@ -35,8 +35,8 @@ module ChargeBee
35
35
 
36
36
  attr_accessor :id, :po_number, :customer_id, :subscription_id, :recurring, :status, :vat_number,
37
37
  :start_date, :end_date, :amount, :amount_due, :paid_on, :dunning_status, :next_retry, :sub_total,
38
- :tax, :line_items, :discounts, :taxes, :linked_transactions, :linked_orders, :notes, :shipping_address,
39
- :billing_address
38
+ :tax, :first_invoice, :currency_code, :line_items, :discounts, :taxes, :linked_transactions,
39
+ :linked_orders, :notes, :shipping_address, :billing_address
40
40
 
41
41
  # OPERATIONS
42
42
  #-----------
@@ -7,7 +7,7 @@ module ChargeBee
7
7
 
8
8
  attr_accessor :id, :customer_id, :subscription_id, :payment_method, :reference_number, :gateway,
9
9
  :description, :type, :date, :amount, :id_at_gateway, :status, :error_code, :error_text, :voided_at,
10
- :void_description, :masked_card_number, :refunded_txn_id, :linked_invoices
10
+ :void_description, :masked_card_number, :refunded_txn_id, :linked_invoices, :currency_code
11
11
 
12
12
  # OPERATIONS
13
13
  #-----------
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.6.0
4
+ version: 1.6.1
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: 2015-07-20 00:00:00.000000000 Z
12
+ date: 2015-08-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json_pure