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