/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import dotenv from "dotenv"; dotenv.config(); /** * Example usage of the @hathora/cloud-sdk-typescript SDK * * To run this example from the examples directory: * npm run build && npx tsx tokensV1GetOrgTokens.example.ts */ import { HathoraCloud } from "@hathora/cloud-sdk-typescript"; const hathoraCloud = new HathoraCloud({ hathoraDevToken: "", }); async function main() { const result = await hathoraCloud.tokensV1.getOrgTokens( "org-6f706e83-0ec1-437a-9a46-7d4281eb2f39", ); console.log(result); } main().catch(console.error);