@studious-lms/server 1.2.30 → 1.2.32

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.
@@ -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,8 +1309,15 @@ 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;
1318
+ aiPolicyLevel?: number | undefined;
1319
+ worksheetIds?: string[] | undefined;
1320
+ studentIds?: string[] | undefined;
1281
1321
  };
1282
1322
  output: {
1283
1323
  type: import(".prisma/client").$Enums.AssignmentType;
@@ -1325,9 +1365,16 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1325
1365
  weight?: number | undefined;
1326
1366
  graded?: boolean | undefined;
1327
1367
  sectionId?: string | null | undefined;
1368
+ acceptFiles?: boolean | undefined;
1369
+ acceptExtendedResponse?: boolean | undefined;
1370
+ acceptWorksheet?: boolean | undefined;
1371
+ gradeWithAI?: boolean | undefined;
1328
1372
  inProgress?: boolean | undefined;
1329
1373
  existingFileIds?: string[] | undefined;
1330
1374
  removedAttachments?: string[] | undefined;
1375
+ aiPolicyLevel?: number | undefined;
1376
+ worksheetIds?: string[] | undefined;
1377
+ studentIds?: string[] | undefined;
1331
1378
  };
1332
1379
  output: {
1333
1380
  type: import(".prisma/client").$Enums.AssignmentType;
@@ -1364,7 +1411,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1364
1411
  password: string;
1365
1412
  verified: boolean;
1366
1413
  role: import(".prisma/client").$Enums.UserRole;
1367
- profileId: string | null;
1368
1414
  schoolId: string | null;
1369
1415
  };
1370
1416
  instructions: string;
@@ -1491,6 +1537,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1491
1537
  createdAt: Date | null;
1492
1538
  modifiedAt: Date | null;
1493
1539
  teacherId: string;
1540
+ acceptFiles: boolean;
1541
+ acceptExtendedResponse: boolean;
1542
+ acceptWorksheet: boolean;
1543
+ gradeWithAI: boolean;
1494
1544
  inProgress: boolean;
1495
1545
  order: number | null;
1496
1546
  worksheetId: string | null;
@@ -1540,6 +1590,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1540
1590
  createdAt: Date | null;
1541
1591
  modifiedAt: Date | null;
1542
1592
  teacherId: string;
1593
+ acceptFiles: boolean;
1594
+ acceptExtendedResponse: boolean;
1595
+ acceptWorksheet: boolean;
1596
+ gradeWithAI: boolean;
1543
1597
  inProgress: boolean;
1544
1598
  order: number | null;
1545
1599
  worksheetId: string | null;
@@ -1611,6 +1665,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1611
1665
  gradeReceived: number | null;
1612
1666
  createdAt: Date;
1613
1667
  modifiedAt: Date;
1668
+ extendedResponse: string | null;
1614
1669
  rubricState: string | null;
1615
1670
  teacherComments: string | null;
1616
1671
  submittedAt: Date | null;
@@ -1654,6 +1709,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1654
1709
  createdAt: Date | null;
1655
1710
  modifiedAt: Date | null;
1656
1711
  teacherId: string;
1712
+ acceptFiles: boolean;
1713
+ acceptExtendedResponse: boolean;
1714
+ acceptWorksheet: boolean;
1715
+ gradeWithAI: boolean;
1657
1716
  inProgress: boolean;
1658
1717
  order: number | null;
1659
1718
  worksheetId: string | null;
@@ -1736,6 +1795,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1736
1795
  gradeReceived: number | null;
1737
1796
  createdAt: Date;
1738
1797
  modifiedAt: Date;
1798
+ extendedResponse: string | null;
1739
1799
  rubricState: string | null;
1740
1800
  teacherComments: string | null;
1741
1801
  submittedAt: Date | null;
@@ -1788,6 +1848,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1788
1848
  createdAt: Date | null;
1789
1849
  modifiedAt: Date | null;
1790
1850
  teacherId: string;
1851
+ acceptFiles: boolean;
1852
+ acceptExtendedResponse: boolean;
1853
+ acceptWorksheet: boolean;
1854
+ gradeWithAI: boolean;
1791
1855
  inProgress: boolean;
1792
1856
  order: number | null;
1793
1857
  worksheetId: string | null;
@@ -1870,6 +1934,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1870
1934
  gradeReceived: number | null;
1871
1935
  createdAt: Date;
1872
1936
  modifiedAt: Date;
1937
+ extendedResponse: string | null;
1873
1938
  rubricState: string | null;
1874
1939
  teacherComments: string | null;
1875
1940
  submittedAt: Date | null;
@@ -1930,6 +1995,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1930
1995
  createdAt: Date | null;
1931
1996
  modifiedAt: Date | null;
1932
1997
  teacherId: string;
1998
+ acceptFiles: boolean;
1999
+ acceptExtendedResponse: boolean;
2000
+ acceptWorksheet: boolean;
2001
+ gradeWithAI: boolean;
1933
2002
  inProgress: boolean;
1934
2003
  order: number | null;
1935
2004
  worksheetId: string | null;
@@ -1973,6 +2042,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1973
2042
  gradeReceived: number | null;
1974
2043
  createdAt: Date;
1975
2044
  modifiedAt: Date;
2045
+ extendedResponse: string | null;
1976
2046
  rubricState: string | null;
1977
2047
  teacherComments: string | null;
1978
2048
  submittedAt: Date | null;
@@ -2025,6 +2095,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2025
2095
  createdAt: Date | null;
2026
2096
  modifiedAt: Date | null;
2027
2097
  teacherId: string;
2098
+ acceptFiles: boolean;
2099
+ acceptExtendedResponse: boolean;
2100
+ acceptWorksheet: boolean;
2101
+ gradeWithAI: boolean;
2028
2102
  inProgress: boolean;
2029
2103
  order: number | null;
2030
2104
  worksheetId: string | null;
@@ -2101,6 +2175,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2101
2175
  gradeReceived: number | null;
2102
2176
  createdAt: Date;
2103
2177
  modifiedAt: Date;
2178
+ extendedResponse: string | null;
2104
2179
  rubricState: string | null;
2105
2180
  teacherComments: string | null;
2106
2181
  submittedAt: Date | null;
@@ -2169,6 +2244,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2169
2244
  createdAt: Date | null;
2170
2245
  modifiedAt: Date | null;
2171
2246
  teacherId: string;
2247
+ acceptFiles: boolean;
2248
+ acceptExtendedResponse: boolean;
2249
+ acceptWorksheet: boolean;
2250
+ gradeWithAI: boolean;
2172
2251
  inProgress: boolean;
2173
2252
  order: number | null;
2174
2253
  worksheetId: string | null;
@@ -2217,6 +2296,7 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2217
2296
  gradeReceived: number | null;
2218
2297
  createdAt: Date;
2219
2298
  modifiedAt: Date;
2299
+ extendedResponse: string | null;
2220
2300
  rubricState: string | null;
2221
2301
  teacherComments: string | null;
2222
2302
  submittedAt: Date | null;
@@ -2271,6 +2351,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2271
2351
  createdAt: Date | null;
2272
2352
  modifiedAt: Date | null;
2273
2353
  teacherId: string;
2354
+ acceptFiles: boolean;
2355
+ acceptExtendedResponse: boolean;
2356
+ acceptWorksheet: boolean;
2357
+ gradeWithAI: boolean;
2274
2358
  inProgress: boolean;
2275
2359
  order: number | null;
2276
2360
  worksheetId: string | null;
@@ -2323,6 +2407,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2323
2407
  createdAt: Date | null;
2324
2408
  modifiedAt: Date | null;
2325
2409
  teacherId: string;
2410
+ acceptFiles: boolean;
2411
+ acceptExtendedResponse: boolean;
2412
+ acceptWorksheet: boolean;
2413
+ gradeWithAI: boolean;
2326
2414
  inProgress: boolean;
2327
2415
  order: number | null;
2328
2416
  worksheetId: string | null;
@@ -2386,7 +2474,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2386
2474
  password: string;
2387
2475
  verified: boolean;
2388
2476
  role: import(".prisma/client").$Enums.UserRole;
2389
- profileId: string | null;
2390
2477
  schoolId: string | null;
2391
2478
  };
2392
2479
  attachments: {
@@ -2451,6 +2538,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2451
2538
  createdAt: Date | null;
2452
2539
  modifiedAt: Date | null;
2453
2540
  teacherId: string;
2541
+ acceptFiles: boolean;
2542
+ acceptExtendedResponse: boolean;
2543
+ acceptWorksheet: boolean;
2544
+ gradeWithAI: boolean;
2454
2545
  inProgress: boolean;
2455
2546
  order: number | null;
2456
2547
  worksheetId: string | null;
@@ -2478,7 +2569,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2478
2569
  password: string;
2479
2570
  verified: boolean;
2480
2571
  role: import(".prisma/client").$Enums.UserRole;
2481
- profileId: string | null;
2482
2572
  schoolId: string | null;
2483
2573
  };
2484
2574
  attachments: {
@@ -2543,6 +2633,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2543
2633
  createdAt: Date | null;
2544
2634
  modifiedAt: Date | null;
2545
2635
  teacherId: string;
2636
+ acceptFiles: boolean;
2637
+ acceptExtendedResponse: boolean;
2638
+ acceptWorksheet: boolean;
2639
+ gradeWithAI: boolean;
2546
2640
  inProgress: boolean;
2547
2641
  order: number | null;
2548
2642
  worksheetId: string | null;
@@ -2571,7 +2665,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2571
2665
  password: string;
2572
2666
  verified: boolean;
2573
2667
  role: import(".prisma/client").$Enums.UserRole;
2574
- profileId: string | null;
2575
2668
  schoolId: string | null;
2576
2669
  };
2577
2670
  attachments: {
@@ -2636,6 +2729,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2636
2729
  createdAt: Date | null;
2637
2730
  modifiedAt: Date | null;
2638
2731
  teacherId: string;
2732
+ acceptFiles: boolean;
2733
+ acceptExtendedResponse: boolean;
2734
+ acceptWorksheet: boolean;
2735
+ gradeWithAI: boolean;
2639
2736
  inProgress: boolean;
2640
2737
  order: number | null;
2641
2738
  worksheetId: string | null;
@@ -2663,7 +2760,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2663
2760
  password: string;
2664
2761
  verified: boolean;
2665
2762
  role: import(".prisma/client").$Enums.UserRole;
2666
- profileId: string | null;
2667
2763
  schoolId: string | null;
2668
2764
  };
2669
2765
  attachments: {
@@ -2728,6 +2824,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2728
2824
  createdAt: Date | null;
2729
2825
  modifiedAt: Date | null;
2730
2826
  teacherId: string;
2827
+ acceptFiles: boolean;
2828
+ acceptExtendedResponse: boolean;
2829
+ acceptWorksheet: boolean;
2830
+ gradeWithAI: boolean;
2731
2831
  inProgress: boolean;
2732
2832
  order: number | null;
2733
2833
  worksheetId: string | null;
@@ -3148,7 +3248,6 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
3148
3248
  password: string;
3149
3249
  verified: boolean;
3150
3250
  role: import(".prisma/client").$Enums.UserRole;
3151
- profileId: string | null;
3152
3251
  schoolId: string | null;
3153
3252
  } | null;
3154
3253
  class: {
@@ -3301,6 +3400,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
3301
3400
  createdAt: Date | null;
3302
3401
  modifiedAt: Date | null;
3303
3402
  teacherId: string;
3403
+ acceptFiles: boolean;
3404
+ acceptExtendedResponse: boolean;
3405
+ acceptWorksheet: boolean;
3406
+ gradeWithAI: boolean;
3304
3407
  inProgress: boolean;
3305
3408
  order: number | null;
3306
3409
  worksheetId: string | null;
@@ -3346,6 +3449,10 @@ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
3346
3449
  createdAt: Date | null;
3347
3450
  modifiedAt: Date | null;
3348
3451
  teacherId: string;
3452
+ acceptFiles: boolean;
3453
+ acceptExtendedResponse: boolean;
3454
+ acceptWorksheet: boolean;
3455
+ gradeWithAI: boolean;
3349
3456
  inProgress: boolean;
3350
3457
  order: number | null;
3351
3458
  worksheetId: string | null;
@@ -5319,7 +5426,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
5319
5426
  password: string;
5320
5427
  verified: boolean;
5321
5428
  role: import(".prisma/client").$Enums.UserRole;
5322
- profileId: string | null;
5323
5429
  schoolId: string | null;
5324
5430
  };
5325
5431
  };
@@ -5433,6 +5539,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
5433
5539
  gradeReceived: number | null;
5434
5540
  createdAt: Date;
5435
5541
  modifiedAt: Date;
5542
+ extendedResponse: string | null;
5436
5543
  rubricState: string | null;
5437
5544
  teacherComments: string | null;
5438
5545
  submittedAt: Date | null;
@@ -5464,6 +5571,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
5464
5571
  gradeReceived: number | null;
5465
5572
  createdAt: Date;
5466
5573
  modifiedAt: Date;
5574
+ extendedResponse: string | null;
5467
5575
  rubricState: string | null;
5468
5576
  teacherComments: string | null;
5469
5577
  submittedAt: Date | null;
@@ -5648,6 +5756,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
5648
5756
  createdAt: Date | null;
5649
5757
  modifiedAt: Date | null;
5650
5758
  teacherId: string;
5759
+ acceptFiles: boolean;
5760
+ acceptExtendedResponse: boolean;
5761
+ acceptWorksheet: boolean;
5762
+ gradeWithAI: boolean;
5651
5763
  inProgress: boolean;
5652
5764
  order: number | null;
5653
5765
  worksheetId: string | null;
@@ -5687,6 +5799,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
5687
5799
  createdAt: Date | null;
5688
5800
  modifiedAt: Date | null;
5689
5801
  teacherId: string;
5802
+ acceptFiles: boolean;
5803
+ acceptExtendedResponse: boolean;
5804
+ acceptWorksheet: boolean;
5805
+ gradeWithAI: boolean;
5690
5806
  inProgress: boolean;
5691
5807
  order: number | null;
5692
5808
  worksheetId: string | null;
@@ -5726,6 +5842,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
5726
5842
  createdAt: Date | null;
5727
5843
  modifiedAt: Date | null;
5728
5844
  teacherId: string;
5845
+ acceptFiles: boolean;
5846
+ acceptExtendedResponse: boolean;
5847
+ acceptWorksheet: boolean;
5848
+ gradeWithAI: boolean;
5729
5849
  inProgress: boolean;
5730
5850
  order: number | null;
5731
5851
  worksheetId: string | null;
@@ -5756,6 +5876,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
5756
5876
  createdAt: Date | null;
5757
5877
  modifiedAt: Date | null;
5758
5878
  teacherId: string;
5879
+ acceptFiles: boolean;
5880
+ acceptExtendedResponse: boolean;
5881
+ acceptWorksheet: boolean;
5882
+ gradeWithAI: boolean;
5759
5883
  inProgress: boolean;
5760
5884
  order: number | null;
5761
5885
  worksheetId: string | null;
@@ -5790,6 +5914,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
5790
5914
  createdAt: Date | null;
5791
5915
  modifiedAt: Date | null;
5792
5916
  teacherId: string;
5917
+ acceptFiles: boolean;
5918
+ acceptExtendedResponse: boolean;
5919
+ acceptWorksheet: boolean;
5920
+ gradeWithAI: boolean;
5793
5921
  inProgress: boolean;
5794
5922
  order: number | null;
5795
5923
  worksheetId: string | null;
@@ -6266,6 +6394,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6266
6394
  createdAt: Date | null;
6267
6395
  modifiedAt: Date | null;
6268
6396
  teacherId: string;
6397
+ acceptFiles: boolean;
6398
+ acceptExtendedResponse: boolean;
6399
+ acceptWorksheet: boolean;
6400
+ gradeWithAI: boolean;
6269
6401
  inProgress: boolean;
6270
6402
  order: number | null;
6271
6403
  worksheetId: string | null;
@@ -6297,6 +6429,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6297
6429
  createdAt: Date | null;
6298
6430
  modifiedAt: Date | null;
6299
6431
  teacherId: string;
6432
+ acceptFiles: boolean;
6433
+ acceptExtendedResponse: boolean;
6434
+ acceptWorksheet: boolean;
6435
+ gradeWithAI: boolean;
6300
6436
  inProgress: boolean;
6301
6437
  order: number | null;
6302
6438
  worksheetId: string | null;
@@ -6328,6 +6464,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6328
6464
  createdAt: Date | null;
6329
6465
  modifiedAt: Date | null;
6330
6466
  teacherId: string;
6467
+ acceptFiles: boolean;
6468
+ acceptExtendedResponse: boolean;
6469
+ acceptWorksheet: boolean;
6470
+ gradeWithAI: boolean;
6331
6471
  inProgress: boolean;
6332
6472
  order: number | null;
6333
6473
  worksheetId: string | null;
@@ -6352,8 +6492,15 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6352
6492
  weight?: number | undefined;
6353
6493
  graded?: boolean | undefined;
6354
6494
  sectionId?: string | undefined;
6495
+ acceptFiles?: boolean | undefined;
6496
+ acceptExtendedResponse?: boolean | undefined;
6497
+ acceptWorksheet?: boolean | undefined;
6498
+ gradeWithAI?: boolean | undefined;
6355
6499
  inProgress?: boolean | undefined;
6356
6500
  existingFileIds?: string[] | undefined;
6501
+ aiPolicyLevel?: number | undefined;
6502
+ worksheetIds?: string[] | undefined;
6503
+ studentIds?: string[] | undefined;
6357
6504
  };
6358
6505
  output: {
6359
6506
  type: import(".prisma/client").$Enums.AssignmentType;
@@ -6401,9 +6548,16 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6401
6548
  weight?: number | undefined;
6402
6549
  graded?: boolean | undefined;
6403
6550
  sectionId?: string | null | undefined;
6551
+ acceptFiles?: boolean | undefined;
6552
+ acceptExtendedResponse?: boolean | undefined;
6553
+ acceptWorksheet?: boolean | undefined;
6554
+ gradeWithAI?: boolean | undefined;
6404
6555
  inProgress?: boolean | undefined;
6405
6556
  existingFileIds?: string[] | undefined;
6406
6557
  removedAttachments?: string[] | undefined;
6558
+ aiPolicyLevel?: number | undefined;
6559
+ worksheetIds?: string[] | undefined;
6560
+ studentIds?: string[] | undefined;
6407
6561
  };
6408
6562
  output: {
6409
6563
  type: import(".prisma/client").$Enums.AssignmentType;
@@ -6440,7 +6594,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6440
6594
  password: string;
6441
6595
  verified: boolean;
6442
6596
  role: import(".prisma/client").$Enums.UserRole;
6443
- profileId: string | null;
6444
6597
  schoolId: string | null;
6445
6598
  };
6446
6599
  instructions: string;
@@ -6567,6 +6720,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6567
6720
  createdAt: Date | null;
6568
6721
  modifiedAt: Date | null;
6569
6722
  teacherId: string;
6723
+ acceptFiles: boolean;
6724
+ acceptExtendedResponse: boolean;
6725
+ acceptWorksheet: boolean;
6726
+ gradeWithAI: boolean;
6570
6727
  inProgress: boolean;
6571
6728
  order: number | null;
6572
6729
  worksheetId: string | null;
@@ -6616,6 +6773,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6616
6773
  createdAt: Date | null;
6617
6774
  modifiedAt: Date | null;
6618
6775
  teacherId: string;
6776
+ acceptFiles: boolean;
6777
+ acceptExtendedResponse: boolean;
6778
+ acceptWorksheet: boolean;
6779
+ gradeWithAI: boolean;
6619
6780
  inProgress: boolean;
6620
6781
  order: number | null;
6621
6782
  worksheetId: string | null;
@@ -6687,6 +6848,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6687
6848
  gradeReceived: number | null;
6688
6849
  createdAt: Date;
6689
6850
  modifiedAt: Date;
6851
+ extendedResponse: string | null;
6690
6852
  rubricState: string | null;
6691
6853
  teacherComments: string | null;
6692
6854
  submittedAt: Date | null;
@@ -6730,6 +6892,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6730
6892
  createdAt: Date | null;
6731
6893
  modifiedAt: Date | null;
6732
6894
  teacherId: string;
6895
+ acceptFiles: boolean;
6896
+ acceptExtendedResponse: boolean;
6897
+ acceptWorksheet: boolean;
6898
+ gradeWithAI: boolean;
6733
6899
  inProgress: boolean;
6734
6900
  order: number | null;
6735
6901
  worksheetId: string | null;
@@ -6812,6 +6978,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6812
6978
  gradeReceived: number | null;
6813
6979
  createdAt: Date;
6814
6980
  modifiedAt: Date;
6981
+ extendedResponse: string | null;
6815
6982
  rubricState: string | null;
6816
6983
  teacherComments: string | null;
6817
6984
  submittedAt: Date | null;
@@ -6864,6 +7031,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6864
7031
  createdAt: Date | null;
6865
7032
  modifiedAt: Date | null;
6866
7033
  teacherId: string;
7034
+ acceptFiles: boolean;
7035
+ acceptExtendedResponse: boolean;
7036
+ acceptWorksheet: boolean;
7037
+ gradeWithAI: boolean;
6867
7038
  inProgress: boolean;
6868
7039
  order: number | null;
6869
7040
  worksheetId: string | null;
@@ -6946,6 +7117,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
6946
7117
  gradeReceived: number | null;
6947
7118
  createdAt: Date;
6948
7119
  modifiedAt: Date;
7120
+ extendedResponse: string | null;
6949
7121
  rubricState: string | null;
6950
7122
  teacherComments: string | null;
6951
7123
  submittedAt: Date | null;
@@ -7006,6 +7178,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7006
7178
  createdAt: Date | null;
7007
7179
  modifiedAt: Date | null;
7008
7180
  teacherId: string;
7181
+ acceptFiles: boolean;
7182
+ acceptExtendedResponse: boolean;
7183
+ acceptWorksheet: boolean;
7184
+ gradeWithAI: boolean;
7009
7185
  inProgress: boolean;
7010
7186
  order: number | null;
7011
7187
  worksheetId: string | null;
@@ -7049,6 +7225,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7049
7225
  gradeReceived: number | null;
7050
7226
  createdAt: Date;
7051
7227
  modifiedAt: Date;
7228
+ extendedResponse: string | null;
7052
7229
  rubricState: string | null;
7053
7230
  teacherComments: string | null;
7054
7231
  submittedAt: Date | null;
@@ -7101,6 +7278,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7101
7278
  createdAt: Date | null;
7102
7279
  modifiedAt: Date | null;
7103
7280
  teacherId: string;
7281
+ acceptFiles: boolean;
7282
+ acceptExtendedResponse: boolean;
7283
+ acceptWorksheet: boolean;
7284
+ gradeWithAI: boolean;
7104
7285
  inProgress: boolean;
7105
7286
  order: number | null;
7106
7287
  worksheetId: string | null;
@@ -7177,6 +7358,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7177
7358
  gradeReceived: number | null;
7178
7359
  createdAt: Date;
7179
7360
  modifiedAt: Date;
7361
+ extendedResponse: string | null;
7180
7362
  rubricState: string | null;
7181
7363
  teacherComments: string | null;
7182
7364
  submittedAt: Date | null;
@@ -7245,6 +7427,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7245
7427
  createdAt: Date | null;
7246
7428
  modifiedAt: Date | null;
7247
7429
  teacherId: string;
7430
+ acceptFiles: boolean;
7431
+ acceptExtendedResponse: boolean;
7432
+ acceptWorksheet: boolean;
7433
+ gradeWithAI: boolean;
7248
7434
  inProgress: boolean;
7249
7435
  order: number | null;
7250
7436
  worksheetId: string | null;
@@ -7293,6 +7479,7 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7293
7479
  gradeReceived: number | null;
7294
7480
  createdAt: Date;
7295
7481
  modifiedAt: Date;
7482
+ extendedResponse: string | null;
7296
7483
  rubricState: string | null;
7297
7484
  teacherComments: string | null;
7298
7485
  submittedAt: Date | null;
@@ -7347,6 +7534,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7347
7534
  createdAt: Date | null;
7348
7535
  modifiedAt: Date | null;
7349
7536
  teacherId: string;
7537
+ acceptFiles: boolean;
7538
+ acceptExtendedResponse: boolean;
7539
+ acceptWorksheet: boolean;
7540
+ gradeWithAI: boolean;
7350
7541
  inProgress: boolean;
7351
7542
  order: number | null;
7352
7543
  worksheetId: string | null;
@@ -7399,6 +7590,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7399
7590
  createdAt: Date | null;
7400
7591
  modifiedAt: Date | null;
7401
7592
  teacherId: string;
7593
+ acceptFiles: boolean;
7594
+ acceptExtendedResponse: boolean;
7595
+ acceptWorksheet: boolean;
7596
+ gradeWithAI: boolean;
7402
7597
  inProgress: boolean;
7403
7598
  order: number | null;
7404
7599
  worksheetId: string | null;
@@ -7462,7 +7657,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7462
7657
  password: string;
7463
7658
  verified: boolean;
7464
7659
  role: import(".prisma/client").$Enums.UserRole;
7465
- profileId: string | null;
7466
7660
  schoolId: string | null;
7467
7661
  };
7468
7662
  attachments: {
@@ -7527,6 +7721,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7527
7721
  createdAt: Date | null;
7528
7722
  modifiedAt: Date | null;
7529
7723
  teacherId: string;
7724
+ acceptFiles: boolean;
7725
+ acceptExtendedResponse: boolean;
7726
+ acceptWorksheet: boolean;
7727
+ gradeWithAI: boolean;
7530
7728
  inProgress: boolean;
7531
7729
  order: number | null;
7532
7730
  worksheetId: string | null;
@@ -7554,7 +7752,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7554
7752
  password: string;
7555
7753
  verified: boolean;
7556
7754
  role: import(".prisma/client").$Enums.UserRole;
7557
- profileId: string | null;
7558
7755
  schoolId: string | null;
7559
7756
  };
7560
7757
  attachments: {
@@ -7619,6 +7816,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7619
7816
  createdAt: Date | null;
7620
7817
  modifiedAt: Date | null;
7621
7818
  teacherId: string;
7819
+ acceptFiles: boolean;
7820
+ acceptExtendedResponse: boolean;
7821
+ acceptWorksheet: boolean;
7822
+ gradeWithAI: boolean;
7622
7823
  inProgress: boolean;
7623
7824
  order: number | null;
7624
7825
  worksheetId: string | null;
@@ -7647,7 +7848,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7647
7848
  password: string;
7648
7849
  verified: boolean;
7649
7850
  role: import(".prisma/client").$Enums.UserRole;
7650
- profileId: string | null;
7651
7851
  schoolId: string | null;
7652
7852
  };
7653
7853
  attachments: {
@@ -7712,6 +7912,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7712
7912
  createdAt: Date | null;
7713
7913
  modifiedAt: Date | null;
7714
7914
  teacherId: string;
7915
+ acceptFiles: boolean;
7916
+ acceptExtendedResponse: boolean;
7917
+ acceptWorksheet: boolean;
7918
+ gradeWithAI: boolean;
7715
7919
  inProgress: boolean;
7716
7920
  order: number | null;
7717
7921
  worksheetId: string | null;
@@ -7739,7 +7943,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7739
7943
  password: string;
7740
7944
  verified: boolean;
7741
7945
  role: import(".prisma/client").$Enums.UserRole;
7742
- profileId: string | null;
7743
7946
  schoolId: string | null;
7744
7947
  };
7745
7948
  attachments: {
@@ -7804,6 +8007,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
7804
8007
  createdAt: Date | null;
7805
8008
  modifiedAt: Date | null;
7806
8009
  teacherId: string;
8010
+ acceptFiles: boolean;
8011
+ acceptExtendedResponse: boolean;
8012
+ acceptWorksheet: boolean;
8013
+ gradeWithAI: boolean;
7807
8014
  inProgress: boolean;
7808
8015
  order: number | null;
7809
8016
  worksheetId: string | null;
@@ -8224,7 +8431,6 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
8224
8431
  password: string;
8225
8432
  verified: boolean;
8226
8433
  role: import(".prisma/client").$Enums.UserRole;
8227
- profileId: string | null;
8228
8434
  schoolId: string | null;
8229
8435
  } | null;
8230
8436
  class: {
@@ -8377,6 +8583,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
8377
8583
  createdAt: Date | null;
8378
8584
  modifiedAt: Date | null;
8379
8585
  teacherId: string;
8586
+ acceptFiles: boolean;
8587
+ acceptExtendedResponse: boolean;
8588
+ acceptWorksheet: boolean;
8589
+ gradeWithAI: boolean;
8380
8590
  inProgress: boolean;
8381
8591
  order: number | null;
8382
8592
  worksheetId: string | null;
@@ -8422,6 +8632,10 @@ export declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
8422
8632
  createdAt: Date | null;
8423
8633
  modifiedAt: Date | null;
8424
8634
  teacherId: string;
8635
+ acceptFiles: boolean;
8636
+ acceptExtendedResponse: boolean;
8637
+ acceptWorksheet: boolean;
8638
+ gradeWithAI: boolean;
8425
8639
  inProgress: boolean;
8426
8640
  order: number | null;
8427
8641
  worksheetId: string | null;