Skip to content

Commit bd35659

Browse files
chore: Generated code for commit 0f9a6ba. (#325)
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot [email protected]
1 parent 0f9a6ba commit bd35659

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

clients/algoliasearch-client-java-2/algoliasearch-core/com/algolia/model/search/BaseSearchResponse.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public BaseSearchResponse exhaustiveNbHits(Boolean exhaustiveNbHits) {
186186
}
187187

188188
/**
189-
* Indicate if the nbHits count was exhaustive or approximate
189+
* Indicate if the nbHits count was exhaustive or approximate.
190190
*
191191
* @return exhaustiveNbHits
192192
*/
@@ -206,7 +206,7 @@ public BaseSearchResponse exhaustiveTypo(Boolean exhaustiveTypo) {
206206

207207
/**
208208
* Indicate if the typo-tolerence search was exhaustive or approximate (only included when
209-
* typo-tolerance is enabled)
209+
* typo-tolerance is enabled).
210210
*
211211
* @return exhaustiveTypo
212212
*/
@@ -385,7 +385,7 @@ public BaseSearchResponse nbPages(Integer nbPages) {
385385
}
386386

387387
/**
388-
* Number of pages available for the current query
388+
* Number of pages available for the current query.
389389
*
390390
* @return nbPages
391391
*/
@@ -404,7 +404,7 @@ public BaseSearchResponse nbSortedHits(Integer nbSortedHits) {
404404
}
405405

406406
/**
407-
* The number of hits selected and sorted by the relevant sort algorithm
407+
* The number of hits selected and sorted by the relevant sort algorithm.
408408
*
409409
* @return nbSortedHits
410410
*/

clients/algoliasearch-client-java-2/algoliasearch-core/com/algolia/model/search/BrowseResponse.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public BrowseResponse exhaustiveNbHits(Boolean exhaustiveNbHits) {
192192
}
193193

194194
/**
195-
* Indicate if the nbHits count was exhaustive or approximate
195+
* Indicate if the nbHits count was exhaustive or approximate.
196196
*
197197
* @return exhaustiveNbHits
198198
*/
@@ -212,7 +212,7 @@ public BrowseResponse exhaustiveTypo(Boolean exhaustiveTypo) {
212212

213213
/**
214214
* Indicate if the typo-tolerence search was exhaustive or approximate (only included when
215-
* typo-tolerance is enabled)
215+
* typo-tolerance is enabled).
216216
*
217217
* @return exhaustiveTypo
218218
*/
@@ -391,7 +391,7 @@ public BrowseResponse nbPages(Integer nbPages) {
391391
}
392392

393393
/**
394-
* Number of pages available for the current query
394+
* Number of pages available for the current query.
395395
*
396396
* @return nbPages
397397
*/
@@ -410,7 +410,7 @@ public BrowseResponse nbSortedHits(Integer nbSortedHits) {
410410
}
411411

412412
/**
413-
* The number of hits selected and sorted by the relevant sort algorithm
413+
* The number of hits selected and sorted by the relevant sort algorithm.
414414
*
415415
* @return nbSortedHits
416416
*/

clients/algoliasearch-client-java-2/algoliasearch-core/com/algolia/model/search/Condition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public Condition pattern(String pattern) {
2424
}
2525

2626
/**
27-
* Query pattern syntax
27+
* Query pattern syntax.
2828
*
2929
* @return pattern
3030
*/

clients/algoliasearch-client-java-2/algoliasearch-core/com/algolia/model/search/DictionaryLanguage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import com.google.gson.annotations.SerializedName;
44
import java.util.Objects;
55

6-
/** Custom entries for a dictionary */
6+
/** Custom entries for a dictionary. */
77
public class DictionaryLanguage {
88

99
@SerializedName("nbCustomEntires")

clients/algoliasearch-client-java-2/algoliasearch-core/com/algolia/model/search/Indice.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public Indice lastBuildTimeS(Integer lastBuildTimeS) {
161161
}
162162

163163
/**
164-
* Last build time
164+
* Last build time.
165165
*
166166
* @return lastBuildTimeS
167167
*/

clients/algoliasearch-client-java-2/algoliasearch-core/com/algolia/model/search/SearchResponse.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public SearchResponse exhaustiveNbHits(Boolean exhaustiveNbHits) {
189189
}
190190

191191
/**
192-
* Indicate if the nbHits count was exhaustive or approximate
192+
* Indicate if the nbHits count was exhaustive or approximate.
193193
*
194194
* @return exhaustiveNbHits
195195
*/
@@ -209,7 +209,7 @@ public SearchResponse exhaustiveTypo(Boolean exhaustiveTypo) {
209209

210210
/**
211211
* Indicate if the typo-tolerence search was exhaustive or approximate (only included when
212-
* typo-tolerance is enabled)
212+
* typo-tolerance is enabled).
213213
*
214214
* @return exhaustiveTypo
215215
*/
@@ -388,7 +388,7 @@ public SearchResponse nbPages(Integer nbPages) {
388388
}
389389

390390
/**
391-
* Number of pages available for the current query
391+
* Number of pages available for the current query.
392392
*
393393
* @return nbPages
394394
*/
@@ -407,7 +407,7 @@ public SearchResponse nbSortedHits(Integer nbSortedHits) {
407407
}
408408

409409
/**
410-
* The number of hits selected and sorted by the relevant sort algorithm
410+
* The number of hits selected and sorted by the relevant sort algorithm.
411411
*
412412
* @return nbSortedHits
413413
*/

clients/algoliasearch-client-java-2/algoliasearch-core/com/algolia/model/search/SynonymHitHighlightResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.util.List;
66
import java.util.Objects;
77

8-
/** Highlighted results */
8+
/** Highlighted results. */
99
public class SynonymHitHighlightResult {
1010

1111
@SerializedName("type")

clients/algoliasearch-client-java-2/algoliasearch-core/com/algolia/search/SearchApi.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3450,7 +3450,7 @@ private Call getTaskValidateBeforeCall(
34503450
* Check the current status of a given task.
34513451
*
34523452
* @param indexName The index in which to perform the request. (required)
3453-
* @param taskID Unique identifier of an task. Numeric value (up to 64bits) (required)
3453+
* @param taskID Unique identifier of an task. Numeric value (up to 64bits). (required)
34543454
* @return GetTaskResponse
34553455
* @throws AlgoliaRuntimeException If fail to call the API, e.g. server error or cannot
34563456
* deserialize the response body
@@ -3471,7 +3471,7 @@ public GetTaskResponse getTask(String indexName, Integer taskID)
34713471
* (asynchronously) Check the current status of a given task.
34723472
*
34733473
* @param indexName The index in which to perform the request. (required)
3474-
* @param taskID Unique identifier of an task. Numeric value (up to 64bits) (required)
3474+
* @param taskID Unique identifier of an task. Numeric value (up to 64bits). (required)
34753475
* @param _callback The callback to be executed when the API call finishes
34763476
* @return The request call
34773477
* @throws AlgoliaRuntimeException If fail to process the API call, e.g. serializing the request

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ public function getSynonym($indexName, $objectID)
13271327
* Check the current status of a given task.
13281328
*
13291329
* @param string $indexName The index in which to perform the request. (required)
1330-
* @param int $taskID Unique identifier of an task. Numeric value (up to 64bits) (required)
1330+
* @param int $taskID Unique identifier of an task. Numeric value (up to 64bits). (required)
13311331
*
13321332
* @return array<string, mixed>
13331333
*/

0 commit comments

Comments
 (0)