Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 1.2 KB

File metadata and controls

26 lines (16 loc) · 1.2 KB

Changelog

All notable changes to @auraone/sdk are documented here. This project follows Semantic Versioning.

[0.1.1] - 2026-05-11

Fixed

  • Packaging: the 0.1.0 wheel shipped dist/index.js as CJS while package.json had "type": "module". Node refused to load it under ESM rules. 0.1.1 renames the CJS bundle to dist/index.cjs and adds a proper exports map so both import and require resolve correctly.

[0.1.0] - 2026-05-11

Initial public release of the AuraOne TypeScript SDK.

Added

  • AuraOneClient with API-key and AuthProvider-based authentication.
  • Domain services covering evaluations, training, analytics, collaboration, governance, billing, integrations, labs, and the science suite.
  • LangChain and LlamaIndex plugin shims (src/plugins/langchain.ts, src/plugins/llamaindex.ts).
  • GraphQL client alongside REST (src/graphql/GraphQLClient.ts).
  • TypeScript types shipped in the package (dist/index.d.ts).

Notes