import CheckoutIntents from 'checkout-intents';const client = new CheckoutIntents({ apiKey: process.env['CHECKOUT_INTENTS_API_KEY'], // This is the default and can be omitted});// Automatically fetches more pages as needed.for await (const shipment of client.checkoutIntents.shipments.list('id')) { console.log(shipment);}
import CheckoutIntents from 'checkout-intents';const client = new CheckoutIntents({ apiKey: process.env['CHECKOUT_INTENTS_API_KEY'], // This is the default and can be omitted});// Automatically fetches more pages as needed.for await (const shipment of client.checkoutIntents.shipments.list('id')) { console.log(shipment);}