feat: track if mentees join or leave
Node.js CI / Lint and Test (push) Successful in 45s

This commit is contained in:
2025-09-02 19:34:24 -07:00
parent 9cc8f1fdbb
commit bfaf757d3e
6 changed files with 153 additions and 1 deletions
+45
View File
@@ -0,0 +1,45 @@
/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
/* eslint-disable @typescript-eslint/naming-convention -- Baserow returns this. */
export interface MentorshipRow {
count: number;
next: unknown;
previous: unknown;
results: Array<{
"id": number;
"order": string;
"Email Address": string;
"First Name": string;
"Last Name": string;
"Company": string;
"Consent to Reply": {
id: number;
value: string;
color: string;
};
"Status": {
id: number;
value: string;
color: string;
};
"Focus": string;
"Current": string;
"Free": {
id: number;
value: string;
color: string;
};
"Pronouns": string;
"Discord ID": string;
"Donation?": {
id: number;
value: string;
color: string;
};
}>;
}