-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalytics-data.interface.ts
More file actions
3411 lines (2951 loc) · 73.9 KB
/
analytics-data.interface.ts
File metadata and controls
3411 lines (2951 loc) · 73.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright The Linux Foundation and each contributor to LFX.
// SPDX-License-Identifier: MIT
import type { ProjectItem } from './components.interface';
import type { ProjectTableRow } from './dashboard-metric.interface';
/**
* Active Weeks Streak row from Snowflake ACTIVE_WEEKS_STREAK table
* Represents a single week's activity data for a user
*/
export interface ActiveWeeksStreakRow {
/**
* Number of weeks ago from current date (0 = current week, 1 = last week, etc.)
*/
WEEKS_AGO: number;
/**
* Whether the user was active during this week (1 = active, 0 = inactive)
*/
IS_ACTIVE: number;
}
/**
* API response for Active Weeks Streak query
*/
export interface ActiveWeeksStreakResponse {
/**
* Array of weekly activity data
*/
data: ActiveWeeksStreakRow[];
/**
* Current active streak count (consecutive weeks)
*/
currentStreak: number;
/**
* Total number of weeks with data
*/
totalWeeks: number;
}
/**
* User Pull Requests row from Snowflake USER_PULL_REQUESTS table
* Represents daily pull request activity
*/
export interface UserPullRequestsRow {
/**
* Date of the activity (YYYY-MM-DD format)
*/
ACTIVITY_DATE: string;
/**
* Number of pull requests merged on this date
*/
DAILY_COUNT: number;
/**
* Total count across all dates (from SQL window function)
*/
TOTAL_COUNT: number;
}
/**
* API response for User Pull Requests query
*/
export interface UserPullRequestsResponse {
/**
* Array of daily pull request activity data
*/
data: UserPullRequestsRow[];
/**
* Total pull requests merged across all dates
*/
totalPullRequests: number;
/**
* Number of days with data
*/
totalDays: number;
}
/**
* User Code Commits row from Snowflake USER_CODE_COMMITS table
* Represents daily code commit activity
*/
export interface UserCodeCommitsRow {
/**
* Date of the activity (YYYY-MM-DD format)
*/
ACTIVITY_DATE: string;
/**
* Number of commits on this date
*/
DAILY_COUNT: number;
/**
* Total count across all dates (from SQL window function)
*/
TOTAL_COUNT: number;
}
/**
* API response for User Code Commits query
*/
export interface UserCodeCommitsResponse {
/**
* Array of daily code commit activity data
*/
data: UserCodeCommitsRow[];
/**
* Total commits across all dates
*/
totalCommits: number;
/**
* Number of days with data
*/
totalDays: number;
}
/**
* User Project Contribution row from Snowflake USER_PROJECT_CONTRIBUTIONS_DAILY table
* Represents daily contribution activity for a user's projects
*/
export interface UserProjectContributionRow {
/**
* Project unique identifier
*/
PROJECT_ID: string;
/**
* Project display name
*/
PROJECT_NAME: string;
/**
* Project URL slug
*/
PROJECT_SLUG: string;
/**
* Project logo URL
*/
PROJECT_LOGO: string | null;
/**
* Date of the activity (YYYY-MM-DD format)
*/
ACTIVITY_DATE: string;
/**
* Whether the user is a maintainer of this project
*/
IS_MAINTAINER: boolean;
/**
* User's affiliation/organization name
*/
AFFILIATION: string | null;
/**
* Code-related activities for this date
*/
DAILY_CODE_ACTIVITIES: number;
/**
* Non-code-related activities for this date
*/
DAILY_NON_CODE_ACTIVITIES: number;
}
/**
* API response for User Projects query
*/
export interface UserProjectsResponse {
/**
* Array of projects with activity data
*/
data: ProjectItem[];
/**
* Total number of projects
*/
totalProjects: number;
}
/**
* Snowflake row from project count query
* Raw response with Snowflake naming conventions (ALL_CAPS)
*/
export interface ProjectCountRow {
TOTAL_PROJECTS: number;
}
/**
* Snowflake aggregated row from MEMBER_DASHBOARD_EVENT_ATTENDANCE query
* Raw response with Snowflake naming conventions (ALL_CAPS) for aggregated sums
*/
export interface OrganizationEventAttendanceRow {
TOTAL_ATTENDEES: number;
TOTAL_SPEAKERS: number;
TOTAL_EVENTS: number;
ACCOUNT_ID: string;
ACCOUNT_NAME: string;
}
/**
* Organization Event Attendance Monthly row from Snowflake
* Raw response from FOUNDATION_EVENT_ATTENDANCE_ORG_MONTHLY table
* Contains monthly event attendance metrics for board member dashboard charts
*/
export interface OrganizationEventAttendanceMonthlyRow {
/**
* Foundation unique identifier
*/
FOUNDATION_ID: string;
/**
* Foundation display name
*/
FOUNDATION_NAME: string;
/**
* Foundation URL slug
*/
FOUNDATION_SLUG: string;
/**
* Organization account ID (Salesforce)
*/
ACCOUNT_ID: string;
/**
* Organization account name
*/
ACCOUNT_NAME: string;
/**
* Month start date (first day of month) - returned as Date object from Snowflake
*/
MONTH_START_DATE: Date;
/**
* Number of event registrations for this month
*/
REGISTRATION_COUNT: number;
/**
* Number of attendees for this month
*/
ATTENDED_COUNT: number;
/**
* Number of speakers for this month
*/
SPEAKER_COUNT: number;
/**
* Total registrations (aggregated yearly)
*/
TOTAL_REGISTRATIONS: number;
/**
* Total attendees (aggregated yearly)
*/
TOTAL_ATTENDED: number;
/**
* Total speakers (aggregated yearly)
*/
TOTAL_SPEAKERS: number;
/**
* Cumulative attendees up to this month (calculated via SQL window function)
*/
CUMULATIVE_ATTENDED: number;
/**
* Cumulative speakers up to this month (calculated via SQL window function)
*/
CUMULATIVE_SPEAKERS: number;
}
/**
* API response for Organization Event Attendance Monthly query
* Contains event attendance data for an organization with monthly trend data
*/
export interface OrganizationEventAttendanceMonthlyResponse {
/**
* Total attendees from the organization (yearly total from TOTAL_ATTENDED)
*/
totalAttended: number;
/**
* Total speakers from the organization (yearly total from TOTAL_SPEAKERS)
*/
totalSpeakers: number;
/**
* Organization account ID
*/
accountId: string;
/**
* Organization account name
*/
accountName: string;
/**
* Monthly cumulative attendee count data for trend visualization
* Array of cumulative attendee counts (oldest to newest)
*/
attendeesMonthlyData: number[];
/**
* Monthly cumulative speaker count data for trend visualization
* Array of cumulative speaker counts (oldest to newest)
*/
speakersMonthlyData: number[];
/**
* Month labels for chart visualization
* Array of month strings (e.g., ['Jan 2024', 'Feb 2024']) matching monthlyData
*/
monthlyLabels: string[];
}
/**
* Snowflake row from projects dimension table
* Raw response with Snowflake naming conventions (ALL_CAPS)
*/
export interface ProjectRow {
/**
* Project unique identifier
*/
PROJECT_ID: string;
/**
* Project display name
*/
NAME: string;
/**
* Project URL slug
*/
SLUG: string;
}
/**
* API response for projects list query
*/
export interface ProjectsListResponse {
/**
* Array of projects
*/
projects: {
uid: string;
name: string;
slug: string;
}[];
}
/**
* Snowflake row from project issues resolution daily query
* Raw response with Snowflake naming conventions (ALL_CAPS)
*/
export interface ProjectIssuesResolutionRow {
/**
* Project unique identifier
*/
PROJECT_ID: string;
/**
* Project display name
*/
PROJECT_NAME: string;
/**
* Project URL slug
*/
PROJECT_SLUG: string;
/**
* Date of the metric (YYYY-MM-DD format)
*/
METRIC_DATE: string;
/**
* Number of issues opened on this date
*/
OPENED_ISSUES_COUNT: number;
/**
* Number of issues closed on this date
*/
CLOSED_ISSUES_COUNT: number;
}
/**
* Snowflake row from project issues resolution aggregated query
* Raw response with Snowflake naming conventions (ALL_CAPS)
*/
export interface ProjectIssuesResolutionAggregatedRow {
/**
* Total number of issues opened
*/
OPENED_ISSUES: number;
/**
* Total number of issues closed
*/
CLOSED_ISSUES: number;
/**
* Resolution rate as a percentage
*/
RESOLUTION_RATE_PCT: number;
/**
* Median number of days to close an issue
*/
MEDIAN_DAYS_TO_CLOSE: number;
}
/**
* API response for project issues resolution query
*/
export interface ProjectIssuesResolutionResponse {
/**
* Array of daily issue resolution data
*/
data: ProjectIssuesResolutionRow[];
/**
* Total opened issues across all dates
*/
totalOpenedIssues: number;
/**
* Total closed issues across all dates
*/
totalClosedIssues: number;
/**
* Resolution rate as a percentage from database
*/
resolutionRatePct: number;
/**
* Median days to close an issue
*/
medianDaysToClose: number;
/**
* Number of days with data
*/
totalDays: number;
}
/**
* Snowflake row from project pull requests weekly query
* Raw response with Snowflake naming conventions (ALL_CAPS)
*/
export interface ProjectPullRequestsWeeklyRow {
/**
* Week start date (YYYY-MM-DD format)
*/
WEEK_START_DATE: string;
/**
* Number of PRs merged during this week
*/
MERGED_PR_COUNT: number;
/**
* Average time to merge in days
*/
AVG_MERGED_IN_DAYS: number;
/**
* Average number of reviewers per PR
*/
AVG_REVIEWERS_PER_PR: number;
/**
* Number of pending PRs at the end of the week
*/
PENDING_PR_COUNT: number;
}
/**
* API response for project pull requests weekly query
*/
export interface ProjectPullRequestsWeeklyResponse {
/**
* Array of weekly PR data
*/
data: ProjectPullRequestsWeeklyRow[];
/**
* Total PRs merged across all weeks
*/
totalMergedPRs: number;
/**
* Average merge time across all weeks (in days)
*/
avgMergeTime: number;
/**
* Number of weeks with data
*/
totalWeeks: number;
}
/**
* Contributors Mentored row from Snowflake FOUNDATION_CONTRIBUTORS_MENTORED_WEEKLY table
* Represents weekly mentorship activity data
*/
export interface FoundationContributorsMentoredRow {
/**
* Week start date (YYYY-MM-DD)
*/
WEEK_START_DATE: string;
/**
* Foundation identifier
*/
FOUNDATION_ID: string;
/**
* Foundation name
*/
FOUNDATION_NAME: string;
/**
* Foundation slug for filtering
*/
FOUNDATION_SLUG: string;
/**
* New contributors mentored that week
*/
WEEKLY_MENTORED_CONTRIBUTOR_COUNT: number;
/**
* Cumulative total of contributors mentored
*/
MENTORED_CONTRIBUTOR_COUNT: number;
}
/**
* API response for Contributors Mentored query
* Contains weekly mentorship data with aggregated metrics
*/
export interface FoundationContributorsMentoredResponse {
/**
* Array of weekly mentorship data
*/
data: FoundationContributorsMentoredRow[];
/**
* Latest cumulative count of mentored contributors
*/
totalMentored: number;
/**
* Average new contributors mentored per week
*/
avgWeeklyNew: number;
/**
* Number of weeks with data
*/
totalWeeks: number;
}
/**
* Unique contributors weekly row from Snowflake
* Raw response with Snowflake naming conventions (ALL_CAPS)
*/
export interface UniqueContributorsWeeklyRow {
/**
* Foundation or Project ID
*/
FOUNDATION_ID?: string;
PROJECT_ID?: string;
/**
* Foundation or Project Name
*/
FOUNDATION_NAME?: string;
PROJECT_NAME?: string;
/**
* Foundation or Project Slug
*/
FOUNDATION_SLUG?: string;
PROJECT_SLUG?: string;
/**
* Week start date (YYYY-MM-DD format)
*/
WEEK_START_DATE: string;
/**
* Number of unique contributors in this week
*/
UNIQUE_CONTRIBUTORS: number;
/**
* Total active contributors (including repeat contributors)
*/
TOTAL_ACTIVE_CONTRIBUTORS: number;
/**
* Number of new contributors (first contribution)
*/
NEW_CONTRIBUTORS: number;
/**
* Number of returning contributors
*/
RETURNING_CONTRIBUTORS: number;
}
/**
* Response from unique contributors weekly endpoint
* Includes weekly data and aggregated metrics
*/
export interface UniqueContributorsWeeklyResponse {
/**
* Weekly contributor data (raw Snowflake rows)
*/
data: UniqueContributorsWeeklyRow[];
/**
* Total unique contributors across all weeks
*/
totalUniqueContributors: number;
/**
* Average unique contributors per week
*/
avgUniqueContributors: number;
/**
* Total number of weeks with data
*/
totalWeeks: number;
}
/**
* Monthly project count with foundation metadata
* Combined result from cumulative aggregation query
*/
export interface MonthlyProjectCountWithFoundation {
/**
* Foundation segment ID
*/
FOUNDATION_SEGMENT_ID: string;
/**
* Foundation name
*/
FOUNDATION_NAME: string;
/**
* Foundation source ID from Salesforce
*/
FOUNDATION_SOURCE_ID: string;
/**
* Foundation URL slug
*/
FOUNDATION_SLUG: string;
/**
* Month start date (first day of month)
*/
MONTH_START: string;
/**
* Cumulative count of projects up to this month
*/
PROJECT_COUNT: number;
}
/**
* Monthly member count with foundation metadata
* Combined result from cumulative aggregation query for member organizations
* Uses actual MEMBER_DASHBOARD_MEMBERSHIP_TIER column names
*/
export interface MonthlyMemberCountWithFoundation {
/**
* Project/Foundation ID
*/
PROJECT_ID: string;
/**
* Project/Foundation name
*/
PROJECT_NAME: string;
/**
* Project/Foundation URL slug
*/
PROJECT_SLUG: string;
/**
* Month start date (first day of month)
*/
MONTH_START: string;
/**
* Cumulative count of member organizations up to this month
*/
MEMBER_COUNT: number;
}
/**
* API response for foundation total projects query
* Contains cumulative monthly trend data
* Optimized response without full project list for better performance
*/
export interface FoundationTotalProjectsResponse {
/**
* Total number of distinct child projects (latest cumulative count)
*/
totalProjects: number;
/**
* Monthly cumulative project count data for trend visualization
* Array of cumulative counts (oldest to newest)
*/
monthlyData: number[];
/**
* Month labels for chart visualization
* Array of month strings (e.g., ['Jan 2020', 'Feb 2020']) matching monthlyData
*/
monthlyLabels: string[];
}
/**
* Row from FOUNDATION_UNIQUE_CONTRIBUTORS_DAILY aggregated by month
*/
export interface FoundationActiveContributorsMonthlyRow {
MONTH_START: string;
MONTHLY_AVG_CONTRIBUTORS: number;
}
/**
* API response for foundation active contributors monthly trend
*/
export interface FoundationActiveContributorsMonthlyResponse {
monthlyData: number[];
monthlyLabels: string[];
}
/**
* Single percentile band row from FOUNDATION_CONTRIBUTORS_DISTRIBUTION
*/
export interface FoundationContributorsDistributionRow {
PERCENTILE_BAND: string;
CONTRIBUTOR_COUNT: number;
CONTRIBUTION_SHARE_PERCENTAGE: number;
}
/**
* Single percentile band entry in the distribution response
*/
export interface ContributorsDistributionBand {
band: string;
contributionSharePercentage: number;
contributorCount: number;
}
/**
* API response for foundation contributor distribution by percentile band
*/
export interface FoundationContributorsDistributionResponse {
distribution: ContributorsDistributionBand[];
}
/**
* API response for foundation total members query
* Contains cumulative monthly trend data for member organizations
* Optimized response with aggregated member counts over time
*/
export interface FoundationTotalMembersResponse {
/**
* Total number of distinct member organizations (latest cumulative count)
*/
totalMembers: number;
/**
* Monthly cumulative member count data for trend visualization
* Array of cumulative counts (oldest to newest)
*/
monthlyData: number[];
/**
* Month labels for chart visualization
* Array of month strings (e.g., ['Jan 2020', 'Feb 2020']) matching monthlyData
*/
monthlyLabels: string[];
}
/**
* Foundation top project by software value row from Snowflake
* Raw response from FOUNDATION_TOP_PROJECTS_BY_SOFTWARE_VALUE table
*/
export interface FoundationTopProjectBySoftwareValueRow {
/**
* Foundation ID
*/
FOUNDATION_ID: string;
/**
* Foundation URL slug
*/
FOUNDATION_SLUG: string;
/**
* Project ID
*/
PROJECT_ID: string;
/**
* Project name
*/
PROJECT_NAME: string;
/**
* Project URL slug
*/
PROJECT_SLUG: string;
/**
* Estimated software value in dollars
*/
SOFTWARE_VALUE: number;
/**
* Date of last metric calculation
*/
LAST_METRIC_DATE: string;
/**
* Rank by value (1 = highest)
*/
VALUE_RANK: number;
}
/**
* API response for foundation software value query
* Contains total software value and top projects by value
*/
export interface FoundationSoftwareValueResponse {
/**
* Total estimated software value in millions of dollars
*/
totalValue: number;
/**
* Top projects by software value
* Values converted to millions
*/
topProjects: {
name: string;
value: number;
}[];
}
/**
* Foundation value concentration row from Snowflake FOUNDATION_VALUE_CONCENTRATION table
* Contains total software value and concentration metrics across project buckets
*/
export interface FoundationValueConcentrationRow {
FOUNDATION_ID: string;
FOUNDATION_SLUG: string;
TOTAL_VALUE: number;
TOTAL_PROJECTS_COUNT: number;
LAST_METRIC_DATE: string;
TOP_1_VALUE: number;
TOP_3_VALUE: number;
TOP_5_VALUE: number;
ALL_OTHER_VALUE: number;
TOP_1_PROJECTS_COUNT: number;
TOP_3_PROJECTS_COUNT: number;
TOP_5_PROJECTS_COUNT: number;
ALL_OTHER_PROJECTS_COUNT: number;
TOP_1_PERCENTAGE: number;
TOP_3_PERCENTAGE: number;
TOP_5_PERCENTAGE: number;
ALL_OTHER_PERCENTAGE: number;
}
/**
* API response for foundation value concentration query
* All value fields are in millions of dollars
*/
export interface FoundationValueConcentrationResponse {
totalValue: number;
top1Value: number;
top3Value: number;
top5Value: number;
allOtherValue: number;
totalProjectsCount: number;
top1Percentage: number;
top3Percentage: number;
top5Percentage: number;
allOtherPercentage: number;
}
/**
* Foundation maintainers daily row from Snowflake
* Raw response from FOUNDATION_MAINTAINERS_YEARLY table (despite name, contains daily data)
*/
export interface FoundationMaintainersDailyRow {
/**
* Foundation ID
*/
FOUNDATION_ID: string;
/**
* Foundation name
*/
FOUNDATION_NAME: string;
/**
* Foundation URL slug
*/
FOUNDATION_SLUG: string;
/**
* Metric date (daily granularity)
*/
METRIC_DATE: string;
/**
* Number of active maintainers on this date
*/
ACTIVE_MAINTAINERS: number;
/**
* Average maintainers yearly (calculated aggregate)
*/
AVG_MAINTAINERS_YEARLY: number;
}
/**
* Weekly aggregated maintainers result from Snowflake query
*/
export interface WeeklyMaintainersRow {
/**
* Week start date
*/
WEEK_START: string;
/**
* Average maintainers for this week
*/
AVG_WEEKLY_MAINTAINERS: number;
/**
* Average maintainers yearly (same across all rows)
*/
AVG_MAINTAINERS_YEARLY: number;
}
/**
* API response for foundation maintainers query
* Contains average maintainers and weekly trend data
*/
export interface FoundationMaintainersResponse {
/**
* Average number of maintainers (from AVG_MAINTAINERS_YEARLY)
*/
avgMaintainers: number;
/**
* Daily or aggregated maintainer count data for trend visualization
*/
trendData: number[];
/**
* Date labels for chart visualization
* Array of date strings matching trendData
*/
trendLabels: string[];
}
/**
* Foundation maintainers repository monthly row from Snowflake