Skip to content

Commit c831d95

Browse files
algolia-botmillotpshortcuts
committed
fix(scala): prefix tags with v (#5186) (generated) [skip ci]
Co-authored-by: Pierre Millot <[email protected]> Co-authored-by: shortcuts <[email protected]>
1 parent 40f3beb commit c831d95

File tree

8 files changed

+20
-19
lines changed

8 files changed

+20
-19
lines changed

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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7197,8 +7197,8 @@ public <T> List<BatchResponse> partialUpdateObjects(
71977197
/**
71987198
* Push a new set of objects and remove all previous ones. Settings, synonyms and query rules are
71997199
* untouched. Replace all records in an index without any downtime. See
7200-
* https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation
7201-
* details.
7200+
* https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for
7201+
* implementation details.
72027202
*
72037203
* @param indexName The `indexName` to replace `objects` in.
72047204
* @param objects The array of `objects` to store in the given Algolia `indexName`.
@@ -7213,8 +7213,8 @@ public <T> ReplaceAllObjectsResponse replaceAllObjects(String indexName, Iterabl
72137213
/**
72147214
* Push a new set of objects and remove all previous ones. Settings, synonyms and query rules are
72157215
* untouched. Replace all records in an index without any downtime. See
7216-
* https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation
7217-
* details.
7216+
* https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for
7217+
* implementation details.
72187218
*
72197219
* @param indexName The `indexName` to replace `objects` in.
72207220
* @param objects The array of `objects` to store in the given Algolia `indexName`.
@@ -7231,8 +7231,8 @@ public <T> ReplaceAllObjectsResponse replaceAllObjects(String indexName, Iterabl
72317231
/**
72327232
* Push a new set of objects and remove all previous ones. Settings, synonyms and query rules are
72337233
* untouched. Replace all records in an index without any downtime. See
7234-
* https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation
7235-
* details.
7234+
* https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for
7235+
* implementation details.
72367236
*
72377237
* @param indexName The `indexName` to replace `objects` in.
72387238
* @param objects The array of `objects` to store in the given Algolia `indexName`.
@@ -7251,8 +7251,8 @@ public <T> ReplaceAllObjectsResponse replaceAllObjects(String indexName, Iterabl
72517251
/**
72527252
* Push a new set of objects and remove all previous ones. Settings, synonyms and query rules are
72537253
* untouched. Replace all records in an index without any downtime. See
7254-
* https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation
7255-
* details.
7254+
* https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for
7255+
* implementation details.
72567256
*
72577257
* @param indexName The `indexName` to replace `objects` in.
72587258
* @param objects The array of `objects` to store in the given Algolia `indexName`.

clients/algoliasearch-client-javascript/packages/client-search/builds/fetch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export function searchClient(appId: string, apiKey: string, options?: ClientOpti
9999

100100
/**
101101
* Helper: Copies the given `sourceIndexName` records, rules and synonyms to an other Algolia application for the given `destinationIndexName`.
102-
* See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
102+
* See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
103103
*
104104
* @summary Helper: Copies the given `sourceIndexName` records, rules and synonyms to an other Algolia application for the given `destinationIndexName`.
105105
* @param accountCopyIndex - The `accountCopyIndex` object.

clients/algoliasearch-client-javascript/packages/client-search/builds/node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export function searchClient(appId: string, apiKey: string, options?: ClientOpti
9999

100100
/**
101101
* Helper: Copies the given `sourceIndexName` records, rules and synonyms to an other Algolia application for the given `destinationIndexName`.
102-
* See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
102+
* See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
103103
*
104104
* @summary Helper: Copies the given `sourceIndexName` records, rules and synonyms to an other Algolia application for the given `destinationIndexName`.
105105
* @param accountCopyIndex - The `accountCopyIndex` object.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ export function createSearchClient({
627627

628628
/**
629629
* 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.
630-
* See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
630+
* See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
631631
*
632632
* @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.
633633
* @param replaceAllObjects - The `replaceAllObjects` object.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3027,7 +3027,7 @@ public function replaceAllObjectsWithTransformation($indexName, $objects, $batch
30273027

30283028
/**
30293029
* Helper: Replace all objects in an index using a temporary one.
3030-
* See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
3030+
* See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
30313031
*
30323032
* @param string $indexName the `indexName` to replace `objects` in
30333033
* @param array $objects the array of `objects` to store in the given Algolia `indexName`

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ async def replace_all_objects_with_transformation(
672672
"""
673673
Helper: Similar to the `replaceAllObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must have been passed to the client instantiation method.
674674
675-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
675+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
676676
"""
677677
if self._ingestion_transporter is None:
678678
raise ValueError(
@@ -750,7 +750,7 @@ async def replace_all_objects(
750750
"""
751751
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.
752752
753-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
753+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
754754
"""
755755
tmp_index_name = self.create_temporary_name(index_name)
756756

@@ -5884,7 +5884,7 @@ def replace_all_objects_with_transformation(
58845884
"""
58855885
Helper: Similar to the `replaceAllObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must have been passed to the client instantiation method.
58865886
5887-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
5887+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
58885888
"""
58895889
if self._ingestion_transporter is None:
58905890
raise ValueError(
@@ -5962,7 +5962,7 @@ def replace_all_objects(
59625962
"""
59635963
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.
59645964
5965-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
5965+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
59665966
"""
59675967
tmp_index_name = self.create_temporary_name(index_name)
59685968

clients/algoliasearch-client-scala/src/main/scala/algoliasearch/extension/package.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,8 @@ package object extension {
419419
* settings, synonyms and query rules and indexes all passed objects. Finally, the temporary one replaces the
420420
* existing index.
421421
*
422-
* See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
422+
* See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation
423+
* details.
423424
*
424425
* @param indexName
425426
* The index in which to perform the request.

0 commit comments

Comments
 (0)