algoliasearch-client-javascript
algoliasearch-client-javascript copied to clipboard
⚡️ A fully-featured and blazing-fast JavaScript API client to interact with Algolia.
I am trying to implement automatic key refresh using `getSecuredApiKeyRemainingValidity` but the function only exported in the node bundle. Would you accept a PR to make `getSecuredApiKeyRemainingValidity` work in the...
There is 403 error on add API key: 'algoliasearch.exceptions.RequestException: Invalid Application-ID or API key' Used admin APi key to send request. Key was been regenerated - problem same. Same situation...
I'm using rollup and experiencing the below error when trying to use `import algoliasearch from "algoliasearch";` ``` 'default' is not exported by node_modules/algoliasearch/index.js ``` Yet that index.js does export default?...
The project is written in plain JavaScript for Node v16 in the ES Modules format (`type: module` in `package.json`). TypeScript is used as a type checking tool built into the...
This package has a non standard behavior of throwing objects instead of real JS Errors. As it works approximately in the same way in most cases and these objects are...
Hi, I am just trying to implement Algolia Search into my Vite Vue project. Problem: That's what my import looks like: ```js import algoliasearch, {SearchClient} from "algoliasearch"; ``` It always...
Could you consider using ECMAScript Modules ? Warning is raised when compiling app with `angular-instantsearch` From angular documentation : > It is recommended that you avoid depending on CommonJS modules...
The current type of `facets` in the searchOptions is: https://github.com/algolia/algoliasearch-client-javascript/blob/ba59b68aa9494c29e284ed45e924267d7388baa9/packages/client-search/src/types/SearchOptions.ts#L104 Nonetheless, while this is true when no facets are checked, once it is `facets` may contain a string.
vue-instantsearch_vue3_es.js?v=dd66d1ff:15167 Uncaught (in promise) RetryError: Unreachable hosts - your application id may be incorrect. If the error persists, contact [email protected]. at AlgoliaSearchHelper. (vue-instantsearch_vue3_es.js?v=dd66d1ff:15167:14) at EventEmitter2.emit (vue-instantsearch_vue3_es.js?v=dd66d1ff:75:21) at AlgoliaSearchHelper._dispatchAlgoliaError (vue-instantsearch_vue3_es.js?v=dd66d1ff:3508:12)
We want to migrate to v4 from v5, but migrating even this snippet is problematic: ```typescript const object = await algoliasearch(algoliaApplicationId, algoliaApiKey) .initIndex(productsAlgoliaIndex) .getObjects(productIds) ``` I see in source code...