From 4112d357f83c1b25b6a8817686e970dc3206ac85 Mon Sep 17 00:00:00 2001 From: paanSinghCoder Date: Thu, 23 Apr 2026 21:16:26 +0530 Subject: [PATCH] feat(frontier): add source field to SearchOrganizationTokensResponse.OrganizationToken Expose the source field (e.g. system.starter, system.buy, system.awarded, system.revert, system.overdraft) already stored on billing_transactions. Lets the frontend render friendly event labels and filter by event type. Co-Authored-By: Claude Sonnet 4.6 --- raystack/frontier/v1beta1/frontier.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/raystack/frontier/v1beta1/frontier.proto b/raystack/frontier/v1beta1/frontier.proto index 168c90ad..32a72a1c 100644 --- a/raystack/frontier/v1beta1/frontier.proto +++ b/raystack/frontier/v1beta1/frontier.proto @@ -584,6 +584,7 @@ message SearchOrganizationTokensResponse { string user_avatar = 6; google.protobuf.Timestamp created_at = 7; string org_id = 8; + string source = 9; } repeated OrganizationToken organization_tokens = 1;