@algolia/client-search 5.2.5 → 5.3.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/dist/browser.d.ts +2485 -1687
- package/dist/builds/browser.js +114 -86
- 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 +2 -2
- package/dist/builds/node.cjs +108 -87
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +116 -88
- package/dist/builds/node.js.map +1 -1
- package/dist/node.d.cts +883 -102
- package/dist/node.d.ts +883 -102
- package/dist/src/searchClient.cjs +106 -85
- package/dist/src/searchClient.cjs.map +1 -1
- package/dist/src/searchClient.js +114 -86
- package/dist/src/searchClient.js.map +1 -1
- package/model/clientMethodProps.ts +5 -0
- package/package.json +4 -4
|
@@ -803,6 +803,11 @@ export type GetSecuredApiKeyRemainingValidityOptions = {
|
|
|
803
803
|
securedApiKey: string;
|
|
804
804
|
};
|
|
805
805
|
|
|
806
|
+
export type SearchClientNodeHelpers = {
|
|
807
|
+
generateSecuredApiKey: (opts: GenerateSecuredApiKeyOptions) => string;
|
|
808
|
+
getSecuredApiKeyRemainingValidity: (opts: GetSecuredApiKeyRemainingValidityOptions) => number;
|
|
809
|
+
};
|
|
810
|
+
|
|
806
811
|
export type DeleteObjectsOptions = Pick<ChunkedBatchOptions, 'indexName'> & {
|
|
807
812
|
/**
|
|
808
813
|
* The objectIDs to delete.
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.
|
|
2
|
+
"version": "5.3.0",
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"index.d.ts"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@algolia/client-common": "5.
|
|
48
|
-
"@algolia/requester-browser-xhr": "5.
|
|
49
|
-
"@algolia/requester-node-http": "5.
|
|
47
|
+
"@algolia/client-common": "5.3.0",
|
|
48
|
+
"@algolia/requester-browser-xhr": "5.3.0",
|
|
49
|
+
"@algolia/requester-node-http": "5.3.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@arethetypeswrong/cli": "0.15.4",
|