import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.roles.get({
roleId: "role_LMmAD8vldwop2",
});
console.log(result);
}
run();