Skip to content

Commit 86a2424

Browse files
chore: flag mcp tool (generated)
Co-authored-by: shortcuts <vannicattec@gmail.com>
1 parent ffb0e40 commit 86a2424

File tree

43 files changed

+38659
-77
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+38659
-77
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ public partial interface ISearchClient
568568
DeletedAtResponse DeleteIndex(string indexName, RequestOptions options = null, CancellationToken cancellationToken = default);
569569

570570
/// <summary>
571-
/// Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
571+
/// Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
572572
/// </summary>
573573
///
574574
/// Required API Key ACLs:
@@ -584,7 +584,7 @@ public partial interface ISearchClient
584584
Task<DeletedAtResponse> DeleteObjectAsync(string indexName, string objectID, RequestOptions options = null, CancellationToken cancellationToken = default);
585585

586586
/// <summary>
587-
/// Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy). (Synchronous version)
587+
/// Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy). (Synchronous version)
588588
/// </summary>
589589
///
590590
/// Required API Key ACLs:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ final class SearchClient implements ApiClient {
732732
);
733733
}
734734

735-
/// Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
735+
/// Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
736736
///
737737
/// Required API Key ACLs:
738738
/// - deleteObject

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

+2-2
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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1697,7 +1697,7 @@ public CompletableFuture<DeletedAtResponse> deleteIndexAsync(@Nonnull String ind
16971697
/**
16981698
* Deletes a record by its object ID. To delete more than one record, use the [`batch`
16991699
* operation](#tag/Records/operation/batch). To delete records matching a query, use the
1700-
* [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
1700+
* [`deleteBy` operation](#tag/Records/operation/deleteBy).
17011701
*
17021702
* @param indexName Name of the index on which to perform the operation. (required)
17031703
* @param objectID Unique record identifier. (required)
@@ -1713,7 +1713,7 @@ public DeletedAtResponse deleteObject(@Nonnull String indexName, @Nonnull String
17131713
/**
17141714
* Deletes a record by its object ID. To delete more than one record, use the [`batch`
17151715
* operation](#tag/Records/operation/batch). To delete records matching a query, use the
1716-
* [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
1716+
* [`deleteBy` operation](#tag/Records/operation/deleteBy).
17171717
*
17181718
* @param indexName Name of the index on which to perform the operation. (required)
17191719
* @param objectID Unique record identifier. (required)
@@ -1726,7 +1726,7 @@ public DeletedAtResponse deleteObject(@Nonnull String indexName, @Nonnull String
17261726
/**
17271727
* (asynchronously) Deletes a record by its object ID. To delete more than one record, use the
17281728
* [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the
1729-
* [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
1729+
* [`deleteBy` operation](#tag/Records/operation/deleteBy).
17301730
*
17311731
* @param indexName Name of the index on which to perform the operation. (required)
17321732
* @param objectID Unique record identifier. (required)
@@ -1753,7 +1753,7 @@ public CompletableFuture<DeletedAtResponse> deleteObjectAsync(
17531753
/**
17541754
* (asynchronously) Deletes a record by its object ID. To delete more than one record, use the
17551755
* [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the
1756-
* [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
1756+
* [`deleteBy` operation](#tag/Records/operation/deleteBy).
17571757
*
17581758
* @param indexName Name of the index on which to perform the operation. (required)
17591759
* @param objectID Unique record identifier. (required)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1378,7 +1378,7 @@ export function createSearchClient({
13781378
},
13791379

13801380
/**
1381-
* Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
1381+
* Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
13821382
*
13831383
* Required API Key ACLs:
13841384
* - deleteObject

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ public class SearchClient(
431431
}
432432

433433
/**
434-
* Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
434+
* Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
435435
*
436436
* Required API Key ACLs:
437437
* - deleteObject

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ public function deleteIndex($indexName, $requestOptions = [])
935935
}
936936

937937
/**
938-
* Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
938+
* Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
939939
*
940940
* Required API Key ACLs:
941941
* - deleteObject

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -2046,7 +2046,7 @@ async def delete_object_with_http_info(
20462046
request_options: Optional[Union[dict, RequestOptions]] = None,
20472047
) -> ApiResponse[str]:
20482048
"""
2049-
Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
2049+
Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
20502050
20512051
Required API Key ACLs:
20522052
- deleteObject
@@ -2090,7 +2090,7 @@ async def delete_object(
20902090
request_options: Optional[Union[dict, RequestOptions]] = None,
20912091
) -> DeletedAtResponse:
20922092
"""
2093-
Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
2093+
Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
20942094
20952095
Required API Key ACLs:
20962096
- deleteObject
@@ -7115,7 +7115,7 @@ def delete_object_with_http_info(
71157115
request_options: Optional[Union[dict, RequestOptions]] = None,
71167116
) -> ApiResponse[str]:
71177117
"""
7118-
Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
7118+
Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
71197119
71207120
Required API Key ACLs:
71217121
- deleteObject
@@ -7159,7 +7159,7 @@ def delete_object(
71597159
request_options: Optional[Union[dict, RequestOptions]] = None,
71607160
) -> DeletedAtResponse:
71617161
"""
7162-
Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
7162+
Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
71637163
71647164
Required API Key ACLs:
71657165
- deleteObject

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ def delete_index(index_name, request_options = {})
926926
@api_client.deserialize(response.body, request_options[:debug_return_type] || "Search::DeletedAtResponse")
927927
end
928928

929-
# Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
929+
# Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
930930
#
931931
# Required API Key ACLs:
932932
# - deleteObject
@@ -966,7 +966,7 @@ def delete_object_with_http_info(index_name, algolia_object_id, request_options
966966
@api_client.call_api(:DELETE, path, new_options)
967967
end
968968

969-
# Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
969+
# Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
970970
#
971971
# Required API Key ACLs:
972972
# - deleteObject

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ class SearchClient(
616616
}
617617

618618
/** Deletes a record by its object ID. To delete more than one record, use the [`batch`
619-
* operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery`
619+
* operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy`
620620
* operation](#tag/Records/operation/deleteBy).
621621
*
622622
* Required API Key ACLs:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ open class SearchClient {
12391239
}
12401240

12411241
// Deletes a record by its object ID. To delete more than one record, use the [`batch`
1242-
// operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteByQuery`
1242+
// operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy`
12431243
// operation](#tag/Records/operation/deleteBy).
12441244
// Required API Key ACLs:
12451245
// - deleteObject

0 commit comments

Comments
 (0)