The TS SDK postAnalyticsConversationsDetailsQuery doesn’t seem to support cursor-based pagination, unlike the REST spec. I’m using the pageToken from the response in the next request body, but the SDK client keeps appending ?page=1 to the URL, which breaks the cursor logic and returns empty results. Is there a way to disable the default page param or force cursor mode in the options? Here’s the call:
const res = await client.analytics.postAnalyticsConversationsDetailsQuery({ body: { pageToken: prevToken } });