import Limitry from '@limitry/sdk';const client = new Limitry({ apiKey: process.env['LIMITRY_API_KEY'], // This is the default and can be omitted});// Automatically fetches more pages as needed.for await (const customer of client.customers.list()) { console.log(customer.id);}
import Limitry from '@limitry/sdk';const client = new Limitry({ apiKey: process.env['LIMITRY_API_KEY'], // This is the default and can be omitted});// Automatically fetches more pages as needed.for await (const customer of client.customers.list()) { console.log(customer.id);}