@stream-io/feeds-client 0.2.3 → 0.2.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/CHANGELOG.md +12 -0
- package/dist/index-react-bindings.browser.cjs +3 -1
- package/dist/index-react-bindings.browser.cjs.map +1 -1
- package/dist/index-react-bindings.browser.js +3 -1
- package/dist/index-react-bindings.browser.js.map +1 -1
- package/dist/index-react-bindings.node.cjs +3 -1
- package/dist/index-react-bindings.node.cjs.map +1 -1
- package/dist/index-react-bindings.node.js +3 -1
- package/dist/index-react-bindings.node.js.map +1 -1
- package/dist/index.browser.cjs +2 -2
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.js +2 -2
- package/dist/index.browser.js.map +1 -1
- package/dist/index.node.cjs +2 -2
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.js +2 -2
- package/dist/index.node.js.map +1 -1
- package/dist/src/common/search/FeedSearchSource.d.ts +2 -2
- package/dist/src/gen/models/index.d.ts +18 -8
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/common/search/BaseSearchSource.ts +1 -1
- package/src/common/search/FeedSearchSource.ts +3 -2
- package/src/gen/models/index.ts +26 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.2.4](https://github.com/GetStream/stream-feeds-js/compare/@stream-io/feeds-client-0.2.3...@stream-io/feeds-client-0.2.4) (2025-09-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
* fix docs snippets tests ([879d5d4](https://github.com/GetStream/stream-feeds-js/commit/879d5d48b70cb5ec16b82b145bf46abdb000c428))
|
|
9
|
+
* Skip notification tests to be able to release ([c71733e](https://github.com/GetStream/stream-feeds-js/commit/c71733e6e26ca65df1660452fd7ae73ef70f2e98))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* add TaskID in DeleteFeedResponse ([#107](https://github.com/GetStream/stream-feeds-js/issues/107)) ([153aa23](https://github.com/GetStream/stream-feeds-js/commit/153aa230e415fb20d790f083f0fb1057990e91f5))
|
|
15
|
+
* hashtags ([#105](https://github.com/GetStream/stream-feeds-js/issues/105)) ([f5e5e24](https://github.com/GetStream/stream-feeds-js/commit/f5e5e24be1183aab682cae05115f2c04f5543c4d))
|
|
16
|
+
|
|
5
17
|
## [0.2.3](https://github.com/GetStream/stream-feeds-js/compare/@stream-io/feeds-client-0.2.2...@stream-io/feeds-client-0.2.3) (2025-09-01)
|
|
6
18
|
|
|
7
19
|
|
|
@@ -6422,7 +6422,9 @@ const useSearchResult = (sourceFromProps) => {
|
|
|
6422
6422
|
const source = sourceFromProps ?? sourceFromContext;
|
|
6423
6423
|
const { items, error, isLoading, hasNext } = useStateStore(source?.state, selector$2) ?? {};
|
|
6424
6424
|
const loadMore = useStableCallback(async () => {
|
|
6425
|
-
|
|
6425
|
+
if (hasNext) {
|
|
6426
|
+
source?.search();
|
|
6427
|
+
}
|
|
6426
6428
|
});
|
|
6427
6429
|
return react.useMemo(() => ({ items, error, isLoading, hasNext, loadMore }), [error, hasNext, isLoading, items, loadMore]);
|
|
6428
6430
|
};
|