You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/client-search/src/searchClient.ts
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -908,6 +908,9 @@ export function createSearchClient({
908
908
909
909
/**
910
910
* 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).
911
+
*
912
+
* Required API Key ACLs:
913
+
* - addObject
911
914
* @param batch - The batch object.
912
915
* @param batch.indexName - Name of the index on which to perform the operation.
913
916
* @param batch.batchWriteParams - The batchWriteParams object.
@@ -1532,6 +1535,9 @@ export function createSearchClient({
1532
1535
1533
1536
/**
1534
1537
* 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>`.
1538
+
*
1539
+
* Required API Key ACLs:
1540
+
* - search
1535
1541
* @param getApiKey - The getApiKey object.
1536
1542
* @param getApiKey.key - API key.
1537
1543
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -2122,6 +2128,9 @@ export function createSearchClient({
2122
2128
2123
2129
/**
2124
2130
* 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).
2131
+
*
2132
+
* Required API Key ACLs:
2133
+
* - addObject
2125
2134
* @param batchParams - The batchParams object.
2126
2135
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
0 commit comments