Remove the incorrect MultiSearch method and replace with this:
(ctx context.Context, searchRequests api.MultiSearchSearchesParameter)
| 223 | |
| 224 | // Remove the incorrect MultiSearch method and replace with this: |
| 225 | func (t *TypesenseClient) MultiSearch(ctx context.Context, searchRequests api.MultiSearchSearchesParameter) (*api.MultiSearchResult, error) { |
| 226 | return t.Client.MultiSearch.Perform(ctx, &api.MultiSearchParams{}, searchRequests) |
| 227 | } |
| 228 | |
| 229 | // HandleNotification processes incoming notifications and updates Typesense collections based on the table and data. |
| 230 | // It ensures the required fields exist and upserts the data into Typesense. |
nothing calls this directly
no outgoing calls
no test coverage detected