@aibrains/shared-types 0.8.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/academics/assignment.schema.d.ts +2 -2
- package/dist/schemas/academics/attendance.schema.d.ts +426 -6
- package/dist/schemas/academics/attendance.schema.d.ts.map +1 -1
- package/dist/schemas/academics/attendance.schema.js +52 -1
- package/dist/schemas/academics/attendance.schema.js.map +1 -1
- package/dist/schemas/academics/course-section.schema.d.ts +10 -10
- package/dist/schemas/academics/course.schema.d.ts +6 -6
- package/dist/schemas/academics/grade.schema.d.ts +73 -73
- package/dist/schemas/academics/student.schema.d.ts +278 -26
- package/dist/schemas/academics/student.schema.d.ts.map +1 -1
- package/dist/schemas/common.d.ts +15 -1
- package/dist/schemas/common.d.ts.map +1 -1
- package/dist/schemas/common.js +5 -1
- package/dist/schemas/common.js.map +1 -1
- package/dist/schemas/enrollment/enrollment.schema.d.ts +133 -21
- package/dist/schemas/enrollment/enrollment.schema.d.ts.map +1 -1
- package/dist/schemas/enrollment/enrollment.schema.js +1 -1
- package/dist/schemas/enrollment/enrollment.schema.js.map +1 -1
- package/dist/schemas/identity/role.schema.d.ts +12 -12
- package/dist/schemas/identity/user.schema.d.ts +248 -0
- package/dist/schemas/identity/user.schema.d.ts.map +1 -1
- package/dist/schemas/identity/user.schema.js +35 -1
- package/dist/schemas/identity/user.schema.js.map +1 -1
- package/package.json +1 -1
|
@@ -284,8 +284,8 @@ export declare const createGradeSchema: z.ZodObject<{
|
|
|
284
284
|
gradedAt: z.ZodOptional<z.ZodString>;
|
|
285
285
|
}, "strip", z.ZodTypeAny, {
|
|
286
286
|
status: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete";
|
|
287
|
-
assignmentId: string;
|
|
288
287
|
studentId: string;
|
|
288
|
+
assignmentId: string;
|
|
289
289
|
classroomId: string;
|
|
290
290
|
isExtraCredit: boolean;
|
|
291
291
|
isLate: boolean;
|
|
@@ -303,8 +303,8 @@ export declare const createGradeSchema: z.ZodObject<{
|
|
|
303
303
|
submittedAt?: string | undefined;
|
|
304
304
|
gradedAt?: string | undefined;
|
|
305
305
|
}, {
|
|
306
|
-
assignmentId: string;
|
|
307
306
|
studentId: string;
|
|
307
|
+
assignmentId: string;
|
|
308
308
|
classroomId: string;
|
|
309
309
|
status?: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete" | undefined;
|
|
310
310
|
percentage?: number | undefined;
|
|
@@ -352,7 +352,7 @@ export declare const updateGradeSchema: z.ZodObject<Omit<{
|
|
|
352
352
|
}>, "many">>>;
|
|
353
353
|
submittedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
354
354
|
gradedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
355
|
-
}, "
|
|
355
|
+
}, "studentId" | "assignmentId" | "classroomId">, "strip", z.ZodTypeAny, {
|
|
356
356
|
status?: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete" | undefined;
|
|
357
357
|
percentage?: number | undefined;
|
|
358
358
|
isExtraCredit?: boolean | undefined;
|
|
@@ -433,8 +433,8 @@ export declare const gradeResponseSchema: z.ZodObject<{
|
|
|
433
433
|
status: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete";
|
|
434
434
|
createdAt: string;
|
|
435
435
|
updatedAt: string;
|
|
436
|
-
assignmentId: string;
|
|
437
436
|
studentId: string;
|
|
437
|
+
assignmentId: string;
|
|
438
438
|
classroomId: string;
|
|
439
439
|
isExtraCredit: boolean;
|
|
440
440
|
isLate: boolean;
|
|
@@ -462,8 +462,8 @@ export declare const gradeResponseSchema: z.ZodObject<{
|
|
|
462
462
|
status: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete";
|
|
463
463
|
createdAt: string;
|
|
464
464
|
updatedAt: string;
|
|
465
|
-
assignmentId: string;
|
|
466
465
|
studentId: string;
|
|
466
|
+
assignmentId: string;
|
|
467
467
|
classroomId: string;
|
|
468
468
|
isExtraCredit: boolean;
|
|
469
469
|
isLate: boolean;
|
|
@@ -535,8 +535,8 @@ export declare const gradeListResponseSchema: z.ZodObject<{
|
|
|
535
535
|
status: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete";
|
|
536
536
|
createdAt: string;
|
|
537
537
|
updatedAt: string;
|
|
538
|
-
assignmentId: string;
|
|
539
538
|
studentId: string;
|
|
539
|
+
assignmentId: string;
|
|
540
540
|
classroomId: string;
|
|
541
541
|
isExtraCredit: boolean;
|
|
542
542
|
isLate: boolean;
|
|
@@ -564,8 +564,8 @@ export declare const gradeListResponseSchema: z.ZodObject<{
|
|
|
564
564
|
status: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete";
|
|
565
565
|
createdAt: string;
|
|
566
566
|
updatedAt: string;
|
|
567
|
-
assignmentId: string;
|
|
568
567
|
studentId: string;
|
|
568
|
+
assignmentId: string;
|
|
569
569
|
classroomId: string;
|
|
570
570
|
isExtraCredit: boolean;
|
|
571
571
|
isLate: boolean;
|
|
@@ -598,8 +598,8 @@ export declare const gradeListResponseSchema: z.ZodObject<{
|
|
|
598
598
|
status: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete";
|
|
599
599
|
createdAt: string;
|
|
600
600
|
updatedAt: string;
|
|
601
|
-
assignmentId: string;
|
|
602
601
|
studentId: string;
|
|
602
|
+
assignmentId: string;
|
|
603
603
|
classroomId: string;
|
|
604
604
|
isExtraCredit: boolean;
|
|
605
605
|
isLate: boolean;
|
|
@@ -632,8 +632,8 @@ export declare const gradeListResponseSchema: z.ZodObject<{
|
|
|
632
632
|
status: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete";
|
|
633
633
|
createdAt: string;
|
|
634
634
|
updatedAt: string;
|
|
635
|
-
assignmentId: string;
|
|
636
635
|
studentId: string;
|
|
636
|
+
assignmentId: string;
|
|
637
637
|
classroomId: string;
|
|
638
638
|
isExtraCredit: boolean;
|
|
639
639
|
isLate: boolean;
|
|
@@ -740,18 +740,18 @@ export declare const gradeFilterSchema: z.ZodObject<{
|
|
|
740
740
|
gradingPeriodId: z.ZodOptional<z.ZodString>;
|
|
741
741
|
}, "strip", z.ZodTypeAny, {
|
|
742
742
|
status?: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete" | undefined;
|
|
743
|
+
studentId?: string | undefined;
|
|
743
744
|
assignmentId?: string | undefined;
|
|
744
745
|
gradingPeriodId?: string | undefined;
|
|
745
|
-
studentId?: string | undefined;
|
|
746
746
|
classroomId?: string | undefined;
|
|
747
747
|
dateFrom?: string | undefined;
|
|
748
748
|
dateTo?: string | undefined;
|
|
749
749
|
categoryType?: "other" | "lab" | "assignment" | "quiz" | "test" | "exam" | "project" | "homework" | "participation" | "presentation" | undefined;
|
|
750
750
|
}, {
|
|
751
751
|
status?: "excused" | "draft" | "submitted" | "published" | "missing" | "incomplete" | undefined;
|
|
752
|
+
studentId?: string | undefined;
|
|
752
753
|
assignmentId?: string | undefined;
|
|
753
754
|
gradingPeriodId?: string | undefined;
|
|
754
|
-
studentId?: string | undefined;
|
|
755
755
|
classroomId?: string | undefined;
|
|
756
756
|
dateFrom?: string | undefined;
|
|
757
757
|
dateTo?: string | undefined;
|
|
@@ -808,6 +808,7 @@ export declare const studentGradeSummarySchema: z.ZodObject<{
|
|
|
808
808
|
assignmentsTotal: number;
|
|
809
809
|
missingAssignments: number;
|
|
810
810
|
lateAssignments: number;
|
|
811
|
+
trend?: "improving" | "declining" | "stable" | undefined;
|
|
811
812
|
letterGrade?: string | undefined;
|
|
812
813
|
currentGrade?: number | undefined;
|
|
813
814
|
categoryGrades?: {
|
|
@@ -820,7 +821,6 @@ export declare const studentGradeSummarySchema: z.ZodObject<{
|
|
|
820
821
|
assignmentCount: number;
|
|
821
822
|
percentage?: number | undefined;
|
|
822
823
|
}[] | undefined;
|
|
823
|
-
trend?: "improving" | "declining" | "stable" | undefined;
|
|
824
824
|
previousGrade?: number | undefined;
|
|
825
825
|
}, {
|
|
826
826
|
studentId: string;
|
|
@@ -831,6 +831,7 @@ export declare const studentGradeSummarySchema: z.ZodObject<{
|
|
|
831
831
|
assignmentsTotal: number;
|
|
832
832
|
missingAssignments: number;
|
|
833
833
|
lateAssignments: number;
|
|
834
|
+
trend?: "improving" | "declining" | "stable" | undefined;
|
|
834
835
|
letterGrade?: string | undefined;
|
|
835
836
|
currentGrade?: number | undefined;
|
|
836
837
|
categoryGrades?: {
|
|
@@ -843,7 +844,6 @@ export declare const studentGradeSummarySchema: z.ZodObject<{
|
|
|
843
844
|
assignmentCount: number;
|
|
844
845
|
percentage?: number | undefined;
|
|
845
846
|
}[] | undefined;
|
|
846
|
-
trend?: "improving" | "declining" | "stable" | undefined;
|
|
847
847
|
previousGrade?: number | undefined;
|
|
848
848
|
}>;
|
|
849
849
|
export type StudentGradeSummaryDto = z.infer<typeof studentGradeSummarySchema>;
|
|
@@ -1109,8 +1109,8 @@ export declare const courseGradeResponseSchema: z.ZodObject<{
|
|
|
1109
1109
|
updatedAt: string;
|
|
1110
1110
|
schoolId: string;
|
|
1111
1111
|
termId: string;
|
|
1112
|
-
academicYearId: string;
|
|
1113
1112
|
studentId: string;
|
|
1113
|
+
academicYearId: string;
|
|
1114
1114
|
teacherId: string;
|
|
1115
1115
|
gradeId: string;
|
|
1116
1116
|
courseId: string;
|
|
@@ -1138,6 +1138,8 @@ export declare const courseGradeResponseSchema: z.ZodObject<{
|
|
|
1138
1138
|
}[] | undefined;
|
|
1139
1139
|
credits?: number | undefined;
|
|
1140
1140
|
studentName?: string | undefined;
|
|
1141
|
+
sectionId?: string | undefined;
|
|
1142
|
+
courseName?: string | undefined;
|
|
1141
1143
|
letterGrade?: string | undefined;
|
|
1142
1144
|
categoryGrades?: {
|
|
1143
1145
|
percentage: number;
|
|
@@ -1149,8 +1151,6 @@ export declare const courseGradeResponseSchema: z.ZodObject<{
|
|
|
1149
1151
|
letterGrade?: string | undefined;
|
|
1150
1152
|
}[] | undefined;
|
|
1151
1153
|
gpaPoints?: number | undefined;
|
|
1152
|
-
courseName?: string | undefined;
|
|
1153
|
-
sectionId?: string | undefined;
|
|
1154
1154
|
numericGrade?: number | undefined;
|
|
1155
1155
|
isPassFail?: boolean | undefined;
|
|
1156
1156
|
isPassing?: boolean | undefined;
|
|
@@ -1162,8 +1162,8 @@ export declare const courseGradeResponseSchema: z.ZodObject<{
|
|
|
1162
1162
|
updatedAt: string;
|
|
1163
1163
|
schoolId: string;
|
|
1164
1164
|
termId: string;
|
|
1165
|
-
academicYearId: string;
|
|
1166
1165
|
studentId: string;
|
|
1166
|
+
academicYearId: string;
|
|
1167
1167
|
teacherId: string;
|
|
1168
1168
|
gradeId: string;
|
|
1169
1169
|
courseId: string;
|
|
@@ -1191,6 +1191,8 @@ export declare const courseGradeResponseSchema: z.ZodObject<{
|
|
|
1191
1191
|
}[] | undefined;
|
|
1192
1192
|
credits?: number | undefined;
|
|
1193
1193
|
studentName?: string | undefined;
|
|
1194
|
+
sectionId?: string | undefined;
|
|
1195
|
+
courseName?: string | undefined;
|
|
1194
1196
|
letterGrade?: string | undefined;
|
|
1195
1197
|
categoryGrades?: {
|
|
1196
1198
|
percentage: number;
|
|
@@ -1202,8 +1204,6 @@ export declare const courseGradeResponseSchema: z.ZodObject<{
|
|
|
1202
1204
|
letterGrade?: string | undefined;
|
|
1203
1205
|
}[] | undefined;
|
|
1204
1206
|
gpaPoints?: number | undefined;
|
|
1205
|
-
courseName?: string | undefined;
|
|
1206
|
-
sectionId?: string | undefined;
|
|
1207
1207
|
numericGrade?: number | undefined;
|
|
1208
1208
|
isPassFail?: boolean | undefined;
|
|
1209
1209
|
isPassing?: boolean | undefined;
|
|
@@ -1268,8 +1268,8 @@ export declare const recordAssignmentGradeSchema: z.ZodObject<{
|
|
|
1268
1268
|
}, "strip", z.ZodTypeAny, {
|
|
1269
1269
|
schoolId: string;
|
|
1270
1270
|
termId: string;
|
|
1271
|
-
academicYearId: string;
|
|
1272
1271
|
studentId: string;
|
|
1272
|
+
academicYearId: string;
|
|
1273
1273
|
teacherId: string;
|
|
1274
1274
|
assignment: {
|
|
1275
1275
|
assignmentName: string;
|
|
@@ -1287,13 +1287,13 @@ export declare const recordAssignmentGradeSchema: z.ZodObject<{
|
|
|
1287
1287
|
};
|
|
1288
1288
|
courseId: string;
|
|
1289
1289
|
studentName?: string | undefined;
|
|
1290
|
-
courseName?: string | undefined;
|
|
1291
1290
|
sectionId?: string | undefined;
|
|
1291
|
+
courseName?: string | undefined;
|
|
1292
1292
|
}, {
|
|
1293
1293
|
schoolId: string;
|
|
1294
1294
|
termId: string;
|
|
1295
|
-
academicYearId: string;
|
|
1296
1295
|
studentId: string;
|
|
1296
|
+
academicYearId: string;
|
|
1297
1297
|
teacherId: string;
|
|
1298
1298
|
assignment: {
|
|
1299
1299
|
assignmentName: string;
|
|
@@ -1311,8 +1311,8 @@ export declare const recordAssignmentGradeSchema: z.ZodObject<{
|
|
|
1311
1311
|
};
|
|
1312
1312
|
courseId: string;
|
|
1313
1313
|
studentName?: string | undefined;
|
|
1314
|
-
courseName?: string | undefined;
|
|
1315
1314
|
sectionId?: string | undefined;
|
|
1315
|
+
courseName?: string | undefined;
|
|
1316
1316
|
}>;
|
|
1317
1317
|
export type RecordAssignmentGradeDto = z.infer<typeof recordAssignmentGradeSchema>;
|
|
1318
1318
|
/**
|
|
@@ -1389,6 +1389,7 @@ export declare const bulkRecordGradeSchema: z.ZodObject<{
|
|
|
1389
1389
|
}[];
|
|
1390
1390
|
academicYearId: string;
|
|
1391
1391
|
teacherId: string;
|
|
1392
|
+
sectionId: string;
|
|
1392
1393
|
assignment: {
|
|
1393
1394
|
assignmentName: string;
|
|
1394
1395
|
possiblePoints: number;
|
|
@@ -1400,7 +1401,6 @@ export declare const bulkRecordGradeSchema: z.ZodObject<{
|
|
|
1400
1401
|
dueDate?: string | undefined;
|
|
1401
1402
|
};
|
|
1402
1403
|
courseId: string;
|
|
1403
|
-
sectionId: string;
|
|
1404
1404
|
courseName?: string | undefined;
|
|
1405
1405
|
}, {
|
|
1406
1406
|
schoolId: string;
|
|
@@ -1415,6 +1415,7 @@ export declare const bulkRecordGradeSchema: z.ZodObject<{
|
|
|
1415
1415
|
}[];
|
|
1416
1416
|
academicYearId: string;
|
|
1417
1417
|
teacherId: string;
|
|
1418
|
+
sectionId: string;
|
|
1418
1419
|
assignment: {
|
|
1419
1420
|
assignmentName: string;
|
|
1420
1421
|
possiblePoints: number;
|
|
@@ -1426,7 +1427,6 @@ export declare const bulkRecordGradeSchema: z.ZodObject<{
|
|
|
1426
1427
|
dueDate?: string | undefined;
|
|
1427
1428
|
};
|
|
1428
1429
|
courseId: string;
|
|
1429
|
-
sectionId: string;
|
|
1430
1430
|
courseName?: string | undefined;
|
|
1431
1431
|
}>;
|
|
1432
1432
|
export type BulkRecordGradeDto = z.infer<typeof bulkRecordGradeSchema>;
|
|
@@ -1459,16 +1459,16 @@ export declare const gradeOverviewResponseSchema: z.ZodObject<{
|
|
|
1459
1459
|
passRate: z.ZodNumber;
|
|
1460
1460
|
}, "strip", z.ZodTypeAny, {
|
|
1461
1461
|
studentCount: number;
|
|
1462
|
-
courseId: string;
|
|
1463
1462
|
courseName: string;
|
|
1463
|
+
courseId: string;
|
|
1464
1464
|
passRate: number;
|
|
1465
1465
|
sectionCount: number;
|
|
1466
1466
|
avgGrade: number;
|
|
1467
1467
|
avgGpa: number;
|
|
1468
1468
|
}, {
|
|
1469
1469
|
studentCount: number;
|
|
1470
|
-
courseId: string;
|
|
1471
1470
|
courseName: string;
|
|
1471
|
+
courseId: string;
|
|
1472
1472
|
passRate: number;
|
|
1473
1473
|
sectionCount: number;
|
|
1474
1474
|
avgGrade: number;
|
|
@@ -1484,16 +1484,16 @@ export declare const gradeOverviewResponseSchema: z.ZodObject<{
|
|
|
1484
1484
|
}, "strip", z.ZodTypeAny, {
|
|
1485
1485
|
studentId: string;
|
|
1486
1486
|
studentName: string;
|
|
1487
|
+
courseName: string;
|
|
1487
1488
|
letterGrade: string | null;
|
|
1488
1489
|
courseId: string;
|
|
1489
|
-
courseName: string;
|
|
1490
1490
|
numericGrade: number;
|
|
1491
1491
|
}, {
|
|
1492
1492
|
studentId: string;
|
|
1493
1493
|
studentName: string;
|
|
1494
|
+
courseName: string;
|
|
1494
1495
|
letterGrade: string | null;
|
|
1495
1496
|
courseId: string;
|
|
1496
|
-
courseName: string;
|
|
1497
1497
|
numericGrade: number;
|
|
1498
1498
|
}>, "many">;
|
|
1499
1499
|
totalSections: z.ZodNumber;
|
|
@@ -1589,6 +1589,15 @@ export declare const gradeOverviewResponseSchema: z.ZodObject<{
|
|
|
1589
1589
|
avgScore: number;
|
|
1590
1590
|
}>, "many">>;
|
|
1591
1591
|
}, "strip", z.ZodTypeAny, {
|
|
1592
|
+
totalSections: number;
|
|
1593
|
+
atRiskStudents: {
|
|
1594
|
+
studentId: string;
|
|
1595
|
+
studentName: string;
|
|
1596
|
+
courseName: string;
|
|
1597
|
+
letterGrade: string | null;
|
|
1598
|
+
courseId: string;
|
|
1599
|
+
numericGrade: number;
|
|
1600
|
+
}[];
|
|
1592
1601
|
totalStudentsGraded: number;
|
|
1593
1602
|
averageGpa: number;
|
|
1594
1603
|
averageGrade: number;
|
|
@@ -1600,22 +1609,13 @@ export declare const gradeOverviewResponseSchema: z.ZodObject<{
|
|
|
1600
1609
|
}[];
|
|
1601
1610
|
coursePerformance: {
|
|
1602
1611
|
studentCount: number;
|
|
1603
|
-
courseId: string;
|
|
1604
1612
|
courseName: string;
|
|
1613
|
+
courseId: string;
|
|
1605
1614
|
passRate: number;
|
|
1606
1615
|
sectionCount: number;
|
|
1607
1616
|
avgGrade: number;
|
|
1608
1617
|
avgGpa: number;
|
|
1609
1618
|
}[];
|
|
1610
|
-
atRiskStudents: {
|
|
1611
|
-
studentId: string;
|
|
1612
|
-
studentName: string;
|
|
1613
|
-
letterGrade: string | null;
|
|
1614
|
-
courseId: string;
|
|
1615
|
-
courseName: string;
|
|
1616
|
-
numericGrade: number;
|
|
1617
|
-
}[];
|
|
1618
|
-
totalSections: number;
|
|
1619
1619
|
sectionsWithGrades: number;
|
|
1620
1620
|
assessmentBreakdown?: {
|
|
1621
1621
|
formative: {
|
|
@@ -1644,6 +1644,15 @@ export declare const gradeOverviewResponseSchema: z.ZodObject<{
|
|
|
1644
1644
|
avgScore: number;
|
|
1645
1645
|
}[] | undefined;
|
|
1646
1646
|
}, {
|
|
1647
|
+
totalSections: number;
|
|
1648
|
+
atRiskStudents: {
|
|
1649
|
+
studentId: string;
|
|
1650
|
+
studentName: string;
|
|
1651
|
+
courseName: string;
|
|
1652
|
+
letterGrade: string | null;
|
|
1653
|
+
courseId: string;
|
|
1654
|
+
numericGrade: number;
|
|
1655
|
+
}[];
|
|
1647
1656
|
totalStudentsGraded: number;
|
|
1648
1657
|
averageGpa: number;
|
|
1649
1658
|
averageGrade: number;
|
|
@@ -1655,22 +1664,13 @@ export declare const gradeOverviewResponseSchema: z.ZodObject<{
|
|
|
1655
1664
|
}[];
|
|
1656
1665
|
coursePerformance: {
|
|
1657
1666
|
studentCount: number;
|
|
1658
|
-
courseId: string;
|
|
1659
1667
|
courseName: string;
|
|
1668
|
+
courseId: string;
|
|
1660
1669
|
passRate: number;
|
|
1661
1670
|
sectionCount: number;
|
|
1662
1671
|
avgGrade: number;
|
|
1663
1672
|
avgGpa: number;
|
|
1664
1673
|
}[];
|
|
1665
|
-
atRiskStudents: {
|
|
1666
|
-
studentId: string;
|
|
1667
|
-
studentName: string;
|
|
1668
|
-
letterGrade: string | null;
|
|
1669
|
-
courseId: string;
|
|
1670
|
-
courseName: string;
|
|
1671
|
-
numericGrade: number;
|
|
1672
|
-
}[];
|
|
1673
|
-
totalSections: number;
|
|
1674
1674
|
sectionsWithGrades: number;
|
|
1675
1675
|
assessmentBreakdown?: {
|
|
1676
1676
|
formative: {
|
|
@@ -1865,8 +1865,8 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
1865
1865
|
updatedAt: string;
|
|
1866
1866
|
schoolId: string;
|
|
1867
1867
|
termId: string;
|
|
1868
|
-
academicYearId: string;
|
|
1869
1868
|
studentId: string;
|
|
1869
|
+
academicYearId: string;
|
|
1870
1870
|
teacherId: string;
|
|
1871
1871
|
gradeId: string;
|
|
1872
1872
|
courseId: string;
|
|
@@ -1894,6 +1894,8 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
1894
1894
|
}[] | undefined;
|
|
1895
1895
|
credits?: number | undefined;
|
|
1896
1896
|
studentName?: string | undefined;
|
|
1897
|
+
sectionId?: string | undefined;
|
|
1898
|
+
courseName?: string | undefined;
|
|
1897
1899
|
letterGrade?: string | undefined;
|
|
1898
1900
|
categoryGrades?: {
|
|
1899
1901
|
percentage: number;
|
|
@@ -1905,8 +1907,6 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
1905
1907
|
letterGrade?: string | undefined;
|
|
1906
1908
|
}[] | undefined;
|
|
1907
1909
|
gpaPoints?: number | undefined;
|
|
1908
|
-
courseName?: string | undefined;
|
|
1909
|
-
sectionId?: string | undefined;
|
|
1910
1910
|
numericGrade?: number | undefined;
|
|
1911
1911
|
isPassFail?: boolean | undefined;
|
|
1912
1912
|
isPassing?: boolean | undefined;
|
|
@@ -1918,8 +1918,8 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
1918
1918
|
updatedAt: string;
|
|
1919
1919
|
schoolId: string;
|
|
1920
1920
|
termId: string;
|
|
1921
|
-
academicYearId: string;
|
|
1922
1921
|
studentId: string;
|
|
1922
|
+
academicYearId: string;
|
|
1923
1923
|
teacherId: string;
|
|
1924
1924
|
gradeId: string;
|
|
1925
1925
|
courseId: string;
|
|
@@ -1947,6 +1947,8 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
1947
1947
|
}[] | undefined;
|
|
1948
1948
|
credits?: number | undefined;
|
|
1949
1949
|
studentName?: string | undefined;
|
|
1950
|
+
sectionId?: string | undefined;
|
|
1951
|
+
courseName?: string | undefined;
|
|
1950
1952
|
letterGrade?: string | undefined;
|
|
1951
1953
|
categoryGrades?: {
|
|
1952
1954
|
percentage: number;
|
|
@@ -1958,8 +1960,6 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
1958
1960
|
letterGrade?: string | undefined;
|
|
1959
1961
|
}[] | undefined;
|
|
1960
1962
|
gpaPoints?: number | undefined;
|
|
1961
|
-
courseName?: string | undefined;
|
|
1962
|
-
sectionId?: string | undefined;
|
|
1963
1963
|
numericGrade?: number | undefined;
|
|
1964
1964
|
isPassFail?: boolean | undefined;
|
|
1965
1965
|
isPassing?: boolean | undefined;
|
|
@@ -1974,8 +1974,8 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
1974
1974
|
updatedAt: string;
|
|
1975
1975
|
schoolId: string;
|
|
1976
1976
|
termId: string;
|
|
1977
|
-
academicYearId: string;
|
|
1978
1977
|
studentId: string;
|
|
1978
|
+
academicYearId: string;
|
|
1979
1979
|
teacherId: string;
|
|
1980
1980
|
gradeId: string;
|
|
1981
1981
|
courseId: string;
|
|
@@ -2003,6 +2003,8 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
2003
2003
|
}[] | undefined;
|
|
2004
2004
|
credits?: number | undefined;
|
|
2005
2005
|
studentName?: string | undefined;
|
|
2006
|
+
sectionId?: string | undefined;
|
|
2007
|
+
courseName?: string | undefined;
|
|
2006
2008
|
letterGrade?: string | undefined;
|
|
2007
2009
|
categoryGrades?: {
|
|
2008
2010
|
percentage: number;
|
|
@@ -2014,8 +2016,6 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
2014
2016
|
letterGrade?: string | undefined;
|
|
2015
2017
|
}[] | undefined;
|
|
2016
2018
|
gpaPoints?: number | undefined;
|
|
2017
|
-
courseName?: string | undefined;
|
|
2018
|
-
sectionId?: string | undefined;
|
|
2019
2019
|
numericGrade?: number | undefined;
|
|
2020
2020
|
isPassFail?: boolean | undefined;
|
|
2021
2021
|
isPassing?: boolean | undefined;
|
|
@@ -2031,8 +2031,8 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
2031
2031
|
updatedAt: string;
|
|
2032
2032
|
schoolId: string;
|
|
2033
2033
|
termId: string;
|
|
2034
|
-
academicYearId: string;
|
|
2035
2034
|
studentId: string;
|
|
2035
|
+
academicYearId: string;
|
|
2036
2036
|
teacherId: string;
|
|
2037
2037
|
gradeId: string;
|
|
2038
2038
|
courseId: string;
|
|
@@ -2060,6 +2060,8 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
2060
2060
|
}[] | undefined;
|
|
2061
2061
|
credits?: number | undefined;
|
|
2062
2062
|
studentName?: string | undefined;
|
|
2063
|
+
sectionId?: string | undefined;
|
|
2064
|
+
courseName?: string | undefined;
|
|
2063
2065
|
letterGrade?: string | undefined;
|
|
2064
2066
|
categoryGrades?: {
|
|
2065
2067
|
percentage: number;
|
|
@@ -2071,8 +2073,6 @@ export declare const sectionGradebookResponseSchema: z.ZodObject<{
|
|
|
2071
2073
|
letterGrade?: string | undefined;
|
|
2072
2074
|
}[] | undefined;
|
|
2073
2075
|
gpaPoints?: number | undefined;
|
|
2074
|
-
courseName?: string | undefined;
|
|
2075
|
-
sectionId?: string | undefined;
|
|
2076
2076
|
numericGrade?: number | undefined;
|
|
2077
2077
|
isPassFail?: boolean | undefined;
|
|
2078
2078
|
isPassing?: boolean | undefined;
|
|
@@ -2199,8 +2199,8 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2199
2199
|
updatedAt: string;
|
|
2200
2200
|
schoolId: string;
|
|
2201
2201
|
termId: string;
|
|
2202
|
-
academicYearId: string;
|
|
2203
2202
|
studentId: string;
|
|
2203
|
+
academicYearId: string;
|
|
2204
2204
|
teacherId: string;
|
|
2205
2205
|
gradeId: string;
|
|
2206
2206
|
courseId: string;
|
|
@@ -2228,6 +2228,8 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2228
2228
|
}[] | undefined;
|
|
2229
2229
|
credits?: number | undefined;
|
|
2230
2230
|
studentName?: string | undefined;
|
|
2231
|
+
sectionId?: string | undefined;
|
|
2232
|
+
courseName?: string | undefined;
|
|
2231
2233
|
letterGrade?: string | undefined;
|
|
2232
2234
|
categoryGrades?: {
|
|
2233
2235
|
percentage: number;
|
|
@@ -2239,8 +2241,6 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2239
2241
|
letterGrade?: string | undefined;
|
|
2240
2242
|
}[] | undefined;
|
|
2241
2243
|
gpaPoints?: number | undefined;
|
|
2242
|
-
courseName?: string | undefined;
|
|
2243
|
-
sectionId?: string | undefined;
|
|
2244
2244
|
numericGrade?: number | undefined;
|
|
2245
2245
|
isPassFail?: boolean | undefined;
|
|
2246
2246
|
isPassing?: boolean | undefined;
|
|
@@ -2252,8 +2252,8 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2252
2252
|
updatedAt: string;
|
|
2253
2253
|
schoolId: string;
|
|
2254
2254
|
termId: string;
|
|
2255
|
-
academicYearId: string;
|
|
2256
2255
|
studentId: string;
|
|
2256
|
+
academicYearId: string;
|
|
2257
2257
|
teacherId: string;
|
|
2258
2258
|
gradeId: string;
|
|
2259
2259
|
courseId: string;
|
|
@@ -2281,6 +2281,8 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2281
2281
|
}[] | undefined;
|
|
2282
2282
|
credits?: number | undefined;
|
|
2283
2283
|
studentName?: string | undefined;
|
|
2284
|
+
sectionId?: string | undefined;
|
|
2285
|
+
courseName?: string | undefined;
|
|
2284
2286
|
letterGrade?: string | undefined;
|
|
2285
2287
|
categoryGrades?: {
|
|
2286
2288
|
percentage: number;
|
|
@@ -2292,8 +2294,6 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2292
2294
|
letterGrade?: string | undefined;
|
|
2293
2295
|
}[] | undefined;
|
|
2294
2296
|
gpaPoints?: number | undefined;
|
|
2295
|
-
courseName?: string | undefined;
|
|
2296
|
-
sectionId?: string | undefined;
|
|
2297
2297
|
numericGrade?: number | undefined;
|
|
2298
2298
|
isPassFail?: boolean | undefined;
|
|
2299
2299
|
isPassing?: boolean | undefined;
|
|
@@ -2320,8 +2320,8 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2320
2320
|
updatedAt: string;
|
|
2321
2321
|
schoolId: string;
|
|
2322
2322
|
termId: string;
|
|
2323
|
-
academicYearId: string;
|
|
2324
2323
|
studentId: string;
|
|
2324
|
+
academicYearId: string;
|
|
2325
2325
|
teacherId: string;
|
|
2326
2326
|
gradeId: string;
|
|
2327
2327
|
courseId: string;
|
|
@@ -2349,6 +2349,8 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2349
2349
|
}[] | undefined;
|
|
2350
2350
|
credits?: number | undefined;
|
|
2351
2351
|
studentName?: string | undefined;
|
|
2352
|
+
sectionId?: string | undefined;
|
|
2353
|
+
courseName?: string | undefined;
|
|
2352
2354
|
letterGrade?: string | undefined;
|
|
2353
2355
|
categoryGrades?: {
|
|
2354
2356
|
percentage: number;
|
|
@@ -2360,8 +2362,6 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2360
2362
|
letterGrade?: string | undefined;
|
|
2361
2363
|
}[] | undefined;
|
|
2362
2364
|
gpaPoints?: number | undefined;
|
|
2363
|
-
courseName?: string | undefined;
|
|
2364
|
-
sectionId?: string | undefined;
|
|
2365
2365
|
numericGrade?: number | undefined;
|
|
2366
2366
|
isPassFail?: boolean | undefined;
|
|
2367
2367
|
isPassing?: boolean | undefined;
|
|
@@ -2381,8 +2381,8 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2381
2381
|
updatedAt: string;
|
|
2382
2382
|
schoolId: string;
|
|
2383
2383
|
termId: string;
|
|
2384
|
-
academicYearId: string;
|
|
2385
2384
|
studentId: string;
|
|
2385
|
+
academicYearId: string;
|
|
2386
2386
|
teacherId: string;
|
|
2387
2387
|
gradeId: string;
|
|
2388
2388
|
courseId: string;
|
|
@@ -2410,6 +2410,8 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2410
2410
|
}[] | undefined;
|
|
2411
2411
|
credits?: number | undefined;
|
|
2412
2412
|
studentName?: string | undefined;
|
|
2413
|
+
sectionId?: string | undefined;
|
|
2414
|
+
courseName?: string | undefined;
|
|
2413
2415
|
letterGrade?: string | undefined;
|
|
2414
2416
|
categoryGrades?: {
|
|
2415
2417
|
percentage: number;
|
|
@@ -2421,8 +2423,6 @@ export declare const studentGradesResponseSchema: z.ZodObject<{
|
|
|
2421
2423
|
letterGrade?: string | undefined;
|
|
2422
2424
|
}[] | undefined;
|
|
2423
2425
|
gpaPoints?: number | undefined;
|
|
2424
|
-
courseName?: string | undefined;
|
|
2425
|
-
sectionId?: string | undefined;
|
|
2426
2426
|
numericGrade?: number | undefined;
|
|
2427
2427
|
isPassFail?: boolean | undefined;
|
|
2428
2428
|
isPassing?: boolean | undefined;
|