pjullrich/lemon_ex
v0.2.3 - 2024-06-25
- Add
UsageRecordsendpoints. - Accept the API-key as a request option in all endpoints.
- Add a Livebook for easier local testing of endpoints.
v0.2.2
- Add
first_subscription_itemto Subscriptions
v0.2.1
- Set all dependencies to version
>= 0.0.0to prevent version conflicts with applications that use the library.
v0.2.0
- BREAKING Move
filterparameters for alllist-calls to afilter: [...]-option.- If you previously filtered record with e.g.
Customers.list(name: "test@test.com")you now have to wrap the filters with afilter-option likeCustomers.list(filter: [name: "test@test.com"])
- If you previously filtered record with e.g.
- Add
pageparameter tolist-calls.- For example,
Customers.list(page: [size: 2, number: 5])will return page 5 with page_size 2. You can combine it filters and other parameters like so:Customers.list(filter: [name: "Peter Ullrich"], page: [size: 2, number: 5], sort: "-name")
- For example,
v0.1.7
- Add
customer_portaltoCustomer.urls
v0.1.6
- Upgrade HTTPoison to
2.1 - Add
request_optionsto the config. You can set any HTTPoison options here and they will be respected in all HTTP requests.
v0.1.5
- Add
urlsandcustomer_idtoOrder