feat(feeds): regenerate for the activity selector feed_groups scope - #344
Draft
JimmyPettersson85 wants to merge 1 commit into
Draft
feat(feeds): regenerate for the activity selector feed_groups scope#344JimmyPettersson85 wants to merge 1 commit into
JimmyPettersson85 wants to merge 1 commit into
Conversation
Adds FeedGroupScope and the feed_groups property on ActivitySelectorConfig and ActivitySelectorConfigResponse, so QA tests can send the field through the typed client instead of casting the selector to any. Also sweeps up spec drift accumulated since 0.8.4: TranslateMessageResponse replaces MessageActionResponse on translateMessage, and channel member operations gain custom_set / custom_unset. Generated with ./generate-openapi.sh against GetStream/chat feature/feeds-1853-feed-group-scope (PR #16483). Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
szuperaz
approved these changes
Sep 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Regenerated for GetStream/chat#16483 (FEEDS-1853), which adds an optional
feed_groupsscope toActivitySelectorConfig:{ "type": "popular", "feed_groups": { "exclude": ["drafts"] } }Without this the chat repo's QA tests have to cast the selector to
anyto send the field. The branch name matches the chat branch, so the chat CI QA job picks it up automatically.What changed
Generated with
./generate-openapi.sh— no hand edits.The feeds change:
FeedGroupScopeinterface (include?/exclude?)feed_groups?: FeedGroupScopeonActivitySelectorConfigandActivitySelectorConfigResponseSpec drift swept up since 0.8.4 (not from that PR, but a regeneration takes the whole spec):
translateMessagenow returnsTranslateMessageResponseinstead ofMessageActionResponse— this is the one to look at, since it changes an existing method's return typecustom_set/custom_unsetCommonApiadditionNotes
Draft until the chat PR merges —
feed_groupsis not on the API until then, so releasing this first would ship a field the backend rejects.🤖 Generated with Claude Code