@algolia/client-search 5.8.0 → 5.8.1
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 +7 -11
- package/dist/builds/browser.js +3 -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 +2 -2
- package/dist/builds/fetch.js +3 -2
- package/dist/builds/fetch.js.map +1 -1
- package/dist/builds/node.cjs +3 -2
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +3 -2
- package/dist/builds/node.js.map +1 -1
- package/dist/fetch.d.ts +7 -11
- package/dist/node.d.cts +7 -11
- package/dist/node.d.ts +7 -11
- package/dist/src/searchClient.cjs +3 -2
- package/dist/src/searchClient.cjs.map +1 -1
- package/dist/src/searchClient.js +3 -2
- package/dist/src/searchClient.js.map +1 -1
- package/index.d.ts +0 -1
- package/index.js +0 -1
- package/model/bannerImage.ts +1 -1
- package/model/index.ts +0 -1
- package/model/widgets.ts +5 -2
- package/package.json +5 -5
- package/model/banners.ts +0 -10
package/index.d.ts
CHANGED
package/index.js
CHANGED
package/model/bannerImage.ts
CHANGED
package/model/index.ts
CHANGED
|
@@ -19,7 +19,6 @@ export * from './banner';
|
|
|
19
19
|
export * from './bannerImage';
|
|
20
20
|
export * from './bannerImageUrl';
|
|
21
21
|
export * from './bannerLink';
|
|
22
|
-
export * from './banners';
|
|
23
22
|
export * from './baseGetApiKeyResponse';
|
|
24
23
|
export * from './baseIndexSettings';
|
|
25
24
|
export * from './baseSearchParams';
|
package/model/widgets.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
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 {
|
|
3
|
+
import type { Banner } from './banner';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* widgets returned from any rules that are applied to the current search.
|
|
7
7
|
*/
|
|
8
8
|
export type Widgets = {
|
|
9
|
-
|
|
9
|
+
/**
|
|
10
|
+
* banners defined in the merchandising studio for the given search.
|
|
11
|
+
*/
|
|
12
|
+
banners?: Array<Banner>;
|
|
10
13
|
};
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.8.
|
|
2
|
+
"version": "5.8.1",
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"index.d.ts"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@algolia/client-common": "5.8.
|
|
53
|
-
"@algolia/requester-browser-xhr": "5.8.
|
|
54
|
-
"@algolia/requester-fetch": "5.8.
|
|
55
|
-
"@algolia/requester-node-http": "5.8.
|
|
52
|
+
"@algolia/client-common": "5.8.1",
|
|
53
|
+
"@algolia/requester-browser-xhr": "5.8.1",
|
|
54
|
+
"@algolia/requester-fetch": "5.8.1",
|
|
55
|
+
"@algolia/requester-node-http": "5.8.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@arethetypeswrong/cli": "0.16.4",
|
package/model/banners.ts
DELETED
|
@@ -1,10 +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
|
-
import type { Banner } from './banner';
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* banners defined in the merchandising studio for the given search.
|
|
7
|
-
*/
|
|
8
|
-
export type Banners = {
|
|
9
|
-
banners?: Banner;
|
|
10
|
-
};
|