-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
157 lines (153 loc) · 6.39 KB
/
index.ts
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
// import * as ballots from './ballots/ballots.ts';
// import * as certs from './certs/certs.ts';
// import * as citations from './citations/citations.ts';
// import * as districts from './districts/districts.ts';
// import * as districtDates from './districts/districtDates.ts';
// import * as districtLeaders from './districts/districtLeaders.ts';
// import * as districtSchools from './districts/districtSchools.ts';
// import * as districtWinners from './districts/districtWinners.ts';
// import * as errors from './errors/errors.ts';
// import * as interactions from './interactions/interactions.ts';
// import * as members from './members/members.ts';
// import * as memberDistrictLeadership from './members/memberDistrictLeadership.ts';
// import * as memberHonors from './members/memberHonors.ts';
// import * as memberMeta from './members/memberMeta.ts';
// import * as memberAnalytics from './members/memberAnalytics.ts';
// import * as memberEmma from './members/memberEmma.ts';
// import * as memberLearn from './members/memberLearn.ts';
// import * as memberPurchases from './members/memberPurchases.ts';
// import * as memberRoles from './members/memberRoles.ts';
// import * as memberSubscriptions from './members/memberSubscriptions.ts';
// import * as memberTags from './members/memberTags.ts';
// import * as memberTabroomHistory from './members/memberTabroomHistory.ts';
// import * as memberVirtuous from './members/memberVirtuous.ts';
// import * as permissions from './members/permissions.ts';
// import * as username from './members/username.ts';
// import * as sessions from './members/sessions.ts';
// import * as memberPoints from './points/memberPoints.ts';
// import * as pointCategories from './points/pointCategories.ts';
// import * as schoolPoints from './points/schoolPoints.ts';
// import * as rankings from './rankings/rankings.ts';
// import * as reports from './reports/reports.ts';
// import * as invoices from './schools/invoices.ts';
// import * as schoolGrants from './schools/schoolGrants.ts';
// import * as schoolHonors from './schools/schoolHonors.ts';
// import * as schoolInfo from './schools/schoolInfo.ts';
// import * as schoolInvoices from './schools/schoolInvoices.ts';
// import * as schoolNFHS from './schools/schoolNFHS.ts';
// import * as schoolMeta from './schools/schoolMeta.ts';
// import * as schoolPermissions from './schools/schoolPermissions.ts';
// import * as schoolPrices from './schools/schoolPrices.ts';
// import * as schoolRoster from './schools/schoolRoster.ts';
// import * as schools from './schools/schools.ts';
// import * as schoolSubscriptions from './schools/schoolSubscriptions.ts';
// import * as schoolTags from './schools/schoolTags.ts';
// import * as search from './search/search.ts';
// export * from './ballots/ballots.ts';
// export * from './certs/certs.ts';
// export * from './citations/citations.ts';
export * from './src/districts/districts.js';
// export * from './districts/districtDates.ts';
// export * from './districts/districtLeaders.ts';
// export * from './districts/districtSchools.ts';
// export * from './districts/districtWinners.ts';
// export * from './errors/errors.ts';
// export * from './interactions/interactions.ts';
// export * from './members/members.ts';
// export * from './members/memberDistrictLeadership.ts';
// export * from './members/memberHonors.ts';
// export * from './members/memberMeta.ts';
// export * from './members/memberAnalytics.ts';
// export * from './members/memberLearn.ts';
// export * from './members/memberPurchases.ts';
// export * from './members/memberRoles.ts';
// export * from './members/memberSubscriptions.ts';
// export * from './members/memberTags.ts';
// export * from './members/memberTabroomHistory.ts';
// export * from './members/memberVirtuous.ts';
// export * from './members/memberEmma.ts';
// export * from './members/permissions.ts';
// export * from './members/username.ts';
// export * from './members/sessions.ts';
// export * from './points/memberPoints.ts';
export * from './src/points/pointCategories.js';
// export * from './points/schoolPoints.ts';
export * from './src/rankings/rankings.js';
// export * from './reports/reports.ts';
// export * from './schools/invoices.ts';
// export * from './schools/schoolGrants.ts';
// export * from './schools/schoolHonors.ts';
// export * from './schools/schoolInfo.ts';
// export * from './schools/schoolInvoices.ts';
// export * from './schools/schoolNFHS.ts';
// export * from './schools/schoolMeta.ts';
// export * from './schools/schoolPermissions.ts';
// export * from './schools/schoolPrices.ts';
// export * from './schools/schoolRoster.ts';
// export * from './schools/schools.ts';
// export * from './schools/schoolSubscriptions.ts';
// export * from './schools/schoolTags.ts';
// export * from './search/search.ts';
// interface API {
// getDistricts: (
// realm: string,
// sort: string,
// full: boolean,
// ) => Promise<unknown>;
// getPointCategories: (realm: string, ranked: boolean) => Promise<unknown>;
// getRankings: (
// type: string,
// district?: number | null,
// stateCode?: string | null,
// category?: number | null,
// realm?: string | null,
// ) => Promise<unknown>;
// }
// const api: API = {
// // ...ballots,
// // ...certs,
// // ...citations,
// ...districts,
// // ...districtDates,
// // ...districtLeaders,
// // ...districtSchools,
// // ...districtWinners,
// // ...errors,
// // ...interactions,
// // ...members,
// // ...memberDistrictLeadership,
// // ...memberHonors,
// // ...memberMeta,
// // ...memberAnalytics,
// // ...memberEmma,
// // ...memberLearn,
// // ...memberPurchases,
// // ...memberRoles,
// // ...memberSubscriptions,
// // ...memberTags,
// // ...memberTabroomHistory,
// // ...memberVirtuous,
// // ...permissions,
// // ...username,
// // ...sessions,
// // ...memberPoints,
// ...pointCategories,
// // ...schoolPoints,
// ...rankings,
// // ...reports,
// // ...invoices,
// // ...schoolGrants,
// // ...schoolHonors,
// // ...schoolInfo,
// // ...schoolInvoices,
// // ...schoolNFHS,
// // ...schoolMeta,
// // ...schoolPermissions,
// // ...schoolPrices,
// // ...schoolRoster,
// // ...schools,
// // ...schoolSubscriptions,
// // ...schoolTags,
// // ...search,
// };
// export default api;