@algolia/client-search 5.0.0-beta.1 → 5.0.0-beta.3

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.
Files changed (43) hide show
  1. package/dist/builds/browser.d.ts +2 -0
  2. package/dist/builds/browser.d.ts.map +1 -1
  3. package/dist/builds/node.d.ts +2 -0
  4. package/dist/builds/node.d.ts.map +1 -1
  5. package/dist/client-search.cjs +54 -5
  6. package/dist/client-search.esm.browser.js +63 -20
  7. package/dist/client-search.esm.node.js +54 -5
  8. package/dist/client-search.umd.js +2 -2
  9. package/dist/model/clientMethodProps.d.ts +16 -21
  10. package/dist/model/clientMethodProps.d.ts.map +1 -1
  11. package/dist/model/facetFilters.d.ts +1 -2
  12. package/dist/model/facetFilters.d.ts.map +1 -1
  13. package/dist/model/index.d.ts +1 -1
  14. package/dist/model/index.d.ts.map +1 -1
  15. package/dist/model/numericFilters.d.ts +1 -2
  16. package/dist/model/numericFilters.d.ts.map +1 -1
  17. package/dist/model/optionalFilters.d.ts +1 -2
  18. package/dist/model/optionalFilters.d.ts.map +1 -1
  19. package/dist/model/rankingInfo.d.ts +3 -3
  20. package/dist/model/rankingInfo.d.ts.map +1 -1
  21. package/dist/model/reRankingApplyFilter.d.ts +1 -2
  22. package/dist/model/reRankingApplyFilter.d.ts.map +1 -1
  23. package/dist/model/replaceAllObjectsResponse.d.ts +11 -0
  24. package/dist/model/replaceAllObjectsResponse.d.ts.map +1 -0
  25. package/dist/model/searchForFacetValuesResponse.d.ts +1 -1
  26. package/dist/model/tagFilters.d.ts +1 -2
  27. package/dist/model/tagFilters.d.ts.map +1 -1
  28. package/dist/src/searchClient.d.ts +27 -4
  29. package/dist/src/searchClient.d.ts.map +1 -1
  30. package/model/clientMethodProps.ts +18 -24
  31. package/model/facetFilters.ts +1 -3
  32. package/model/index.ts +1 -1
  33. package/model/numericFilters.ts +1 -3
  34. package/model/optionalFilters.ts +1 -3
  35. package/model/rankingInfo.ts +3 -3
  36. package/model/reRankingApplyFilter.ts +1 -3
  37. package/model/replaceAllObjectsResponse.ts +15 -0
  38. package/model/searchForFacetValuesResponse.ts +1 -1
  39. package/model/tagFilters.ts +1 -3
  40. package/package.json +6 -6
  41. package/dist/model/mixedSearchFilters.d.ts +0 -2
  42. package/dist/model/mixedSearchFilters.d.ts.map +0 -1
  43. package/model/mixedSearchFilters.ts +0 -3
@@ -1,8 +1,6 @@
1
1
  // Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
2
2
 
3
- import type { MixedSearchFilters } from './mixedSearchFilters';
4
-
5
3
  /**
6
4
  * Filter the search by values of the special `_tags` attribute. **Prefer using the `filters` parameter, which supports all filter types and combinations with boolean operators.** Different from regular facets, `_tags` can only be used for filtering (including or excluding records). You won\'t get a facet count. The same combination and escaping rules apply as for `facetFilters`.
7
5
  */
8
- export type TagFilters = MixedSearchFilters[] | string;
6
+ export type TagFilters = TagFilters[] | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@algolia/client-search",
3
- "version": "5.0.0-beta.1",
3
+ "version": "5.0.0-beta.3",
4
4
  "description": "JavaScript client for client-search",
5
5
  "repository": "algolia/algoliasearch-client-javascript",
6
6
  "license": "MIT",
@@ -39,13 +39,13 @@
39
39
  "clean": "rm -rf ./dist || true"
40
40
  },
41
41
  "dependencies": {
42
- "@algolia/client-common": "5.0.0-beta.1",
43
- "@algolia/requester-browser-xhr": "5.0.0-beta.1",
44
- "@algolia/requester-node-http": "5.0.0-beta.1"
42
+ "@algolia/client-common": "5.0.0-beta.3",
43
+ "@algolia/requester-browser-xhr": "5.0.0-beta.3",
44
+ "@algolia/requester-node-http": "5.0.0-beta.3"
45
45
  },
46
46
  "devDependencies": {
47
- "@types/node": "20.12.7",
48
- "rollup": "4.14.2",
47
+ "@types/node": "20.14.2",
48
+ "rollup": "4.18.0",
49
49
  "typescript": "5.4.5"
50
50
  },
51
51
  "engines": {
@@ -1,2 +0,0 @@
1
- export type MixedSearchFilters = string[] | string;
2
- //# sourceMappingURL=mixedSearchFilters.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mixedSearchFilters.d.ts","sourceRoot":"","sources":["../../model/mixedSearchFilters.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,kBAAkB,GAAG,MAAM,EAAE,GAAG,MAAM,CAAC"}
@@ -1,3 +0,0 @@
1
- // Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
2
-
3
- export type MixedSearchFilters = string[] | string;