/** * Loki Mode SDK - Public API * * loki-mode-sdk - TypeScript/Node.js SDK for the Loki Mode Control Plane API. * * Usage: * import { AutonomiClient } from 'loki-mode-sdk'; * const client = new AutonomiClient({ baseUrl: 'http://localhost:57374', token: 'loki_xxx' }); * const projects = await client.listProjects(); */ export { AutonomiClient } from './client.js'; export type { ClientOptions, Project, Task, Run, RunEvent, Tenant, ApiKey, AuditEntry, AuditQueryParams, AuditVerifyResult, } from './types.js'; export { AutonomiError, AuthenticationError, ForbiddenError, NotFoundError, } from './errors.js'; //# sourceMappingURL=index.d.ts.map