stripity-stripe
stripity-stripe copied to clipboard
An Elixir Library for Stripe
Dear maintainers, I was wondering whether you are planning on upgrading this library to the latest Stripe API version, which currently is `2020-08-27`. This would include upgrading to the [Stripe...
Maybe I have missed it but does stripity_stripe support the creation of billing portal configurations (https://stripe.com/docs/api/customer_portal/configurations/create)?
Adds the `destionation_balance` field to `Topup`. This field is in preview so I don't know if the PR can be merged yet. The test I added doesn't pass because Stripe...
Currently we cannot compile stripity_stripe anymore due to this error after upgrading to elixir 1.12 (application boundary crossing) ```elixir [info] Application plug_crypto exited: exited in: Plug.Crypto.Application.start(:normal, []) ** (EXIT) an...
Stripe added [Test Clocks](https://stripe.com/docs/billing/testing/test-clocks) few weeks ago. It could be extremely helpful with testing complex billing scenarios. This is my first PR on this repository. Please, take a look and...
If you don't have `plug` as a dependency, `stripity_stripe` will fail to compile because of [`Stripe.WebhookPlug`](https://github.com/code-corps/stripity_stripe/blob/master/lib/stripe/webhook_plug.ex). This sort of precludes Elixir apps that need to connect with Stripe but don't...
https://stripe.com/docs/api/external_account_bank_accounts/create?lang=curl According to the doc the `external_account` param can be as well a BankAccount hash of values, which is implemented by this PR It seems that `stripe-mock` doesn't accept a...
Solves the issue https://github.com/code-corps/stripity_stripe/issues/627
Part of getting a stripe checkout form working involves generating a payment intent where the `:automatic_payment_methods` property is set to a map, %{enabled: true} Following documentation here: https://stripe.com/docs/payments/quickstart https://stripe.com/docs/api/payment_intents/create#create_payment_intent-payment_method_options Attempting...
The [docs](https://hexdocs.pm/stripity_stripe/2.12.1/Stripe.WebhookPlug.html#module-runtime-configuration) say you can configure `Stripe.WebhookPlug` like this: ```elixir # Or, with a function plug Stripe.WebhookPlug, at: "/webhook/stripe", handler: MyAppWeb.StripeHandler, secret: fn -> Application.get_env(:myapp, :stripe_webhook_secret) end ``` However, doing...