chargebee
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -0,1 +1,25 @@ | ||
### v2.0.2 (2016-04-29) | ||
* * * | ||
** APIs updated** | ||
Support to specify Avalara "tax_code" attribute in Plan and Addon resource. Now, create and update plan, create & update addon accept "tax_code" parameter. See create plan API here : https://apidocs.chargebee.com/docs/api/plans#create_a_plan | ||
Support to specify the exemption category or exempt number for a customer by adding "entity_code" or "exempt_number" in customer resource. You can pass "entity_code" and "exempt_number" in create, update customer, create subscription and create subscription estimate APIs. See create customer API here : https://apidocs.chargebee.com/docs/api/customers#create_a_customer | ||
The attribute "entity_code" or "exempt_number" is returned as part of Customer resource for Avalara. | ||
See: https://apidocs.chargebee.com/docs/api/customers#customer_attributes | ||
The attribute "tax_code" is returned as part of Plan & Addon resources for Avalara. | ||
See : https://apidocs.chargebee.com/docs/api/plans#plan_attributes | ||
Support for address parameters in estimate APIs that is used to calculate tax. Now, create & update subscription estimate APIs accept line1, line2, line3 and city. See : https://apidocs.chargebee.com/docs/api/estimates#estimate_attributes | ||
The new Cancel reason type "tax_calculation_failed" for subscription resource is added. See subscription attributes | ||
See : https://apidocs.chargebee.com/docs/api/subscriptions#subscription_attributes | ||
** APIs deprecated**: | ||
The attribute "taxability" for customer has been deprecated in the Update Subscription Estimate API. | ||
### v2.0.1 (2016-04-16) | ||
@@ -2,0 +26,0 @@ * * * |
@@ -10,3 +10,3 @@ var ChargeBee = {}; | ||
timeout: 40000, | ||
clientVersion: 'v2.0.1', | ||
clientVersion: 'v2.0.2', | ||
port: 443 | ||
@@ -13,0 +13,0 @@ }; |
{ | ||
"name":"chargebee", | ||
"version":"2.0.1", | ||
"version":"2.0.2", | ||
"description":"A library for integrating with ChargeBee.", | ||
@@ -5,0 +5,0 @@ "keywords":[ |
# Chargebee Node Client Library - API V2 | ||
The [node.js](http://nodejs.org/) library for integrating with Chargebee Recurring Billing and Subscription Management solution. | ||
[![npm](https://img.shields.io/npm/dt/chargebee.svg?maxAge=2592000)]() | ||
[![npm](https://img.shields.io/npm/v/chargebee.svg?maxAge=2592000)]() | ||
Chargebee now supports two API versions - [V1](https://apidocs.chargebee.com/docs/api/v1) and [V2](https://apidocs.chargebee.com/docs/api), of which V2 is the latest release and all future developments will happen in V2. | ||
This is the [node.js](http://nodejs.org/) Library for integrating with Chargebee. Sign up for a Chargebee account [here](https://www.chargebee.com). | ||
This library is for our <b>API version V2</b>. The library for V1 can be found in [chargebee-v1 branch](https://github.com/chargebee/chargebee-node/tree/chargebee-v1). | ||
Chargebee now supports two API versions - [V1](https://apidocs.chargebee.com/docs/api/v1) and [V2](https://apidocs.chargebee.com/docs/api), of which V2 is the latest release and all future developments will happen in V2. This library is for <b>API version V2</b>. If you’re looking for V1, head to [chargebee-v1 branch](https://github.com/chargebee/chargebee-node/tree/chargebee-v1). | ||
### Processing Webhooks - API Version Check | ||
@@ -11,0 +11,0 @@ |
51643