/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import dotenv from "dotenv"; dotenv.config(); /** * Example usage of the @gusto/embedded-api SDK * * To run this example from the examples directory: * npm run build && npx tsx introspectionGetInfo.example.ts */ import { GustoEmbedded } from "@gusto/embedded-api"; const gustoEmbedded = new GustoEmbedded({ companyAccessAuth: process.env["GUSTOEMBEDDED_COMPANY_ACCESS_AUTH"] ?? "", }); async function main() { const result = await gustoEmbedded.introspection.getInfo({}); console.log(result); } main().catch(console.error);