### Confirm this is a Typescript library issue and not an underlying Cloudflare API issue - [x] This is an issue with the Typescript library ### Describe the bug client.iam.resourceGroups.list isn't paginating properly, resulting in an infinite loop. ### To Reproduce Cloudflare SDK v4.5.0 See the code snippet below; the loop is not ending. ### Code snippets ```Typescript for await (const resourceGroup of client.iam.resourceGroups.list({ account_id: account.id, })) { console.log(`${account.id} ${resourceGroup.name} :`, resourceGroup) } ``` ### OS macOS ### Runtime version Typescript 5.9.2 ### Library version v4.5.0