JS SDK pagination for analytics conversations details

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 } });

The SDK likely overrides pageToken if a page parameter exists in the request body or query string. Ensure the body only contains nextPageToken and explicitly omit page.

const body = { nextPageToken: response.nextPageToken };
// Do not include 'page' or 'pageSize'
const result = await analyticsApi.postAnalyticsConversationsDetailsQuery(body);

Check the generated request payload in browser dev tools to verify.