1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00
classcharts-api-js/src/types.ts

534 lines
11 KiB
TypeScript
Raw Normal View History

2023-04-16 20:47:40 +01:00
/**
2023-04-29 23:34:36 +01:00
* Helper type to define response from ClassCharts
2023-04-16 20:47:40 +01:00
*/
2023-05-04 11:55:55 +01:00
export type ClassChartsResponse<Data, Meta> = {
data: Data;
meta: Meta;
error?: string;
success: number;
2023-04-07 13:47:08 +01:00
};
export interface Student {
id: number;
name: string;
first_name: string;
last_name: string;
avatar_url: string;
display_behaviour: boolean;
display_parent_behaviour: boolean;
display_homework: boolean;
display_rewards: boolean;
display_detentions: boolean;
display_report_cards: boolean;
display_classes: boolean;
display_announcements: boolean;
display_attendance: boolean;
display_attendance_type: string;
display_attendance_percentage: boolean;
display_activity: boolean;
display_mental_health: boolean;
display_timetable: boolean;
is_disabled: boolean;
display_two_way_communications: boolean;
display_absences: boolean;
can_upload_attachments: boolean | null;
display_event_badges: boolean;
display_avatars: boolean;
display_concern_submission: boolean;
display_custom_fields: boolean;
pupil_concerns_help_text: string;
allow_pupils_add_timetable_notes: boolean;
announcements_count: number;
messages_count: number;
pusher_channel_name: string;
has_birthday: boolean;
has_new_survey: boolean;
survey_id: number | null;
detention_alias_plural_uc: string;
2021-10-28 16:51:07 +01:00
}
2023-04-16 20:47:40 +01:00
export interface GetStudentInfoData {
user: Student;
2023-04-07 13:47:08 +01:00
}
2023-04-16 20:47:40 +01:00
export interface GetStudentInfoMeta {
version: string;
2023-04-07 13:47:08 +01:00
}
export type GetStudentInfoResponse = ClassChartsResponse<
GetStudentInfoData,
GetStudentInfoMeta
2023-04-07 13:47:08 +01:00
>;
2022-02-06 11:13:23 +00:00
export interface GetBehaviourOptions {
/**
* From date, in format YYYY-MM-DD
*/
from?: string;
/**
* To date, in format YYYY-MM-DD
*/
to?: string;
}
2023-04-07 13:47:08 +01:00
2022-02-06 11:13:23 +00:00
export interface BehaviourTimelinePoint {
positive: number;
negative: number;
name: string;
start: string;
end: string;
}
2023-04-16 20:47:40 +01:00
export interface BehaviourResponseData {
2024-01-10 10:57:33 +00:00
timeline: BehaviourTimelinePoint[];
positive_reasons: Record<string, number>;
negative_reasons: Record<string, number>;
2024-01-10 10:57:33 +00:00
other_positive: string[];
other_negative: string[];
other_positive_count: Record<string, number>[];
other_negative_count: Record<string, number>[];
}
2023-04-16 20:47:40 +01:00
export interface BehaviourResponseMeta {
start_date: string;
end_date: string;
step_size: string;
2023-04-07 13:47:08 +01:00
}
export type BehaviourResponse = ClassChartsResponse<
BehaviourResponseData,
BehaviourResponseMeta
2023-04-07 13:47:08 +01:00
>;
2022-02-06 11:13:23 +00:00
export interface GetActivityOptions {
/**
* From date, in format YYYY-MM-DD
*/
from?: string;
/**
* To date, in format YYYY-MM-DD
*/
to?: string;
/**
* ID of the last activityPoint (used in pagination)
*/
last_id?: string;
}
2023-04-07 13:47:08 +01:00
2022-02-06 11:13:23 +00:00
export interface ActivityPoint {
id: number;
type: string;
polarity: string;
reason: string;
score: number;
timestamp: string;
timestamp_custom_time: string | null;
style: {
border_color: string | null;
custom_class: string | null;
};
pupil_name: string;
lesson_name: string | null;
teacher_name: string;
room_name: string | null;
note: string | null;
_can_delete: boolean;
badges: string | undefined;
detention_date: string | null;
detention_time: string | null;
detention_location: string | null;
detention_type: string | null;
}
2024-01-10 10:57:33 +00:00
export type ActivityResponseData = ActivityPoint[];
2023-04-07 13:47:08 +01:00
interface ActivityResponseMeta {
start_date: string;
end_date: string;
last_id: number | boolean;
step_size: string;
detention_alias_uc: string;
2023-04-07 13:47:08 +01:00
}
export type ActivityResponse = ClassChartsResponse<
ActivityResponseData,
ActivityResponseMeta
2023-04-07 13:47:08 +01:00
>;
2022-01-31 22:32:29 +00:00
export type DisplayDate = "due_date" | "issue_date";
export interface GetHomeworkOptions {
/**
* Way to sort homeworks
*
* Used to sort homeworks by when they are due or when they were issued
* @default "issue_date"
*/
displayDate?: DisplayDate;
/**
* From date, in format YYYY-MM-DD
*/
from?: string;
/**
* To date, in format YYYY-MM-DD
*/
to?: string;
}
/**
* Teacher uploaded attachments
*/
2022-01-31 22:44:31 +00:00
export interface ValidatedHomeworkAttachment {
id: number;
file_name: string;
file: string;
validated_file: string;
2022-01-31 22:44:31 +00:00
}
/**
* Teacher uploaded links
*/
export interface ValidatedLink {
link: string;
validated_link: string;
}
/**
* User uploaded attachments
*/
export interface HomeworkAttachment {
id: number;
file_name: string;
file: string;
validated_file: string;
teacher_note: string;
teacher_homework_attachments: Array<unknown>;
can_delete: boolean;
}
2021-10-28 16:51:07 +01:00
export interface Homework {
lesson: string;
subject: string;
teacher: string;
homework_type: string;
id: number;
title: string;
meta_title: string;
description: string;
issue_date: string;
due_date: string;
completion_time_unit: string;
completion_time_value: string;
publish_time: string;
status: {
id: number;
state: "not_completed" | "late" | "completed" | null;
mark: unknown | null;
mark_relative: number;
ticked: "yes" | "no";
allow_attachments: boolean;
allow_marking_completed: boolean;
first_seen_date: string | null;
last_seen_date: string | null;
attachments: HomeworkAttachment[];
has_feedback: boolean;
};
validated_links: ValidatedLink[];
2024-01-10 10:57:33 +00:00
validated_attachments: ValidatedHomeworkAttachment[];
2021-10-28 16:51:07 +01:00
}
2024-01-10 10:57:33 +00:00
export type HomeworksResponseData = Homework[];
2023-04-16 20:47:40 +01:00
export interface HomeworksResponseMeta {
start_date: string;
end_date: string;
display_type: DisplayDate;
max_files_allowed: number;
allowed_file_types: string[];
this_week_due_count: number;
this_week_outstanding_count: number;
this_week_completed_count: number;
allow_attachments: boolean;
display_marks: boolean;
2023-04-07 13:47:08 +01:00
}
export type HomeworksResponse = ClassChartsResponse<
HomeworksResponseData,
HomeworksResponseMeta
2023-04-07 13:47:08 +01:00
>;
export interface GetLessonsOptions {
/**
* Date to get lessons for, in format YYYY-MM-DD
*/
date: string;
}
export interface Lesson {
teacher_name: string;
lesson_name: string;
subject_name: string;
is_alternative_lesson: boolean;
period_name: string;
period_number: string;
room_name: string;
date: string;
start_time: string;
end_time: string;
key: number;
note_abstract: string;
note: string;
pupil_note_abstract: string;
pupil_note: string;
pupil_note_raw: string;
}
2023-04-16 20:47:40 +01:00
export type LessonsResponseData = Lesson[];
2023-04-07 13:47:08 +01:00
interface PeriodMeta {
number: string;
start_time: string;
end_time: string;
2023-04-07 13:47:08 +01:00
}
2023-04-16 20:47:40 +01:00
export interface LessonsResponseMeta {
dates: string[];
timetable_dates: string[];
periods: PeriodMeta[];
start_time: string;
end_time: string;
2023-04-07 13:47:08 +01:00
}
export type LessonsResponse = ClassChartsResponse<
LessonsResponseData,
LessonsResponseMeta
2023-04-07 13:47:08 +01:00
>;
2022-07-21 15:35:22 +01:00
// Not sure what to call this
2022-01-31 23:13:05 +00:00
export interface LessonPupilBehaviour {
reason: string;
score: number;
icon: string;
polarity: string;
timestamp: string;
teacher: {
title: string;
first_name: string;
last_name: string;
};
2022-01-31 23:13:05 +00:00
}
export interface PupilEvent {
timestamp: string;
lesson_pupil_behaviour: LessonPupilBehaviour;
event: {
label: string;
};
2022-01-31 23:13:05 +00:00
}
export interface Badge {
id: number;
name: string;
icon: string;
colour: string;
created_date: string;
2024-01-10 10:57:33 +00:00
pupil_badges: PupilEvent[];
icon_url: string;
2022-01-31 23:13:05 +00:00
}
2024-01-10 10:57:33 +00:00
export type BadgesResponseData = Badge[];
2023-04-16 20:47:40 +01:00
export type BadgesResponseMeta = [];
2023-04-07 13:47:08 +01:00
export type BadgesResponse = ClassChartsResponse<
BadgesResponseData,
BadgesResponseMeta
2023-04-07 13:47:08 +01:00
>;
export interface Detention {
id: number;
attended: "yes" | "no" | "upscaled" | "pending";
date: string | null;
length: number | null;
location: string | null;
notes: string | null;
time: string | null;
pupil: {
id: number;
first_name: string;
last_name: string;
school: {
opt_notes_names: "yes" | "no";
opt_notes_comments: "yes" | "no";
opt_notes_comments_pupils: "yes" | "no";
};
};
lesson: {
id: number;
name: string;
subject: {
id: number;
name: string;
};
} | null;
lesson_pupil_behaviour: {
reason: string;
};
teacher: {
id: number;
first_name: string;
last_name: string;
title: string;
} | null;
detention_type: {
name: string;
};
}
2024-01-10 10:57:33 +00:00
export type DetentionsData = Detention[];
export interface DetentionsMeta {
detention_alias_plural: string;
}
export type DetentionsResponse = ClassChartsResponse<
DetentionsData,
DetentionsMeta
>;
2022-02-06 15:14:48 +00:00
2022-02-06 15:45:28 +00:00
export interface Announcement {
id: number;
title: string;
description: string | null;
school_name: string;
teacher_name: string;
school_logo: string | null;
sticky: "yes" | "no";
state: string | null;
timestamp: string;
2024-01-10 10:57:33 +00:00
attachments: {
filename: string;
url: string;
2024-01-10 10:57:33 +00:00
}[];
for_pupils: unknown[];
comment_visibility: string;
allow_comments: "yes" | "no";
allow_reactions: "yes" | "no";
allow_consent: "yes" | "no";
priority_pinned: "yes" | "no";
requires_consent: "yes" | "no";
can_change_consent: boolean;
consent: unknown | null;
2024-01-10 10:57:33 +00:00
pupil_consents: unknown[];
2022-02-06 15:14:48 +00:00
}
2023-09-14 19:38:21 +01:00
export type AnnouncementsResponse = ClassChartsResponse<
2024-01-10 10:57:33 +00:00
Announcement[],
[]
2023-09-14 19:38:21 +01:00
>;
2022-03-12 11:34:56 +00:00
export interface Pupil extends Student {
school_name: string;
school_logo: string;
timezone: string;
display_covid_tests: boolean;
can_record_covid_tests: boolean;
detention_yes_count: number;
detention_no_count: number;
detention_pending_count: number;
detention_upscaled_count: number;
homework_todo_count: number;
homework_late_count: number;
homework_not_completed_count: number;
homework_excused_count: number;
homework_completed_count: number;
homework_submitted_count: number;
announcements_count: number;
messages_count: number;
2022-03-12 11:34:56 +00:00
}
2024-01-10 10:57:33 +00:00
export type GetPupilsResponse = Pupil[];
export interface GetFullActivityOptions {
/**
* From date, in format YYYY-MM-DD
*/
from: string;
/**
* To date, in format YYYY-MM-DD
*/
to: string;
2022-05-24 22:52:57 +01:00
}
2022-05-25 18:18:31 +01:00
export interface GetAttendanceOptions {
/**
* From date, in format YYYY-MM-DD
*/
from: string;
/**
* To date, in format YYYY-MM-DD
*/
to: string;
}
export interface AttendancePeriod {
code: string;
status: "present" | "ignore";
late_minutes: number | string;
lesson_name?: string;
room_name?: string;
2022-05-25 18:18:31 +01:00
}
export interface AttendanceMeta {
2024-01-10 10:57:33 +00:00
dates: string[];
sessions: string[];
start_date: string;
end_date: string;
percentage: string;
percentage_singe_august: string;
}
export type AttendanceData = Record<string, Record<string, AttendancePeriod>>;
export type AttendanceResponse = ClassChartsResponse<
AttendanceData,
AttendanceMeta
>;
export type RewardsData = {
id: number;
name: string;
description: string;
photo: string;
price: number;
stock_control: boolean;
stock: number;
can_purchase: boolean;
unable_to_purchase_reason: string;
once_per_pupil: boolean;
purchased: boolean;
purchased_count: string | number;
price_balance_difference: number;
}[];
export interface RewardsMeta {
pupil_score_balance: number;
}
export type RewardsResponse = ClassChartsResponse<RewardsData, RewardsMeta>;
export interface RewardPurchaseData {
single_purchase: "yes" | "no";
order_id: number;
balance: number;
}
export type RewardPurchaseResponse = ClassChartsResponse<
RewardPurchaseData,
[]
>;
export interface PupilFieldsData {
note: string;
2024-01-10 10:57:33 +00:00
fields: {
id: number;
name: string;
graphic: string;
value: string;
2024-01-10 10:57:33 +00:00
}[];
}
export type PupilFieldsResponse = ClassChartsResponse<PupilFieldsData, []>;
2023-09-24 21:17:15 +01:00
export type ChangePasswordResponse = ClassChartsResponse<[], []>;
2023-09-24 21:17:15 +01:00
export interface GetStudentCodeOptions {
/**
* Date of birth, in format YYYY-MM-DD
*/
dateOfBirth: string;
2023-09-24 21:17:15 +01:00
}
export interface GetStudentCodeResponseData {
code: string;
2023-09-24 21:17:15 +01:00
}
export type GetStudentCodeResponseMeta = [];
export type GetStudentCodeResponse = ClassChartsResponse<
GetStudentCodeResponseData,
GetStudentCodeResponseMeta
2023-09-24 21:17:15 +01:00
>;