Skip to content

v0.5.0 🔗

Choose a tag to compare

@meili-bot meili-bot released this 24 May 10:29
· 1385 commits to main since this release
6e86860

Changes

Breaking changes ⚠️

Access MeiliSearch Client

Now:

const searchClient = instantMeiliSearch(..)
searchClient.client.MeiliSearchClient

Before:

const searchClient = instantMeiliSearch(..)
searchClient.client.client

instantMeilisearch search client has less parameters

more details see #378
New prototype:

export type InstantMeiliSearchInstance = {
  MeiliSearchClient: MStypes.MeiliSearch
  search: (
    requests: IStypes.SearchRequest[]
  ) => Promise<{ results: SearchResponse[] }>
}

Thanks again to @bidoubiwa ! 🎉