/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import dotenv from "dotenv"; dotenv.config(); /** * Example usage of the @moovio/sdk SDK * * To run this example from the examples directory: * npm run build && npx tsx accountsCreate.example.ts */ import { Moov } from "@moovio/sdk"; const moov = new Moov({ xMoovVersion: "v2024.01.00", security: { username: "", password: "", }, }); async function main() { const result = await moov.accounts.create({ accountType: "business", profile: { business: { legalBusinessName: "Whole Body Fitness LLC", }, }, }); console.log(result); } main().catch(console.error);