mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
* Add stripe subscription methods Add root subscription methods, in addition to subscription methods that are defined on customer objects. https://stripe.com/docs/api/node#subscriptions * Bump version to stripe-node 4.6.0 * Update customers.retrieve signature * Fix wrong signature for stripe.customers.update The return type was Promise<IList<customers.ICustomer>> when in fact it should be Promise<customers.ICustomer> (it is a resource object, not a list) * Add created attribute to ISubscription interface