From 79b59ecd2143bf161f6cd8e71d3c72a77f75b5a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20Karsl=C4=B1?= <17887754+ismailkarsli@users.noreply.github.com> Date: Thu, 28 Dec 2023 23:23:18 +0300 Subject: [PATCH] Add subscribers_local to community aggregates (#226) * Add local_subscribers field to CommunityAggregates * Move local_subscribers field to match backend order * Rename local_subscribers to subscribers_local --- src/types/CommunityAggregates.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/CommunityAggregates.ts b/src/types/CommunityAggregates.ts index d686794..b8fc455 100644 --- a/src/types/CommunityAggregates.ts +++ b/src/types/CommunityAggregates.ts @@ -11,4 +11,5 @@ export interface CommunityAggregates { users_active_week: /* integer */ number; users_active_month: /* integer */ number; users_active_half_year: /* integer */ number; + subscribers_local: /* integer */ number; }