feat: add default_follower_role to feed group API - #342
Merged
JimmyPettersson85 merged 1 commit intoSep 1, 2026
Conversation
Regenerated from the chat OpenAPI spec on branch feature/feeds-1843-default-follower-role-per-group (FEEDS-1843), which adds a configurable default follower role per feed group. default_follower_role appears as an optional field on CreateFeedGroupRequest, UpdateFeedGroupRequest, GetOrCreateFeedGroupRequest and FeedGroupResponse, and as a required field on FeedGroup alongside the existing default_visibility. This branch exists so the chat repo's QA suite resolves against it: tests/qa's yarn-install probes stream-node for a branch matching the chat branch name and swaps @stream-io/node-sdk to it, falling back to main. Note: src/gen is regenerated wholesale, so this also picks up API surface merged into chat since v0.8.3 that has not been released yet — the reminder response rename, member_custom_on_mentioned_users_enabled, mentioned_channel_members, create_users and privacy_settings among them. That is inherent to regenerating the client and is what the post-release SDK regeneration would produce anyway. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
JimmyPettersson85
marked this pull request as draft
August 31, 2026 21:24
szuperaz
approved these changes
Sep 1, 2026
JimmyPettersson85
marked this pull request as ready for review
September 1, 2026 08:36
JimmyPettersson85
deleted the
feature/feeds-1843-default-follower-role-per-group
branch
September 1, 2026 08:36
JimmyPettersson85
pushed a commit
that referenced
this pull request
Sep 1, 2026
🤖 I have created a release *beep* *boop* --- ## [0.8.4](v0.8.3...v0.8.4) (2026-09-01) ### Features * add default_follower_role to feed group API ([#342](#342)) ([c43a480](c43a480)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
Summary
Regenerated
src/genfrom the chat OpenAPI spec on the matching chat branchfeature/feeds-1843-default-follower-role-per-group(FEEDS-1843), which adds a configurable default follower role per feed group.default_follower_roleseedsfollower_roleon new follows of feeds in a group, so an app can have e.g. apremiumgroup whose followers default tofeed_member_viewer(read, react, vote; no commenting) without a webhook round-trip and the permission window it leaves open.Surface:
CreateFeedGroupRequestdefault_follower_role?: stringUpdateFeedGroupRequestdefault_follower_role?: stringGetOrCreateFeedGroupRequestdefault_follower_role?: stringFeedGroupResponsedefault_follower_role?: stringFeedGroupdefault_follower_role: string(required, matching the adjacentdefault_visibility)Why this branch exists now
tests/qa/Makefilein the chat repo probes this repo for a branch whose name matches the chat branch and swaps@stream-io/node-sdkto it, falling back tomain. The chat PR's QA tests use the typeddefault_follower_rolefield, so they need this branch to resolve. Verified locally:Notes for review
src/genis regenerated wholesale, so this diff is not limited to the field above. It also carries chat API surface merged since v0.8.3 that has not been released yet:ReminderResponseData→CreateReminderResponse(rename + new decoder)member_custom_on_mentioned_users_enabledmentioned_channel_memberscreate_usersprivacy_settings,teams_role,filter_conditions, and related fieldsThat is inherent to regenerating the client and is what the post-release SDK regeneration would produce anyway — but it does mean approving this approves more than FEEDS-1843. Worth sequencing against the chat release if that matters.
No hand-edits: every file under
src/genis generator output (./generate-openapi.sh), followed by the repo's ownyarn lint:gen.🤖 Generated with Claude Code