Params to manage results pagination
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });// this only returns the first page of results:const webhookCalls = await client.webhookCalls.list();webhookCalls.forEach((webhookCall) => {console.log(webhookCall);});// this iterates over every page of results:for await (const webhookCall of client.webhookCalls.listPagedIterator()) {console.log(webhookCall);}}run();