JS SDK paginateAll returns partial results for v2/routing/queues

Trying to fetch all queues across divisions using the JS SDK. The paginateAll wrapper on getRoutingQueues stops after 100 items even though there are clearly more. Checked the response headers and nextPage is null, but the total count is higher. Is this a known SDK bug or am I missing a config param?

const queues = await platformClient.routing.queues.getRoutingQueues({
 pageSize: 1000,
 divisionId: null
}).paginateAll();
console.log(queues.length); // 100