Skip to content

Commit e30a146

Browse files
authored
feat: Add attachments to update comment request (#204)
🎫 Ticket: https://linear.app/stream/issue/FEEDS-1025 πŸ“‘ Docs: https://github.com/GetStream/docs-content/pull/<id> ### πŸ’‘ Overview ### πŸ“ Implementation notes
1 parent 10044fa commit e30a146

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

β€Žpackages/feeds-client/src/gen/feeds/FeedsApi.tsβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1110,6 +1110,7 @@ export class FeedsApi {
11101110
comment: request?.comment,
11111111
skip_enrich_url: request?.skip_enrich_url,
11121112
skip_push: request?.skip_push,
1113+
attachments: request?.attachments,
11131114
custom: request?.custom,
11141115
};
11151116

β€Žpackages/feeds-client/src/gen/models/index.tsβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5680,6 +5680,8 @@ export interface UpdateCommentRequest {
56805680

56815681
skip_push?: boolean;
56825682

5683+
attachments?: Attachment[];
5684+
56835685
custom?: Record<string, any>;
56845686
}
56855687

0 commit comments

Comments
Β (0)