mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-16 18:44:33 +00: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