diff --git a/clients/algoliasearch-client-go/algolia/search/api_search.go b/clients/algoliasearch-client-go/algolia/search/api_search.go index 4542b4b812..225577d64f 100644 --- a/clients/algoliasearch-client-go/algolia/search/api_search.go +++ b/clients/algoliasearch-client-go/algolia/search/api_search.go @@ -9887,7 +9887,7 @@ func (c *APIClient) ChunkedBatch(indexName string, objects []map[string]any, act /* ReplaceAllObjects replaces all objects (records) in the given `indexName` with the given `objects`. A temporary index is created during this process in order to backup your data. -See https://api-clients-automation.netlify.app/docs/contributing/add-new-api-client#5-helpers for implementation details. +See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details. @param indexName string - the index name to replace objects into. @param objects []map[string]any - List of objects to replace. diff --git a/clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/api/SearchClient.java b/clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/api/SearchClient.java index 74ac6544f4..038684ae63 100644 --- a/clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/api/SearchClient.java +++ b/clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/api/SearchClient.java @@ -6321,8 +6321,8 @@ public List chunkedBatch( /** * Push a new set of objects and remove all previous ones. Settings, synonyms and query rules are * untouched. Replace all records in an index without any downtime. See - * https://api-clients-automation.netlify.app/docs/contributing/add-new-api-client#5-helpers for - * implementation details. + * https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation + * details. * * @param indexName The `indexName` to replace `objects` in. * @param objects The array of `objects` to store in the given Algolia `indexName`. @@ -6437,8 +6437,8 @@ public List partialUpdateObjects( /** * Push a new set of objects and remove all previous ones. Settings, synonyms and query rules are * untouched. Replace all records in an index without any downtime. See - * https://api-clients-automation.netlify.app/docs/contributing/add-new-api-client#5-helpers for - * implementation details. + * https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation + * details. * * @param indexName The `indexName` to replace `objects` in. * @param objects The array of `objects` to store in the given Algolia `indexName`. diff --git a/clients/algoliasearch-client-javascript/packages/client-search/src/searchClient.ts b/clients/algoliasearch-client-javascript/packages/client-search/src/searchClient.ts index e9fa766283..546f15e9cb 100644 --- a/clients/algoliasearch-client-javascript/packages/client-search/src/searchClient.ts +++ b/clients/algoliasearch-client-javascript/packages/client-search/src/searchClient.ts @@ -657,7 +657,7 @@ export function createSearchClient({ /** * Helper: Replaces all objects (records) in the given `index_name` with the given `objects`. A temporary index is created during this process in order to backup your data. - * See https://api-clients-automation.netlify.app/docs/contributing/add-new-api-client#5-helpers for implementation details. + * See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details. * * @summary Helper: Replaces all objects (records) in the given `index_name` with the given `objects`. A temporary index is created during this process in order to backup your data. * @param replaceAllObjects - The `replaceAllObjects` object. diff --git a/clients/algoliasearch-client-php/lib/Api/SearchClient.php b/clients/algoliasearch-client-php/lib/Api/SearchClient.php index e010152d0b..0f99874292 100644 --- a/clients/algoliasearch-client-php/lib/Api/SearchClient.php +++ b/clients/algoliasearch-client-php/lib/Api/SearchClient.php @@ -2895,7 +2895,7 @@ public function browseSynonyms($indexName, $requestOptions = []) /** * Helper: Replace all objects in an index using a temporary one. - * See https://api-clients-automation.netlify.app/docs/contributing/add-new-api-client#5-helpers for implementation details. + * See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details. * * @param string $indexName the `indexName` to replace `objects` in * @param array $objects the array of `objects` to store in the given Algolia `indexName` diff --git a/clients/algoliasearch-client-python/algoliasearch/search/client.py b/clients/algoliasearch-client-python/algoliasearch/search/client.py index 64334b701e..a303c3f975 100644 --- a/clients/algoliasearch-client-python/algoliasearch/search/client.py +++ b/clients/algoliasearch-client-python/algoliasearch/search/client.py @@ -535,7 +535,7 @@ async def replace_all_objects( """ Helper: Replaces all objects (records) in the given `index_name` with the given `objects`. A temporary index is created during this process in order to backup your data. - See https://api-clients-automation.netlify.app/docs/contributing/add-new-api-client#5-helpers for implementation details. + See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details. """ tmp_index_name = self.create_temporary_name(index_name) diff --git a/clients/algoliasearch-client-scala/src/main/scala/algoliasearch/extension/package.scala b/clients/algoliasearch-client-scala/src/main/scala/algoliasearch/extension/package.scala index 3223e0bf94..f6cb99b289 100644 --- a/clients/algoliasearch-client-scala/src/main/scala/algoliasearch/extension/package.scala +++ b/clients/algoliasearch-client-scala/src/main/scala/algoliasearch/extension/package.scala @@ -326,8 +326,7 @@ package object extension { * settings, synonyms and query rules and indexes all passed objects. Finally, the temporary one replaces the * existing index. * - * See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation - * details. + * See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details. * * @param indexName * The index in which to perform the request.