Skip to content

Commit 56affed

Browse files
chore: generated code for commit 56c17ce. [skip ci]
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 56c17ce commit 56affed

File tree

3 files changed

+44
-44
lines changed

3 files changed

+44
-44
lines changed

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/SearchClient.java

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ private Call batchValidateBeforeCall(
585585
}
586586

587587
/**
588-
* Performs multiple write operations in a single API call.
588+
* Perform multiple write operations targeting one index, in a single API call.
589589
*
590590
* @param indexName The index in which to perform the request. (required)
591591
* @param batchWriteParams (required)
@@ -608,7 +608,7 @@ public BatchResponse batch(
608608
}
609609

610610
/**
611-
* (asynchronously) Performs multiple write operations in a single API call.
611+
* (asynchronously) Perform multiple write operations targeting one index, in a single API call.
612612
*
613613
* @param indexName The index in which to perform the request. (required)
614614
* @param batchWriteParams (required)
@@ -2708,7 +2708,7 @@ private Call getLogsValidateBeforeCall(
27082708
}
27092709

27102710
/**
2711-
* Return the lastest log entries.
2711+
* Return the latest log entries.
27122712
*
27132713
* @param offset First entry to retrieve (zero-based). Log entries are sorted by decreasing date,
27142714
* therefore 0 designates the most recent log entry. (optional, default to 0)
@@ -2743,7 +2743,7 @@ public GetLogsResponse getLogs() throws AlgoliaRuntimeException {
27432743
}
27442744

27452745
/**
2746-
* (asynchronously) Return the lastest log entries.
2746+
* (asynchronously) Return the latest log entries.
27472747
*
27482748
* @param offset First entry to retrieve (zero-based). Log entries are sorted by decreasing date,
27492749
* therefore 0 designates the most recent log entry. (optional, default to 0)
@@ -3149,7 +3149,7 @@ private Call getSettingsValidateBeforeCall(
31493149
}
31503150

31513151
/**
3152-
* Retrieve settings of a given indexName.
3152+
* Retrieve settings of an index.
31533153
*
31543154
* @param indexName The index in which to perform the request. (required)
31553155
* @return IndexSettings
@@ -3169,7 +3169,7 @@ public IndexSettings getSettings(String indexName)
31693169
}
31703170

31713171
/**
3172-
* (asynchronously) Retrieve settings of a given indexName.
3172+
* (asynchronously) Retrieve settings of an index.
31733173
*
31743174
* @param indexName The index in which to perform the request. (required)
31753175
* @param callback The callback to be executed when the API call finishes
@@ -4199,7 +4199,7 @@ private Call multipleQueriesValidateBeforeCall(
41994199
}
42004200

42014201
/**
4202-
* Get search results for the given requests.
4202+
* Perform a search operation targeting one or many indices.
42034203
*
42044204
* @param multipleQueriesParams (required)
42054205
* @return MultipleQueriesResponse
@@ -4220,7 +4220,7 @@ public MultipleQueriesResponse multipleQueries(
42204220
}
42214221

42224222
/**
4223-
* (asynchronously) Get search results for the given requests.
4223+
* (asynchronously) Perform a search operation targeting one or many indices.
42244224
*
42254225
* @param multipleQueriesParams (required)
42264226
* @param callback The callback to be executed when the API call finishes
@@ -5638,7 +5638,7 @@ private Call searchValidateBeforeCall(
56385638
}
56395639

56405640
/**
5641-
* Get search results.
5641+
* Perform a search operation targeting one specific index.
56425642
*
56435643
* @param indexName The index in which to perform the request. (required)
56445644
* @param searchParams (required)
@@ -5659,7 +5659,7 @@ public SearchResponse search(String indexName, SearchParams searchParams)
56595659
}
56605660

56615661
/**
5662-
* (asynchronously) Get search results.
5662+
* (asynchronously) Perform a search operation targeting one specific index.
56635663
*
56645664
* @param indexName The index in which to perform the request. (required)
56655665
* @param searchParams (required)
@@ -6354,7 +6354,7 @@ private Call setDictionarySettingsValidateBeforeCall(
63546354
}
63556355

63566356
/**
6357-
* Set dictionary settings.
6357+
* Set dictionaries settings.
63586358
*
63596359
* @param dictionarySettingsParams (required)
63606360
* @return UpdatedAtResponse
@@ -6380,7 +6380,7 @@ public UpdatedAtResponse setDictionarySettings(
63806380
}
63816381

63826382
/**
6383-
* (asynchronously) Set dictionary settings.
6383+
* (asynchronously) Set dictionaries settings.
63846384
*
63856385
* @param dictionarySettingsParams (required)
63866386
* @param callback The callback to be executed when the API call finishes
@@ -6474,8 +6474,8 @@ private Call setSettingsValidateBeforeCall(
64746474
}
64756475

64766476
/**
6477-
* Update settings of a given indexName. Only specified settings are overridden; unspecified
6478-
* settings are left unchanged. Specifying null for a setting resets it to its default value.
6477+
* Update settings of an index. Only specified settings are overridden; unspecified settings are
6478+
* left unchanged. Specifying null for a setting resets it to its default value.
64796479
*
64806480
* @param indexName The index in which to perform the request. (required)
64816481
* @param indexSettings (required)
@@ -6513,7 +6513,7 @@ public UpdatedAtResponse setSettings(
65136513
}
65146514

65156515
/**
6516-
* (asynchronously) Update settings of a given indexName. Only specified settings are overridden;
6516+
* (asynchronously) Update settings of an index. Only specified settings are overridden;
65176517
* unspecified settings are left unchanged. Specifying null for a setting resets it to its default
65186518
* value.
65196519
*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
GROUP=com.algolia
2-
VERSION_NAME=0.1.0-SNAPSHOT
2+
VERSION_NAME=0.0.1-SNAPSHOT

clients/algoliasearch-client-php/lib/Api/SearchClient.php

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public function getClientConfig()
9898
}
9999

100100
/**
101-
* Create a new API key.
101+
* Create an API key.
102102
*
103103
* @param array $apiKey apiKey (required)
104104
* - $apiKey['acl'] => (array) Set of permissions associated with the key. (required)
@@ -140,7 +140,7 @@ public function addApiKey($apiKey)
140140
}
141141

142142
/**
143-
* Add or replace an object with a given object ID.
143+
* Add or replace an object.
144144
*
145145
* @param string $indexName The index in which to perform the request. (required)
146146
* @param string $objectID Unique identifier of an object. (required)
@@ -244,7 +244,7 @@ public function appendSource($source)
244244
}
245245

246246
/**
247-
* Assign or Move userID
247+
* Assign or Move userID.
248248
*
249249
* @param string $xAlgoliaUserID userID to assign. (required)
250250
* @param array $assignUserIdParams assignUserIdParams (required)
@@ -308,7 +308,7 @@ public function assignUserId($xAlgoliaUserID, $assignUserIdParams)
308308
}
309309

310310
/**
311-
* Performs multiple write operations in a single API call.
311+
* Batch operations to one index.
312312
*
313313
* @param string $indexName The index in which to perform the request. (required)
314314
* @param array $batchWriteParams batchWriteParams (required)
@@ -365,7 +365,7 @@ public function batch($indexName, $batchWriteParams)
365365
}
366366

367367
/**
368-
* Batch assign userIDs
368+
* Batch assign userIDs.
369369
*
370370
* @param string $xAlgoliaUserID userID to assign. (required)
371371
* @param array $batchAssignUserIdsParams batchAssignUserIdsParams (required)
@@ -433,7 +433,7 @@ public function batchAssignUserIds(
433433
}
434434

435435
/**
436-
* Send a batch of dictionary entries.
436+
* Batch dictionary entries.
437437
*
438438
* @param array $dictionaryName The dictionary to search in. (required)
439439
* @param array $batchDictionaryEntriesParams batchDictionaryEntriesParams (required)
@@ -939,7 +939,7 @@ public function deleteIndex($indexName)
939939
}
940940

941941
/**
942-
* Delete object.
942+
* Delete an object.
943943
*
944944
* @param string $indexName The index in which to perform the request. (required)
945945
* @param string $objectID Unique identifier of an object. (required)
@@ -1259,7 +1259,7 @@ public function getApiKey($key)
12591259
}
12601260

12611261
/**
1262-
* List dictionaries supported per language.
1262+
* List available languages.
12631263
*
12641264
*
12651265
* @return array<string, mixed>|array<string,\Algolia\AlgoliaSearch\Model\Search\Languages>
@@ -1299,7 +1299,7 @@ public function getDictionarySettings()
12991299
}
13001300

13011301
/**
1302-
* Return the lastest log entries.
1302+
* Return the latest log entries.
13031303
*
13041304
* @param int $offset First entry to retrieve (zero-based). Log entries are sorted by decreasing date, therefore 0 designates the most recent log entry. (optional, default to 0)
13051305
* @param int $length Maximum number of entries to retrieve. The maximum allowed value is 1000. (optional, default to 10)
@@ -1373,7 +1373,7 @@ public function getLogs(
13731373
}
13741374

13751375
/**
1376-
* Retrieve one object from the index.
1376+
* Retrieve an object.
13771377
*
13781378
* @param string $indexName The index in which to perform the request. (required)
13791379
* @param string $objectID Unique identifier of an object. (required)
@@ -1543,7 +1543,7 @@ public function getRule($indexName, $objectID)
15431543
}
15441544

15451545
/**
1546-
* Retrieve settings of a given indexName.
1546+
* Retrieve settings of an index.
15471547
*
15481548
* @param string $indexName The index in which to perform the request. (required)
15491549
*
@@ -1662,7 +1662,7 @@ public function getSynonym($indexName, $objectID)
16621662
}
16631663

16641664
/**
1665-
* Check the current status of a given task.
1665+
* Check the status of a task.
16661666
*
16671667
* @param string $indexName The index in which to perform the request. (required)
16681668
* @param int $taskID Unique identifier of an task. Numeric value (up to 64bits). (required)
@@ -1718,7 +1718,7 @@ public function getTask($indexName, $taskID)
17181718
}
17191719

17201720
/**
1721-
* Get top userID
1721+
* Get top userID.
17221722
*
17231723
*
17241724
* @return array<string, mixed>|\Algolia\AlgoliaSearch\Model\Search\GetTopUserIdsResponse
@@ -1738,7 +1738,7 @@ public function getTopUserIds()
17381738
}
17391739

17401740
/**
1741-
* Get userID
1741+
* Get userID.
17421742
*
17431743
* @param string $userID userID to assign. (required)
17441744
*
@@ -1780,7 +1780,7 @@ public function getUserId($userID)
17801780
}
17811781

17821782
/**
1783-
* Has pending mappings
1783+
* Get migration status.
17841784
*
17851785
* @param bool $getClusters Whether to get clusters or not. (optional)
17861786
*
@@ -1811,7 +1811,7 @@ public function hasPendingMappings($getClusters = null)
18111811
}
18121812

18131813
/**
1814-
* Get the full list of API Keys.
1814+
* List API Keys.
18151815
*
18161816
*
18171817
* @return array<string, mixed>|\Algolia\AlgoliaSearch\Model\Search\ListApiKeysResponse
@@ -1831,7 +1831,7 @@ public function listApiKeys()
18311831
}
18321832

18331833
/**
1834-
* List clusters
1834+
* List clusters.
18351835
*
18361836
*
18371837
* @return array<string, mixed>|\Algolia\AlgoliaSearch\Model\Search\ListClustersResponse
@@ -1882,7 +1882,7 @@ public function listIndices($page = null)
18821882
}
18831883

18841884
/**
1885-
* List userIDs
1885+
* List userIDs.
18861886
*
18871887
* @param int $page Requested page (zero-based). When specified, will retrieve a specific page; the page size is implicitly set to 100. When null, will retrieve all indices (no pagination). (optional)
18881888
* @param int $hitsPerPage Maximum number of objects to retrieve. (optional, default to 100)
@@ -1924,7 +1924,7 @@ public function listUserIds($page = null, $hitsPerPage = 100)
19241924
}
19251925

19261926
/**
1927-
* Perform multiple write operations.
1927+
* Batch operations to many indices.
19281928
*
19291929
* @param array $batchParams batchParams (required)
19301930
* - $batchParams['requests'] => (array)
@@ -1962,7 +1962,7 @@ public function multipleBatch($batchParams)
19621962
}
19631963

19641964
/**
1965-
* Get search results for the given requests.
1965+
* Search multiple indices.
19661966
*
19671967
* @param array $multipleQueriesParams multipleQueriesParams (required)
19681968
* - $multipleQueriesParams['requests'] => (array) (required)
@@ -2249,7 +2249,7 @@ public function put($path, $parameters = null, $body = null)
22492249
}
22502250

22512251
/**
2252-
* Remove userID
2252+
* Remove userID.
22532253
*
22542254
* @param string $userID userID to assign. (required)
22552255
*
@@ -2687,7 +2687,7 @@ public function saveSynonyms(
26872687
}
26882688

26892689
/**
2690-
* Get search results.
2690+
* Search in an index.
26912691
*
26922692
* @param string $indexName The index in which to perform the request. (required)
26932693
* @param array $searchParams searchParams (required)
@@ -2743,7 +2743,7 @@ public function search($indexName, $searchParams)
27432743
}
27442744

27452745
/**
2746-
* Search the dictionary entries.
2746+
* Search a dictionary entries.
27472747
*
27482748
* @param array $dictionaryName The dictionary to search in. (required)
27492749
* @param array $searchDictionaryEntriesParams searchDictionaryEntriesParams (required)
@@ -2806,7 +2806,7 @@ public function searchDictionaryEntries(
28062806
}
28072807

28082808
/**
2809-
* Search for values of a given facet
2809+
* Search for values of a given facet.
28102810
*
28112811
* @param string $indexName The index in which to perform the request. (required)
28122812
* @param string $facetName The facet name. (required)
@@ -2941,7 +2941,7 @@ public function searchRules($indexName, $searchRulesParams)
29412941
}
29422942

29432943
/**
2944-
* Get all synonyms that match a query.
2944+
* Search synonyms.
29452945
*
29462946
* @param string $indexName The index in which to perform the request. (required)
29472947
* @param string $query Search for specific synonyms matching this string. (optional, default to '')
@@ -3030,7 +3030,7 @@ public function searchSynonyms(
30303030
}
30313031

30323032
/**
3033-
* Search userID
3033+
* Search userID.
30343034
*
30353035
* @param array $searchUserIdsParams searchUserIdsParams (required)
30363036
* - $searchUserIdsParams['query'] => (string) Query to search. The search is a prefix search with typoTolerance. Use empty query to retrieve all users. (required)
@@ -3072,7 +3072,7 @@ public function searchUserIds($searchUserIdsParams)
30723072
}
30733073

30743074
/**
3075-
* Set dictionary settings.
3075+
* Set dictionaries settings.
30763076
*
30773077
* @param array $dictionarySettingsParams dictionarySettingsParams (required)
30783078
* - $dictionarySettingsParams['disableStandardEntries'] => (array) (required)
@@ -3111,7 +3111,7 @@ public function setDictionarySettings($dictionarySettingsParams)
31113111
}
31123112

31133113
/**
3114-
* Update settings of a given indexName.
3114+
* Update settings of an index.
31153115
*
31163116
* @param string $indexName The index in which to perform the request. (required)
31173117
* @param array $indexSettings indexSettings (required)

0 commit comments

Comments
 (0)