import { Petstore } from "ryan-simple-test-act";
const petstore = new Petstore({
apiKey: "<YOUR_API_KEY_HERE>",
});
async function run() {
const result = await petstore.pet.petsStoreMonday({
id: 10,
name: "doggie",
category: {
id: 1,
name: "Dogs",
},
photoUrls: [
"<value>",
],
});
// Handle the result
console.log(result);
}
run();