@algolia/client-search 5.5.3 → 5.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/browser.d.ts CHANGED
@@ -2956,7 +2956,7 @@ type UpdatedRuleResponse = {
2956
2956
  taskID: number;
2957
2957
  };
2958
2958
 
2959
- declare const apiClientVersion = "5.5.3";
2959
+ declare const apiClientVersion = "5.6.0";
2960
2960
  declare function createSearchClient({ appId: appIdOption, apiKey: apiKeyOption, authMode, algoliaAgents, ...options }: CreateClientOptions): {
2961
2961
  transporter: _algolia_client_common.Transporter;
2962
2962
  /**
@@ -1,5 +1,6 @@
1
1
  // builds/browser.ts
2
2
  import {
3
+ createNullLogger,
3
4
  createMemoryCache,
4
5
  createFallbackableCache,
5
6
  createBrowserLocalStorageCache,
@@ -18,7 +19,7 @@ import {
18
19
  ApiError,
19
20
  createIterablePromise
20
21
  } from "@algolia/client-common";
21
- var apiClientVersion = "5.5.3";
22
+ var apiClientVersion = "5.6.0";
22
23
  function getDefaultHosts(appId) {
23
24
  return [
24
25
  {
@@ -2366,6 +2367,7 @@ function searchClient(appId, apiKey, options) {
2366
2367
  read: DEFAULT_READ_TIMEOUT_BROWSER,
2367
2368
  write: DEFAULT_WRITE_TIMEOUT_BROWSER
2368
2369
  },
2370
+ logger: createNullLogger(),
2369
2371
  requester: createXhrRequester(),
2370
2372
  algoliaAgents: [{ segment: "Browser" }],
2371
2373
  authMode: "WithinQueryParameters",