I’m using the klaviyo-api-node SDK to try and paginate templates for importing in an integration. I’m running into a problem where the `prev` link in the response is always set to `null` like so:
{
"self": "https://a.klaviyo.com/api/templates/?page[cursor]=bmV4dDo6LXVwZGF0ZWQ6OjIwMjAtMTEtMjAgMjI6Mzk6MTcrMDA6MDA&sort=-updated",
"prev": null,
"next": "https://a.klaviyo.com/api/templates/?page%5Bcursor%5D=bmV4dDo6LXVwZGF0ZWQ6OjIwMTktMDktMjMgMjE6NDY6MjErMDA6MDA&sort=-updated"
}
Every time I make a call to getTemplates, the prev link is null, not just the initial call. Any idea why this could be happening?