Hey, I was trying to implement typesense API in the frontend. Had two problems while implementing:
a. How to hide the API (search key) in the frontend without making any request to the backend. Is there any specific configuration we can do?
b. I am calling the API search request in a synchronous function but it won't work as the API request returns a promise and hence to make it work I would need to update my synchronous function to async. Is there a way to make a synchronous call to API for search?