From 1885cd47159679c8ba639ba455da9a30f694bd20 Mon Sep 17 00:00:00 2001 From: zoranmiladinoski Date: Mon, 13 Oct 2025 16:02:58 +0200 Subject: [PATCH 1/6] - change cutoff_time in feed group/view request to be string, and on response to be time or omitted - add feeds usage stats endpoints --- src/gen/feeds/FeedsApi.ts | 27 ++++++++++++++++++ src/gen/model-decoders/decoders.ts | 36 ++++++++++++++++++++---- src/gen/models/index.ts | 44 +++++++++++++++++++++++++++++- 3 files changed, 101 insertions(+), 6 deletions(-) diff --git a/src/gen/feeds/FeedsApi.ts b/src/gen/feeds/FeedsApi.ts index 5258b2d..1104176 100644 --- a/src/gen/feeds/FeedsApi.ts +++ b/src/gen/feeds/FeedsApi.ts @@ -80,6 +80,8 @@ import { QueryFeedMembersResponse, QueryFeedsRequest, QueryFeedsResponse, + QueryFeedsUsageStatsRequest, + QueryFeedsUsageStatsResponse, QueryFollowsRequest, QueryFollowsResponse, QueryMembershipLevelsRequest, @@ -341,6 +343,7 @@ export class FeedsApi { reason: request?.reason, report: request?.report, show_less: request?.show_less, + show_more: request?.show_more, user_id: request?.user_id, user: request?.user, }; @@ -2028,6 +2031,30 @@ export class FeedsApi { return { ...response.body, metadata: response.metadata }; } + async queryFeedsUsageStats( + request?: QueryFeedsUsageStatsRequest, + ): Promise> { + const body = { + from: request?.from, + to: request?.to, + }; + + const response = await this.apiClient.sendRequest< + StreamResponse + >( + 'POST', + '/api/v2/feeds/stats/usage', + undefined, + undefined, + body, + 'application/json', + ); + + decoders.QueryFeedsUsageStatsResponse?.(response.body); + + return { ...response.body, metadata: response.metadata }; + } + async unfollowBatch( request: UnfollowBatchRequest, ): Promise> { diff --git a/src/gen/model-decoders/decoders.ts b/src/gen/model-decoders/decoders.ts index cc6b3c9..e18a80a 100644 --- a/src/gen/model-decoders/decoders.ts +++ b/src/gen/model-decoders/decoders.ts @@ -224,7 +224,7 @@ decoders.ActivityResponse = (input?: Record) => { return decode(typeMappings, input); }; -decoders.ActivitySelectorConfig = (input?: Record) => { +decoders.ActivitySelectorConfigResponse = (input?: Record) => { const typeMappings: TypeMapping = { cutoff_time: { type: 'DatetimeType', isSingle: true }, }; @@ -1903,9 +1903,10 @@ decoders.FeedGroupResponse = (input?: Record) => { updated_at: { type: 'DatetimeType', isSingle: true }, - deleted_at: { type: 'DatetimeType', isSingle: true }, - - activity_selectors: { type: 'ActivitySelectorConfig', isSingle: false }, + activity_selectors: { + type: 'ActivitySelectorConfigResponse', + isSingle: false, + }, }; return decode(typeMappings, input); }; @@ -1998,7 +1999,10 @@ decoders.FeedViewResponse = (input?: Record) => { const typeMappings: TypeMapping = { last_used_at: { type: 'DatetimeType', isSingle: true }, - activity_selectors: { type: 'ActivitySelectorConfig', isSingle: false }, + activity_selectors: { + type: 'ActivitySelectorConfigResponse', + isSingle: false, + }, }; return decode(typeMappings, input); }; @@ -3277,6 +3281,28 @@ decoders.QueryCallParticipantsResponse = (input?: Record) => { return decode(typeMappings, input); }; +decoders.QueryCallSessionParticipantStatsResponse = ( + input?: Record, +) => { + const typeMappings: TypeMapping = { + participants: { type: 'CallStatsParticipant', isSingle: false }, + + call_ended_at: { type: 'DatetimeType', isSingle: true }, + + call_started_at: { type: 'DatetimeType', isSingle: true }, + }; + return decode(typeMappings, input); +}; + +decoders.QueryCallSessionParticipantStatsTimelineResponse = ( + input?: Record, +) => { + const typeMappings: TypeMapping = { + events: { type: 'CallParticipantTimeline', isSingle: false }, + }; + return decode(typeMappings, input); +}; + decoders.QueryCallStatsResponse = (input?: Record) => { const typeMappings: TypeMapping = { reports: { type: 'CallStatsReportSummaryResponse', isSingle: false }, diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index a0c3aa8..1244f20 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -311,6 +311,8 @@ export interface ActivityFeedbackRequest { show_less?: boolean; + show_more?: boolean; + user_id?: string; user?: UserRequest; @@ -608,6 +610,18 @@ export interface ActivitySelectorConfig { filter?: Record; } +export interface ActivitySelectorConfigResponse { + cutoff_time?: Date; + + min_popularity?: number; + + type?: string; + + sort?: SortParam[]; + + filter?: Record; +} + export interface ActivityUnpinnedEvent { created_at: Date; @@ -4394,6 +4408,18 @@ export interface DailyAggregateUserFeedbackReportResponse { report: UserFeedbackReport; } +export interface DailyMetricResponse { + date: string; + + value: number; +} + +export interface DailyMetricStatsResponse { + total: number; + + daily: DailyMetricResponse[]; +} + export interface Data { id: string; } @@ -5507,7 +5533,7 @@ export interface FeedViewResponse { activity_processors?: ActivityProcessorConfig[]; - activity_selectors?: ActivitySelectorConfig[]; + activity_selectors?: ActivitySelectorConfigResponse[]; aggregation?: AggregationConfig; @@ -9400,6 +9426,22 @@ export interface QueryFeedsResponse { prev?: string; } +export interface QueryFeedsUsageStatsRequest { + from?: string; + + to?: string; +} + +export interface QueryFeedsUsageStatsResponse { + duration: string; + + activities: DailyMetricStatsResponse; + + api_requests: DailyMetricStatsResponse; + + follows: DailyMetricStatsResponse; +} + export interface QueryFollowsRequest { limit?: number; From 723e520ff9ac0b4592830db3ef3d3fa6e7945d3b Mon Sep 17 00:00:00 2001 From: zoranmiladinoski Date: Mon, 13 Oct 2025 17:54:18 +0200 Subject: [PATCH 2/6] add openai_request in QueryFeedsUsageStatsResponse --- src/gen/models/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index 1244f20..c67b6ba 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -9440,6 +9440,8 @@ export interface QueryFeedsUsageStatsResponse { api_requests: DailyMetricStatsResponse; follows: DailyMetricStatsResponse; + + openai_requests: DailyMetricStatsResponse; } export interface QueryFollowsRequest { From 0f8c72eff90c7477ffd5fa24fc0ae17d5d59432f Mon Sep 17 00:00:00 2001 From: zoranmiladinoski Date: Tue, 14 Oct 2025 10:02:49 +0200 Subject: [PATCH 3/6] revert changelog reformating --- CHANGELOG.md | 83 +++++++++++++++++++++++++++++++++------------------- 1 file changed, 53 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17c5dcf..54c3e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,153 +2,176 @@ ## [0.7.10](https://github.com/GetStream/stream-node/compare/v0.7.9...v0.7.10) (2025-10-13) + ### Features -- change cutoff_time in feed group/view request to be string, and on … ([#184](https://github.com/GetStream/stream-node/issues/184)) ([75f978a](https://github.com/GetStream/stream-node/commit/75f978a512f4e3f4794cd54e4c047e33fd83b847)) +* change cutoff_time in feed group/view request to be string, and on … ([#184](https://github.com/GetStream/stream-node/issues/184)) ([75f978a](https://github.com/GetStream/stream-node/commit/75f978a512f4e3f4794cd54e4c047e33fd83b847)) ## [0.7.9](https://github.com/GetStream/stream-node/compare/v0.7.8...v0.7.9) (2025-10-10) + ### Features -- [FEEDS-831] add support for soft deleted feed groups ([#182](https://github.com/GetStream/stream-node/issues/182)) ([006f170](https://github.com/GetStream/stream-node/commit/006f170d9c032c81139db2b03a5b8cb11d059572)) +* [FEEDS-831] add support for soft deleted feed groups ([#182](https://github.com/GetStream/stream-node/issues/182)) ([006f170](https://github.com/GetStream/stream-node/commit/006f170d9c032c81139db2b03a5b8cb11d059572)) ## [0.7.8](https://github.com/GetStream/stream-node/compare/v0.7.7...v0.7.8) (2025-10-10) + ### Features -- Added individual activities array to stories feed updated event ([#180](https://github.com/GetStream/stream-node/issues/180)) ([db36a8e](https://github.com/GetStream/stream-node/commit/db36a8e9298da82d7e18a577eb79d7a00d62a803)) +* Added individual activities array to stories feed updated event ([#180](https://github.com/GetStream/stream-node/issues/180)) ([db36a8e](https://github.com/GetStream/stream-node/commit/db36a8e9298da82d7e18a577eb79d7a00d62a803)) ## [0.7.7](https://github.com/GetStream/stream-node/compare/v0.7.6...v0.7.7) (2025-10-09) + ### Features -- [FEEDS-795] add updateFeedVisibility ([#178](https://github.com/GetStream/stream-node/issues/178)) ([735a934](https://github.com/GetStream/stream-node/commit/735a934701df4e4c4e5e05c1b3ab7786bfef8e7f)) +* [FEEDS-795] add updateFeedVisibility ([#178](https://github.com/GetStream/stream-node/issues/178)) ([735a934](https://github.com/GetStream/stream-node/commit/735a934701df4e4c4e5e05c1b3ab7786bfef8e7f)) ## [0.7.6](https://github.com/GetStream/stream-node/compare/v0.7.5...v0.7.6) (2025-10-02) + ### Bug Fixes -- rename addReaction method to addActivityReaction ([#176](https://github.com/GetStream/stream-node/issues/176)) ([69b9233](https://github.com/GetStream/stream-node/commit/69b9233cd0bcfa1351bfad0b13134e2662cc2585)) +* rename addReaction method to addActivityReaction ([#176](https://github.com/GetStream/stream-node/issues/176)) ([69b9233](https://github.com/GetStream/stream-node/commit/69b9233cd0bcfa1351bfad0b13134e2662cc2585)) ## [0.7.5](https://github.com/GetStream/stream-node/compare/v0.7.4...v0.7.5) (2025-10-02) + ### Bug Fixes -- stories config ([#174](https://github.com/GetStream/stream-node/issues/174)) ([232d044](https://github.com/GetStream/stream-node/commit/232d0446cddd6cdc5f75347f34dd5555ff355887)) +* stories config ([#174](https://github.com/GetStream/stream-node/issues/174)) ([232d044](https://github.com/GetStream/stream-node/commit/232d0446cddd6cdc5f75347f34dd5555ff355887)) ## [0.7.4](https://github.com/GetStream/stream-node/compare/v0.7.3...v0.7.4) (2025-10-02) + ### Features -- stories feed implementation ([#170](https://github.com/GetStream/stream-node/issues/170)) ([ca75fb5](https://github.com/GetStream/stream-node/commit/ca75fb5706fe1ed49df6f21c921e67059612579d)) +* stories feed implementation ([#170](https://github.com/GetStream/stream-node/issues/170)) ([ca75fb5](https://github.com/GetStream/stream-node/commit/ca75fb5706fe1ed49df6f21c921e67059612579d)) + ### Bug Fixes -- removed expiration from stories config ([#172](https://github.com/GetStream/stream-node/issues/172)) ([a30b855](https://github.com/GetStream/stream-node/commit/a30b855f37335396fd24ff53c99225b955abbc73)) +* removed expiration from stories config ([#172](https://github.com/GetStream/stream-node/issues/172)) ([a30b855](https://github.com/GetStream/stream-node/commit/a30b855f37335396fd24ff53c99225b955abbc73)) ## [0.7.3](https://github.com/GetStream/stream-node/compare/v0.7.2...v0.7.3) (2025-09-30) + ### Features -- hifi audio support ([#167](https://github.com/GetStream/stream-node/issues/167)) ([e48f890](https://github.com/GetStream/stream-node/commit/e48f890aaeabeb601a32a80739897b1911e97ec5)) +* hifi audio support ([#167](https://github.com/GetStream/stream-node/issues/167)) ([e48f890](https://github.com/GetStream/stream-node/commit/e48f890aaeabeb601a32a80739897b1911e97ec5)) ## [0.7.2](https://github.com/GetStream/stream-node/compare/v0.7.1...v0.7.2) (2025-09-30) + ### Features -- add createSRTCredetials method to StreamCall ([#165](https://github.com/GetStream/stream-node/issues/165)) ([2a9d950](https://github.com/GetStream/stream-node/commit/2a9d950a2ef9b66f6fc7f0dd5e1a296f49328f5f)) +* add createSRTCredetials method to StreamCall ([#165](https://github.com/GetStream/stream-node/issues/165)) ([2a9d950](https://github.com/GetStream/stream-node/commit/2a9d950a2ef9b66f6fc7f0dd5e1a296f49328f5f)) ## [0.7.1](https://github.com/GetStream/stream-node/compare/v0.7.0...v0.7.1) (2025-09-30) + ### Features -- change cutoff_time in feed group/view request to be string, and on response to be time or omitted ([#161](https://github.com/GetStream/stream-node/issues/161)) ([c449e35](https://github.com/GetStream/stream-node/commit/c449e356d7d6ec0ff88762ce31d36dcffc9075f7)) +* change cutoff_time in feed group/view request to be string, and on response to be time or omitted ([#161](https://github.com/GetStream/stream-node/issues/161)) ([c449e35](https://github.com/GetStream/stream-node/commit/c449e356d7d6ec0ff88762ce31d36dcffc9075f7)) ## [0.7.0](https://github.com/GetStream/stream-node/compare/v0.6.7...v0.7.0) (2025-09-24) + ### ⚠ BREAKING CHANGES -- [FEEDS-782] Move own\_ to FeedResponse ([#159](https://github.com/GetStream/stream-node/issues/159)) +* [FEEDS-782] Move own_ to FeedResponse ([#159](https://github.com/GetStream/stream-node/issues/159)) ### Features -- [FEEDS-782] Move own\_ to FeedResponse ([#159](https://github.com/GetStream/stream-node/issues/159)) ([04129f9](https://github.com/GetStream/stream-node/commit/04129f9bc399b2824ed9c37271ac18822c98f999)) +* [FEEDS-782] Move own_ to FeedResponse ([#159](https://github.com/GetStream/stream-node/issues/159)) ([04129f9](https://github.com/GetStream/stream-node/commit/04129f9bc399b2824ed9c37271ac18822c98f999)) ## [0.6.7](https://github.com/GetStream/stream-node/compare/v0.6.6...v0.6.7) (2025-09-16) + ### Features -- [FEEDS-767] add feed_visibility methods ([#154](https://github.com/GetStream/stream-node/issues/154)) ([75586d3](https://github.com/GetStream/stream-node/commit/75586d3fea121a74018308456e0c9e45a09ccaf7)) -- update to version 193.9.1 ([#151](https://github.com/GetStream/stream-node/issues/151)) ([cde1438](https://github.com/GetStream/stream-node/commit/cde14380153430ed060a49758d11eb9f7eb4d046)) +* [FEEDS-767] add feed_visibility methods ([#154](https://github.com/GetStream/stream-node/issues/154)) ([75586d3](https://github.com/GetStream/stream-node/commit/75586d3fea121a74018308456e0c9e45a09ccaf7)) +* update to version 193.9.1 ([#151](https://github.com/GetStream/stream-node/issues/151)) ([cde1438](https://github.com/GetStream/stream-node/commit/cde14380153430ed060a49758d11eb9f7eb4d046)) ## [0.6.6](https://github.com/GetStream/stream-node/compare/v0.6.5...v0.6.6) (2025-09-10) + ### Features -- Added user_count_truncated ([#150](https://github.com/GetStream/stream-node/issues/150)) ([97a0c03](https://github.com/GetStream/stream-node/commit/97a0c038d29873aa889a30866c665f2bf4ae3898)) +* Added user_count_truncated ([#150](https://github.com/GetStream/stream-node/issues/150)) ([97a0c03](https://github.com/GetStream/stream-node/commit/97a0c038d29873aa889a30866c665f2bf4ae3898)) ## [0.6.5](https://github.com/GetStream/stream-node/compare/v0.6.4...v0.6.5) (2025-09-04) + ### Bug Fixes -- Add task id in delete feed response ([#148](https://github.com/GetStream/stream-node/issues/148)) ([aa1c5eb](https://github.com/GetStream/stream-node/commit/aa1c5eb9c3dbd7f0e5f2cbcbba16f90a42536c2e)) +* Add task id in delete feed response ([#148](https://github.com/GetStream/stream-node/issues/148)) ([aa1c5eb](https://github.com/GetStream/stream-node/commit/aa1c5eb9c3dbd7f0e5f2cbcbba16f90a42536c2e)) ## [0.6.4](https://github.com/GetStream/stream-node/compare/v0.6.3...v0.6.4) (2025-09-03) + ### Features -- add DeleteFeedTaskID in DeleteFeedResponse ([#146](https://github.com/GetStream/stream-node/issues/146)) ([ec9464f](https://github.com/GetStream/stream-node/commit/ec9464fa729acde5042d833e364246083d3f4eb2)) +* add DeleteFeedTaskID in DeleteFeedResponse ([#146](https://github.com/GetStream/stream-node/issues/146)) ([ec9464f](https://github.com/GetStream/stream-node/commit/ec9464fa729acde5042d833e364246083d3f4eb2)) ## [0.6.3](https://github.com/GetStream/stream-node/compare/v0.6.2...v0.6.3) (2025-09-01) + ### Features -- [CHA-1153] adding channel message count ([#136](https://github.com/GetStream/stream-node/issues/136)) ([446d9e5](https://github.com/GetStream/stream-node/commit/446d9e5e08dea93b2a762417de048d6f799f2d21)) -- update to api spec v191.7.0 ([#145](https://github.com/GetStream/stream-node/issues/145)) ([38c971f](https://github.com/GetStream/stream-node/commit/38c971fe4c4388c9b855d2d5bb1b6ebe6003aaaf)) +* [CHA-1153] adding channel message count ([#136](https://github.com/GetStream/stream-node/issues/136)) ([446d9e5](https://github.com/GetStream/stream-node/commit/446d9e5e08dea93b2a762417de048d6f799f2d21)) +* update to api spec v191.7.0 ([#145](https://github.com/GetStream/stream-node/issues/145)) ([38c971f](https://github.com/GetStream/stream-node/commit/38c971fe4c4388c9b855d2d5bb1b6ebe6003aaaf)) ## [0.6.2](https://github.com/GetStream/stream-node/compare/v0.6.1...v0.6.2) (2025-08-21) + ### Features -- Kick user & upgrade to the latest OpenAPI ([#140](https://github.com/GetStream/stream-node/issues/140)) ([9dfe81f](https://github.com/GetStream/stream-node/commit/9dfe81f9c733cb66346c97053fe6e86ab90e0c05)) +* Kick user & upgrade to the latest OpenAPI ([#140](https://github.com/GetStream/stream-node/issues/140)) ([9dfe81f](https://github.com/GetStream/stream-node/commit/9dfe81f9c733cb66346c97053fe6e86ab90e0c05)) ## [0.6.1](https://github.com/GetStream/stream-node/compare/v0.6.0...v0.6.1) (2025-08-19) + ### Features -- add membership level in FeedMemberResponse ([#137](https://github.com/GetStream/stream-node/issues/137)) ([db7aa1e](https://github.com/GetStream/stream-node/commit/db7aa1e9fe06108de73f12db969360541096d879)) +* add membership level in FeedMemberResponse ([#137](https://github.com/GetStream/stream-node/issues/137)) ([db7aa1e](https://github.com/GetStream/stream-node/commit/db7aa1e9fe06108de73f12db969360541096d879)) + ### Bug Fixes -- extend openai-realtime-api version range ([#138](https://github.com/GetStream/stream-node/issues/138)) ([bc65845](https://github.com/GetStream/stream-node/commit/bc6584524386f4a35ec39379548dd99ae1cbcd35)) +* extend openai-realtime-api version range ([#138](https://github.com/GetStream/stream-node/issues/138)) ([bc65845](https://github.com/GetStream/stream-node/commit/bc6584524386f4a35ec39379548dd99ae1cbcd35)) ## [0.6.0](https://github.com/GetStream/stream-node/compare/v0.5.1...v0.6.0) (2025-08-18) + ### ⚠ BREAKING CHANGES -- API naming review ([#130](https://github.com/GetStream/stream-node/issues/130)) +* API naming review ([#130](https://github.com/GetStream/stream-node/issues/130)) ### Features -- add method and request/response for new endpoint ([#126](https://github.com/GetStream/stream-node/issues/126)) ([40a65d2](https://github.com/GetStream/stream-node/commit/40a65d2b349fb2d1b38d0ae01a7281ec7b626d1a)) -- API naming review ([#130](https://github.com/GetStream/stream-node/issues/130)) ([d15d50f](https://github.com/GetStream/stream-node/commit/d15d50f0114a087c33790c38e49b7edff853f3ac)) -- new endpoint GetOrCreateFeedGroup ([#127](https://github.com/GetStream/stream-node/issues/127)) ([7c58c64](https://github.com/GetStream/stream-node/commit/7c58c648ce8d33eb3446e49ceb7f23ae3f32c824)) +* add method and request/response for new endpoint ([#126](https://github.com/GetStream/stream-node/issues/126)) ([40a65d2](https://github.com/GetStream/stream-node/commit/40a65d2b349fb2d1b38d0ae01a7281ec7b626d1a)) +* API naming review ([#130](https://github.com/GetStream/stream-node/issues/130)) ([d15d50f](https://github.com/GetStream/stream-node/commit/d15d50f0114a087c33790c38e49b7edff853f3ac)) +* new endpoint GetOrCreateFeedGroup ([#127](https://github.com/GetStream/stream-node/issues/127)) ([7c58c64](https://github.com/GetStream/stream-node/commit/7c58c648ce8d33eb3446e49ceb7f23ae3f32c824)) ## [0.5.1](https://github.com/GetStream/stream-node/compare/v0.5.0...v0.5.1) (2025-07-25) + ### Features -- No timeout for fileuploads ([#124](https://github.com/GetStream/stream-node/issues/124)) ([6bad4f0](https://github.com/GetStream/stream-node/commit/6bad4f084b459804899ffb6adbf740302a33d607)) +* No timeout for fileuploads ([#124](https://github.com/GetStream/stream-node/issues/124)) ([6bad4f0](https://github.com/GetStream/stream-node/commit/6bad4f084b459804899ffb6adbf740302a33d607)) ## [0.5.0](https://github.com/GetStream/stream-node/compare/v0.4.26...v0.5.0) (2025-07-17) + ### ⚠ BREAKING CHANGES -- add support for feeds v3 API ([#118](https://github.com/GetStream/stream-node/issues/118)) +* add support for feeds v3 API ([#118](https://github.com/GetStream/stream-node/issues/118)) ### Features -- add support for feeds v3 API ([#118](https://github.com/GetStream/stream-node/issues/118)) ([aa43a6b](https://github.com/GetStream/stream-node/commit/aa43a6b2666c81bff23ee0113c91f61568e5ccc2)) +* add support for feeds v3 API ([#118](https://github.com/GetStream/stream-node/issues/118)) ([aa43a6b](https://github.com/GetStream/stream-node/commit/aa43a6b2666c81bff23ee0113c91f61568e5ccc2)) ## [0.4.26](https://github.com/GetStream/stream-node/compare/v0.4.25...v0.4.26) (2025-07-16) From ce39bae59542d79cd2681bdce489f2c16875210e Mon Sep 17 00:00:00 2001 From: zoranmiladinoski Date: Tue, 14 Oct 2025 10:04:47 +0200 Subject: [PATCH 4/6] revert changelog reformating --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54c3e34..86ecdbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,8 +12,7 @@ ### Features -* [FEEDS-831] add support for soft deleted feed groups ([#182](https://github.com/GetStream/stream-node/issues/182)) ([006f170](https://github.com/GetStream/stream-node/commit/006f170d9c032c81139db2b03a5b8cb11d059572)) - +* [FEEDS-831] add support for soft deleted feed groups ([#182](https://github.com/GetStream/stream-node/issues/182)) ([006f170](https://github.com/GetStream/stream-node/commit/006f170d9c032c81139db2b03a5b8cb11d059572)) ## [0.7.8](https://github.com/GetStream/stream-node/compare/v0.7.7...v0.7.8) (2025-10-10) From 645ec51378d93fb320f5c95dcc2fa9b5f7aa776e Mon Sep 17 00:00:00 2001 From: zoranmiladinoski Date: Tue, 14 Oct 2025 10:06:09 +0200 Subject: [PATCH 5/6] revert changelog reformating --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86ecdbf..54c3e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,8 @@ ### Features -* [FEEDS-831] add support for soft deleted feed groups ([#182](https://github.com/GetStream/stream-node/issues/182)) ([006f170](https://github.com/GetStream/stream-node/commit/006f170d9c032c81139db2b03a5b8cb11d059572)) +* [FEEDS-831] add support for soft deleted feed groups ([#182](https://github.com/GetStream/stream-node/issues/182)) ([006f170](https://github.com/GetStream/stream-node/commit/006f170d9c032c81139db2b03a5b8cb11d059572)) + ## [0.7.8](https://github.com/GetStream/stream-node/compare/v0.7.7...v0.7.8) (2025-10-10) From d6bfa7545b044f7a85e44248ff374a2ef7273ef6 Mon Sep 17 00:00:00 2001 From: zoranmiladinoski Date: Tue, 14 Oct 2025 10:07:05 +0200 Subject: [PATCH 6/6] revert changelog reformating --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54c3e34..bba9524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ ### Features -* [FEEDS-831] add support for soft deleted feed groups ([#182](https://github.com/GetStream/stream-node/issues/182)) ([006f170](https://github.com/GetStream/stream-node/commit/006f170d9c032c81139db2b03a5b8cb11d059572)) +* [FEEDS-831] add support for soft deleted feed groups ([#182](https://github.com/GetStream/stream-node/issues/182)) ([006f170](https://github.com/GetStream/stream-node/commit/006f170d9c032c81139db2b03a5b8cb11d059572)) ## [0.7.8](https://github.com/GetStream/stream-node/compare/v0.7.7...v0.7.8) (2025-10-10)