@brite-future-schools-contracts/contracts 2.0.2 → 2.0.3

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.
@@ -198,4 +198,944 @@ declare const authContract: {
198
198
  }, z.core.$strip>, Record<never, never>, Record<never, never>>;
199
199
  };
200
200
 
201
- export { authContract, changePasswordContract, getMeContract, loginContract, logoutContract, refreshTokenContract, requestPasswordResetContract, resetPasswordContract, switchBranchContract };
201
+ declare const createStaffContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
202
+ firstName: z.ZodString;
203
+ middleName: z.ZodOptional<z.ZodString>;
204
+ lastName: z.ZodString;
205
+ email: z.ZodEmail;
206
+ phone: z.ZodString;
207
+ nationalId: z.ZodString;
208
+ roleName: z.ZodEnum<{
209
+ PROPRIETOR: "PROPRIETOR";
210
+ DIRECTOR: "DIRECTOR";
211
+ SYSTEM_ADMIN: "SYSTEM_ADMIN";
212
+ PRINCIPAL: "PRINCIPAL";
213
+ DEPUTY_PRINCIPAL: "DEPUTY_PRINCIPAL";
214
+ HOD: "HOD";
215
+ CLASS_TEACHER: "CLASS_TEACHER";
216
+ SUBJECT_TEACHER: "SUBJECT_TEACHER";
217
+ BURSAR: "BURSAR";
218
+ HR_ADMIN: "HR_ADMIN";
219
+ SCHOOL_NURSE: "SCHOOL_NURSE";
220
+ LIBRARIAN: "LIBRARIAN";
221
+ LAB_TECHNICIAN: "LAB_TECHNICIAN";
222
+ SPORTS_COACH: "SPORTS_COACH";
223
+ COUNSELLOR: "COUNSELLOR";
224
+ CARETAKER: "CARETAKER";
225
+ SECURITY: "SECURITY";
226
+ KITCHEN_STAFF: "KITCHEN_STAFF";
227
+ KITCHEN_MANAGER: "KITCHEN_MANAGER";
228
+ DRIVER: "DRIVER";
229
+ IT_ADMIN: "IT_ADMIN";
230
+ BOARDING_MASTER: "BOARDING_MASTER";
231
+ PREFECT: "PREFECT";
232
+ STUDENT: "STUDENT";
233
+ PARENT: "PARENT";
234
+ ORG_SPONSOR: "ORG_SPONSOR";
235
+ INDIVIDUAL_SPONSOR: "INDIVIDUAL_SPONSOR";
236
+ }>;
237
+ isPrimaryRole: z.ZodDefault<z.ZodBoolean>;
238
+ departmentId: z.ZodOptional<z.ZodUUID>;
239
+ designation: z.ZodString;
240
+ employmentType: z.ZodEnum<{
241
+ permanent: "permanent";
242
+ contract: "contract";
243
+ temporary: "temporary";
244
+ intern: "intern";
245
+ }>;
246
+ contractStart: z.ZodISODate;
247
+ contractEnd: z.ZodOptional<z.ZodISODate>;
248
+ basicSalary: z.ZodNumber;
249
+ houseAllowance: z.ZodDefault<z.ZodNumber>;
250
+ transportAllowance: z.ZodDefault<z.ZodNumber>;
251
+ helbDeduction: z.ZodDefault<z.ZodNumber>;
252
+ saccoDeduction: z.ZodDefault<z.ZodNumber>;
253
+ bankName: z.ZodOptional<z.ZodString>;
254
+ bankAccount: z.ZodOptional<z.ZodString>;
255
+ bankBranch: z.ZodOptional<z.ZodString>;
256
+ tscNumber: z.ZodOptional<z.ZodString>;
257
+ kraPin: z.ZodOptional<z.ZodString>;
258
+ nhifNo: z.ZodOptional<z.ZodString>;
259
+ nssfNo: z.ZodOptional<z.ZodString>;
260
+ }, z.core.$strip>, z.ZodObject<{
261
+ staffId: z.ZodUUID;
262
+ userId: z.ZodUUID;
263
+ email: z.ZodString;
264
+ emailSent: z.ZodBoolean;
265
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
266
+ declare const listStaffContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
267
+ cursor: z.ZodOptional<z.ZodString>;
268
+ limit: z.ZodDefault<z.ZodInt>;
269
+ search: z.ZodOptional<z.ZodString>;
270
+ departmentId: z.ZodOptional<z.ZodUUID>;
271
+ roleName: z.ZodOptional<z.ZodEnum<{
272
+ PROPRIETOR: "PROPRIETOR";
273
+ DIRECTOR: "DIRECTOR";
274
+ SYSTEM_ADMIN: "SYSTEM_ADMIN";
275
+ PRINCIPAL: "PRINCIPAL";
276
+ DEPUTY_PRINCIPAL: "DEPUTY_PRINCIPAL";
277
+ HOD: "HOD";
278
+ CLASS_TEACHER: "CLASS_TEACHER";
279
+ SUBJECT_TEACHER: "SUBJECT_TEACHER";
280
+ BURSAR: "BURSAR";
281
+ HR_ADMIN: "HR_ADMIN";
282
+ SCHOOL_NURSE: "SCHOOL_NURSE";
283
+ LIBRARIAN: "LIBRARIAN";
284
+ LAB_TECHNICIAN: "LAB_TECHNICIAN";
285
+ SPORTS_COACH: "SPORTS_COACH";
286
+ COUNSELLOR: "COUNSELLOR";
287
+ CARETAKER: "CARETAKER";
288
+ SECURITY: "SECURITY";
289
+ KITCHEN_STAFF: "KITCHEN_STAFF";
290
+ KITCHEN_MANAGER: "KITCHEN_MANAGER";
291
+ DRIVER: "DRIVER";
292
+ IT_ADMIN: "IT_ADMIN";
293
+ BOARDING_MASTER: "BOARDING_MASTER";
294
+ PREFECT: "PREFECT";
295
+ STUDENT: "STUDENT";
296
+ PARENT: "PARENT";
297
+ ORG_SPONSOR: "ORG_SPONSOR";
298
+ INDIVIDUAL_SPONSOR: "INDIVIDUAL_SPONSOR";
299
+ }>>;
300
+ status: z.ZodOptional<z.ZodEnum<{
301
+ active: "active";
302
+ inactive: "inactive";
303
+ }>>;
304
+ }, z.core.$strip>, z.ZodObject<{
305
+ items: z.ZodArray<z.ZodObject<{
306
+ id: z.ZodUUID;
307
+ userId: z.ZodUUID;
308
+ firstName: z.ZodString;
309
+ middleName: z.ZodNullable<z.ZodString>;
310
+ lastName: z.ZodString;
311
+ email: z.ZodString;
312
+ phone: z.ZodString;
313
+ designation: z.ZodString;
314
+ employmentType: z.ZodEnum<{
315
+ permanent: "permanent";
316
+ contract: "contract";
317
+ temporary: "temporary";
318
+ intern: "intern";
319
+ }>;
320
+ status: z.ZodString;
321
+ departmentName: z.ZodNullable<z.ZodString>;
322
+ roleName: z.ZodNullable<z.ZodEnum<{
323
+ PROPRIETOR: "PROPRIETOR";
324
+ DIRECTOR: "DIRECTOR";
325
+ SYSTEM_ADMIN: "SYSTEM_ADMIN";
326
+ PRINCIPAL: "PRINCIPAL";
327
+ DEPUTY_PRINCIPAL: "DEPUTY_PRINCIPAL";
328
+ HOD: "HOD";
329
+ CLASS_TEACHER: "CLASS_TEACHER";
330
+ SUBJECT_TEACHER: "SUBJECT_TEACHER";
331
+ BURSAR: "BURSAR";
332
+ HR_ADMIN: "HR_ADMIN";
333
+ SCHOOL_NURSE: "SCHOOL_NURSE";
334
+ LIBRARIAN: "LIBRARIAN";
335
+ LAB_TECHNICIAN: "LAB_TECHNICIAN";
336
+ SPORTS_COACH: "SPORTS_COACH";
337
+ COUNSELLOR: "COUNSELLOR";
338
+ CARETAKER: "CARETAKER";
339
+ SECURITY: "SECURITY";
340
+ KITCHEN_STAFF: "KITCHEN_STAFF";
341
+ KITCHEN_MANAGER: "KITCHEN_MANAGER";
342
+ DRIVER: "DRIVER";
343
+ IT_ADMIN: "IT_ADMIN";
344
+ BOARDING_MASTER: "BOARDING_MASTER";
345
+ PREFECT: "PREFECT";
346
+ STUDENT: "STUDENT";
347
+ PARENT: "PARENT";
348
+ ORG_SPONSOR: "ORG_SPONSOR";
349
+ INDIVIDUAL_SPONSOR: "INDIVIDUAL_SPONSOR";
350
+ }>>;
351
+ createdAt: z.ZodString;
352
+ }, z.core.$strip>>;
353
+ total: z.ZodNumber;
354
+ nextCursor: z.ZodNullable<z.ZodUUID>;
355
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
356
+ declare const getStaffByIdContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
357
+ id: z.ZodUUID;
358
+ }, z.core.$strip>, z.ZodObject<{
359
+ id: z.ZodUUID;
360
+ userId: z.ZodUUID;
361
+ branchId: z.ZodUUID;
362
+ firstName: z.ZodString;
363
+ middleName: z.ZodNullable<z.ZodString>;
364
+ lastName: z.ZodString;
365
+ phone: z.ZodString;
366
+ nationalId: z.ZodString;
367
+ tscNumber: z.ZodNullable<z.ZodString>;
368
+ kraPin: z.ZodNullable<z.ZodString>;
369
+ nhifNo: z.ZodNullable<z.ZodString>;
370
+ nssfNo: z.ZodNullable<z.ZodString>;
371
+ designation: z.ZodString;
372
+ employmentType: z.ZodEnum<{
373
+ permanent: "permanent";
374
+ contract: "contract";
375
+ temporary: "temporary";
376
+ intern: "intern";
377
+ }>;
378
+ contractStart: z.ZodString;
379
+ contractEnd: z.ZodNullable<z.ZodString>;
380
+ basicSalary: z.ZodString;
381
+ houseAllowance: z.ZodString;
382
+ transportAllowance: z.ZodString;
383
+ helbDeduction: z.ZodNullable<z.ZodString>;
384
+ saccoDeduction: z.ZodNullable<z.ZodString>;
385
+ bankName: z.ZodNullable<z.ZodString>;
386
+ bankAccount: z.ZodNullable<z.ZodString>;
387
+ bankBranch: z.ZodNullable<z.ZodString>;
388
+ status: z.ZodString;
389
+ createdAt: z.ZodString;
390
+ email: z.ZodString;
391
+ mustChangePassword: z.ZodBoolean;
392
+ departmentId: z.ZodNullable<z.ZodUUID>;
393
+ departmentName: z.ZodNullable<z.ZodString>;
394
+ roleName: z.ZodNullable<z.ZodEnum<{
395
+ PROPRIETOR: "PROPRIETOR";
396
+ DIRECTOR: "DIRECTOR";
397
+ SYSTEM_ADMIN: "SYSTEM_ADMIN";
398
+ PRINCIPAL: "PRINCIPAL";
399
+ DEPUTY_PRINCIPAL: "DEPUTY_PRINCIPAL";
400
+ HOD: "HOD";
401
+ CLASS_TEACHER: "CLASS_TEACHER";
402
+ SUBJECT_TEACHER: "SUBJECT_TEACHER";
403
+ BURSAR: "BURSAR";
404
+ HR_ADMIN: "HR_ADMIN";
405
+ SCHOOL_NURSE: "SCHOOL_NURSE";
406
+ LIBRARIAN: "LIBRARIAN";
407
+ LAB_TECHNICIAN: "LAB_TECHNICIAN";
408
+ SPORTS_COACH: "SPORTS_COACH";
409
+ COUNSELLOR: "COUNSELLOR";
410
+ CARETAKER: "CARETAKER";
411
+ SECURITY: "SECURITY";
412
+ KITCHEN_STAFF: "KITCHEN_STAFF";
413
+ KITCHEN_MANAGER: "KITCHEN_MANAGER";
414
+ DRIVER: "DRIVER";
415
+ IT_ADMIN: "IT_ADMIN";
416
+ BOARDING_MASTER: "BOARDING_MASTER";
417
+ PREFECT: "PREFECT";
418
+ STUDENT: "STUDENT";
419
+ PARENT: "PARENT";
420
+ ORG_SPONSOR: "ORG_SPONSOR";
421
+ INDIVIDUAL_SPONSOR: "INDIVIDUAL_SPONSOR";
422
+ }>>;
423
+ roleId: z.ZodNullable<z.ZodUUID>;
424
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
425
+ declare const updateStaffStatusContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
426
+ id: z.ZodUUID;
427
+ status: z.ZodEnum<{
428
+ active: "active";
429
+ inactive: "inactive";
430
+ suspended: "suspended";
431
+ }>;
432
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$strip>, Record<never, never>, Record<never, never>>;
433
+ declare const listDepartmentsContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
434
+ branchId: z.ZodOptional<z.ZodUUID>;
435
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
436
+ id: z.ZodUUID;
437
+ branchId: z.ZodUUID;
438
+ name: z.ZodString;
439
+ hodId: z.ZodNullable<z.ZodUUID>;
440
+ }, z.core.$strip>>, Record<never, never>, Record<never, never>>;
441
+ declare const createDepartmentContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
442
+ name: z.ZodString;
443
+ hodId: z.ZodOptional<z.ZodUUID>;
444
+ }, z.core.$strip>, z.ZodObject<{
445
+ id: z.ZodUUID;
446
+ branchId: z.ZodUUID;
447
+ name: z.ZodString;
448
+ hodId: z.ZodNullable<z.ZodUUID>;
449
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
450
+ declare const hrContract: {
451
+ createStaff: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
452
+ firstName: z.ZodString;
453
+ middleName: z.ZodOptional<z.ZodString>;
454
+ lastName: z.ZodString;
455
+ email: z.ZodEmail;
456
+ phone: z.ZodString;
457
+ nationalId: z.ZodString;
458
+ roleName: z.ZodEnum<{
459
+ PROPRIETOR: "PROPRIETOR";
460
+ DIRECTOR: "DIRECTOR";
461
+ SYSTEM_ADMIN: "SYSTEM_ADMIN";
462
+ PRINCIPAL: "PRINCIPAL";
463
+ DEPUTY_PRINCIPAL: "DEPUTY_PRINCIPAL";
464
+ HOD: "HOD";
465
+ CLASS_TEACHER: "CLASS_TEACHER";
466
+ SUBJECT_TEACHER: "SUBJECT_TEACHER";
467
+ BURSAR: "BURSAR";
468
+ HR_ADMIN: "HR_ADMIN";
469
+ SCHOOL_NURSE: "SCHOOL_NURSE";
470
+ LIBRARIAN: "LIBRARIAN";
471
+ LAB_TECHNICIAN: "LAB_TECHNICIAN";
472
+ SPORTS_COACH: "SPORTS_COACH";
473
+ COUNSELLOR: "COUNSELLOR";
474
+ CARETAKER: "CARETAKER";
475
+ SECURITY: "SECURITY";
476
+ KITCHEN_STAFF: "KITCHEN_STAFF";
477
+ KITCHEN_MANAGER: "KITCHEN_MANAGER";
478
+ DRIVER: "DRIVER";
479
+ IT_ADMIN: "IT_ADMIN";
480
+ BOARDING_MASTER: "BOARDING_MASTER";
481
+ PREFECT: "PREFECT";
482
+ STUDENT: "STUDENT";
483
+ PARENT: "PARENT";
484
+ ORG_SPONSOR: "ORG_SPONSOR";
485
+ INDIVIDUAL_SPONSOR: "INDIVIDUAL_SPONSOR";
486
+ }>;
487
+ isPrimaryRole: z.ZodDefault<z.ZodBoolean>;
488
+ departmentId: z.ZodOptional<z.ZodUUID>;
489
+ designation: z.ZodString;
490
+ employmentType: z.ZodEnum<{
491
+ permanent: "permanent";
492
+ contract: "contract";
493
+ temporary: "temporary";
494
+ intern: "intern";
495
+ }>;
496
+ contractStart: z.ZodISODate;
497
+ contractEnd: z.ZodOptional<z.ZodISODate>;
498
+ basicSalary: z.ZodNumber;
499
+ houseAllowance: z.ZodDefault<z.ZodNumber>;
500
+ transportAllowance: z.ZodDefault<z.ZodNumber>;
501
+ helbDeduction: z.ZodDefault<z.ZodNumber>;
502
+ saccoDeduction: z.ZodDefault<z.ZodNumber>;
503
+ bankName: z.ZodOptional<z.ZodString>;
504
+ bankAccount: z.ZodOptional<z.ZodString>;
505
+ bankBranch: z.ZodOptional<z.ZodString>;
506
+ tscNumber: z.ZodOptional<z.ZodString>;
507
+ kraPin: z.ZodOptional<z.ZodString>;
508
+ nhifNo: z.ZodOptional<z.ZodString>;
509
+ nssfNo: z.ZodOptional<z.ZodString>;
510
+ }, z.core.$strip>, z.ZodObject<{
511
+ staffId: z.ZodUUID;
512
+ userId: z.ZodUUID;
513
+ email: z.ZodString;
514
+ emailSent: z.ZodBoolean;
515
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
516
+ listStaff: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
517
+ cursor: z.ZodOptional<z.ZodString>;
518
+ limit: z.ZodDefault<z.ZodInt>;
519
+ search: z.ZodOptional<z.ZodString>;
520
+ departmentId: z.ZodOptional<z.ZodUUID>;
521
+ roleName: z.ZodOptional<z.ZodEnum<{
522
+ PROPRIETOR: "PROPRIETOR";
523
+ DIRECTOR: "DIRECTOR";
524
+ SYSTEM_ADMIN: "SYSTEM_ADMIN";
525
+ PRINCIPAL: "PRINCIPAL";
526
+ DEPUTY_PRINCIPAL: "DEPUTY_PRINCIPAL";
527
+ HOD: "HOD";
528
+ CLASS_TEACHER: "CLASS_TEACHER";
529
+ SUBJECT_TEACHER: "SUBJECT_TEACHER";
530
+ BURSAR: "BURSAR";
531
+ HR_ADMIN: "HR_ADMIN";
532
+ SCHOOL_NURSE: "SCHOOL_NURSE";
533
+ LIBRARIAN: "LIBRARIAN";
534
+ LAB_TECHNICIAN: "LAB_TECHNICIAN";
535
+ SPORTS_COACH: "SPORTS_COACH";
536
+ COUNSELLOR: "COUNSELLOR";
537
+ CARETAKER: "CARETAKER";
538
+ SECURITY: "SECURITY";
539
+ KITCHEN_STAFF: "KITCHEN_STAFF";
540
+ KITCHEN_MANAGER: "KITCHEN_MANAGER";
541
+ DRIVER: "DRIVER";
542
+ IT_ADMIN: "IT_ADMIN";
543
+ BOARDING_MASTER: "BOARDING_MASTER";
544
+ PREFECT: "PREFECT";
545
+ STUDENT: "STUDENT";
546
+ PARENT: "PARENT";
547
+ ORG_SPONSOR: "ORG_SPONSOR";
548
+ INDIVIDUAL_SPONSOR: "INDIVIDUAL_SPONSOR";
549
+ }>>;
550
+ status: z.ZodOptional<z.ZodEnum<{
551
+ active: "active";
552
+ inactive: "inactive";
553
+ }>>;
554
+ }, z.core.$strip>, z.ZodObject<{
555
+ items: z.ZodArray<z.ZodObject<{
556
+ id: z.ZodUUID;
557
+ userId: z.ZodUUID;
558
+ firstName: z.ZodString;
559
+ middleName: z.ZodNullable<z.ZodString>;
560
+ lastName: z.ZodString;
561
+ email: z.ZodString;
562
+ phone: z.ZodString;
563
+ designation: z.ZodString;
564
+ employmentType: z.ZodEnum<{
565
+ permanent: "permanent";
566
+ contract: "contract";
567
+ temporary: "temporary";
568
+ intern: "intern";
569
+ }>;
570
+ status: z.ZodString;
571
+ departmentName: z.ZodNullable<z.ZodString>;
572
+ roleName: z.ZodNullable<z.ZodEnum<{
573
+ PROPRIETOR: "PROPRIETOR";
574
+ DIRECTOR: "DIRECTOR";
575
+ SYSTEM_ADMIN: "SYSTEM_ADMIN";
576
+ PRINCIPAL: "PRINCIPAL";
577
+ DEPUTY_PRINCIPAL: "DEPUTY_PRINCIPAL";
578
+ HOD: "HOD";
579
+ CLASS_TEACHER: "CLASS_TEACHER";
580
+ SUBJECT_TEACHER: "SUBJECT_TEACHER";
581
+ BURSAR: "BURSAR";
582
+ HR_ADMIN: "HR_ADMIN";
583
+ SCHOOL_NURSE: "SCHOOL_NURSE";
584
+ LIBRARIAN: "LIBRARIAN";
585
+ LAB_TECHNICIAN: "LAB_TECHNICIAN";
586
+ SPORTS_COACH: "SPORTS_COACH";
587
+ COUNSELLOR: "COUNSELLOR";
588
+ CARETAKER: "CARETAKER";
589
+ SECURITY: "SECURITY";
590
+ KITCHEN_STAFF: "KITCHEN_STAFF";
591
+ KITCHEN_MANAGER: "KITCHEN_MANAGER";
592
+ DRIVER: "DRIVER";
593
+ IT_ADMIN: "IT_ADMIN";
594
+ BOARDING_MASTER: "BOARDING_MASTER";
595
+ PREFECT: "PREFECT";
596
+ STUDENT: "STUDENT";
597
+ PARENT: "PARENT";
598
+ ORG_SPONSOR: "ORG_SPONSOR";
599
+ INDIVIDUAL_SPONSOR: "INDIVIDUAL_SPONSOR";
600
+ }>>;
601
+ createdAt: z.ZodString;
602
+ }, z.core.$strip>>;
603
+ total: z.ZodNumber;
604
+ nextCursor: z.ZodNullable<z.ZodUUID>;
605
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
606
+ getStaffById: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
607
+ id: z.ZodUUID;
608
+ }, z.core.$strip>, z.ZodObject<{
609
+ id: z.ZodUUID;
610
+ userId: z.ZodUUID;
611
+ branchId: z.ZodUUID;
612
+ firstName: z.ZodString;
613
+ middleName: z.ZodNullable<z.ZodString>;
614
+ lastName: z.ZodString;
615
+ phone: z.ZodString;
616
+ nationalId: z.ZodString;
617
+ tscNumber: z.ZodNullable<z.ZodString>;
618
+ kraPin: z.ZodNullable<z.ZodString>;
619
+ nhifNo: z.ZodNullable<z.ZodString>;
620
+ nssfNo: z.ZodNullable<z.ZodString>;
621
+ designation: z.ZodString;
622
+ employmentType: z.ZodEnum<{
623
+ permanent: "permanent";
624
+ contract: "contract";
625
+ temporary: "temporary";
626
+ intern: "intern";
627
+ }>;
628
+ contractStart: z.ZodString;
629
+ contractEnd: z.ZodNullable<z.ZodString>;
630
+ basicSalary: z.ZodString;
631
+ houseAllowance: z.ZodString;
632
+ transportAllowance: z.ZodString;
633
+ helbDeduction: z.ZodNullable<z.ZodString>;
634
+ saccoDeduction: z.ZodNullable<z.ZodString>;
635
+ bankName: z.ZodNullable<z.ZodString>;
636
+ bankAccount: z.ZodNullable<z.ZodString>;
637
+ bankBranch: z.ZodNullable<z.ZodString>;
638
+ status: z.ZodString;
639
+ createdAt: z.ZodString;
640
+ email: z.ZodString;
641
+ mustChangePassword: z.ZodBoolean;
642
+ departmentId: z.ZodNullable<z.ZodUUID>;
643
+ departmentName: z.ZodNullable<z.ZodString>;
644
+ roleName: z.ZodNullable<z.ZodEnum<{
645
+ PROPRIETOR: "PROPRIETOR";
646
+ DIRECTOR: "DIRECTOR";
647
+ SYSTEM_ADMIN: "SYSTEM_ADMIN";
648
+ PRINCIPAL: "PRINCIPAL";
649
+ DEPUTY_PRINCIPAL: "DEPUTY_PRINCIPAL";
650
+ HOD: "HOD";
651
+ CLASS_TEACHER: "CLASS_TEACHER";
652
+ SUBJECT_TEACHER: "SUBJECT_TEACHER";
653
+ BURSAR: "BURSAR";
654
+ HR_ADMIN: "HR_ADMIN";
655
+ SCHOOL_NURSE: "SCHOOL_NURSE";
656
+ LIBRARIAN: "LIBRARIAN";
657
+ LAB_TECHNICIAN: "LAB_TECHNICIAN";
658
+ SPORTS_COACH: "SPORTS_COACH";
659
+ COUNSELLOR: "COUNSELLOR";
660
+ CARETAKER: "CARETAKER";
661
+ SECURITY: "SECURITY";
662
+ KITCHEN_STAFF: "KITCHEN_STAFF";
663
+ KITCHEN_MANAGER: "KITCHEN_MANAGER";
664
+ DRIVER: "DRIVER";
665
+ IT_ADMIN: "IT_ADMIN";
666
+ BOARDING_MASTER: "BOARDING_MASTER";
667
+ PREFECT: "PREFECT";
668
+ STUDENT: "STUDENT";
669
+ PARENT: "PARENT";
670
+ ORG_SPONSOR: "ORG_SPONSOR";
671
+ INDIVIDUAL_SPONSOR: "INDIVIDUAL_SPONSOR";
672
+ }>>;
673
+ roleId: z.ZodNullable<z.ZodUUID>;
674
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
675
+ updateStaffStatus: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
676
+ id: z.ZodUUID;
677
+ status: z.ZodEnum<{
678
+ active: "active";
679
+ inactive: "inactive";
680
+ suspended: "suspended";
681
+ }>;
682
+ }, z.core.$strip>, z.ZodObject<{}, z.core.$strip>, Record<never, never>, Record<never, never>>;
683
+ listDepartments: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
684
+ branchId: z.ZodOptional<z.ZodUUID>;
685
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
686
+ id: z.ZodUUID;
687
+ branchId: z.ZodUUID;
688
+ name: z.ZodString;
689
+ hodId: z.ZodNullable<z.ZodUUID>;
690
+ }, z.core.$strip>>, Record<never, never>, Record<never, never>>;
691
+ createDepartment: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
692
+ name: z.ZodString;
693
+ hodId: z.ZodOptional<z.ZodUUID>;
694
+ }, z.core.$strip>, z.ZodObject<{
695
+ id: z.ZodUUID;
696
+ branchId: z.ZodUUID;
697
+ name: z.ZodString;
698
+ hodId: z.ZodNullable<z.ZodUUID>;
699
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
700
+ };
701
+
702
+ declare const createStudentContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
703
+ firstName: z.ZodString;
704
+ middleName: z.ZodOptional<z.ZodString>;
705
+ lastName: z.ZodString;
706
+ dateOfBirth: z.ZodISODate;
707
+ gender: z.ZodEnum<{
708
+ male: "male";
709
+ female: "female";
710
+ }>;
711
+ admissionNo: z.ZodString;
712
+ nemisNo: z.ZodOptional<z.ZodString>;
713
+ admissionDate: z.ZodISODate;
714
+ bloodGroup: z.ZodOptional<z.ZodString>;
715
+ medicalNotes: z.ZodOptional<z.ZodString>;
716
+ classId: z.ZodOptional<z.ZodUUID>;
717
+ termId: z.ZodOptional<z.ZodUUID>;
718
+ guardian: z.ZodOptional<z.ZodObject<{
719
+ firstName: z.ZodString;
720
+ middleName: z.ZodOptional<z.ZodString>;
721
+ lastName: z.ZodString;
722
+ relationship: z.ZodString;
723
+ phone: z.ZodString;
724
+ email: z.ZodOptional<z.ZodEmail>;
725
+ nationalId: z.ZodOptional<z.ZodString>;
726
+ occupation: z.ZodOptional<z.ZodString>;
727
+ }, z.core.$strip>>;
728
+ }, z.core.$strip>, z.ZodObject<{
729
+ studentId: z.ZodUUID;
730
+ admissionNo: z.ZodString;
731
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
732
+ declare const bulkUploadStudentsContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
733
+ classId: z.ZodUUID;
734
+ termId: z.ZodUUID;
735
+ rows: z.ZodArray<z.ZodObject<{
736
+ firstName: z.ZodString;
737
+ middleName: z.ZodOptional<z.ZodString>;
738
+ lastName: z.ZodString;
739
+ dateOfBirth: z.ZodString;
740
+ gender: z.ZodString;
741
+ admissionNo: z.ZodString;
742
+ nemisNo: z.ZodOptional<z.ZodString>;
743
+ admissionDate: z.ZodOptional<z.ZodString>;
744
+ bloodGroup: z.ZodOptional<z.ZodString>;
745
+ guardianFirstName: z.ZodOptional<z.ZodString>;
746
+ guardianLastName: z.ZodOptional<z.ZodString>;
747
+ guardianRelationship: z.ZodOptional<z.ZodString>;
748
+ guardianPhone: z.ZodOptional<z.ZodString>;
749
+ guardianEmail: z.ZodOptional<z.ZodString>;
750
+ }, z.core.$strip>>;
751
+ }, z.core.$strip>, z.ZodObject<{
752
+ created: z.ZodInt;
753
+ skipped: z.ZodInt;
754
+ errors: z.ZodArray<z.ZodObject<{
755
+ row: z.ZodInt;
756
+ admissionNo: z.ZodOptional<z.ZodString>;
757
+ reason: z.ZodString;
758
+ }, z.core.$strip>>;
759
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
760
+ declare const listStudentsContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
761
+ cursor: z.ZodOptional<z.ZodString>;
762
+ limit: z.ZodDefault<z.ZodInt>;
763
+ search: z.ZodOptional<z.ZodString>;
764
+ classId: z.ZodOptional<z.ZodUUID>;
765
+ gradeLevel: z.ZodOptional<z.ZodEnum<{
766
+ PP1: "PP1";
767
+ PP2: "PP2";
768
+ G1: "G1";
769
+ G2: "G2";
770
+ G3: "G3";
771
+ G4: "G4";
772
+ G5: "G5";
773
+ G6: "G6";
774
+ G7: "G7";
775
+ G8: "G8";
776
+ G9: "G9";
777
+ }>>;
778
+ status: z.ZodOptional<z.ZodEnum<{
779
+ active: "active";
780
+ transferred: "transferred";
781
+ graduated: "graduated";
782
+ suspended: "suspended";
783
+ withdrawn: "withdrawn";
784
+ }>>;
785
+ termId: z.ZodOptional<z.ZodUUID>;
786
+ }, z.core.$strip>, z.ZodObject<{
787
+ items: z.ZodArray<z.ZodObject<{
788
+ id: z.ZodUUID;
789
+ admissionNo: z.ZodString;
790
+ firstName: z.ZodString;
791
+ middleName: z.ZodNullable<z.ZodString>;
792
+ lastName: z.ZodString;
793
+ gender: z.ZodEnum<{
794
+ male: "male";
795
+ female: "female";
796
+ }>;
797
+ status: z.ZodEnum<{
798
+ active: "active";
799
+ transferred: "transferred";
800
+ graduated: "graduated";
801
+ suspended: "suspended";
802
+ withdrawn: "withdrawn";
803
+ }>;
804
+ className: z.ZodNullable<z.ZodString>;
805
+ gradeLevel: z.ZodNullable<z.ZodEnum<{
806
+ PP1: "PP1";
807
+ PP2: "PP2";
808
+ G1: "G1";
809
+ G2: "G2";
810
+ G3: "G3";
811
+ G4: "G4";
812
+ G5: "G5";
813
+ G6: "G6";
814
+ G7: "G7";
815
+ G8: "G8";
816
+ G9: "G9";
817
+ }>>;
818
+ primaryGuardianName: z.ZodNullable<z.ZodString>;
819
+ primaryGuardianPhone: z.ZodNullable<z.ZodString>;
820
+ createdAt: z.ZodString;
821
+ }, z.core.$strip>>;
822
+ total: z.ZodNumber;
823
+ nextCursor: z.ZodNullable<z.ZodUUID>;
824
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
825
+ declare const getStudentByIdContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
826
+ id: z.ZodUUID;
827
+ }, z.core.$strip>, z.ZodObject<{
828
+ id: z.ZodUUID;
829
+ branchId: z.ZodUUID;
830
+ admissionNo: z.ZodString;
831
+ nemisNo: z.ZodNullable<z.ZodString>;
832
+ firstName: z.ZodString;
833
+ middleName: z.ZodNullable<z.ZodString>;
834
+ lastName: z.ZodString;
835
+ dateOfBirth: z.ZodString;
836
+ gender: z.ZodEnum<{
837
+ male: "male";
838
+ female: "female";
839
+ }>;
840
+ photoUrl: z.ZodNullable<z.ZodString>;
841
+ bloodGroup: z.ZodNullable<z.ZodString>;
842
+ medicalNotes: z.ZodNullable<z.ZodString>;
843
+ admissionDate: z.ZodString;
844
+ status: z.ZodEnum<{
845
+ active: "active";
846
+ transferred: "transferred";
847
+ graduated: "graduated";
848
+ suspended: "suspended";
849
+ withdrawn: "withdrawn";
850
+ }>;
851
+ createdAt: z.ZodString;
852
+ currentClass: z.ZodNullable<z.ZodObject<{
853
+ classId: z.ZodUUID;
854
+ className: z.ZodString;
855
+ gradeLevel: z.ZodEnum<{
856
+ PP1: "PP1";
857
+ PP2: "PP2";
858
+ G1: "G1";
859
+ G2: "G2";
860
+ G3: "G3";
861
+ G4: "G4";
862
+ G5: "G5";
863
+ G6: "G6";
864
+ G7: "G7";
865
+ G8: "G8";
866
+ G9: "G9";
867
+ }>;
868
+ termId: z.ZodUUID;
869
+ termName: z.ZodString;
870
+ }, z.core.$strip>>;
871
+ guardians: z.ZodArray<z.ZodObject<{
872
+ id: z.ZodUUID;
873
+ firstName: z.ZodString;
874
+ middleName: z.ZodNullable<z.ZodString>;
875
+ lastName: z.ZodString;
876
+ relationship: z.ZodString;
877
+ phone: z.ZodString;
878
+ email: z.ZodNullable<z.ZodString>;
879
+ isPrimary: z.ZodBoolean;
880
+ }, z.core.$strip>>;
881
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
882
+ declare const linkGuardianContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
883
+ studentId: z.ZodUUID;
884
+ firstName: z.ZodString;
885
+ middleName: z.ZodOptional<z.ZodString>;
886
+ lastName: z.ZodString;
887
+ relationship: z.ZodString;
888
+ phone: z.ZodString;
889
+ email: z.ZodOptional<z.ZodEmail>;
890
+ nationalId: z.ZodOptional<z.ZodString>;
891
+ occupation: z.ZodOptional<z.ZodString>;
892
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
893
+ }, z.core.$strip>, z.ZodObject<{
894
+ guardianId: z.ZodUUID;
895
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
896
+ declare const listClassesContract: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
897
+ termId: z.ZodOptional<z.ZodUUID>;
898
+ gradeLevel: z.ZodOptional<z.ZodString>;
899
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
900
+ id: z.ZodUUID;
901
+ name: z.ZodString;
902
+ gradeLevel: z.ZodEnum<{
903
+ PP1: "PP1";
904
+ PP2: "PP2";
905
+ G1: "G1";
906
+ G2: "G2";
907
+ G3: "G3";
908
+ G4: "G4";
909
+ G5: "G5";
910
+ G6: "G6";
911
+ G7: "G7";
912
+ G8: "G8";
913
+ G9: "G9";
914
+ }>;
915
+ gradeName: z.ZodString;
916
+ capacity: z.ZodNullable<z.ZodNumber>;
917
+ enrolledCount: z.ZodNumber;
918
+ classTeacherId: z.ZodNullable<z.ZodUUID>;
919
+ }, z.core.$strip>>, Record<never, never>, Record<never, never>>;
920
+ declare const studentsContract: {
921
+ create: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
922
+ firstName: z.ZodString;
923
+ middleName: z.ZodOptional<z.ZodString>;
924
+ lastName: z.ZodString;
925
+ dateOfBirth: z.ZodISODate;
926
+ gender: z.ZodEnum<{
927
+ male: "male";
928
+ female: "female";
929
+ }>;
930
+ admissionNo: z.ZodString;
931
+ nemisNo: z.ZodOptional<z.ZodString>;
932
+ admissionDate: z.ZodISODate;
933
+ bloodGroup: z.ZodOptional<z.ZodString>;
934
+ medicalNotes: z.ZodOptional<z.ZodString>;
935
+ classId: z.ZodOptional<z.ZodUUID>;
936
+ termId: z.ZodOptional<z.ZodUUID>;
937
+ guardian: z.ZodOptional<z.ZodObject<{
938
+ firstName: z.ZodString;
939
+ middleName: z.ZodOptional<z.ZodString>;
940
+ lastName: z.ZodString;
941
+ relationship: z.ZodString;
942
+ phone: z.ZodString;
943
+ email: z.ZodOptional<z.ZodEmail>;
944
+ nationalId: z.ZodOptional<z.ZodString>;
945
+ occupation: z.ZodOptional<z.ZodString>;
946
+ }, z.core.$strip>>;
947
+ }, z.core.$strip>, z.ZodObject<{
948
+ studentId: z.ZodUUID;
949
+ admissionNo: z.ZodString;
950
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
951
+ bulkUpload: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
952
+ classId: z.ZodUUID;
953
+ termId: z.ZodUUID;
954
+ rows: z.ZodArray<z.ZodObject<{
955
+ firstName: z.ZodString;
956
+ middleName: z.ZodOptional<z.ZodString>;
957
+ lastName: z.ZodString;
958
+ dateOfBirth: z.ZodString;
959
+ gender: z.ZodString;
960
+ admissionNo: z.ZodString;
961
+ nemisNo: z.ZodOptional<z.ZodString>;
962
+ admissionDate: z.ZodOptional<z.ZodString>;
963
+ bloodGroup: z.ZodOptional<z.ZodString>;
964
+ guardianFirstName: z.ZodOptional<z.ZodString>;
965
+ guardianLastName: z.ZodOptional<z.ZodString>;
966
+ guardianRelationship: z.ZodOptional<z.ZodString>;
967
+ guardianPhone: z.ZodOptional<z.ZodString>;
968
+ guardianEmail: z.ZodOptional<z.ZodString>;
969
+ }, z.core.$strip>>;
970
+ }, z.core.$strip>, z.ZodObject<{
971
+ created: z.ZodInt;
972
+ skipped: z.ZodInt;
973
+ errors: z.ZodArray<z.ZodObject<{
974
+ row: z.ZodInt;
975
+ admissionNo: z.ZodOptional<z.ZodString>;
976
+ reason: z.ZodString;
977
+ }, z.core.$strip>>;
978
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
979
+ list: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
980
+ cursor: z.ZodOptional<z.ZodString>;
981
+ limit: z.ZodDefault<z.ZodInt>;
982
+ search: z.ZodOptional<z.ZodString>;
983
+ classId: z.ZodOptional<z.ZodUUID>;
984
+ gradeLevel: z.ZodOptional<z.ZodEnum<{
985
+ PP1: "PP1";
986
+ PP2: "PP2";
987
+ G1: "G1";
988
+ G2: "G2";
989
+ G3: "G3";
990
+ G4: "G4";
991
+ G5: "G5";
992
+ G6: "G6";
993
+ G7: "G7";
994
+ G8: "G8";
995
+ G9: "G9";
996
+ }>>;
997
+ status: z.ZodOptional<z.ZodEnum<{
998
+ active: "active";
999
+ transferred: "transferred";
1000
+ graduated: "graduated";
1001
+ suspended: "suspended";
1002
+ withdrawn: "withdrawn";
1003
+ }>>;
1004
+ termId: z.ZodOptional<z.ZodUUID>;
1005
+ }, z.core.$strip>, z.ZodObject<{
1006
+ items: z.ZodArray<z.ZodObject<{
1007
+ id: z.ZodUUID;
1008
+ admissionNo: z.ZodString;
1009
+ firstName: z.ZodString;
1010
+ middleName: z.ZodNullable<z.ZodString>;
1011
+ lastName: z.ZodString;
1012
+ gender: z.ZodEnum<{
1013
+ male: "male";
1014
+ female: "female";
1015
+ }>;
1016
+ status: z.ZodEnum<{
1017
+ active: "active";
1018
+ transferred: "transferred";
1019
+ graduated: "graduated";
1020
+ suspended: "suspended";
1021
+ withdrawn: "withdrawn";
1022
+ }>;
1023
+ className: z.ZodNullable<z.ZodString>;
1024
+ gradeLevel: z.ZodNullable<z.ZodEnum<{
1025
+ PP1: "PP1";
1026
+ PP2: "PP2";
1027
+ G1: "G1";
1028
+ G2: "G2";
1029
+ G3: "G3";
1030
+ G4: "G4";
1031
+ G5: "G5";
1032
+ G6: "G6";
1033
+ G7: "G7";
1034
+ G8: "G8";
1035
+ G9: "G9";
1036
+ }>>;
1037
+ primaryGuardianName: z.ZodNullable<z.ZodString>;
1038
+ primaryGuardianPhone: z.ZodNullable<z.ZodString>;
1039
+ createdAt: z.ZodString;
1040
+ }, z.core.$strip>>;
1041
+ total: z.ZodNumber;
1042
+ nextCursor: z.ZodNullable<z.ZodUUID>;
1043
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
1044
+ getById: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
1045
+ id: z.ZodUUID;
1046
+ }, z.core.$strip>, z.ZodObject<{
1047
+ id: z.ZodUUID;
1048
+ branchId: z.ZodUUID;
1049
+ admissionNo: z.ZodString;
1050
+ nemisNo: z.ZodNullable<z.ZodString>;
1051
+ firstName: z.ZodString;
1052
+ middleName: z.ZodNullable<z.ZodString>;
1053
+ lastName: z.ZodString;
1054
+ dateOfBirth: z.ZodString;
1055
+ gender: z.ZodEnum<{
1056
+ male: "male";
1057
+ female: "female";
1058
+ }>;
1059
+ photoUrl: z.ZodNullable<z.ZodString>;
1060
+ bloodGroup: z.ZodNullable<z.ZodString>;
1061
+ medicalNotes: z.ZodNullable<z.ZodString>;
1062
+ admissionDate: z.ZodString;
1063
+ status: z.ZodEnum<{
1064
+ active: "active";
1065
+ transferred: "transferred";
1066
+ graduated: "graduated";
1067
+ suspended: "suspended";
1068
+ withdrawn: "withdrawn";
1069
+ }>;
1070
+ createdAt: z.ZodString;
1071
+ currentClass: z.ZodNullable<z.ZodObject<{
1072
+ classId: z.ZodUUID;
1073
+ className: z.ZodString;
1074
+ gradeLevel: z.ZodEnum<{
1075
+ PP1: "PP1";
1076
+ PP2: "PP2";
1077
+ G1: "G1";
1078
+ G2: "G2";
1079
+ G3: "G3";
1080
+ G4: "G4";
1081
+ G5: "G5";
1082
+ G6: "G6";
1083
+ G7: "G7";
1084
+ G8: "G8";
1085
+ G9: "G9";
1086
+ }>;
1087
+ termId: z.ZodUUID;
1088
+ termName: z.ZodString;
1089
+ }, z.core.$strip>>;
1090
+ guardians: z.ZodArray<z.ZodObject<{
1091
+ id: z.ZodUUID;
1092
+ firstName: z.ZodString;
1093
+ middleName: z.ZodNullable<z.ZodString>;
1094
+ lastName: z.ZodString;
1095
+ relationship: z.ZodString;
1096
+ phone: z.ZodString;
1097
+ email: z.ZodNullable<z.ZodString>;
1098
+ isPrimary: z.ZodBoolean;
1099
+ }, z.core.$strip>>;
1100
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
1101
+ linkGuardian: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
1102
+ studentId: z.ZodUUID;
1103
+ firstName: z.ZodString;
1104
+ middleName: z.ZodOptional<z.ZodString>;
1105
+ lastName: z.ZodString;
1106
+ relationship: z.ZodString;
1107
+ phone: z.ZodString;
1108
+ email: z.ZodOptional<z.ZodEmail>;
1109
+ nationalId: z.ZodOptional<z.ZodString>;
1110
+ occupation: z.ZodOptional<z.ZodString>;
1111
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
1112
+ }, z.core.$strip>, z.ZodObject<{
1113
+ guardianId: z.ZodUUID;
1114
+ }, z.core.$strip>, Record<never, never>, Record<never, never>>;
1115
+ listClasses: _orpc_contract.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
1116
+ termId: z.ZodOptional<z.ZodUUID>;
1117
+ gradeLevel: z.ZodOptional<z.ZodString>;
1118
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
1119
+ id: z.ZodUUID;
1120
+ name: z.ZodString;
1121
+ gradeLevel: z.ZodEnum<{
1122
+ PP1: "PP1";
1123
+ PP2: "PP2";
1124
+ G1: "G1";
1125
+ G2: "G2";
1126
+ G3: "G3";
1127
+ G4: "G4";
1128
+ G5: "G5";
1129
+ G6: "G6";
1130
+ G7: "G7";
1131
+ G8: "G8";
1132
+ G9: "G9";
1133
+ }>;
1134
+ gradeName: z.ZodString;
1135
+ capacity: z.ZodNullable<z.ZodNumber>;
1136
+ enrolledCount: z.ZodNumber;
1137
+ classTeacherId: z.ZodNullable<z.ZodUUID>;
1138
+ }, z.core.$strip>>, Record<never, never>, Record<never, never>>;
1139
+ };
1140
+
1141
+ export { authContract, bulkUploadStudentsContract, changePasswordContract, createDepartmentContract, createStaffContract, createStudentContract, getMeContract, getStaffByIdContract, getStudentByIdContract, hrContract, linkGuardianContract, listClassesContract, listDepartmentsContract, listStaffContract, listStudentsContract, loginContract, logoutContract, refreshTokenContract, requestPasswordResetContract, resetPasswordContract, studentsContract, switchBranchContract, updateStaffStatusContract };