dmjio

Results 138 comments of dmjio

@dmalikov @mitchellwrosen said there was already a pull request for this, meaning someone raised the issue before I did, making this issue redundant. I'll reopen since building still doesn't work...

Hi @emhoracek, and thank you :) Unfortunately, this library does not (yet?) support Stripe Connect. It was actually added to the old `stripe` library by @LukeHoersten. If you ask nicely...

@aviaviavi that's correct. PRs always welcome. Let me know if you want to collaborate on it.

There is a nuance (specifically for customers, and only customers), that retrieving deleted customer records don't 404, they stick around. I agree that these partial functions need to be removed...

@dbp, thought of a solution to this. Then make all customer retrieval functions use this. ``` haskell {-# LANGUAGE FlexibleInstances #-} import Control.Applicative import Data.Aeson instance FromJSON (Either DeletedCustomer Customer)...

This issue is a bit of a pickle. I've implemented: ```haskell newtype CustomerResult = CustomerResult (Either DeletedCustomer Customer) deriving (LotsOfThings) ``` All the tests pass except for one. For some...

Yea, unsure why. Maybe some actions are being called out of order.

Hey @linzjax , I've added a branch here for this https://github.com/dmjio/stripe/pull/113. Maybe it would be possible to use `stripe-mock` as a forcing function to upgrade this library (which is by...

@linzjax 2012 !? I thought I was in the dark ages with only supporting 2014 :) Didn't mean to abandon this issue. I will update the #113 to make this...

Hey Jason, can you confirm the Stripe API version is being passed along in the HTTP header on the request. Sent from my iPhone > On Jul 4, 2016, at...