Skip to content

Commit 48ff423

Browse files
author
Maggie Chen
committed
delete types
1 parent 0cde0cf commit 48ff423

File tree

1 file changed

+0
-46
lines changed

1 file changed

+0
-46
lines changed

backend/typescript/types.ts

Lines changed: 0 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,6 @@ export type UserDTO = {
3333
role: Role;
3434
};
3535

36-
export type ApplicationDashboardDTO = {
37-
id: number;
38-
reviewerEmail: string;
39-
passionFSG: number;
40-
teamPlayer: number;
41-
desireToLearn: number;
42-
skill: number;
43-
skillCategory: string;
44-
reviewerComments: string;
45-
recommendedSecondChoice: string;
46-
reviewerId: number;
47-
applicationId: number;
48-
};
49-
50-
export type ApplicationDashboardInput = Omit<
51-
ApplicationDashboardDTO,
52-
"applicationId"
53-
>;
54-
5536
// DEPRECATED - TO BE REMOVED AT THE END OF S25
5637
export type ApplicationDTO = {
5738
id: number;
@@ -121,11 +102,6 @@ export type ApplicantRecordExtraInfo = {
121102
adminReview?: string;
122103
};
123104

124-
export type ApplicationDashboardRowDTO = {
125-
application: ApplicationDTO;
126-
reviewDashboards: ApplicationDashboardDTO[];
127-
reviewers: UserDTO[];
128-
};
129105

130106
export type CreateUserDTO = Omit<UserDTO, "id" | "firstName" | "lastName">;
131107

@@ -150,28 +126,6 @@ export type NodemailerConfig = {
150126

151127
export type SignUpMethod = "PASSWORD" | "GOOGLE";
152128

153-
export enum ApplicantRole {
154-
pres = "president", // community tab
155-
int_dir = "internal director",
156-
ext_dir = "external director",
157-
vpe = "vp engineering", // eng tab
158-
vpd = "vp design", // design tab
159-
vpp = "vp product", // prod tab
160-
vpt = "vp talent", // community tab
161-
vp_ext = "vp external", // community tab
162-
vp_int = "vp internal", // community tab
163-
vp_comms = "vp communications", // community tab
164-
vp_scoping = "vp scoping", // community tab
165-
vp_finance = "vp finance & operations", // community tab
166-
pm = "project manager", // prod tab
167-
pl = "project lead", // eng tab
168-
design_mentor = "design mentor", // design tab
169-
graphic_design = "graphic designer", // design tab
170-
product_design = "product designer", // design tab
171-
uxr = "user researcher", // design tab
172-
dev = "project developer", // eng tab
173-
}
174-
175129
export enum Department {
176130
Engineering = "Engineering",
177131
Design = "Design",

0 commit comments

Comments
 (0)