chargebee-typescript
chargebee-typescript copied to clipboard
Typescript library for the Chargebee API.
Hi, The client.portal_session.create().request() is returning an invalid response. It is only including the responseHeaders to the response. The server is returning the portal session, but the library has a bug...
In chargebee we used additional fields inside `subscription` like `cf_filename` which is impossible with this library and we have to cast `subscription` object as `any`
Wodka's great work has been merged https://github.com/chargebee/chargebee-typescript/pull/23 and the productivity is much better now that we have typings in all the responses. How would one proceed forward to add typings...
When we [estimate change_term_end](https://apidocs.chargebee.com/docs/api/estimates?lang=node#subscription_change_term_end_estimate) we get a [estimate object](https://apidocs.chargebee.com/docs/api/estimates?prod_cat_ver=2) which would include [subscription_estimate](https://apidocs.chargebee.com/docs/api/estimates?prod_cat_ver=2&lang=typescript#subscription_estimate_attributes) which would include [contract_term](https://apidocs.chargebee.com/docs/api/estimates?prod_cat_ver=2&lang=typescript#estimate_contract_term). But the response never contains `contract_term`. Use case: Customers wants to change their...
Content is missing from hosted_page I am not sure that this is the correct way to handle this, but still creating a PR Fixes #40
Hi there, I'm trying to use this package for a work project to handle customer subscriptions using ChargeBee. I find there are way too many `any`s and loose typings that...
fixes #21 Idea is that we can configure this behaviour: ```ts const c = new ChargeBee() c.configure({ site: '***', api_key: '***', useErrorObject: true }) ```
Hey gang, is there a way to get a list of custom fields' names? What I currently do as part of our ELT tool is grab the latest 200ish items...
i did this request: ``` const result: ListResult = await this.chargebeeApi.plan .list({ limit: 100 }) .param({ "status[is]": "active", "cf_productgroup_id[in]": productGroupIds }) .request(); ``` where cf_productgroup_id is a cutom field. this...
The typescript version fails to build. It seems the q library was not imported in the request_wrapper.ts file. ``` n3m6@yuki:~/work/payments-service$ yarn run build yarn run v1.22.10 $ rimraf dist $...