import { Petstore } from "meep-moop"; const petstore = new Petstore({ apiKey: "<YOUR_API_KEY_HERE>", }); async function run() { const result = await petstore.pet.findPetsByTags({}); console.log(result); } run();