/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import dotenv from "dotenv"; dotenv.config(); /** * Example usage of the @codat/bank-feeds SDK * * To run this example from the examples directory: * npm run build && npx tsx companiesCreate.example.ts */ import { CodatBankFeeds } from "@codat/bank-feeds"; const codatBankFeeds = new CodatBankFeeds({ authHeader: "Basic BASE_64_ENCODED(API_KEY)", }); async function main() { const result = await codatBankFeeds.companies.create({ name: "Technicalium", }); console.log(result); } main().catch(console.error);