Nikola Begedin
Nikola Begedin
The `Stripe.List` module should have support for fetching the next page of records. This can be done by using information from the properties of a `%Stripe.List{}` struct
Something like this: `Stripe.URI.encode_query` will fail on something like ```Elixir order = %{ currency: "usd", customer: "customer_id", items: [ %{parent: "sku_id", quantity: 4, type: "sku"} ] } ``` However, per...
From #187, if we similarly pattern match on the root object key, we should be able to eliminate the need to send a module as a parameter to `Converter.stripe_map_to_struct`. If...
Some stripe objects, such as events or subscriptions can contain other objects. In the case of subscriptions, the "sub-object" is always a plan, so we rely on the `@relationships` attribute...
As far as I can tell, `additional_owners` is a list where each item can be basically an additional legal entity. We do not support such a case yet so we...
Encountered this problem when working on #166. Lists aren't being properly mapped ~~at all~~. EDIT: I was being hasty here and made a mistake. Turns out, the list does get...
In our project, we would like to use `ja_resource` but we're having issues with authorising users. In a lot of cases, the user being authorised to perform an action depends...
As of [ember-cli `2.17.0`](https://github.com/ember-cli/ember-new-output/blob/v2.17.0/tests/test-helper.js), the `test-helper` module no longer uses the custom `tests/helpers/resolver.js` and instead defaults to the `app/resolver.js`. Basically, the whole `tests/helpers/resolver.js` file is removed completely. With it gone,...
Closes #1699 and a bunch of other tasks I have yet to identify This PR updates `ember-cli` and `ember-source` to the latest version. With that, comes a bunch of other...
# Problem ember-cli-page-object now has the option to no longer rely on global test helpers and instead use native DOM helpers. https://github.com/san650/ember-cli-page-object/releases/tag/v1.13.0 However, enabling this option in our case breaks...