meilisearch-js
meilisearch-js copied to clipboard
JavaScript client for the Meilisearch API
The UMD bundled version has the following code in it's http request class: ```javascript if (typeof fetch === 'undefined') { require('cross-fetch/polyfill'); } ``` As far as I know browsers don't...
**Description** The Meilisearch JavaScript library, meilisearch-js, is causing my TypeScript project to fail to compile due to some type signature errors in the file http-requests.ts. I have cloned the repo,...
# Pull Request ## Related issue Fixes #1437 ## What does this PR do? The users agents for BrowserClient and NodeClient have been differentiated as per the issue for better...
The idea is to send a new `Meilisearch Node (v0.0.0)` alongside the current user agents when the user requests on the backend side. I think there are valuable insights if...
I'm encountering an unexpected behavior when combining distinctAttribute with pagination (offset and limit) in MeiliSearch. "meilisearch": "^0.35.0",
Currently, as per #1461 it is now possible to provide a custom httpClient and requestOptions when instanciating your `Client`. See example: https://github.com/meilisearch/meilisearch-js/blob/870f0f5aa737c19578fa786ca2280bd0d0e1d8fa/tests/client.test.ts#L52-L66 Ideally, we would like to be able to...
We have a lot of repetition around the assertions of the keys in the response like: We could create a way to reuse them and make it simpler to read...
Related to this issue: https://github.com/meilisearch/integration-guides/issues/299 This PR: - gathers the changes related to the next Meilisearch release (v1.8.0) so that this package is ready when the official release is out....
Related to https://github.com/meilisearch/integration-guides/issues/299 ### Quick explanation of the changes Related issue in the engine: https://github.com/meilisearch/meilisearch/issues/4481 ⚠️ Refer to - the usage page for any details about the changes: https://meilisearch.notion.site/v1-8-AI-search-API-usage-135552d6e85a4a52bc7109be82aeca42?pvs=4 -...
# Pull Request ## Related issue Close #1240 ## What does this PR do? - Generates the documentation from code using `typedoc` package. - Use GitHub Actions to update the...