SDK
Core Client
The namespace map exposed by LemmaClient and how to work with pod-scoped versus org/user surfaces.
Namespaces
| Scope | Namespaces |
|---|---|
| Pod-scoped | tables, records, files, functions, agents, conversations, workflows, apps, resources, schedules, datastore |
| Org and user | users, organizations, pods, podMembers, podJoinRequests, podSurfaces, icons |
| External systems | connectors |
Switch pod scope
const rootClient = new LemmaClient({ apiUrl, authUrl });
const podClient = rootClient.withPod("<pod-id>");
const tables = await podClient.tables.list();
const currentUser = await podClient.users.current();