Charlie W
Charlie W
I'm attempting to import a bunch of records for a custom object. Can that be accomplished with this library? https://developer.zendesk.com/api-reference/custom-data/custom-objects-api/resources/#create-object-record
When nodemon restarts the app it crashes: `Starting inspector on 0.0.0.0:9229 failed: address already in use` I tried upgrading to newer version of nodemon, not sure what else to do...
This is shown as a type error, however it is a valid API call: ```js // returns matching product results const productResponse = await swell.products.list({ id: { $in: productIds }...
When an api call doesn't succeed, there is an "errors" property returned from swellj-s. For example: ```js const cart = await swell.cart.get() if(cart.errors){ // handle errors } ``` This isn't...
I need to get an amortization where the payment is made in the beginning of the pay period, not the end. This is known as an "annuity due". If anyone...
Added batch contact endpoint. Allows updating many contacts at once. The default limit in Mautic is 200 records per request. https://developer.mautic.org/#edit-batch-contact
I believe this library is missing the contact batch endpoints. https://developer.mautic.org/?json#edit-batch-contact
### Describe the bug I'm seeing a lot of duplicate requests when a user visits our website. We are running on Sveltekit with ISR using the guide here: https://kit.svelte.dev/docs/adapter-vercel#incremental-static-regeneration When...