@algolia/client-search 5.41.0 → 5.42.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.
@@ -20,7 +20,7 @@ import {
20
20
  getAlgoliaAgent,
21
21
  shuffle
22
22
  } from "@algolia/client-common";
23
- var apiClientVersion = "5.41.0";
23
+ var apiClientVersion = "5.42.0";
24
24
  function getDefaultHosts(appId) {
25
25
  return [
26
26
  {
@@ -667,6 +667,9 @@ function createSearchClient({
667
667
  },
668
668
  /**
669
669
  * Adds, updates, or deletes records in one index with a single API request. Batching index updates reduces latency and increases data integrity. - Actions are applied in the order they\'re specified. - Actions are equivalent to the individual API requests of the same name. This operation is subject to [indexing rate limits](https://support.algolia.com/hc/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia).
670
+ *
671
+ * Required API Key ACLs:
672
+ * - addObject
670
673
  * @param batch - The batch object.
671
674
  * @param batch.indexName - Name of the index on which to perform the operation.
672
675
  * @param batch.batchWriteParams - The batchWriteParams object.
@@ -1165,6 +1168,9 @@ function createSearchClient({
1165
1168
  },
1166
1169
  /**
1167
1170
  * Gets the permissions and restrictions of an API key. When authenticating with the admin API key, you can request information for any of your application\'s keys. When authenticating with other API keys, you can only retrieve information for that key, with the description replaced by `<redacted>`.
1171
+ *
1172
+ * Required API Key ACLs:
1173
+ * - search
1168
1174
  * @param getApiKey - The getApiKey object.
1169
1175
  * @param getApiKey.key - API key.
1170
1176
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1647,6 +1653,9 @@ function createSearchClient({
1647
1653
  },
1648
1654
  /**
1649
1655
  * Adds, updates, or deletes records in multiple indices with a single API request. - Actions are applied in the order they are specified. - Actions are equivalent to the individual API requests of the same name. This operation is subject to [indexing rate limits](https://support.algolia.com/hc/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia).
1656
+ *
1657
+ * Required API Key ACLs:
1658
+ * - addObject
1650
1659
  * @param batchParams - The batchParams object.
1651
1660
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1652
1661
  */