Skip to content

Commit 16f5ac9

Browse files
authored
Merge branch 'main' into feeds-702-add-restrict-replies-to-activity-req-resp
2 parents 4d82b36 + 6f972ca commit 16f5ac9

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.7.15"
2+
".": "0.7.16"
33
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.7.16](https://github.com/GetStream/stream-node/compare/v0.7.15...v0.7.16) (2025-10-30)
4+
5+
6+
### Features
7+
8+
* update to latest open api spec ([#201](https://github.com/GetStream/stream-node/issues/201)) ([1b587e3](https://github.com/GetStream/stream-node/commit/1b587e3ad8f6cd29b14755de9ad07bbc27fe38d5))
9+
310
## [0.7.15](https://github.com/GetStream/stream-node/compare/v0.7.14...v0.7.15) (2025-10-22)
411

512

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stream-io/node-sdk",
3-
"version": "0.7.15",
3+
"version": "0.7.16",
44
"description": "",
55
"exports": {
66
".": {

src/gen/models/index.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export interface ActivityFeedbackEvent {
293293
}
294294

295295
export interface ActivityFeedbackEventPayload {
296-
action: string;
296+
action: 'hide' | 'show_more' | 'show_less';
297297

298298
activity_id: string;
299299

@@ -531,10 +531,14 @@ export interface ActivityResponse {
531531

532532
created_at: Date;
533533

534+
hidden: boolean;
535+
534536
id: string;
535537

536538
popularity: number;
537539

540+
preview: boolean;
541+
538542
reaction_count: number;
539543

540544
restrict_replies: string;
@@ -581,8 +585,6 @@ export interface ActivityResponse {
581585

582586
expires_at?: Date;
583587

584-
hidden?: boolean;
585-
586588
is_watched?: boolean;
587589

588590
moderation_action?: string;

0 commit comments

Comments
 (0)