@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.
@@ -11,7 +11,7 @@ import {
11
11
  getAlgoliaAgent,
12
12
  shuffle
13
13
  } from "@algolia/client-common";
14
- var apiClientVersion = "5.41.0";
14
+ var apiClientVersion = "5.42.0";
15
15
  function getDefaultHosts(appId) {
16
16
  return [
17
17
  {
@@ -658,6 +658,9 @@ function createSearchClient({
658
658
  },
659
659
  /**
660
660
  * 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).
661
+ *
662
+ * Required API Key ACLs:
663
+ * - addObject
661
664
  * @param batch - The batch object.
662
665
  * @param batch.indexName - Name of the index on which to perform the operation.
663
666
  * @param batch.batchWriteParams - The batchWriteParams object.
@@ -1156,6 +1159,9 @@ function createSearchClient({
1156
1159
  },
1157
1160
  /**
1158
1161
  * 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>`.
1162
+ *
1163
+ * Required API Key ACLs:
1164
+ * - search
1159
1165
  * @param getApiKey - The getApiKey object.
1160
1166
  * @param getApiKey.key - API key.
1161
1167
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1638,6 +1644,9 @@ function createSearchClient({
1638
1644
  },
1639
1645
  /**
1640
1646
  * 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).
1647
+ *
1648
+ * Required API Key ACLs:
1649
+ * - addObject
1641
1650
  * @param batchParams - The batchParams object.
1642
1651
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1643
1652
  */