From e423740e7d1a964937fcbb8f9b085261b34b7c3e Mon Sep 17 00:00:00 2001 From: Abhishek Sah Date: Thu, 14 May 2026 15:50:02 +0530 Subject: [PATCH] refactor(frontier): remove AddGroupUsers RPC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The frontier server side migrated AddGroupUsers callers to loop the SetGroupMemberRole RPC, and the SDK has been migrated off this RPC entirely. Removing it from the proto completes the deprecation. RemoveGroupUser stays — there is no replacement RPC for group member removal yet. Co-Authored-By: Claude Opus 4.7 (1M context) --- raystack/frontier/v1beta1/frontier.proto | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/raystack/frontier/v1beta1/frontier.proto b/raystack/frontier/v1beta1/frontier.proto index caf97f43..5f4a9c22 100644 --- a/raystack/frontier/v1beta1/frontier.proto +++ b/raystack/frontier/v1beta1/frontier.proto @@ -89,8 +89,6 @@ service FrontierService { rpc ListGroupUsers(ListGroupUsersRequest) returns (ListGroupUsersResponse) {} - rpc AddGroupUsers(AddGroupUsersRequest) returns (AddGroupUsersResponse) {} - rpc RemoveGroupUser(RemoveGroupUserRequest) returns (RemoveGroupUserResponse) {} rpc SetGroupMemberRole(SetGroupMemberRoleRequest) returns (SetGroupMemberRoleResponse) {} @@ -2172,14 +2170,6 @@ message DeleteGroupRequest { message DeleteGroupResponse {} -message AddGroupUsersRequest { - string id = 1; - string org_id = 2 [(buf.validate.field).string.min_len = 3]; - repeated string user_ids = 3; -} - -message AddGroupUsersResponse {} - message RemoveGroupUserRequest { string id = 1; string org_id = 2 [(buf.validate.field).string.min_len = 3];