/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import dotenv from "dotenv"; dotenv.config(); /** * Example usage of the @flexprice/sdk SDK * * To run this example from the examples directory: * npm run build && npx tsx addonsCreateAddon.example.ts */ import { Flexprice } from "@flexprice/sdk"; const flexprice = new Flexprice({ apiKeyAuth: "", }); async function main() { const result = await flexprice.addons.createAddon({ lookupKey: "", name: "", }); console.log(result); } main().catch(console.error);