@studious-lms/server 1.2.30 → 1.2.31
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/routers/_app.d.ts +216 -14
- package/dist/routers/_app.d.ts.map +1 -1
- package/dist/routers/assignment.d.ts +78 -5
- package/dist/routers/assignment.d.ts.map +1 -1
- package/dist/routers/assignment.js +18 -2
- package/dist/routers/class.d.ts +22 -1
- package/dist/routers/class.d.ts.map +1 -1
- package/dist/routers/class.js +32 -6
- package/dist/routers/event.d.ts +8 -1
- package/dist/routers/event.d.ts.map +1 -1
- package/dist/seedDatabase.d.ts +0 -1
- package/dist/seedDatabase.d.ts.map +1 -1
- package/package.json +1 -1
- package/prisma/schema.prisma +17 -8
- package/src/routers/assignment.ts +19 -3
- package/src/routers/class.ts +32 -6
package/dist/routers/_app.d.ts
CHANGED
|
@@ -243,7 +243,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
243
243
|
password: string;
|
|
244
244
|
verified: boolean;
|
|
245
245
|
role: import(".prisma/client").$Enums.UserRole;
|
|
246
|
-
profileId: string | null;
|
|
247
246
|
schoolId: string | null;
|
|
248
247
|
};
|
|
249
248
|
};
|
|
@@ -357,6 +356,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
357
356
|
gradeReceived: number | null;
|
|
358
357
|
createdAt: Date;
|
|
359
358
|
modifiedAt: Date;
|
|
359
|
+
extendedResponse: string | null;
|
|
360
360
|
rubricState: string | null;
|
|
361
361
|
teacherComments: string | null;
|
|
362
362
|
submittedAt: Date | null;
|
|
@@ -388,6 +388,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
388
388
|
gradeReceived: number | null;
|
|
389
389
|
createdAt: Date;
|
|
390
390
|
modifiedAt: Date;
|
|
391
|
+
extendedResponse: string | null;
|
|
391
392
|
rubricState: string | null;
|
|
392
393
|
teacherComments: string | null;
|
|
393
394
|
submittedAt: Date | null;
|
|
@@ -572,6 +573,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
572
573
|
createdAt: Date | null;
|
|
573
574
|
modifiedAt: Date | null;
|
|
574
575
|
teacherId: string;
|
|
576
|
+
acceptFiles: boolean;
|
|
577
|
+
acceptExtendedResponse: boolean;
|
|
578
|
+
acceptWorksheet: boolean;
|
|
579
|
+
gradeWithAI: boolean;
|
|
575
580
|
inProgress: boolean;
|
|
576
581
|
order: number | null;
|
|
577
582
|
worksheetId: string | null;
|
|
@@ -611,6 +616,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
611
616
|
createdAt: Date | null;
|
|
612
617
|
modifiedAt: Date | null;
|
|
613
618
|
teacherId: string;
|
|
619
|
+
acceptFiles: boolean;
|
|
620
|
+
acceptExtendedResponse: boolean;
|
|
621
|
+
acceptWorksheet: boolean;
|
|
622
|
+
gradeWithAI: boolean;
|
|
614
623
|
inProgress: boolean;
|
|
615
624
|
order: number | null;
|
|
616
625
|
worksheetId: string | null;
|
|
@@ -650,6 +659,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
650
659
|
createdAt: Date | null;
|
|
651
660
|
modifiedAt: Date | null;
|
|
652
661
|
teacherId: string;
|
|
662
|
+
acceptFiles: boolean;
|
|
663
|
+
acceptExtendedResponse: boolean;
|
|
664
|
+
acceptWorksheet: boolean;
|
|
665
|
+
gradeWithAI: boolean;
|
|
653
666
|
inProgress: boolean;
|
|
654
667
|
order: number | null;
|
|
655
668
|
worksheetId: string | null;
|
|
@@ -680,6 +693,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
680
693
|
createdAt: Date | null;
|
|
681
694
|
modifiedAt: Date | null;
|
|
682
695
|
teacherId: string;
|
|
696
|
+
acceptFiles: boolean;
|
|
697
|
+
acceptExtendedResponse: boolean;
|
|
698
|
+
acceptWorksheet: boolean;
|
|
699
|
+
gradeWithAI: boolean;
|
|
683
700
|
inProgress: boolean;
|
|
684
701
|
order: number | null;
|
|
685
702
|
worksheetId: string | null;
|
|
@@ -714,6 +731,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
714
731
|
createdAt: Date | null;
|
|
715
732
|
modifiedAt: Date | null;
|
|
716
733
|
teacherId: string;
|
|
734
|
+
acceptFiles: boolean;
|
|
735
|
+
acceptExtendedResponse: boolean;
|
|
736
|
+
acceptWorksheet: boolean;
|
|
737
|
+
gradeWithAI: boolean;
|
|
717
738
|
inProgress: boolean;
|
|
718
739
|
order: number | null;
|
|
719
740
|
worksheetId: string | null;
|
|
@@ -1190,6 +1211,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1190
1211
|
createdAt: Date | null;
|
|
1191
1212
|
modifiedAt: Date | null;
|
|
1192
1213
|
teacherId: string;
|
|
1214
|
+
acceptFiles: boolean;
|
|
1215
|
+
acceptExtendedResponse: boolean;
|
|
1216
|
+
acceptWorksheet: boolean;
|
|
1217
|
+
gradeWithAI: boolean;
|
|
1193
1218
|
inProgress: boolean;
|
|
1194
1219
|
order: number | null;
|
|
1195
1220
|
worksheetId: string | null;
|
|
@@ -1221,6 +1246,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1221
1246
|
createdAt: Date | null;
|
|
1222
1247
|
modifiedAt: Date | null;
|
|
1223
1248
|
teacherId: string;
|
|
1249
|
+
acceptFiles: boolean;
|
|
1250
|
+
acceptExtendedResponse: boolean;
|
|
1251
|
+
acceptWorksheet: boolean;
|
|
1252
|
+
gradeWithAI: boolean;
|
|
1224
1253
|
inProgress: boolean;
|
|
1225
1254
|
order: number | null;
|
|
1226
1255
|
worksheetId: string | null;
|
|
@@ -1252,6 +1281,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1252
1281
|
createdAt: Date | null;
|
|
1253
1282
|
modifiedAt: Date | null;
|
|
1254
1283
|
teacherId: string;
|
|
1284
|
+
acceptFiles: boolean;
|
|
1285
|
+
acceptExtendedResponse: boolean;
|
|
1286
|
+
acceptWorksheet: boolean;
|
|
1287
|
+
gradeWithAI: boolean;
|
|
1255
1288
|
inProgress: boolean;
|
|
1256
1289
|
order: number | null;
|
|
1257
1290
|
worksheetId: string | null;
|
|
@@ -1276,6 +1309,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1276
1309
|
weight?: number | undefined;
|
|
1277
1310
|
graded?: boolean | undefined;
|
|
1278
1311
|
sectionId?: string | undefined;
|
|
1312
|
+
acceptFiles?: boolean | undefined;
|
|
1313
|
+
acceptExtendedResponse?: boolean | undefined;
|
|
1314
|
+
acceptWorksheet?: boolean | undefined;
|
|
1315
|
+
gradeWithAI?: boolean | undefined;
|
|
1279
1316
|
inProgress?: boolean | undefined;
|
|
1280
1317
|
existingFileIds?: string[] | undefined;
|
|
1281
1318
|
};
|
|
@@ -1325,6 +1362,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1325
1362
|
weight?: number | undefined;
|
|
1326
1363
|
graded?: boolean | undefined;
|
|
1327
1364
|
sectionId?: string | null | undefined;
|
|
1365
|
+
acceptFiles?: boolean | undefined;
|
|
1366
|
+
acceptExtendedResponse?: boolean | undefined;
|
|
1367
|
+
acceptWorksheet?: boolean | undefined;
|
|
1368
|
+
gradeWithAI?: boolean | undefined;
|
|
1328
1369
|
inProgress?: boolean | undefined;
|
|
1329
1370
|
existingFileIds?: string[] | undefined;
|
|
1330
1371
|
removedAttachments?: string[] | undefined;
|
|
@@ -1364,7 +1405,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1364
1405
|
password: string;
|
|
1365
1406
|
verified: boolean;
|
|
1366
1407
|
role: import(".prisma/client").$Enums.UserRole;
|
|
1367
|
-
profileId: string | null;
|
|
1368
1408
|
schoolId: string | null;
|
|
1369
1409
|
};
|
|
1370
1410
|
instructions: string;
|
|
@@ -1491,6 +1531,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1491
1531
|
createdAt: Date | null;
|
|
1492
1532
|
modifiedAt: Date | null;
|
|
1493
1533
|
teacherId: string;
|
|
1534
|
+
acceptFiles: boolean;
|
|
1535
|
+
acceptExtendedResponse: boolean;
|
|
1536
|
+
acceptWorksheet: boolean;
|
|
1537
|
+
gradeWithAI: boolean;
|
|
1494
1538
|
inProgress: boolean;
|
|
1495
1539
|
order: number | null;
|
|
1496
1540
|
worksheetId: string | null;
|
|
@@ -1540,6 +1584,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1540
1584
|
createdAt: Date | null;
|
|
1541
1585
|
modifiedAt: Date | null;
|
|
1542
1586
|
teacherId: string;
|
|
1587
|
+
acceptFiles: boolean;
|
|
1588
|
+
acceptExtendedResponse: boolean;
|
|
1589
|
+
acceptWorksheet: boolean;
|
|
1590
|
+
gradeWithAI: boolean;
|
|
1543
1591
|
inProgress: boolean;
|
|
1544
1592
|
order: number | null;
|
|
1545
1593
|
worksheetId: string | null;
|
|
@@ -1611,6 +1659,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1611
1659
|
gradeReceived: number | null;
|
|
1612
1660
|
createdAt: Date;
|
|
1613
1661
|
modifiedAt: Date;
|
|
1662
|
+
extendedResponse: string | null;
|
|
1614
1663
|
rubricState: string | null;
|
|
1615
1664
|
teacherComments: string | null;
|
|
1616
1665
|
submittedAt: Date | null;
|
|
@@ -1654,6 +1703,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1654
1703
|
createdAt: Date | null;
|
|
1655
1704
|
modifiedAt: Date | null;
|
|
1656
1705
|
teacherId: string;
|
|
1706
|
+
acceptFiles: boolean;
|
|
1707
|
+
acceptExtendedResponse: boolean;
|
|
1708
|
+
acceptWorksheet: boolean;
|
|
1709
|
+
gradeWithAI: boolean;
|
|
1657
1710
|
inProgress: boolean;
|
|
1658
1711
|
order: number | null;
|
|
1659
1712
|
worksheetId: string | null;
|
|
@@ -1736,6 +1789,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1736
1789
|
gradeReceived: number | null;
|
|
1737
1790
|
createdAt: Date;
|
|
1738
1791
|
modifiedAt: Date;
|
|
1792
|
+
extendedResponse: string | null;
|
|
1739
1793
|
rubricState: string | null;
|
|
1740
1794
|
teacherComments: string | null;
|
|
1741
1795
|
submittedAt: Date | null;
|
|
@@ -1788,6 +1842,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1788
1842
|
createdAt: Date | null;
|
|
1789
1843
|
modifiedAt: Date | null;
|
|
1790
1844
|
teacherId: string;
|
|
1845
|
+
acceptFiles: boolean;
|
|
1846
|
+
acceptExtendedResponse: boolean;
|
|
1847
|
+
acceptWorksheet: boolean;
|
|
1848
|
+
gradeWithAI: boolean;
|
|
1791
1849
|
inProgress: boolean;
|
|
1792
1850
|
order: number | null;
|
|
1793
1851
|
worksheetId: string | null;
|
|
@@ -1870,6 +1928,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1870
1928
|
gradeReceived: number | null;
|
|
1871
1929
|
createdAt: Date;
|
|
1872
1930
|
modifiedAt: Date;
|
|
1931
|
+
extendedResponse: string | null;
|
|
1873
1932
|
rubricState: string | null;
|
|
1874
1933
|
teacherComments: string | null;
|
|
1875
1934
|
submittedAt: Date | null;
|
|
@@ -1930,6 +1989,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1930
1989
|
createdAt: Date | null;
|
|
1931
1990
|
modifiedAt: Date | null;
|
|
1932
1991
|
teacherId: string;
|
|
1992
|
+
acceptFiles: boolean;
|
|
1993
|
+
acceptExtendedResponse: boolean;
|
|
1994
|
+
acceptWorksheet: boolean;
|
|
1995
|
+
gradeWithAI: boolean;
|
|
1933
1996
|
inProgress: boolean;
|
|
1934
1997
|
order: number | null;
|
|
1935
1998
|
worksheetId: string | null;
|
|
@@ -1973,6 +2036,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1973
2036
|
gradeReceived: number | null;
|
|
1974
2037
|
createdAt: Date;
|
|
1975
2038
|
modifiedAt: Date;
|
|
2039
|
+
extendedResponse: string | null;
|
|
1976
2040
|
rubricState: string | null;
|
|
1977
2041
|
teacherComments: string | null;
|
|
1978
2042
|
submittedAt: Date | null;
|
|
@@ -2025,6 +2089,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2025
2089
|
createdAt: Date | null;
|
|
2026
2090
|
modifiedAt: Date | null;
|
|
2027
2091
|
teacherId: string;
|
|
2092
|
+
acceptFiles: boolean;
|
|
2093
|
+
acceptExtendedResponse: boolean;
|
|
2094
|
+
acceptWorksheet: boolean;
|
|
2095
|
+
gradeWithAI: boolean;
|
|
2028
2096
|
inProgress: boolean;
|
|
2029
2097
|
order: number | null;
|
|
2030
2098
|
worksheetId: string | null;
|
|
@@ -2101,6 +2169,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2101
2169
|
gradeReceived: number | null;
|
|
2102
2170
|
createdAt: Date;
|
|
2103
2171
|
modifiedAt: Date;
|
|
2172
|
+
extendedResponse: string | null;
|
|
2104
2173
|
rubricState: string | null;
|
|
2105
2174
|
teacherComments: string | null;
|
|
2106
2175
|
submittedAt: Date | null;
|
|
@@ -2169,6 +2238,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2169
2238
|
createdAt: Date | null;
|
|
2170
2239
|
modifiedAt: Date | null;
|
|
2171
2240
|
teacherId: string;
|
|
2241
|
+
acceptFiles: boolean;
|
|
2242
|
+
acceptExtendedResponse: boolean;
|
|
2243
|
+
acceptWorksheet: boolean;
|
|
2244
|
+
gradeWithAI: boolean;
|
|
2172
2245
|
inProgress: boolean;
|
|
2173
2246
|
order: number | null;
|
|
2174
2247
|
worksheetId: string | null;
|
|
@@ -2217,6 +2290,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2217
2290
|
gradeReceived: number | null;
|
|
2218
2291
|
createdAt: Date;
|
|
2219
2292
|
modifiedAt: Date;
|
|
2293
|
+
extendedResponse: string | null;
|
|
2220
2294
|
rubricState: string | null;
|
|
2221
2295
|
teacherComments: string | null;
|
|
2222
2296
|
submittedAt: Date | null;
|
|
@@ -2271,6 +2345,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2271
2345
|
createdAt: Date | null;
|
|
2272
2346
|
modifiedAt: Date | null;
|
|
2273
2347
|
teacherId: string;
|
|
2348
|
+
acceptFiles: boolean;
|
|
2349
|
+
acceptExtendedResponse: boolean;
|
|
2350
|
+
acceptWorksheet: boolean;
|
|
2351
|
+
gradeWithAI: boolean;
|
|
2274
2352
|
inProgress: boolean;
|
|
2275
2353
|
order: number | null;
|
|
2276
2354
|
worksheetId: string | null;
|
|
@@ -2323,6 +2401,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2323
2401
|
createdAt: Date | null;
|
|
2324
2402
|
modifiedAt: Date | null;
|
|
2325
2403
|
teacherId: string;
|
|
2404
|
+
acceptFiles: boolean;
|
|
2405
|
+
acceptExtendedResponse: boolean;
|
|
2406
|
+
acceptWorksheet: boolean;
|
|
2407
|
+
gradeWithAI: boolean;
|
|
2326
2408
|
inProgress: boolean;
|
|
2327
2409
|
order: number | null;
|
|
2328
2410
|
worksheetId: string | null;
|
|
@@ -2386,7 +2468,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2386
2468
|
password: string;
|
|
2387
2469
|
verified: boolean;
|
|
2388
2470
|
role: import(".prisma/client").$Enums.UserRole;
|
|
2389
|
-
profileId: string | null;
|
|
2390
2471
|
schoolId: string | null;
|
|
2391
2472
|
};
|
|
2392
2473
|
attachments: {
|
|
@@ -2451,6 +2532,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2451
2532
|
createdAt: Date | null;
|
|
2452
2533
|
modifiedAt: Date | null;
|
|
2453
2534
|
teacherId: string;
|
|
2535
|
+
acceptFiles: boolean;
|
|
2536
|
+
acceptExtendedResponse: boolean;
|
|
2537
|
+
acceptWorksheet: boolean;
|
|
2538
|
+
gradeWithAI: boolean;
|
|
2454
2539
|
inProgress: boolean;
|
|
2455
2540
|
order: number | null;
|
|
2456
2541
|
worksheetId: string | null;
|
|
@@ -2478,7 +2563,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2478
2563
|
password: string;
|
|
2479
2564
|
verified: boolean;
|
|
2480
2565
|
role: import(".prisma/client").$Enums.UserRole;
|
|
2481
|
-
profileId: string | null;
|
|
2482
2566
|
schoolId: string | null;
|
|
2483
2567
|
};
|
|
2484
2568
|
attachments: {
|
|
@@ -2543,6 +2627,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2543
2627
|
createdAt: Date | null;
|
|
2544
2628
|
modifiedAt: Date | null;
|
|
2545
2629
|
teacherId: string;
|
|
2630
|
+
acceptFiles: boolean;
|
|
2631
|
+
acceptExtendedResponse: boolean;
|
|
2632
|
+
acceptWorksheet: boolean;
|
|
2633
|
+
gradeWithAI: boolean;
|
|
2546
2634
|
inProgress: boolean;
|
|
2547
2635
|
order: number | null;
|
|
2548
2636
|
worksheetId: string | null;
|
|
@@ -2571,7 +2659,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2571
2659
|
password: string;
|
|
2572
2660
|
verified: boolean;
|
|
2573
2661
|
role: import(".prisma/client").$Enums.UserRole;
|
|
2574
|
-
profileId: string | null;
|
|
2575
2662
|
schoolId: string | null;
|
|
2576
2663
|
};
|
|
2577
2664
|
attachments: {
|
|
@@ -2636,6 +2723,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2636
2723
|
createdAt: Date | null;
|
|
2637
2724
|
modifiedAt: Date | null;
|
|
2638
2725
|
teacherId: string;
|
|
2726
|
+
acceptFiles: boolean;
|
|
2727
|
+
acceptExtendedResponse: boolean;
|
|
2728
|
+
acceptWorksheet: boolean;
|
|
2729
|
+
gradeWithAI: boolean;
|
|
2639
2730
|
inProgress: boolean;
|
|
2640
2731
|
order: number | null;
|
|
2641
2732
|
worksheetId: string | null;
|
|
@@ -2663,7 +2754,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2663
2754
|
password: string;
|
|
2664
2755
|
verified: boolean;
|
|
2665
2756
|
role: import(".prisma/client").$Enums.UserRole;
|
|
2666
|
-
profileId: string | null;
|
|
2667
2757
|
schoolId: string | null;
|
|
2668
2758
|
};
|
|
2669
2759
|
attachments: {
|
|
@@ -2728,6 +2818,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
2728
2818
|
createdAt: Date | null;
|
|
2729
2819
|
modifiedAt: Date | null;
|
|
2730
2820
|
teacherId: string;
|
|
2821
|
+
acceptFiles: boolean;
|
|
2822
|
+
acceptExtendedResponse: boolean;
|
|
2823
|
+
acceptWorksheet: boolean;
|
|
2824
|
+
gradeWithAI: boolean;
|
|
2731
2825
|
inProgress: boolean;
|
|
2732
2826
|
order: number | null;
|
|
2733
2827
|
worksheetId: string | null;
|
|
@@ -3148,7 +3242,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3148
3242
|
password: string;
|
|
3149
3243
|
verified: boolean;
|
|
3150
3244
|
role: import(".prisma/client").$Enums.UserRole;
|
|
3151
|
-
profileId: string | null;
|
|
3152
3245
|
schoolId: string | null;
|
|
3153
3246
|
} | null;
|
|
3154
3247
|
class: {
|
|
@@ -3301,6 +3394,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3301
3394
|
createdAt: Date | null;
|
|
3302
3395
|
modifiedAt: Date | null;
|
|
3303
3396
|
teacherId: string;
|
|
3397
|
+
acceptFiles: boolean;
|
|
3398
|
+
acceptExtendedResponse: boolean;
|
|
3399
|
+
acceptWorksheet: boolean;
|
|
3400
|
+
gradeWithAI: boolean;
|
|
3304
3401
|
inProgress: boolean;
|
|
3305
3402
|
order: number | null;
|
|
3306
3403
|
worksheetId: string | null;
|
|
@@ -3346,6 +3443,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
3346
3443
|
createdAt: Date | null;
|
|
3347
3444
|
modifiedAt: Date | null;
|
|
3348
3445
|
teacherId: string;
|
|
3446
|
+
acceptFiles: boolean;
|
|
3447
|
+
acceptExtendedResponse: boolean;
|
|
3448
|
+
acceptWorksheet: boolean;
|
|
3449
|
+
gradeWithAI: boolean;
|
|
3349
3450
|
inProgress: boolean;
|
|
3350
3451
|
order: number | null;
|
|
3351
3452
|
worksheetId: string | null;
|
|
@@ -5319,7 +5420,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
5319
5420
|
password: string;
|
|
5320
5421
|
verified: boolean;
|
|
5321
5422
|
role: import(".prisma/client").$Enums.UserRole;
|
|
5322
|
-
profileId: string | null;
|
|
5323
5423
|
schoolId: string | null;
|
|
5324
5424
|
};
|
|
5325
5425
|
};
|
|
@@ -5433,6 +5533,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
5433
5533
|
gradeReceived: number | null;
|
|
5434
5534
|
createdAt: Date;
|
|
5435
5535
|
modifiedAt: Date;
|
|
5536
|
+
extendedResponse: string | null;
|
|
5436
5537
|
rubricState: string | null;
|
|
5437
5538
|
teacherComments: string | null;
|
|
5438
5539
|
submittedAt: Date | null;
|
|
@@ -5464,6 +5565,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
5464
5565
|
gradeReceived: number | null;
|
|
5465
5566
|
createdAt: Date;
|
|
5466
5567
|
modifiedAt: Date;
|
|
5568
|
+
extendedResponse: string | null;
|
|
5467
5569
|
rubricState: string | null;
|
|
5468
5570
|
teacherComments: string | null;
|
|
5469
5571
|
submittedAt: Date | null;
|
|
@@ -5648,6 +5750,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
5648
5750
|
createdAt: Date | null;
|
|
5649
5751
|
modifiedAt: Date | null;
|
|
5650
5752
|
teacherId: string;
|
|
5753
|
+
acceptFiles: boolean;
|
|
5754
|
+
acceptExtendedResponse: boolean;
|
|
5755
|
+
acceptWorksheet: boolean;
|
|
5756
|
+
gradeWithAI: boolean;
|
|
5651
5757
|
inProgress: boolean;
|
|
5652
5758
|
order: number | null;
|
|
5653
5759
|
worksheetId: string | null;
|
|
@@ -5687,6 +5793,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
5687
5793
|
createdAt: Date | null;
|
|
5688
5794
|
modifiedAt: Date | null;
|
|
5689
5795
|
teacherId: string;
|
|
5796
|
+
acceptFiles: boolean;
|
|
5797
|
+
acceptExtendedResponse: boolean;
|
|
5798
|
+
acceptWorksheet: boolean;
|
|
5799
|
+
gradeWithAI: boolean;
|
|
5690
5800
|
inProgress: boolean;
|
|
5691
5801
|
order: number | null;
|
|
5692
5802
|
worksheetId: string | null;
|
|
@@ -5726,6 +5836,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
5726
5836
|
createdAt: Date | null;
|
|
5727
5837
|
modifiedAt: Date | null;
|
|
5728
5838
|
teacherId: string;
|
|
5839
|
+
acceptFiles: boolean;
|
|
5840
|
+
acceptExtendedResponse: boolean;
|
|
5841
|
+
acceptWorksheet: boolean;
|
|
5842
|
+
gradeWithAI: boolean;
|
|
5729
5843
|
inProgress: boolean;
|
|
5730
5844
|
order: number | null;
|
|
5731
5845
|
worksheetId: string | null;
|
|
@@ -5756,6 +5870,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
5756
5870
|
createdAt: Date | null;
|
|
5757
5871
|
modifiedAt: Date | null;
|
|
5758
5872
|
teacherId: string;
|
|
5873
|
+
acceptFiles: boolean;
|
|
5874
|
+
acceptExtendedResponse: boolean;
|
|
5875
|
+
acceptWorksheet: boolean;
|
|
5876
|
+
gradeWithAI: boolean;
|
|
5759
5877
|
inProgress: boolean;
|
|
5760
5878
|
order: number | null;
|
|
5761
5879
|
worksheetId: string | null;
|
|
@@ -5790,6 +5908,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
5790
5908
|
createdAt: Date | null;
|
|
5791
5909
|
modifiedAt: Date | null;
|
|
5792
5910
|
teacherId: string;
|
|
5911
|
+
acceptFiles: boolean;
|
|
5912
|
+
acceptExtendedResponse: boolean;
|
|
5913
|
+
acceptWorksheet: boolean;
|
|
5914
|
+
gradeWithAI: boolean;
|
|
5793
5915
|
inProgress: boolean;
|
|
5794
5916
|
order: number | null;
|
|
5795
5917
|
worksheetId: string | null;
|
|
@@ -6266,6 +6388,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6266
6388
|
createdAt: Date | null;
|
|
6267
6389
|
modifiedAt: Date | null;
|
|
6268
6390
|
teacherId: string;
|
|
6391
|
+
acceptFiles: boolean;
|
|
6392
|
+
acceptExtendedResponse: boolean;
|
|
6393
|
+
acceptWorksheet: boolean;
|
|
6394
|
+
gradeWithAI: boolean;
|
|
6269
6395
|
inProgress: boolean;
|
|
6270
6396
|
order: number | null;
|
|
6271
6397
|
worksheetId: string | null;
|
|
@@ -6297,6 +6423,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6297
6423
|
createdAt: Date | null;
|
|
6298
6424
|
modifiedAt: Date | null;
|
|
6299
6425
|
teacherId: string;
|
|
6426
|
+
acceptFiles: boolean;
|
|
6427
|
+
acceptExtendedResponse: boolean;
|
|
6428
|
+
acceptWorksheet: boolean;
|
|
6429
|
+
gradeWithAI: boolean;
|
|
6300
6430
|
inProgress: boolean;
|
|
6301
6431
|
order: number | null;
|
|
6302
6432
|
worksheetId: string | null;
|
|
@@ -6328,6 +6458,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6328
6458
|
createdAt: Date | null;
|
|
6329
6459
|
modifiedAt: Date | null;
|
|
6330
6460
|
teacherId: string;
|
|
6461
|
+
acceptFiles: boolean;
|
|
6462
|
+
acceptExtendedResponse: boolean;
|
|
6463
|
+
acceptWorksheet: boolean;
|
|
6464
|
+
gradeWithAI: boolean;
|
|
6331
6465
|
inProgress: boolean;
|
|
6332
6466
|
order: number | null;
|
|
6333
6467
|
worksheetId: string | null;
|
|
@@ -6352,6 +6486,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6352
6486
|
weight?: number | undefined;
|
|
6353
6487
|
graded?: boolean | undefined;
|
|
6354
6488
|
sectionId?: string | undefined;
|
|
6489
|
+
acceptFiles?: boolean | undefined;
|
|
6490
|
+
acceptExtendedResponse?: boolean | undefined;
|
|
6491
|
+
acceptWorksheet?: boolean | undefined;
|
|
6492
|
+
gradeWithAI?: boolean | undefined;
|
|
6355
6493
|
inProgress?: boolean | undefined;
|
|
6356
6494
|
existingFileIds?: string[] | undefined;
|
|
6357
6495
|
};
|
|
@@ -6401,6 +6539,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6401
6539
|
weight?: number | undefined;
|
|
6402
6540
|
graded?: boolean | undefined;
|
|
6403
6541
|
sectionId?: string | null | undefined;
|
|
6542
|
+
acceptFiles?: boolean | undefined;
|
|
6543
|
+
acceptExtendedResponse?: boolean | undefined;
|
|
6544
|
+
acceptWorksheet?: boolean | undefined;
|
|
6545
|
+
gradeWithAI?: boolean | undefined;
|
|
6404
6546
|
inProgress?: boolean | undefined;
|
|
6405
6547
|
existingFileIds?: string[] | undefined;
|
|
6406
6548
|
removedAttachments?: string[] | undefined;
|
|
@@ -6440,7 +6582,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6440
6582
|
password: string;
|
|
6441
6583
|
verified: boolean;
|
|
6442
6584
|
role: import(".prisma/client").$Enums.UserRole;
|
|
6443
|
-
profileId: string | null;
|
|
6444
6585
|
schoolId: string | null;
|
|
6445
6586
|
};
|
|
6446
6587
|
instructions: string;
|
|
@@ -6567,6 +6708,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6567
6708
|
createdAt: Date | null;
|
|
6568
6709
|
modifiedAt: Date | null;
|
|
6569
6710
|
teacherId: string;
|
|
6711
|
+
acceptFiles: boolean;
|
|
6712
|
+
acceptExtendedResponse: boolean;
|
|
6713
|
+
acceptWorksheet: boolean;
|
|
6714
|
+
gradeWithAI: boolean;
|
|
6570
6715
|
inProgress: boolean;
|
|
6571
6716
|
order: number | null;
|
|
6572
6717
|
worksheetId: string | null;
|
|
@@ -6616,6 +6761,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6616
6761
|
createdAt: Date | null;
|
|
6617
6762
|
modifiedAt: Date | null;
|
|
6618
6763
|
teacherId: string;
|
|
6764
|
+
acceptFiles: boolean;
|
|
6765
|
+
acceptExtendedResponse: boolean;
|
|
6766
|
+
acceptWorksheet: boolean;
|
|
6767
|
+
gradeWithAI: boolean;
|
|
6619
6768
|
inProgress: boolean;
|
|
6620
6769
|
order: number | null;
|
|
6621
6770
|
worksheetId: string | null;
|
|
@@ -6687,6 +6836,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6687
6836
|
gradeReceived: number | null;
|
|
6688
6837
|
createdAt: Date;
|
|
6689
6838
|
modifiedAt: Date;
|
|
6839
|
+
extendedResponse: string | null;
|
|
6690
6840
|
rubricState: string | null;
|
|
6691
6841
|
teacherComments: string | null;
|
|
6692
6842
|
submittedAt: Date | null;
|
|
@@ -6730,6 +6880,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6730
6880
|
createdAt: Date | null;
|
|
6731
6881
|
modifiedAt: Date | null;
|
|
6732
6882
|
teacherId: string;
|
|
6883
|
+
acceptFiles: boolean;
|
|
6884
|
+
acceptExtendedResponse: boolean;
|
|
6885
|
+
acceptWorksheet: boolean;
|
|
6886
|
+
gradeWithAI: boolean;
|
|
6733
6887
|
inProgress: boolean;
|
|
6734
6888
|
order: number | null;
|
|
6735
6889
|
worksheetId: string | null;
|
|
@@ -6812,6 +6966,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6812
6966
|
gradeReceived: number | null;
|
|
6813
6967
|
createdAt: Date;
|
|
6814
6968
|
modifiedAt: Date;
|
|
6969
|
+
extendedResponse: string | null;
|
|
6815
6970
|
rubricState: string | null;
|
|
6816
6971
|
teacherComments: string | null;
|
|
6817
6972
|
submittedAt: Date | null;
|
|
@@ -6864,6 +7019,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6864
7019
|
createdAt: Date | null;
|
|
6865
7020
|
modifiedAt: Date | null;
|
|
6866
7021
|
teacherId: string;
|
|
7022
|
+
acceptFiles: boolean;
|
|
7023
|
+
acceptExtendedResponse: boolean;
|
|
7024
|
+
acceptWorksheet: boolean;
|
|
7025
|
+
gradeWithAI: boolean;
|
|
6867
7026
|
inProgress: boolean;
|
|
6868
7027
|
order: number | null;
|
|
6869
7028
|
worksheetId: string | null;
|
|
@@ -6946,6 +7105,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
6946
7105
|
gradeReceived: number | null;
|
|
6947
7106
|
createdAt: Date;
|
|
6948
7107
|
modifiedAt: Date;
|
|
7108
|
+
extendedResponse: string | null;
|
|
6949
7109
|
rubricState: string | null;
|
|
6950
7110
|
teacherComments: string | null;
|
|
6951
7111
|
submittedAt: Date | null;
|
|
@@ -7006,6 +7166,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7006
7166
|
createdAt: Date | null;
|
|
7007
7167
|
modifiedAt: Date | null;
|
|
7008
7168
|
teacherId: string;
|
|
7169
|
+
acceptFiles: boolean;
|
|
7170
|
+
acceptExtendedResponse: boolean;
|
|
7171
|
+
acceptWorksheet: boolean;
|
|
7172
|
+
gradeWithAI: boolean;
|
|
7009
7173
|
inProgress: boolean;
|
|
7010
7174
|
order: number | null;
|
|
7011
7175
|
worksheetId: string | null;
|
|
@@ -7049,6 +7213,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7049
7213
|
gradeReceived: number | null;
|
|
7050
7214
|
createdAt: Date;
|
|
7051
7215
|
modifiedAt: Date;
|
|
7216
|
+
extendedResponse: string | null;
|
|
7052
7217
|
rubricState: string | null;
|
|
7053
7218
|
teacherComments: string | null;
|
|
7054
7219
|
submittedAt: Date | null;
|
|
@@ -7101,6 +7266,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7101
7266
|
createdAt: Date | null;
|
|
7102
7267
|
modifiedAt: Date | null;
|
|
7103
7268
|
teacherId: string;
|
|
7269
|
+
acceptFiles: boolean;
|
|
7270
|
+
acceptExtendedResponse: boolean;
|
|
7271
|
+
acceptWorksheet: boolean;
|
|
7272
|
+
gradeWithAI: boolean;
|
|
7104
7273
|
inProgress: boolean;
|
|
7105
7274
|
order: number | null;
|
|
7106
7275
|
worksheetId: string | null;
|
|
@@ -7177,6 +7346,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7177
7346
|
gradeReceived: number | null;
|
|
7178
7347
|
createdAt: Date;
|
|
7179
7348
|
modifiedAt: Date;
|
|
7349
|
+
extendedResponse: string | null;
|
|
7180
7350
|
rubricState: string | null;
|
|
7181
7351
|
teacherComments: string | null;
|
|
7182
7352
|
submittedAt: Date | null;
|
|
@@ -7245,6 +7415,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7245
7415
|
createdAt: Date | null;
|
|
7246
7416
|
modifiedAt: Date | null;
|
|
7247
7417
|
teacherId: string;
|
|
7418
|
+
acceptFiles: boolean;
|
|
7419
|
+
acceptExtendedResponse: boolean;
|
|
7420
|
+
acceptWorksheet: boolean;
|
|
7421
|
+
gradeWithAI: boolean;
|
|
7248
7422
|
inProgress: boolean;
|
|
7249
7423
|
order: number | null;
|
|
7250
7424
|
worksheetId: string | null;
|
|
@@ -7293,6 +7467,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7293
7467
|
gradeReceived: number | null;
|
|
7294
7468
|
createdAt: Date;
|
|
7295
7469
|
modifiedAt: Date;
|
|
7470
|
+
extendedResponse: string | null;
|
|
7296
7471
|
rubricState: string | null;
|
|
7297
7472
|
teacherComments: string | null;
|
|
7298
7473
|
submittedAt: Date | null;
|
|
@@ -7347,6 +7522,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7347
7522
|
createdAt: Date | null;
|
|
7348
7523
|
modifiedAt: Date | null;
|
|
7349
7524
|
teacherId: string;
|
|
7525
|
+
acceptFiles: boolean;
|
|
7526
|
+
acceptExtendedResponse: boolean;
|
|
7527
|
+
acceptWorksheet: boolean;
|
|
7528
|
+
gradeWithAI: boolean;
|
|
7350
7529
|
inProgress: boolean;
|
|
7351
7530
|
order: number | null;
|
|
7352
7531
|
worksheetId: string | null;
|
|
@@ -7399,6 +7578,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7399
7578
|
createdAt: Date | null;
|
|
7400
7579
|
modifiedAt: Date | null;
|
|
7401
7580
|
teacherId: string;
|
|
7581
|
+
acceptFiles: boolean;
|
|
7582
|
+
acceptExtendedResponse: boolean;
|
|
7583
|
+
acceptWorksheet: boolean;
|
|
7584
|
+
gradeWithAI: boolean;
|
|
7402
7585
|
inProgress: boolean;
|
|
7403
7586
|
order: number | null;
|
|
7404
7587
|
worksheetId: string | null;
|
|
@@ -7462,7 +7645,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7462
7645
|
password: string;
|
|
7463
7646
|
verified: boolean;
|
|
7464
7647
|
role: import(".prisma/client").$Enums.UserRole;
|
|
7465
|
-
profileId: string | null;
|
|
7466
7648
|
schoolId: string | null;
|
|
7467
7649
|
};
|
|
7468
7650
|
attachments: {
|
|
@@ -7527,6 +7709,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7527
7709
|
createdAt: Date | null;
|
|
7528
7710
|
modifiedAt: Date | null;
|
|
7529
7711
|
teacherId: string;
|
|
7712
|
+
acceptFiles: boolean;
|
|
7713
|
+
acceptExtendedResponse: boolean;
|
|
7714
|
+
acceptWorksheet: boolean;
|
|
7715
|
+
gradeWithAI: boolean;
|
|
7530
7716
|
inProgress: boolean;
|
|
7531
7717
|
order: number | null;
|
|
7532
7718
|
worksheetId: string | null;
|
|
@@ -7554,7 +7740,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7554
7740
|
password: string;
|
|
7555
7741
|
verified: boolean;
|
|
7556
7742
|
role: import(".prisma/client").$Enums.UserRole;
|
|
7557
|
-
profileId: string | null;
|
|
7558
7743
|
schoolId: string | null;
|
|
7559
7744
|
};
|
|
7560
7745
|
attachments: {
|
|
@@ -7619,6 +7804,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7619
7804
|
createdAt: Date | null;
|
|
7620
7805
|
modifiedAt: Date | null;
|
|
7621
7806
|
teacherId: string;
|
|
7807
|
+
acceptFiles: boolean;
|
|
7808
|
+
acceptExtendedResponse: boolean;
|
|
7809
|
+
acceptWorksheet: boolean;
|
|
7810
|
+
gradeWithAI: boolean;
|
|
7622
7811
|
inProgress: boolean;
|
|
7623
7812
|
order: number | null;
|
|
7624
7813
|
worksheetId: string | null;
|
|
@@ -7647,7 +7836,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7647
7836
|
password: string;
|
|
7648
7837
|
verified: boolean;
|
|
7649
7838
|
role: import(".prisma/client").$Enums.UserRole;
|
|
7650
|
-
profileId: string | null;
|
|
7651
7839
|
schoolId: string | null;
|
|
7652
7840
|
};
|
|
7653
7841
|
attachments: {
|
|
@@ -7712,6 +7900,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7712
7900
|
createdAt: Date | null;
|
|
7713
7901
|
modifiedAt: Date | null;
|
|
7714
7902
|
teacherId: string;
|
|
7903
|
+
acceptFiles: boolean;
|
|
7904
|
+
acceptExtendedResponse: boolean;
|
|
7905
|
+
acceptWorksheet: boolean;
|
|
7906
|
+
gradeWithAI: boolean;
|
|
7715
7907
|
inProgress: boolean;
|
|
7716
7908
|
order: number | null;
|
|
7717
7909
|
worksheetId: string | null;
|
|
@@ -7739,7 +7931,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7739
7931
|
password: string;
|
|
7740
7932
|
verified: boolean;
|
|
7741
7933
|
role: import(".prisma/client").$Enums.UserRole;
|
|
7742
|
-
profileId: string | null;
|
|
7743
7934
|
schoolId: string | null;
|
|
7744
7935
|
};
|
|
7745
7936
|
attachments: {
|
|
@@ -7804,6 +7995,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
7804
7995
|
createdAt: Date | null;
|
|
7805
7996
|
modifiedAt: Date | null;
|
|
7806
7997
|
teacherId: string;
|
|
7998
|
+
acceptFiles: boolean;
|
|
7999
|
+
acceptExtendedResponse: boolean;
|
|
8000
|
+
acceptWorksheet: boolean;
|
|
8001
|
+
gradeWithAI: boolean;
|
|
7807
8002
|
inProgress: boolean;
|
|
7808
8003
|
order: number | null;
|
|
7809
8004
|
worksheetId: string | null;
|
|
@@ -8224,7 +8419,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
8224
8419
|
password: string;
|
|
8225
8420
|
verified: boolean;
|
|
8226
8421
|
role: import(".prisma/client").$Enums.UserRole;
|
|
8227
|
-
profileId: string | null;
|
|
8228
8422
|
schoolId: string | null;
|
|
8229
8423
|
} | null;
|
|
8230
8424
|
class: {
|
|
@@ -8377,6 +8571,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
8377
8571
|
createdAt: Date | null;
|
|
8378
8572
|
modifiedAt: Date | null;
|
|
8379
8573
|
teacherId: string;
|
|
8574
|
+
acceptFiles: boolean;
|
|
8575
|
+
acceptExtendedResponse: boolean;
|
|
8576
|
+
acceptWorksheet: boolean;
|
|
8577
|
+
gradeWithAI: boolean;
|
|
8380
8578
|
inProgress: boolean;
|
|
8381
8579
|
order: number | null;
|
|
8382
8580
|
worksheetId: string | null;
|
|
@@ -8422,6 +8620,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
|
|
|
8422
8620
|
createdAt: Date | null;
|
|
8423
8621
|
modifiedAt: Date | null;
|
|
8424
8622
|
teacherId: string;
|
|
8623
|
+
acceptFiles: boolean;
|
|
8624
|
+
acceptExtendedResponse: boolean;
|
|
8625
|
+
acceptWorksheet: boolean;
|
|
8626
|
+
gradeWithAI: boolean;
|
|
8425
8627
|
inProgress: boolean;
|
|
8426
8628
|
order: number | null;
|
|
8427
8629
|
worksheetId: string | null;
|