Releases: typesense/typesense-js
Releases · typesense/typesense-js
v0.9.0
- Support for bulk deleting documents e36712c
v0.8.0
v0.7.1
v0.7.0
- Support for Typesense v0.15
- Custom error objects
v0.7.0-2
- Fix potential race condition with node health tracking 95e6bd9
v0.7.0-1
- Use custom error objects, add httpStatus to error object c439e75
v0.7.0-0
v0.6.2
v0.6.1
v0.6.0
- Expose Typesense.SearchClient, in addition to Typesense.Client.
- You can now do
import { SearchClient as TypesenseSearchClient } from "typesense"
if you only intend to use the search endpoint (for eg: from the browser). - Use
import { Client as TypesenseClient } from "typesense"
to use other endpoints (for eg: server-side). - [Breaking change] Default import is now deprecated. So this will not work any more:
import Typesense from "typesense"
. Instead use one of the named imports above. - You can continue using
require('typesense').Client
. The new SearchClient is available asrequire('typesense').SearchClient
- You can now do
- Expose Health and Metrics endpoints