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
This commit is contained in:
İsmail Karslı 2023-12-28 23:23:18 +03:00 committed by GitHub
parent f759fc3583
commit 79b59ecd21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}