import BeaverdockAPI from 'beaverdock-api';const client = new BeaverdockAPI({ apiKey: process.env['BEAVERDOCK_API_API_KEY'], // This is the default and can be omitted});const pet = await client.pet.update({ name: 'doggie', photoUrls: ['string'] });console.log(pet.id);
import BeaverdockAPI from 'beaverdock-api';const client = new BeaverdockAPI({ apiKey: process.env['BEAVERDOCK_API_API_KEY'], // This is the default and can be omitted});const pet = await client.pet.update({ name: 'doggie', photoUrls: ['string'] });console.log(pet.id);