Skip to content

Commit 713c9b8

Browse files
committed
Merge branch 'main' into feeds-api
2 parents 98f8d5c + 3ade594 commit 713c9b8

File tree

3 files changed

+18
-16
lines changed

3 files changed

+18
-16
lines changed

CHANGELOG.md

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

3+
## [0.4.26](https://github.com/GetStream/stream-node/compare/v0.4.25...v0.4.26) (2025-07-16)
4+
5+
### Features
6+
7+
- Update to API spec 186.1.0 ([#120](https://github.com/GetStream/stream-node/issues/120)) ([e1d1f88](https://github.com/GetStream/stream-node/commit/e1d1f88d823f71d6386a1791e285bdbee2cbfb54))
8+
39
## [0.4.25](https://github.com/GetStream/stream-node/compare/v0.4.24...v0.4.25) (2025-06-24)
410

511
### Features

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.4.25",
3+
"version": "0.4.26",
44
"description": "",
55
"exports": {
66
".": {

src/gen/models/index.ts

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5350,33 +5350,29 @@ export interface FirebaseConfigFields {
53505350
export interface Flag {
53515351
created_at: Date;
53525352

5353-
entity_id: string;
5354-
5355-
entity_type: string;
5353+
created_by_automod: boolean;
53565354

53575355
updated_at: Date;
53585356

5359-
result: Array<Record<string, any>>;
5360-
5361-
entity_creator_id?: string;
5362-
5363-
is_streamed_content?: boolean;
5364-
5365-
moderation_payload_hash?: string;
5357+
approved_at?: Date;
53665358

53675359
reason?: string;
53685360

5369-
review_queue_item_id?: string;
5361+
rejected_at?: Date;
53705362

5371-
type?: string;
5363+
reviewed_at?: Date;
53725364

5373-
labels?: string[];
5365+
reviewed_by?: string;
5366+
5367+
target_message_id?: string;
53745368

53755369
custom?: Record<string, any>;
53765370

5377-
moderation_payload?: ModerationPayload;
5371+
details?: FlagDetails;
53785372

5379-
review_queue_item?: ReviewQueueItem;
5373+
target_message?: Message;
5374+
5375+
target_user?: User;
53805376

53815377
user?: User;
53825378
}

0 commit comments

Comments
 (0)