From aeccb597f54892a825e44e4fa90aaa1fef8bd7fe Mon Sep 17 00:00:00 2001 From: Rohil Surana Date: Thu, 23 Apr 2026 13:25:13 +0530 Subject: [PATCH 1/3] refactor(frontier): remove deprecated permission_filter from ListOrganizationUsersRequest --- raystack/frontier/v1beta1/frontier.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raystack/frontier/v1beta1/frontier.proto b/raystack/frontier/v1beta1/frontier.proto index 168c90ad..4d17b90e 100644 --- a/raystack/frontier/v1beta1/frontier.proto +++ b/raystack/frontier/v1beta1/frontier.proto @@ -1602,7 +1602,7 @@ message ListOrganizationAdminsResponse { message ListOrganizationUsersRequest { string id = 1 [(buf.validate.field).string.min_len = 3]; - string permission_filter = 2 [deprecated = true]; + reserved 2; bool with_roles = 3; repeated string role_filters = 4; From b8c338d3ab52876281a3024917da6a331551701c Mon Sep 17 00:00:00 2001 From: Rohil Surana Date: Fri, 24 Apr 2026 01:30:04 +0530 Subject: [PATCH 2/3] refactor(frontier): remove permission_filter from ListProjectUsersRequest --- raystack/frontier/v1beta1/frontier.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raystack/frontier/v1beta1/frontier.proto b/raystack/frontier/v1beta1/frontier.proto index 4d17b90e..01644c8c 100644 --- a/raystack/frontier/v1beta1/frontier.proto +++ b/raystack/frontier/v1beta1/frontier.proto @@ -1866,7 +1866,7 @@ message ListProjectAdminsResponse { message ListProjectUsersRequest { string id = 1 [(buf.validate.field).string.min_len = 3]; - string permission_filter = 2; + reserved 2; bool with_roles = 3; } From ac87821695485d1521b6b0bb150d5cca63dec486 Mon Sep 17 00:00:00 2001 From: Rohil Surana Date: Mon, 27 Apr 2026 11:46:27 +0530 Subject: [PATCH 3/3] refactor(frontier): remove with_roles from list member request messages --- raystack/frontier/v1beta1/frontier.proto | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/raystack/frontier/v1beta1/frontier.proto b/raystack/frontier/v1beta1/frontier.proto index 01644c8c..4701496c 100644 --- a/raystack/frontier/v1beta1/frontier.proto +++ b/raystack/frontier/v1beta1/frontier.proto @@ -1602,9 +1602,8 @@ message ListOrganizationAdminsResponse { message ListOrganizationUsersRequest { string id = 1 [(buf.validate.field).string.min_len = 3]; - reserved 2; + reserved 2, 3; - bool with_roles = 3; repeated string role_filters = 4; } @@ -1866,9 +1865,7 @@ message ListProjectAdminsResponse { message ListProjectUsersRequest { string id = 1 [(buf.validate.field).string.min_len = 3]; - reserved 2; - - bool with_roles = 3; + reserved 2, 3; } message ListProjectUsersResponse { @@ -1883,7 +1880,7 @@ message ListProjectUsersResponse { message ListProjectServiceUsersRequest { string id = 1 [(buf.validate.field).string.min_len = 3]; - bool with_roles = 3; + reserved 3; } message ListProjectServiceUsersResponse { @@ -1898,7 +1895,7 @@ message ListProjectServiceUsersResponse { message ListProjectGroupsRequest { string id = 1 [(buf.validate.field).string.min_len = 3]; - bool with_roles = 2; + reserved 2; } message ListProjectGroupsResponse { @@ -2128,8 +2125,7 @@ message UpdateGroupRequest { message ListGroupUsersRequest { string id = 1; string org_id = 2; - - bool with_roles = 3; + reserved 3; } message ListGroupUsersResponse {