Skip to content

Commit db803fe

Browse files
Merge branch 'main' into fix/link (generated)
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 9477a3c commit db803fe

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

clients/algoliasearch-client-csharp/algoliasearch/Clients/SearchClient.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ public interface ISearchClient
436436
DeleteApiKeyResponse DeleteApiKey(string key, RequestOptions options = null, CancellationToken cancellationToken = default);
437437

438438
/// <summary>
439-
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch).
439+
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch).
440440
/// </summary>
441441
/// <param name="indexName">Name of the index on which to perform the operation.</param>
442442
/// <param name="deleteByParams"></param>
@@ -449,7 +449,7 @@ public interface ISearchClient
449449
Task<DeletedAtResponse> DeleteByAsync(string indexName, DeleteByParams deleteByParams, RequestOptions options = null, CancellationToken cancellationToken = default);
450450

451451
/// <summary>
452-
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch). (Synchronous version)
452+
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch). (Synchronous version)
453453
/// </summary>
454454
/// <param name="indexName">Name of the index on which to perform the operation.</param>
455455
/// <param name="deleteByParams"></param>
@@ -2416,7 +2416,7 @@ public DeleteApiKeyResponse DeleteApiKey(string key, RequestOptions options = nu
24162416

24172417

24182418
/// <summary>
2419-
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch).
2419+
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch).
24202420
/// </summary>
24212421
///
24222422
/// Required API Key ACLs:
@@ -2449,7 +2449,7 @@ public async Task<DeletedAtResponse> DeleteByAsync(string indexName, DeleteByPar
24492449

24502450

24512451
/// <summary>
2452-
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch). (Synchronous version)
2452+
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch). (Synchronous version)
24532453
/// </summary>
24542454
///
24552455
/// Required API Key ACLs:

clients/algoliasearch-client-dart/packages/client_search/lib/src/api/search_client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ final class SearchClient implements ApiClient {
662662
);
663663
}
664664

665-
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch).
665+
/// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch).
666666
///
667667
/// Required API Key ACLs:
668668
/// - deleteIndex

clients/algoliasearch-client-go/algolia/search/api_search.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1481,7 +1481,7 @@ public CompletableFuture<DeleteApiKeyResponse> deleteApiKeyAsync(@Nonnull String
14811481
/**
14821482
* This operation doesn't accept empty queries or filters. It's more efficient to get a list of
14831483
* object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the
1484-
* records using the [`batch` operation](tag/Records/operation/batch).
1484+
* records using the [`batch` operation](#tag/Records/operation/batch).
14851485
*
14861486
* @param indexName Name of the index on which to perform the operation. (required)
14871487
* @param deleteByParams (required)
@@ -1497,7 +1497,7 @@ public DeletedAtResponse deleteBy(@Nonnull String indexName, @Nonnull DeleteByPa
14971497
/**
14981498
* This operation doesn't accept empty queries or filters. It's more efficient to get a list of
14991499
* object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the
1500-
* records using the [`batch` operation](tag/Records/operation/batch).
1500+
* records using the [`batch` operation](#tag/Records/operation/batch).
15011501
*
15021502
* @param indexName Name of the index on which to perform the operation. (required)
15031503
* @param deleteByParams (required)
@@ -1510,7 +1510,7 @@ public DeletedAtResponse deleteBy(@Nonnull String indexName, @Nonnull DeleteByPa
15101510
/**
15111511
* (asynchronously) This operation doesn't accept empty queries or filters. It's more efficient to
15121512
* get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then
1513-
* delete the records using the [`batch` operation](tag/Records/operation/batch).
1513+
* delete the records using the [`batch` operation](#tag/Records/operation/batch).
15141514
*
15151515
* @param indexName Name of the index on which to perform the operation. (required)
15161516
* @param deleteByParams (required)
@@ -1538,7 +1538,7 @@ public CompletableFuture<DeletedAtResponse> deleteByAsync(
15381538
/**
15391539
* (asynchronously) This operation doesn't accept empty queries or filters. It's more efficient to
15401540
* get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then
1541-
* delete the records using the [`batch` operation](tag/Records/operation/batch).
1541+
* delete the records using the [`batch` operation](#tag/Records/operation/batch).
15421542
*
15431543
* @param indexName Name of the index on which to perform the operation. (required)
15441544
* @param deleteByParams (required)

clients/algoliasearch-client-javascript/packages/client-search/src/searchClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,7 @@ export function createSearchClient({
13971397
},
13981398

13991399
/**
1400-
* This operation doesn\'t accept empty queries or filters. It\'s more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch).
1400+
* This operation doesn\'t accept empty queries or filters. It\'s more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch).
14011401
*
14021402
* Required API Key ACLs:
14031403
* - deleteIndex.

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/api/SearchClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ public class SearchClient(
385385
}
386386

387387
/**
388-
* This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch).
388+
* This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch).
389389
*
390390
* Required API Key ACLs:
391391
* - deleteIndex

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ public function deleteApiKey($key, $requestOptions = [])
800800
}
801801

802802
/**
803-
* This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch).
803+
* This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch).
804804
*
805805
* Required API Key ACLs:
806806
* - deleteIndex

clients/algoliasearch-client-python/algoliasearch/search/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1805,7 +1805,7 @@ async def delete_by_with_http_info(
18051805
request_options: Optional[Union[dict, RequestOptions]] = None,
18061806
) -> ApiResponse[str]:
18071807
"""
1808-
This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch).
1808+
This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch).
18091809
18101810
Required API Key ACLs:
18111811
- deleteIndex
@@ -1854,7 +1854,7 @@ async def delete_by(
18541854
request_options: Optional[Union[dict, RequestOptions]] = None,
18551855
) -> DeletedAtResponse:
18561856
"""
1857-
This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch).
1857+
This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch).
18581858
18591859
Required API Key ACLs:
18601860
- deleteIndex

clients/algoliasearch-client-ruby/lib/algolia/api/search_client.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ def delete_api_key(key, request_options = {})
818818
@api_client.deserialize(response.body, request_options[:debug_return_type] || "Search::DeleteApiKeyResponse")
819819
end
820820

821-
# This operation doesn&#39;t accept empty queries or filters. It&#39;s more efficient to get a list of object IDs with the [&#x60;browse&#x60; operation](#tag/Search/operation/browse), and then delete the records using the [&#x60;batch&#x60; operation](tag/Records/operation/batch).
821+
# This operation doesn&#39;t accept empty queries or filters. It&#39;s more efficient to get a list of object IDs with the [&#x60;browse&#x60; operation](#tag/Search/operation/browse), and then delete the records using the [&#x60;batch&#x60; operation](#tag/Records/operation/batch).
822822
#
823823
# Required API Key ACLs:
824824
# - deleteIndex
@@ -855,7 +855,7 @@ def delete_by_with_http_info(index_name, delete_by_params, request_options = {})
855855
@api_client.call_api(:POST, path, new_options)
856856
end
857857

858-
# This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](tag/Records/operation/batch).
858+
# This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch` operation](#tag/Records/operation/batch).
859859
#
860860
# Required API Key ACLs:
861861
# - deleteIndex

clients/algoliasearch-client-scala/src/main/scala/algoliasearch/api/SearchClient.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ class SearchClient(
535535

536536
/** This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the
537537
* [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch`
538-
* operation](tag/Records/operation/batch).
538+
* operation](#tag/Records/operation/batch).
539539
*
540540
* Required API Key ACLs:
541541
* - deleteIndex

clients/algoliasearch-client-swift/Sources/Search/SearchClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,7 @@ open class SearchClient {
10431043

10441044
// This operation doesn't accept empty queries or filters. It's more efficient to get a list of object IDs with the
10451045
// [`browse` operation](#tag/Search/operation/browse), and then delete the records using the [`batch`
1046-
// operation](tag/Records/operation/batch).
1046+
// operation](#tag/Records/operation/batch).
10471047
// Required API Key ACLs:
10481048
// - deleteIndex
10491049
//

specs/bundled/search.doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3287,7 +3287,7 @@ paths:
32873287
operation](#tag/Search/operation/browse),
32883288

32893289
and then delete the records using the [`batch`
3290-
operation](tag/Records/operation/batch).
3290+
operation](#tag/Records/operation/batch).
32913291
parameters:
32923292
- $ref: '#/components/parameters/IndexName'
32933293
requestBody:

specs/bundled/search.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ paths:
875875
operation](#tag/Search/operation/browse),
876876
877877
and then delete the records using the [`batch`
878-
operation](tag/Records/operation/batch).
878+
operation](#tag/Records/operation/batch).
879879
parameters:
880880
- $ref: '#/components/parameters/IndexName'
881881
requestBody:

0 commit comments

Comments
 (0)