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

492 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> = {
2023-04-29 23:34:36 +01:00
data: Data;
2023-05-04 11:55:55 +01:00
meta: Meta;
2023-04-07 13:47:08 +01:00
error?: string;
success: number;
};
export interface Student {
2022-01-31 22:32:29 +00:00
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: string | 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 {
2023-04-07 13:47:08 +01:00
user: Student;
}
2023-04-16 20:47:40 +01:00
export interface GetStudentInfoMeta {
2023-04-07 13:47:08 +01:00
version: string;
}
export type GetStudentInfoResponse = ClassChartsResponse<
GetStudentInfoData,
GetStudentInfoMeta
>;
2022-02-06 11:13:23 +00:00
export interface GetBehaviourOptions {
2022-02-06 12:09:37 +00:00
/**
* From date, in format YYYY-MM-DD
*/
2022-01-31 22:32:29 +00:00
from?: string;
2022-02-06 12:09:37 +00:00
/**
* To date, in format YYYY-MM-DD
*/
2022-01-31 22:32:29 +00:00
to?: string;
}
2023-04-07 13:47:08 +01:00
2022-02-06 11:13:23 +00:00
export interface BehaviourTimelinePoint {
2022-01-31 22:32:29 +00:00
positive: number;
negative: number;
name: string;
start: string;
end: string;
}
2023-04-16 20:47:40 +01:00
export interface BehaviourResponseData {
2022-02-06 11:13:23 +00:00
timeline: Array<BehaviourTimelinePoint>;
positive_reasons: Record<string, number>;
negative_reasons: Record<string, number>;
other_positive: Array<string>;
other_negative: Array<string>;
other_positive_count: Array<Record<string, number>>;
other_negative_count: Array<Record<string, number>>;
}
2023-04-16 20:47:40 +01:00
export interface BehaviourResponseMeta {
2023-04-07 13:47:08 +01:00
start_date: string;
end_date: string;
step_size: string;
}
export type BehaviourResponse = ClassChartsResponse<
BehaviourResponseData,
BehaviourResponseMeta
>;
2022-02-06 11:13:23 +00:00
export interface GetActivityOptions {
2022-02-06 12:09:37 +00:00
/**
* From date, in format YYYY-MM-DD
*/
2022-01-31 22:32:29 +00:00
from?: string;
2022-02-06 12:09:37 +00:00
/**
* To date, in format YYYY-MM-DD
*/
2022-01-31 22:32:29 +00:00
to?: string;
2022-02-06 12:09:37 +00:00
/**
* ID of the last activityPoint (used in pagination)
*/
2022-01-31 22:32:29 +00:00
last_id?: string;
}
2023-04-07 13:47:08 +01:00
2022-02-06 11:13:23 +00:00
export interface ActivityPoint {
2022-01-31 22:32:29 +00:00
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;
teacher_name: string;
room_name: string | null;
note: string;
2022-01-31 22:44:31 +00:00
_can_delete: boolean;
2022-02-06 11:13:23 +00:00
badges: string | undefined;
2022-01-31 22:32:29 +00:00
detention_date: string | null;
detention_time: string | null;
detention_location: string | null;
detention_type: string | null;
}
2023-04-16 20:47:40 +01:00
export type ActivityResponseData = Array<ActivityPoint>;
2023-04-07 13:47:08 +01:00
interface ActivityResponseMeta {
start_date: string;
end_date: string;
last_id: boolean;
step_size: string;
detention_alias_uc: string;
}
export type ActivityResponse = ClassChartsResponse<
ActivityResponseData,
ActivityResponseMeta
>;
2022-01-31 22:32:29 +00:00
export type DisplayDate = "due_date" | "issue_date";
export interface GetHomeworkOptions {
2022-02-06 12:09:37 +00:00
/**
* Way to sort homeworks
2023-04-16 20:47:40 +01:00
*
* Used to sort homeworks by when they are due or when they were issued
* @default "issue_date"
2022-02-06 12:09:37 +00:00
*/
2022-01-31 22:32:29 +00:00
displayDate?: DisplayDate;
/**
* From date, in format YYYY-MM-DD
*/
from?: string;
/**
* To date, in format YYYY-MM-DD
*/
to?: string;
}
2022-01-31 22:44:31 +00:00
export interface ValidatedHomeworkAttachment {
id: number;
file_name: string;
file: string;
validated_file: string;
}
2021-10-28 16:51:07 +01:00
export interface Homework {
2022-01-31 22:32:29 +00:00
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;
2023-08-30 12:28:49 +01:00
mark: unknown | null;
2022-01-31 22:32:29 +00:00
mark_relative: number;
2022-05-24 22:52:57 +01:00
ticked: "yes" | "no";
2023-09-18 20:54:52 +01:00
allow_attachments: boolean;
2022-01-31 22:32:29 +00:00
first_seen_date: string;
last_seen_date: string;
2023-08-30 12:28:49 +01:00
attachments: Array<unknown>;
2022-01-31 22:32:29 +00:00
has_feedback: boolean;
};
2023-08-30 12:28:49 +01:00
validated_links: Array<unknown>;
2022-01-31 22:44:31 +00:00
validated_attachments: Array<ValidatedHomeworkAttachment>;
2021-10-28 16:51:07 +01:00
}
2023-04-16 20:47:40 +01:00
export type HomeworksResponseData = Array<Homework>;
export interface HomeworksResponseMeta {
2023-04-07 13:47:08 +01:00
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;
}
export type HomeworksResponse = ClassChartsResponse<
HomeworksResponseData,
HomeworksResponseMeta
>;
export interface GetLessonsOptions {
2022-02-06 12:09:37 +00:00
/**
* Date to get lessons for, in format YYYY-MM-DD
*/
2022-01-31 22:32:29 +00:00
date: string;
}
export interface Lesson {
2022-01-31 22:32:29 +00:00
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-16 20:47:40 +01:00
export interface LessonsResponseMeta {
2023-04-07 13:47:08 +01:00
dates: string[];
timetable_dates: string[];
periods: PeriodMeta[];
start_time: string;
end_time: string;
}
export type LessonsResponse = ClassChartsResponse<
LessonsResponseData,
LessonsResponseMeta
>;
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;
};
}
export interface PupilEvent {
timestamp: string;
lesson_pupil_behaviour: LessonPupilBehaviour;
event: {
label: string;
};
}
export interface Badge {
id: number;
name: string;
icon: string;
colour: string;
created_date: string;
pupil_badges: Array<PupilEvent>;
icon_url: string;
}
2023-04-16 20:47:40 +01:00
export type BadgesResponseData = Array<Badge>;
export type BadgesResponseMeta = [];
2023-04-07 13:47:08 +01:00
export type BadgesResponse = ClassChartsResponse<
BadgesResponseData,
BadgesResponseMeta
>;
export interface Detention {
id: number;
2022-05-24 22:52:57 +01:00
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: {
2022-05-24 22:52:57 +01:00
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;
};
};
lesson_pupil_behaviour: {
reason: string;
};
teacher: {
id: number;
first_name: string;
last_name: string;
title: string;
};
detention_type: {
name: string;
};
}
export type DetentionsData = Array<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 {
2022-02-06 15:14:48 +00:00
id: number;
title: string;
description: string | null;
school_name: string;
teacher_name: string;
school_logo: string | null;
2022-05-24 22:52:57 +01:00
sticky: "yes" | "no";
2022-02-06 15:14:48 +00:00
state: string | null;
timestamp: string;
attachments: Array<{
filename: string;
url: string;
}>;
2023-08-30 12:28:49 +01:00
for_pupils: Array<unknown>;
2022-02-06 15:14:48 +00:00
comment_visibility: string;
2022-05-24 22:52:57 +01:00
allow_comments: "yes" | "no";
allow_reactions: "yes" | "no";
allow_consent: "yes" | "no";
priority_pinned: "yes" | "no";
requires_consent: "yes" | "no";
2022-02-06 15:14:48 +00:00
can_change_consent: boolean;
2023-09-14 19:38:21 +01:00
consent: unknown | null;
2023-08-30 12:28:49 +01:00
pupil_consents: Array<unknown>;
2022-02-06 15:14:48 +00:00
}
2023-09-14 19:38:21 +01:00
export type AnnouncementsResponse = ClassChartsResponse<
Array<Announcement>,
[]
>;
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;
}
export type GetPupilsResponse = Array<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;
lesson_name?: string;
room_name?: string;
2022-05-25 18:18:31 +01:00
}
export interface AttendanceMeta {
dates: Array<string>;
sessions: Array<string>;
start_date: string;
end_date: string;
percentage: string;
percentage_since_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;
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;
fields: Array<{
id: number;
name: string;
graphic: string;
value: string;
}>;
}
export type PupilFieldsResponse = ClassChartsResponse<PupilFieldsData, []>;