@algolia/client-search 5.23.3 → 5.23.4
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 +3 -3
- package/dist/builds/browser.js +2 -2
- 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 +2 -2
- package/dist/builds/fetch.js.map +1 -1
- package/dist/builds/node.cjs +2 -2
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +2 -2
- package/dist/builds/node.js.map +1 -1
- package/dist/builds/worker.js +2 -2
- package/dist/builds/worker.js.map +1 -1
- package/dist/fetch.d.ts +3 -3
- package/dist/node.d.cts +3 -3
- package/dist/node.d.ts +3 -3
- package/dist/src/searchClient.cjs +2 -2
- package/dist/src/searchClient.cjs.map +1 -1
- package/dist/src/searchClient.js +2 -2
- package/dist/src/searchClient.js.map +1 -1
- package/dist/worker.d.ts +3 -3
- package/package.json +7 -7
package/dist/worker.d.ts
CHANGED
|
@@ -999,7 +999,7 @@ type Condition = {
|
|
|
999
999
|
*/
|
|
1000
1000
|
context?: string;
|
|
1001
1001
|
/**
|
|
1002
|
-
* Filters that trigger the rule. You can add
|
|
1002
|
+
* Filters that trigger the rule. You can add filters using the syntax `facet:value` so that the rule is triggered, when the specific filter is selected. You can use `filters` on its own or combine it with the `pattern` parameter. You can\'t combine multiple filters with `OR` and you can\'t use numeric filters.
|
|
1003
1003
|
*/
|
|
1004
1004
|
filters?: string;
|
|
1005
1005
|
};
|
|
@@ -3028,7 +3028,7 @@ type ReplaceAllObjectsOptions = {
|
|
|
3028
3028
|
scopes?: Array<ScopeType>;
|
|
3029
3029
|
};
|
|
3030
3030
|
|
|
3031
|
-
declare const apiClientVersion = "5.23.
|
|
3031
|
+
declare const apiClientVersion = "5.23.4";
|
|
3032
3032
|
declare function createSearchClient({ appId: appIdOption, apiKey: apiKeyOption, authMode, algoliaAgents, ...options }: CreateClientOptions): {
|
|
3033
3033
|
transporter: _algolia_client_common.Transporter;
|
|
3034
3034
|
/**
|
|
@@ -3771,7 +3771,7 @@ declare function createSearchClient({ appId: appIdOption, apiKey: apiKeyOption,
|
|
|
3771
3771
|
*/
|
|
3772
3772
|
saveSynonyms({ indexName, synonymHit, forwardToReplicas, replaceExistingSynonyms }: SaveSynonymsProps, requestOptions?: RequestOptions): Promise<UpdatedAtResponse>;
|
|
3773
3773
|
/**
|
|
3774
|
-
* Sends multiple search requests to one or more indices. This can be useful in these cases: - Different indices for different purposes, such as, one index for products, another one for marketing content. - Multiple searches to the same index—for example, with different filters.
|
|
3774
|
+
* Sends multiple search requests to one or more indices. This can be useful in these cases: - Different indices for different purposes, such as, one index for products, another one for marketing content. - Multiple searches to the same index—for example, with different filters. Use the helper `searchForHits` or `searchForFacets` to get the results in a more convenient format, if you already know the return type you want.
|
|
3775
3775
|
*
|
|
3776
3776
|
* Required API Key ACLs:
|
|
3777
3777
|
* - search
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.23.
|
|
2
|
+
"version": "5.23.4",
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
|
|
@@ -49,15 +49,15 @@
|
|
|
49
49
|
"index.d.ts"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@algolia/client-common": "5.23.
|
|
53
|
-
"@algolia/requester-browser-xhr": "5.23.
|
|
54
|
-
"@algolia/requester-fetch": "5.23.
|
|
55
|
-
"@algolia/requester-node-http": "5.23.
|
|
52
|
+
"@algolia/client-common": "5.23.4",
|
|
53
|
+
"@algolia/requester-browser-xhr": "5.23.4",
|
|
54
|
+
"@algolia/requester-fetch": "5.23.4",
|
|
55
|
+
"@algolia/requester-node-http": "5.23.4"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@arethetypeswrong/cli": "0.17.4",
|
|
59
|
-
"@types/node": "22.14.
|
|
60
|
-
"publint": "0.3.
|
|
59
|
+
"@types/node": "22.14.1",
|
|
60
|
+
"publint": "0.3.11",
|
|
61
61
|
"rollup": "4.39.0",
|
|
62
62
|
"tsup": "8.4.0",
|
|
63
63
|
"typescript": "5.8.3"
|