@algolia/client-search 5.38.0 → 5.40.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.
- package/README.md +4 -4
- package/dist/browser.d.ts +58 -61
- package/dist/builds/browser.js +15 -15
- package/dist/builds/browser.js.map +1 -1
- package/dist/builds/browser.min.js +1 -1
- package/dist/builds/browser.min.js.map +1 -1
- package/dist/builds/browser.umd.js +1 -1
- package/dist/builds/fetch.js +15 -15
- package/dist/builds/fetch.js.map +1 -1
- package/dist/builds/node.cjs +15 -15
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +15 -15
- package/dist/builds/node.js.map +1 -1
- package/dist/builds/worker.js +15 -15
- package/dist/builds/worker.js.map +1 -1
- package/dist/fetch.d.ts +58 -61
- package/dist/node.d.cts +58 -61
- package/dist/node.d.ts +58 -61
- package/dist/src/searchClient.cjs +15 -15
- package/dist/src/searchClient.cjs.map +1 -1
- package/dist/src/searchClient.js +15 -15
- package/dist/src/searchClient.js.map +1 -1
- package/dist/worker.d.ts +58 -61
- package/package.json +9 -9
package/dist/builds/node.cjs
CHANGED
|
@@ -30,7 +30,7 @@ var import_client_common2 = require("@algolia/client-common");
|
|
|
30
30
|
|
|
31
31
|
// src/searchClient.ts
|
|
32
32
|
var import_client_common = require("@algolia/client-common");
|
|
33
|
-
var apiClientVersion = "5.
|
|
33
|
+
var apiClientVersion = "5.40.0";
|
|
34
34
|
function getDefaultHosts(appId) {
|
|
35
35
|
return [
|
|
36
36
|
{
|
|
@@ -579,7 +579,7 @@ function createSearchClient({
|
|
|
579
579
|
return transporter.request(request, requestOptions);
|
|
580
580
|
},
|
|
581
581
|
/**
|
|
582
|
-
* If a record with the specified object ID exists, the existing record is replaced. Otherwise, a new record is added to the index. If you want to use auto-generated object IDs, use the [`saveObject` operation](
|
|
582
|
+
* If a record with the specified object ID exists, the existing record is replaced. Otherwise, a new record is added to the index. If you want to use auto-generated object IDs, use the [`saveObject` operation](https://www.algolia.com/doc/rest-api/search/save-object). To update _some_ attributes of an existing record, use the [`partial` operation](https://www.algolia.com/doc/rest-api/search/partial-update-object) instead. To add, update, or replace multiple records, use the [`batch` operation](https://www.algolia.com/doc/rest-api/search/batch).
|
|
583
583
|
*
|
|
584
584
|
* Required API Key ACLs:
|
|
585
585
|
* - addObject
|
|
@@ -1005,7 +1005,7 @@ function createSearchClient({
|
|
|
1005
1005
|
return transporter.request(request, requestOptions);
|
|
1006
1006
|
},
|
|
1007
1007
|
/**
|
|
1008
|
-
* This operation doesn\'t accept empty filters. This operation is resource-intensive. You should only use it if you can\'t get the object IDs of the records you want to delete. It\'s more efficient to get a list of object IDs with the [`browse` operation](
|
|
1008
|
+
* This operation doesn\'t accept empty filters. This operation is resource-intensive. You should only use it if you can\'t get the object IDs of the records you want to delete. It\'s more efficient to get a list of object IDs with the [`browse` operation](https://www.algolia.com/doc/rest-api/search/browse), and then delete the records using the [`batch` operation](https://www.algolia.com/doc/rest-api/search/batch). This operation is subject to [indexing rate limits](https://support.algolia.com/hc/en-us/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia).
|
|
1009
1009
|
*
|
|
1010
1010
|
* Required API Key ACLs:
|
|
1011
1011
|
* - deleteIndex
|
|
@@ -1034,7 +1034,7 @@ function createSearchClient({
|
|
|
1034
1034
|
return transporter.request(request, requestOptions);
|
|
1035
1035
|
},
|
|
1036
1036
|
/**
|
|
1037
|
-
* Deletes an index and all its settings. - Deleting an index doesn\'t delete its analytics data. - If you try to delete a non-existing index, the operation is ignored without warning. - If the index you want to delete has replica indices, the replicas become independent indices. - If the index you want to delete is a replica index, you must first unlink it from its primary index before you can delete it. For more information, see [Delete replica indices](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/how-to/deleting-replicas
|
|
1037
|
+
* Deletes an index and all its settings. - Deleting an index doesn\'t delete its analytics data. - If you try to delete a non-existing index, the operation is ignored without warning. - If the index you want to delete has replica indices, the replicas become independent indices. - If the index you want to delete is a replica index, you must first unlink it from its primary index before you can delete it. For more information, see [Delete replica indices](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/how-to/deleting-replicas).
|
|
1038
1038
|
*
|
|
1039
1039
|
* Required API Key ACLs:
|
|
1040
1040
|
* - deleteIndex
|
|
@@ -1058,7 +1058,7 @@ function createSearchClient({
|
|
|
1058
1058
|
return transporter.request(request, requestOptions);
|
|
1059
1059
|
},
|
|
1060
1060
|
/**
|
|
1061
|
-
* Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](
|
|
1061
|
+
* Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](https://www.algolia.com/doc/rest-api/search/batch). To delete records matching a query, use the [`deleteBy` operation](https://www.algolia.com/doc/rest-api/search/delete-by).
|
|
1062
1062
|
*
|
|
1063
1063
|
* Required API Key ACLs:
|
|
1064
1064
|
* - deleteObject
|
|
@@ -1086,7 +1086,7 @@ function createSearchClient({
|
|
|
1086
1086
|
return transporter.request(request, requestOptions);
|
|
1087
1087
|
},
|
|
1088
1088
|
/**
|
|
1089
|
-
* Deletes a rule by its ID. To find the object ID for rules, use the [`search` operation](
|
|
1089
|
+
* Deletes a rule by its ID. To find the object ID for rules, use the [`search` operation](https://www.algolia.com/doc/rest-api/search/search-rules).
|
|
1090
1090
|
*
|
|
1091
1091
|
* Required API Key ACLs:
|
|
1092
1092
|
* - editSettings
|
|
@@ -1142,7 +1142,7 @@ function createSearchClient({
|
|
|
1142
1142
|
return transporter.request(request, requestOptions);
|
|
1143
1143
|
},
|
|
1144
1144
|
/**
|
|
1145
|
-
* Deletes a synonym by its ID. To find the object IDs of your synonyms, use the [`search` operation](
|
|
1145
|
+
* Deletes a synonym by its ID. To find the object IDs of your synonyms, use the [`search` operation](https://www.algolia.com/doc/rest-api/search/search-synonyms).
|
|
1146
1146
|
*
|
|
1147
1147
|
* Required API Key ACLs:
|
|
1148
1148
|
* - editSettings
|
|
@@ -1293,7 +1293,7 @@ function createSearchClient({
|
|
|
1293
1293
|
return transporter.request(request, requestOptions);
|
|
1294
1294
|
},
|
|
1295
1295
|
/**
|
|
1296
|
-
* Retrieves one record by its object ID. To retrieve more than one record, use the [`objects` operation](
|
|
1296
|
+
* Retrieves one record by its object ID. To retrieve more than one record, use the [`objects` operation](https://www.algolia.com/doc/rest-api/search/get-objects).
|
|
1297
1297
|
*
|
|
1298
1298
|
* Required API Key ACLs:
|
|
1299
1299
|
* - search
|
|
@@ -1354,7 +1354,7 @@ function createSearchClient({
|
|
|
1354
1354
|
return transporter.request(request, requestOptions);
|
|
1355
1355
|
},
|
|
1356
1356
|
/**
|
|
1357
|
-
* Retrieves a rule by its ID. To find the object ID of rules, use the [`search` operation](
|
|
1357
|
+
* Retrieves a rule by its ID. To find the object ID of rules, use the [`search` operation](https://www.algolia.com/doc/rest-api/search/search-rules).
|
|
1358
1358
|
*
|
|
1359
1359
|
* Required API Key ACLs:
|
|
1360
1360
|
* - settings
|
|
@@ -1429,7 +1429,7 @@ function createSearchClient({
|
|
|
1429
1429
|
return transporter.request(request, requestOptions);
|
|
1430
1430
|
},
|
|
1431
1431
|
/**
|
|
1432
|
-
* Retrieves a synonym by its ID. To find the object IDs for your synonyms, use the [`search` operation](
|
|
1432
|
+
* Retrieves a synonym by its ID. To find the object IDs for your synonyms, use the [`search` operation](https://www.algolia.com/doc/rest-api/search/search-synonyms).
|
|
1433
1433
|
*
|
|
1434
1434
|
* Required API Key ACLs:
|
|
1435
1435
|
* - settings
|
|
@@ -1680,7 +1680,7 @@ function createSearchClient({
|
|
|
1680
1680
|
return transporter.request(request, requestOptions);
|
|
1681
1681
|
},
|
|
1682
1682
|
/**
|
|
1683
|
-
* Copies or moves (renames) an index within the same Algolia application. - Existing destination indices are overwritten, except for their analytics data. - If the destination index doesn\'t exist yet, it\'ll be created. - This operation is resource-intensive. **Copy** - Copying a source index that doesn\'t exist creates a new index with 0 records and default settings. - The API keys of the source index are merged with the existing keys in the destination index. - You can\'t copy the `enableReRanking`, `mode`, and `replicas` settings. - You can\'t copy to a destination index that already has replicas. - Be aware of the [size limits](https://www.algolia.com/doc/guides/scaling/algolia-service-limits/#application-record-and-index-limits). - Related guide: [Copy indices](https://www.algolia.com/doc/guides/sending-and-managing-data/manage-indices-and-apps/manage-indices/how-to/copy-indices
|
|
1683
|
+
* Copies or moves (renames) an index within the same Algolia application. - Existing destination indices are overwritten, except for their analytics data. - If the destination index doesn\'t exist yet, it\'ll be created. - This operation is resource-intensive. **Copy** - Copying a source index that doesn\'t exist creates a new index with 0 records and default settings. - The API keys of the source index are merged with the existing keys in the destination index. - You can\'t copy the `enableReRanking`, `mode`, and `replicas` settings. - You can\'t copy to a destination index that already has replicas. - Be aware of the [size limits](https://www.algolia.com/doc/guides/scaling/algolia-service-limits/#application-record-and-index-limits). - Related guide: [Copy indices](https://www.algolia.com/doc/guides/sending-and-managing-data/manage-indices-and-apps/manage-indices/how-to/copy-indices) **Move** - Moving a source index that doesn\'t exist is ignored without returning an error. - When moving an index, the analytics data keeps its original name, and a new set of analytics data is started for the new name. To access the original analytics in the dashboard, create an index with the original name. - If the destination index has replicas, moving will overwrite the existing index and copy the data to the replica indices. - Related guide: [Move indices](https://www.algolia.com/doc/guides/sending-and-managing-data/manage-indices-and-apps/manage-indices/how-to/move-indices). This operation is subject to [indexing rate limits](https://support.algolia.com/hc/en-us/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia).
|
|
1684
1684
|
*
|
|
1685
1685
|
* Required API Key ACLs:
|
|
1686
1686
|
* - addObject
|
|
@@ -1827,7 +1827,7 @@ function createSearchClient({
|
|
|
1827
1827
|
return transporter.request(request, requestOptions);
|
|
1828
1828
|
},
|
|
1829
1829
|
/**
|
|
1830
|
-
* Adds a record to an index or replaces it. - If the record doesn\'t have an object ID, a new record with an auto-generated object ID is added to your index. - If a record with the specified object ID exists, the existing record is replaced. - If a record with the specified object ID doesn\'t exist, a new record is added to your index. - If you add a record to an index that doesn\'t exist yet, a new index is created. To update _some_ attributes of a record, use the [`partial` operation](
|
|
1830
|
+
* Adds a record to an index or replaces it. - If the record doesn\'t have an object ID, a new record with an auto-generated object ID is added to your index. - If a record with the specified object ID exists, the existing record is replaced. - If a record with the specified object ID doesn\'t exist, a new record is added to your index. - If you add a record to an index that doesn\'t exist yet, a new index is created. To update _some_ attributes of a record, use the [`partial` operation](https://www.algolia.com/doc/rest-api/search/partial-update-object). To add, update, or replace multiple records, use the [`batch` operation](https://www.algolia.com/doc/rest-api/search/batch). This operation is subject to [indexing rate limits](https://support.algolia.com/hc/en-us/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia).
|
|
1831
1831
|
*
|
|
1832
1832
|
* Required API Key ACLs:
|
|
1833
1833
|
* - addObject
|
|
@@ -1856,7 +1856,7 @@ function createSearchClient({
|
|
|
1856
1856
|
return transporter.request(request, requestOptions);
|
|
1857
1857
|
},
|
|
1858
1858
|
/**
|
|
1859
|
-
* If a rule with the specified object ID doesn\'t exist, it\'s created. Otherwise, the existing rule is replaced. To create or update more than one rule, use the [`batch` operation](
|
|
1859
|
+
* If a rule with the specified object ID doesn\'t exist, it\'s created. Otherwise, the existing rule is replaced. To create or update more than one rule, use the [`batch` operation](https://www.algolia.com/doc/rest-api/search/save-rules).
|
|
1860
1860
|
*
|
|
1861
1861
|
* Required API Key ACLs:
|
|
1862
1862
|
* - editSettings
|
|
@@ -1936,7 +1936,7 @@ function createSearchClient({
|
|
|
1936
1936
|
return transporter.request(request, requestOptions);
|
|
1937
1937
|
},
|
|
1938
1938
|
/**
|
|
1939
|
-
* If a synonym with the specified object ID doesn\'t exist, Algolia adds a new one. Otherwise, the existing synonym is replaced. To add multiple synonyms in a single API request, use the [`batch` operation](
|
|
1939
|
+
* If a synonym with the specified object ID doesn\'t exist, Algolia adds a new one. Otherwise, the existing synonym is replaced. To add multiple synonyms in a single API request, use the [`batch` operation](https://www.algolia.com/doc/rest-api/search/save-synonyms).
|
|
1940
1940
|
*
|
|
1941
1941
|
* Required API Key ACLs:
|
|
1942
1942
|
* - editSettings
|
|
@@ -2167,7 +2167,7 @@ function createSearchClient({
|
|
|
2167
2167
|
return transporter.request(request, requestOptions);
|
|
2168
2168
|
},
|
|
2169
2169
|
/**
|
|
2170
|
-
* Searches a single index and returns matching search results
|
|
2170
|
+
* Searches a single index and returns matching search results as hits. This method lets you retrieve up to 1,000 hits. If you need more, use the [`browse` operation](https://www.algolia.com/doc/rest-api/search/browse) or increase the `paginatedLimitedTo` index setting.
|
|
2171
2171
|
*
|
|
2172
2172
|
* Required API Key ACLs:
|
|
2173
2173
|
* - search
|