@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.
@@ -1,6 +1,7 @@
1
1
  // builds/node.ts
2
2
  import { createHmac } from "node:crypto";
3
3
  import {
4
+ createNullLogger,
4
5
  createMemoryCache,
5
6
  createNullCache,
6
7
  serializeQueryParameters,
@@ -19,7 +20,7 @@ import {
19
20
  ApiError,
20
21
  createIterablePromise
21
22
  } from "@algolia/client-common";
22
- var apiClientVersion = "5.5.3";
23
+ var apiClientVersion = "5.6.0";
23
24
  function getDefaultHosts(appId) {
24
25
  return [
25
26
  {
@@ -2368,6 +2369,7 @@ function searchClient(appId, apiKey, options) {
2368
2369
  read: DEFAULT_READ_TIMEOUT_NODE,
2369
2370
  write: DEFAULT_WRITE_TIMEOUT_NODE
2370
2371
  },
2372
+ logger: createNullLogger(),
2371
2373
  requester: createHttpRequester(),
2372
2374
  algoliaAgents: [{ segment: "Node.js", version: process.versions.node }],
2373
2375
  responsesCache: createNullCache(),