@algolia/client-search 5.28.0 → 5.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,7 +20,7 @@ import {
20
20
  getAlgoliaAgent,
21
21
  shuffle
22
22
  } from "@algolia/client-common";
23
- var apiClientVersion = "5.28.0";
23
+ var apiClientVersion = "5.30.0";
24
24
  function getDefaultHosts(appId) {
25
25
  return [
26
26
  {
@@ -881,7 +881,7 @@ function createSearchClient({
881
881
  /**
882
882
  * This method lets you send requests to the Algolia REST API.
883
883
  * @param customDelete - The customDelete object.
884
- * @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
884
+ * @param customDelete.path - Path of the endpoint, for example `1/newFeature`.
885
885
  * @param customDelete.parameters - Query parameters to apply to the current query.
886
886
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
887
887
  */
@@ -903,7 +903,7 @@ function createSearchClient({
903
903
  /**
904
904
  * This method lets you send requests to the Algolia REST API.
905
905
  * @param customGet - The customGet object.
906
- * @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
906
+ * @param customGet.path - Path of the endpoint, for example `1/newFeature`.
907
907
  * @param customGet.parameters - Query parameters to apply to the current query.
908
908
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
909
909
  */
@@ -925,7 +925,7 @@ function createSearchClient({
925
925
  /**
926
926
  * This method lets you send requests to the Algolia REST API.
927
927
  * @param customPost - The customPost object.
928
- * @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
928
+ * @param customPost.path - Path of the endpoint, for example `1/newFeature`.
929
929
  * @param customPost.parameters - Query parameters to apply to the current query.
930
930
  * @param customPost.body - Parameters to send with the custom request.
931
931
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -949,7 +949,7 @@ function createSearchClient({
949
949
  /**
950
950
  * This method lets you send requests to the Algolia REST API.
951
951
  * @param customPut - The customPut object.
952
- * @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
952
+ * @param customPut.path - Path of the endpoint, for example `1/newFeature`.
953
953
  * @param customPut.parameters - Query parameters to apply to the current query.
954
954
  * @param customPut.body - Parameters to send with the custom request.
955
955
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.