@rusaint/react-native 0.13.6 → 0.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/android/build.gradle +4 -4
  2. package/android/src/main/jniLibs/arm64-v8a/librusaint_ffi.so +0 -0
  3. package/android/src/main/jniLibs/armeabi-v7a/librusaint_ffi.so +0 -0
  4. package/build/RusaintReactNative.xcframework/_CodeSignature/CodeDirectory +0 -0
  5. package/build/RusaintReactNative.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
  6. package/build/RusaintReactNative.xcframework/_CodeSignature/CodeResources +6 -6
  7. package/build/RusaintReactNative.xcframework/_CodeSignature/CodeSignature +0 -0
  8. package/build/RusaintReactNative.xcframework/ios-arm64/librusaint_ffi.a +0 -0
  9. package/build/RusaintReactNative.xcframework/ios-arm64-simulator/librusaint_ffi.a +0 -0
  10. package/cpp/generated/rusaint_ffi.cpp +555 -0
  11. package/cpp/generated/rusaint_ffi.hpp +30 -0
  12. package/lib/commonjs/generated/rusaint.js +720 -1
  13. package/lib/commonjs/generated/rusaint.js.map +1 -1
  14. package/lib/commonjs/generated/rusaint_ffi-ffi.js.map +1 -1
  15. package/lib/commonjs/generated/rusaint_ffi.js +388 -1
  16. package/lib/commonjs/generated/rusaint_ffi.js.map +1 -1
  17. package/lib/module/generated/rusaint.js +719 -0
  18. package/lib/module/generated/rusaint.js.map +1 -1
  19. package/lib/module/generated/rusaint_ffi-ffi.js.map +1 -1
  20. package/lib/module/generated/rusaint_ffi.js +385 -0
  21. package/lib/module/generated/rusaint_ffi.js.map +1 -1
  22. package/lib/typescript/commonjs/src/generated/rusaint.d.ts +676 -0
  23. package/lib/typescript/commonjs/src/generated/rusaint.d.ts.map +1 -1
  24. package/lib/typescript/commonjs/src/generated/rusaint_ffi-ffi.d.ts +30 -0
  25. package/lib/typescript/commonjs/src/generated/rusaint_ffi-ffi.d.ts.map +1 -1
  26. package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts +192 -1
  27. package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts.map +1 -1
  28. package/lib/typescript/module/src/generated/rusaint.d.ts +676 -0
  29. package/lib/typescript/module/src/generated/rusaint.d.ts.map +1 -1
  30. package/lib/typescript/module/src/generated/rusaint_ffi-ffi.d.ts +30 -0
  31. package/lib/typescript/module/src/generated/rusaint_ffi-ffi.d.ts.map +1 -1
  32. package/lib/typescript/module/src/generated/rusaint_ffi.d.ts +192 -1
  33. package/lib/typescript/module/src/generated/rusaint_ffi.d.ts.map +1 -1
  34. package/package.json +1 -1
  35. package/src/generated/rusaint.ts +1271 -25
  36. package/src/generated/rusaint_ffi-ffi.ts +82 -0
  37. package/src/generated/rusaint_ffi.ts +1107 -168
@@ -1,4 +1,40 @@
1
1
  import { type UniffiByteArray, type UniffiRustArcPtr, type UnsafeMutableRawPointer, FfiConverterObject, RustBuffer, UniffiAbstractObject, destructorGuardSymbol, pointerLiteralSymbol, uniffiTypeNameSymbol } from 'uniffi-bindgen-react-native';
2
+ /**
3
+ * 대체 과목 정보
4
+ */
5
+ export type AlternativeLecture = {
6
+ /**
7
+ * 구분
8
+ */
9
+ kind: string;
10
+ /**
11
+ * 과목번호
12
+ */
13
+ code: string;
14
+ /**
15
+ * 과목명
16
+ */
17
+ name: string;
18
+ };
19
+ /**
20
+ * Generated factory for {@link AlternativeLecture} record objects.
21
+ */
22
+ export declare const AlternativeLecture: Readonly<{
23
+ /**
24
+ * Create a frozen instance of {@link AlternativeLecture}, with defaults specified
25
+ * in Rust, in the {@link rusaint} crate.
26
+ */
27
+ create: (partial: Partial<AlternativeLecture> & Required<Omit<AlternativeLecture, never>>) => AlternativeLecture;
28
+ /**
29
+ * Create a frozen instance of {@link AlternativeLecture}, with defaults specified
30
+ * in Rust, in the {@link rusaint} crate.
31
+ */
32
+ new: (partial: Partial<AlternativeLecture> & Required<Omit<AlternativeLecture, never>>) => AlternativeLecture;
33
+ /**
34
+ * Defaults specified in the {@link rusaint} crate.
35
+ */
36
+ defaults: () => Partial<AlternativeLecture>;
37
+ }>;
2
38
  /**
3
39
  * 채플 결석신청 정보
4
40
  */
@@ -156,6 +192,66 @@ export declare const ClassGrade: Readonly<{
156
192
  */
157
193
  defaults: () => Partial<ClassGrade>;
158
194
  }>;
195
+ /**
196
+ * 이수구분별 개별 과목 성적
197
+ */
198
+ export type ClassGradeItem = {
199
+ /**
200
+ * 이수구분 (e.g., "교양필수", "전공선택")
201
+ */
202
+ classification: string;
203
+ /**
204
+ * 학년도
205
+ */
206
+ year: string;
207
+ /**
208
+ * 학기
209
+ */
210
+ semester: string;
211
+ /**
212
+ * 과목코드
213
+ */
214
+ courseCode: string;
215
+ /**
216
+ * 과목명
217
+ */
218
+ courseName: string;
219
+ /**
220
+ * 학점
221
+ */
222
+ credits: string;
223
+ /**
224
+ * 성적 점수 (e.g., "100")
225
+ */
226
+ score: string;
227
+ /**
228
+ * 성적 등급 (e.g., "A+")
229
+ */
230
+ grade: string;
231
+ /**
232
+ * 비고
233
+ */
234
+ note: string;
235
+ };
236
+ /**
237
+ * Generated factory for {@link ClassGradeItem} record objects.
238
+ */
239
+ export declare const ClassGradeItem: Readonly<{
240
+ /**
241
+ * Create a frozen instance of {@link ClassGradeItem}, with defaults specified
242
+ * in Rust, in the {@link rusaint} crate.
243
+ */
244
+ create: (partial: Partial<ClassGradeItem> & Required<Omit<ClassGradeItem, never>>) => ClassGradeItem;
245
+ /**
246
+ * Create a frozen instance of {@link ClassGradeItem}, with defaults specified
247
+ * in Rust, in the {@link rusaint} crate.
248
+ */
249
+ new: (partial: Partial<ClassGradeItem> & Required<Omit<ClassGradeItem, never>>) => ClassGradeItem;
250
+ /**
251
+ * Defaults specified in the {@link rusaint} crate.
252
+ */
253
+ defaults: () => Partial<ClassGradeItem>;
254
+ }>;
159
255
  /**
160
256
  * 강의의 시간표 정보입니다.
161
257
  */
@@ -184,6 +280,42 @@ export declare const CourseScheduleInformation: Readonly<{
184
280
  */
185
281
  defaults: () => Partial<CourseScheduleInformation>;
186
282
  }>;
283
+ /**
284
+ * 강의 검색 결과와 상세 정보, 강의계획서를 함께 담는 구조체
285
+ */
286
+ export type DetailedLecture = {
287
+ /**
288
+ * 강의 기본 정보
289
+ */
290
+ lecture: Lecture;
291
+ /**
292
+ * 강의 상세 정보 (상세 정보 링크가 없는 경우 `None`)
293
+ */
294
+ detail: LectureDetail | undefined;
295
+ /**
296
+ * 강의계획서 (조회하지 않았거나 강의계획서가 없는 강의의 경우 `None`)
297
+ */
298
+ syllabus: LectureSyllabus | undefined;
299
+ };
300
+ /**
301
+ * Generated factory for {@link DetailedLecture} record objects.
302
+ */
303
+ export declare const DetailedLecture: Readonly<{
304
+ /**
305
+ * Create a frozen instance of {@link DetailedLecture}, with defaults specified
306
+ * in Rust, in the {@link rusaint} crate.
307
+ */
308
+ create: (partial: Partial<DetailedLecture> & Required<Omit<DetailedLecture, never>>) => DetailedLecture;
309
+ /**
310
+ * Create a frozen instance of {@link DetailedLecture}, with defaults specified
311
+ * in Rust, in the {@link rusaint} crate.
312
+ */
313
+ new: (partial: Partial<DetailedLecture> & Required<Omit<DetailedLecture, never>>) => DetailedLecture;
314
+ /**
315
+ * Defaults specified in the {@link rusaint} crate.
316
+ */
317
+ defaults: () => Partial<DetailedLecture>;
318
+ }>;
187
319
  /**
188
320
  * 채플 기본 정보(좌석번호, 결석현황, 성적결과)
189
321
  */
@@ -264,6 +396,62 @@ export declare const GradeSummary: Readonly<{
264
396
  */
265
397
  defaults: () => Partial<GradeSummary>;
266
398
  }>;
399
+ /**
400
+ * 이수구분별 성적 조회 결과
401
+ */
402
+ export type GradesByClassification = {
403
+ /**
404
+ * 학번
405
+ */
406
+ studentNumber: string;
407
+ /**
408
+ * 이름
409
+ */
410
+ studentName: string;
411
+ /**
412
+ * 학년
413
+ */
414
+ yearLevel: string;
415
+ /**
416
+ * 대학
417
+ */
418
+ college: string;
419
+ /**
420
+ * 학부(과)
421
+ */
422
+ department: string;
423
+ /**
424
+ * 전공
425
+ */
426
+ major: string;
427
+ /**
428
+ * 조회일
429
+ */
430
+ auditDate: string;
431
+ /**
432
+ * 이수구분별 과목 성적 목록
433
+ */
434
+ grades: Array<ClassGradeItem>;
435
+ };
436
+ /**
437
+ * Generated factory for {@link GradesByClassification} record objects.
438
+ */
439
+ export declare const GradesByClassification: Readonly<{
440
+ /**
441
+ * Create a frozen instance of {@link GradesByClassification}, with defaults specified
442
+ * in Rust, in the {@link rusaint} crate.
443
+ */
444
+ create: (partial: Partial<GradesByClassification> & Required<Omit<GradesByClassification, never>>) => GradesByClassification;
445
+ /**
446
+ * Create a frozen instance of {@link GradesByClassification}, with defaults specified
447
+ * in Rust, in the {@link rusaint} crate.
448
+ */
449
+ new: (partial: Partial<GradesByClassification> & Required<Omit<GradesByClassification, never>>) => GradesByClassification;
450
+ /**
451
+ * Defaults specified in the {@link rusaint} crate.
452
+ */
453
+ defaults: () => Partial<GradesByClassification>;
454
+ }>;
267
455
  /**
268
456
  * 졸업 요건
269
457
  */
@@ -475,6 +663,186 @@ export declare const LectureAssessmentResult: Readonly<{
475
663
  */
476
664
  defaults: () => Partial<LectureAssessmentResult>;
477
665
  }>;
666
+ /**
667
+ * 강의 변경 이력
668
+ */
669
+ export type LectureChangeHistory = {
670
+ /**
671
+ * 시작일자
672
+ */
673
+ startDate: string;
674
+ /**
675
+ * 종료일자
676
+ */
677
+ endDate: string;
678
+ /**
679
+ * 과목명
680
+ */
681
+ name: string;
682
+ };
683
+ /**
684
+ * Generated factory for {@link LectureChangeHistory} record objects.
685
+ */
686
+ export declare const LectureChangeHistory: Readonly<{
687
+ /**
688
+ * Create a frozen instance of {@link LectureChangeHistory}, with defaults specified
689
+ * in Rust, in the {@link rusaint} crate.
690
+ */
691
+ create: (partial: Partial<LectureChangeHistory> & Required<Omit<LectureChangeHistory, never>>) => LectureChangeHistory;
692
+ /**
693
+ * Create a frozen instance of {@link LectureChangeHistory}, with defaults specified
694
+ * in Rust, in the {@link rusaint} crate.
695
+ */
696
+ new: (partial: Partial<LectureChangeHistory> & Required<Omit<LectureChangeHistory, never>>) => LectureChangeHistory;
697
+ /**
698
+ * Defaults specified in the {@link rusaint} crate.
699
+ */
700
+ defaults: () => Partial<LectureChangeHistory>;
701
+ }>;
702
+ /**
703
+ * 강의 상세 정보
704
+ */
705
+ export type LectureDetail = {
706
+ /**
707
+ * 강의 변경 이력 목록
708
+ */
709
+ changesHistory: Array<LectureChangeHistory>;
710
+ /**
711
+ * 대체 과목 목록
712
+ */
713
+ alternativeLectures: Array<AlternativeLecture>;
714
+ /**
715
+ * 과목 분류 목록
716
+ */
717
+ categories: Array<string>;
718
+ /**
719
+ * 선수 과목 목록
720
+ */
721
+ prerequisites: Array<PrerequisiteLecture>;
722
+ };
723
+ /**
724
+ * Generated factory for {@link LectureDetail} record objects.
725
+ */
726
+ export declare const LectureDetail: Readonly<{
727
+ /**
728
+ * Create a frozen instance of {@link LectureDetail}, with defaults specified
729
+ * in Rust, in the {@link rusaint} crate.
730
+ */
731
+ create: (partial: Partial<LectureDetail> & Required<Omit<LectureDetail, never>>) => LectureDetail;
732
+ /**
733
+ * Create a frozen instance of {@link LectureDetail}, with defaults specified
734
+ * in Rust, in the {@link rusaint} crate.
735
+ */
736
+ new: (partial: Partial<LectureDetail> & Required<Omit<LectureDetail, never>>) => LectureDetail;
737
+ /**
738
+ * Defaults specified in the {@link rusaint} crate.
739
+ */
740
+ defaults: () => Partial<LectureDetail>;
741
+ }>;
742
+ /**
743
+ * 강의계획서 - Full lecture syllabus information
744
+ */
745
+ export type LectureSyllabus = {
746
+ /**
747
+ * 교과목명
748
+ */
749
+ courseName: string;
750
+ /**
751
+ * 담당교수
752
+ */
753
+ professor: string;
754
+ /**
755
+ * 과목코드
756
+ */
757
+ courseCode: string;
758
+ /**
759
+ * 학년도
760
+ */
761
+ year: string;
762
+ /**
763
+ * 학기
764
+ */
765
+ semester: string;
766
+ /**
767
+ * 학점
768
+ */
769
+ credits: string;
770
+ /**
771
+ * 강의개요
772
+ */
773
+ abstractText: string;
774
+ /**
775
+ * 수업방법
776
+ */
777
+ teachingMethod: string;
778
+ /**
779
+ * 주교재
780
+ */
781
+ mainTextbook: string;
782
+ /**
783
+ * 부교재
784
+ */
785
+ subTextbook: string;
786
+ /**
787
+ * 교수 전화번호
788
+ */
789
+ professorPhone: string;
790
+ /**
791
+ * 교수 이메일
792
+ */
793
+ professorEmail: string;
794
+ /**
795
+ * 상담시간
796
+ */
797
+ officeHours: string;
798
+ /**
799
+ * 수강대상
800
+ */
801
+ targetStudents: string;
802
+ /**
803
+ * 이수구분
804
+ */
805
+ designation: string;
806
+ /**
807
+ * 결석처리
808
+ */
809
+ absencePolicy: string;
810
+ /**
811
+ * 성적평가 항목
812
+ */
813
+ gradingItems: Array<SyllabusGradingItem>;
814
+ /**
815
+ * 학습목표
816
+ */
817
+ learningObjectives: Array<string>;
818
+ /**
819
+ * 주차별 수업계획
820
+ */
821
+ weeklySchedule: Array<SyllabusWeeklyPlan>;
822
+ /**
823
+ * 핵심역량
824
+ */
825
+ competencies: Array<SyllabusCompetency>;
826
+ };
827
+ /**
828
+ * Generated factory for {@link LectureSyllabus} record objects.
829
+ */
830
+ export declare const LectureSyllabus: Readonly<{
831
+ /**
832
+ * Create a frozen instance of {@link LectureSyllabus}, with defaults specified
833
+ * in Rust, in the {@link rusaint} crate.
834
+ */
835
+ create: (partial: Partial<LectureSyllabus> & Required<Omit<LectureSyllabus, never>>) => LectureSyllabus;
836
+ /**
837
+ * Create a frozen instance of {@link LectureSyllabus}, with defaults specified
838
+ * in Rust, in the {@link rusaint} crate.
839
+ */
840
+ new: (partial: Partial<LectureSyllabus> & Required<Omit<LectureSyllabus, never>>) => LectureSyllabus;
841
+ /**
842
+ * Defaults specified in the {@link rusaint} crate.
843
+ */
844
+ defaults: () => Partial<LectureSyllabus>;
845
+ }>;
478
846
  /**
479
847
  * 개인의 수업 시간표 정보를 조회합니다.
480
848
  */
@@ -500,6 +868,126 @@ export declare const PersonalCourseSchedule: Readonly<{
500
868
  */
501
869
  defaults: () => Partial<PersonalCourseSchedule>;
502
870
  }>;
871
+ /**
872
+ * 선수 과목 정보
873
+ */
874
+ export type PrerequisiteLecture = {
875
+ /**
876
+ * 과목번호
877
+ */
878
+ code: string;
879
+ /**
880
+ * 과목명
881
+ */
882
+ name: string;
883
+ };
884
+ /**
885
+ * Generated factory for {@link PrerequisiteLecture} record objects.
886
+ */
887
+ export declare const PrerequisiteLecture: Readonly<{
888
+ /**
889
+ * Create a frozen instance of {@link PrerequisiteLecture}, with defaults specified
890
+ * in Rust, in the {@link rusaint} crate.
891
+ */
892
+ create: (partial: Partial<PrerequisiteLecture> & Required<Omit<PrerequisiteLecture, never>>) => PrerequisiteLecture;
893
+ /**
894
+ * Create a frozen instance of {@link PrerequisiteLecture}, with defaults specified
895
+ * in Rust, in the {@link rusaint} crate.
896
+ */
897
+ new: (partial: Partial<PrerequisiteLecture> & Required<Omit<PrerequisiteLecture, never>>) => PrerequisiteLecture;
898
+ /**
899
+ * Defaults specified in the {@link rusaint} crate.
900
+ */
901
+ defaults: () => Partial<PrerequisiteLecture>;
902
+ }>;
903
+ /**
904
+ * 수강신청한 과목 정보
905
+ */
906
+ export type RegisteredLecture = {
907
+ /**
908
+ * 계획
909
+ */
910
+ syllabus: string | undefined;
911
+ /**
912
+ * 이수구분(주전공)
913
+ */
914
+ category: string;
915
+ /**
916
+ * 이수구분(다전공)
917
+ */
918
+ subCategory: string | undefined;
919
+ /**
920
+ * 공학인증
921
+ */
922
+ abeekInfo: string | undefined;
923
+ /**
924
+ * 교과영역
925
+ */
926
+ field: string | undefined;
927
+ /**
928
+ * 과목번호
929
+ */
930
+ code: string;
931
+ /**
932
+ * 과목명
933
+ */
934
+ name: string;
935
+ /**
936
+ * 분반
937
+ */
938
+ division: string | undefined;
939
+ /**
940
+ * 교수명
941
+ */
942
+ professor: string;
943
+ /**
944
+ * 개설학과
945
+ */
946
+ department: string;
947
+ /**
948
+ * 시간/학점(설계)
949
+ */
950
+ timePoints: string;
951
+ /**
952
+ * 수강인원
953
+ */
954
+ personeel: string;
955
+ /**
956
+ * 여석
957
+ */
958
+ remainingSeats: string;
959
+ /**
960
+ * 강의시간(강의실)
961
+ */
962
+ scheduleRoom: string;
963
+ /**
964
+ * 수강대상
965
+ */
966
+ target: string;
967
+ /**
968
+ * 비고
969
+ */
970
+ remarks: string;
971
+ };
972
+ /**
973
+ * Generated factory for {@link RegisteredLecture} record objects.
974
+ */
975
+ export declare const RegisteredLecture: Readonly<{
976
+ /**
977
+ * Create a frozen instance of {@link RegisteredLecture}, with defaults specified
978
+ * in Rust, in the {@link rusaint} crate.
979
+ */
980
+ create: (partial: Partial<RegisteredLecture> & Required<Omit<RegisteredLecture, never>>) => RegisteredLecture;
981
+ /**
982
+ * Create a frozen instance of {@link RegisteredLecture}, with defaults specified
983
+ * in Rust, in the {@link rusaint} crate.
984
+ */
985
+ new: (partial: Partial<RegisteredLecture> & Required<Omit<RegisteredLecture, never>>) => RegisteredLecture;
986
+ /**
987
+ * Defaults specified in the {@link rusaint} crate.
988
+ */
989
+ defaults: () => Partial<RegisteredLecture>;
990
+ }>;
503
991
  /**
504
992
  * 수혜받은 장학금 정보
505
993
  */
@@ -1132,6 +1620,110 @@ export declare const StudentWorkInformation: Readonly<{
1132
1620
  */
1133
1621
  defaults: () => Partial<StudentWorkInformation>;
1134
1622
  }>;
1623
+ /**
1624
+ * 핵심역량
1625
+ */
1626
+ export type SyllabusCompetency = {
1627
+ /**
1628
+ * 역량명
1629
+ */
1630
+ name: string;
1631
+ /**
1632
+ * 관련비율 (%)
1633
+ */
1634
+ rate: string;
1635
+ };
1636
+ /**
1637
+ * Generated factory for {@link SyllabusCompetency} record objects.
1638
+ */
1639
+ export declare const SyllabusCompetency: Readonly<{
1640
+ /**
1641
+ * Create a frozen instance of {@link SyllabusCompetency}, with defaults specified
1642
+ * in Rust, in the {@link rusaint} crate.
1643
+ */
1644
+ create: (partial: Partial<SyllabusCompetency> & Required<Omit<SyllabusCompetency, never>>) => SyllabusCompetency;
1645
+ /**
1646
+ * Create a frozen instance of {@link SyllabusCompetency}, with defaults specified
1647
+ * in Rust, in the {@link rusaint} crate.
1648
+ */
1649
+ new: (partial: Partial<SyllabusCompetency> & Required<Omit<SyllabusCompetency, never>>) => SyllabusCompetency;
1650
+ /**
1651
+ * Defaults specified in the {@link rusaint} crate.
1652
+ */
1653
+ defaults: () => Partial<SyllabusCompetency>;
1654
+ }>;
1655
+ /**
1656
+ * 성적평가 항목
1657
+ */
1658
+ export type SyllabusGradingItem = {
1659
+ /**
1660
+ * 평가항목명
1661
+ */
1662
+ name: string;
1663
+ /**
1664
+ * 비율 (%)
1665
+ */
1666
+ rate: string;
1667
+ };
1668
+ /**
1669
+ * Generated factory for {@link SyllabusGradingItem} record objects.
1670
+ */
1671
+ export declare const SyllabusGradingItem: Readonly<{
1672
+ /**
1673
+ * Create a frozen instance of {@link SyllabusGradingItem}, with defaults specified
1674
+ * in Rust, in the {@link rusaint} crate.
1675
+ */
1676
+ create: (partial: Partial<SyllabusGradingItem> & Required<Omit<SyllabusGradingItem, never>>) => SyllabusGradingItem;
1677
+ /**
1678
+ * Create a frozen instance of {@link SyllabusGradingItem}, with defaults specified
1679
+ * in Rust, in the {@link rusaint} crate.
1680
+ */
1681
+ new: (partial: Partial<SyllabusGradingItem> & Required<Omit<SyllabusGradingItem, never>>) => SyllabusGradingItem;
1682
+ /**
1683
+ * Defaults specified in the {@link rusaint} crate.
1684
+ */
1685
+ defaults: () => Partial<SyllabusGradingItem>;
1686
+ }>;
1687
+ /**
1688
+ * 주차별 수업계획
1689
+ */
1690
+ export type SyllabusWeeklyPlan = {
1691
+ /**
1692
+ * 주차
1693
+ */
1694
+ week: string;
1695
+ /**
1696
+ * 핵심주제
1697
+ */
1698
+ topic: string;
1699
+ /**
1700
+ * 세부내용
1701
+ */
1702
+ details: string;
1703
+ /**
1704
+ * 수업방법
1705
+ */
1706
+ teachingMethod: string;
1707
+ };
1708
+ /**
1709
+ * Generated factory for {@link SyllabusWeeklyPlan} record objects.
1710
+ */
1711
+ export declare const SyllabusWeeklyPlan: Readonly<{
1712
+ /**
1713
+ * Create a frozen instance of {@link SyllabusWeeklyPlan}, with defaults specified
1714
+ * in Rust, in the {@link rusaint} crate.
1715
+ */
1716
+ create: (partial: Partial<SyllabusWeeklyPlan> & Required<Omit<SyllabusWeeklyPlan, never>>) => SyllabusWeeklyPlan;
1717
+ /**
1718
+ * Create a frozen instance of {@link SyllabusWeeklyPlan}, with defaults specified
1719
+ * in Rust, in the {@link rusaint} crate.
1720
+ */
1721
+ new: (partial: Partial<SyllabusWeeklyPlan> & Required<Omit<SyllabusWeeklyPlan, never>>) => SyllabusWeeklyPlan;
1722
+ /**
1723
+ * Defaults specified in the {@link rusaint} crate.
1724
+ */
1725
+ defaults: () => Partial<SyllabusWeeklyPlan>;
1726
+ }>;
1135
1727
  /**
1136
1728
  * uniffi 지원을 위한 u32 Pair입니다.
1137
1729
  */
@@ -2050,6 +2642,13 @@ declare function uniffiEnsureInitialized(): void;
2050
2642
  declare const _default: Readonly<{
2051
2643
  initialize: typeof uniffiEnsureInitialized;
2052
2644
  converters: {
2645
+ FfiConverterTypeAlternativeLecture: {
2646
+ read(from: RustBuffer): AlternativeLecture;
2647
+ write(value: AlternativeLecture, into: RustBuffer): void;
2648
+ allocationSize(value: AlternativeLecture): number;
2649
+ lift(value: UniffiByteArray): AlternativeLecture;
2650
+ lower(value: AlternativeLecture): UniffiByteArray;
2651
+ };
2053
2652
  FfiConverterTypeChapelAbsenceRequest: {
2054
2653
  read(from: RustBuffer): ChapelAbsenceRequest;
2055
2654
  write(value: ChapelAbsenceRequest, into: RustBuffer): void;
@@ -2078,6 +2677,13 @@ declare const _default: Readonly<{
2078
2677
  lift(value: UniffiByteArray): ClassGrade;
2079
2678
  lower(value: ClassGrade): UniffiByteArray;
2080
2679
  };
2680
+ FfiConverterTypeClassGradeItem: {
2681
+ read(from: RustBuffer): ClassGradeItem;
2682
+ write(value: ClassGradeItem, into: RustBuffer): void;
2683
+ allocationSize(value: ClassGradeItem): number;
2684
+ lift(value: UniffiByteArray): ClassGradeItem;
2685
+ lower(value: ClassGradeItem): UniffiByteArray;
2686
+ };
2081
2687
  FfiConverterTypeClassScore: {
2082
2688
  read(from: RustBuffer): ClassScore;
2083
2689
  write(value: ClassScore, into: RustBuffer): void;
@@ -2099,6 +2705,13 @@ declare const _default: Readonly<{
2099
2705
  lift(value: UniffiByteArray): CourseType;
2100
2706
  lower(value: CourseType): UniffiByteArray;
2101
2707
  };
2708
+ FfiConverterTypeDetailedLecture: {
2709
+ read(from: RustBuffer): DetailedLecture;
2710
+ write(value: DetailedLecture, into: RustBuffer): void;
2711
+ allocationSize(value: DetailedLecture): number;
2712
+ lift(value: UniffiByteArray): DetailedLecture;
2713
+ lower(value: DetailedLecture): UniffiByteArray;
2714
+ };
2102
2715
  FfiConverterTypeGeneralChapelInformation: {
2103
2716
  read(from: RustBuffer): GeneralChapelInformation;
2104
2717
  write(value: GeneralChapelInformation, into: RustBuffer): void;
@@ -2113,6 +2726,13 @@ declare const _default: Readonly<{
2113
2726
  lift(value: UniffiByteArray): GradeSummary;
2114
2727
  lower(value: GradeSummary): UniffiByteArray;
2115
2728
  };
2729
+ FfiConverterTypeGradesByClassification: {
2730
+ read(from: RustBuffer): GradesByClassification;
2731
+ write(value: GradesByClassification, into: RustBuffer): void;
2732
+ allocationSize(value: GradesByClassification): number;
2733
+ lift(value: UniffiByteArray): GradesByClassification;
2734
+ lower(value: GradesByClassification): UniffiByteArray;
2735
+ };
2116
2736
  FfiConverterTypeGraduationRequirement: {
2117
2737
  read(from: RustBuffer): GraduationRequirement;
2118
2738
  write(value: GraduationRequirement, into: RustBuffer): void;
@@ -2156,6 +2776,27 @@ declare const _default: Readonly<{
2156
2776
  lower(value: LectureCategory): UniffiByteArray;
2157
2777
  };
2158
2778
  FfiConverterTypeLectureCategoryBuilder: FfiConverterObject<LectureCategoryBuilderInterface>;
2779
+ FfiConverterTypeLectureChangeHistory: {
2780
+ read(from: RustBuffer): LectureChangeHistory;
2781
+ write(value: LectureChangeHistory, into: RustBuffer): void;
2782
+ allocationSize(value: LectureChangeHistory): number;
2783
+ lift(value: UniffiByteArray): LectureChangeHistory;
2784
+ lower(value: LectureChangeHistory): UniffiByteArray;
2785
+ };
2786
+ FfiConverterTypeLectureDetail: {
2787
+ read(from: RustBuffer): LectureDetail;
2788
+ write(value: LectureDetail, into: RustBuffer): void;
2789
+ allocationSize(value: LectureDetail): number;
2790
+ lift(value: UniffiByteArray): LectureDetail;
2791
+ lower(value: LectureDetail): UniffiByteArray;
2792
+ };
2793
+ FfiConverterTypeLectureSyllabus: {
2794
+ read(from: RustBuffer): LectureSyllabus;
2795
+ write(value: LectureSyllabus, into: RustBuffer): void;
2796
+ allocationSize(value: LectureSyllabus): number;
2797
+ lift(value: UniffiByteArray): LectureSyllabus;
2798
+ lower(value: LectureSyllabus): UniffiByteArray;
2799
+ };
2159
2800
  FfiConverterTypePersonalCourseSchedule: {
2160
2801
  read(from: RustBuffer): PersonalCourseSchedule;
2161
2802
  write(value: PersonalCourseSchedule, into: RustBuffer): void;
@@ -2163,6 +2804,20 @@ declare const _default: Readonly<{
2163
2804
  lift(value: UniffiByteArray): PersonalCourseSchedule;
2164
2805
  lower(value: PersonalCourseSchedule): UniffiByteArray;
2165
2806
  };
2807
+ FfiConverterTypePrerequisiteLecture: {
2808
+ read(from: RustBuffer): PrerequisiteLecture;
2809
+ write(value: PrerequisiteLecture, into: RustBuffer): void;
2810
+ allocationSize(value: PrerequisiteLecture): number;
2811
+ lift(value: UniffiByteArray): PrerequisiteLecture;
2812
+ lower(value: PrerequisiteLecture): UniffiByteArray;
2813
+ };
2814
+ FfiConverterTypeRegisteredLecture: {
2815
+ read(from: RustBuffer): RegisteredLecture;
2816
+ write(value: RegisteredLecture, into: RustBuffer): void;
2817
+ allocationSize(value: RegisteredLecture): number;
2818
+ lift(value: UniffiByteArray): RegisteredLecture;
2819
+ lower(value: RegisteredLecture): UniffiByteArray;
2820
+ };
2166
2821
  FfiConverterTypeScholarship: {
2167
2822
  read(from: RustBuffer): Scholarship;
2168
2823
  write(value: Scholarship, into: RustBuffer): void;
@@ -2303,6 +2958,27 @@ declare const _default: Readonly<{
2303
2958
  lift(value: UniffiByteArray): StudentWorkInformation;
2304
2959
  lower(value: StudentWorkInformation): UniffiByteArray;
2305
2960
  };
2961
+ FfiConverterTypeSyllabusCompetency: {
2962
+ read(from: RustBuffer): SyllabusCompetency;
2963
+ write(value: SyllabusCompetency, into: RustBuffer): void;
2964
+ allocationSize(value: SyllabusCompetency): number;
2965
+ lift(value: UniffiByteArray): SyllabusCompetency;
2966
+ lower(value: SyllabusCompetency): UniffiByteArray;
2967
+ };
2968
+ FfiConverterTypeSyllabusGradingItem: {
2969
+ read(from: RustBuffer): SyllabusGradingItem;
2970
+ write(value: SyllabusGradingItem, into: RustBuffer): void;
2971
+ allocationSize(value: SyllabusGradingItem): number;
2972
+ lift(value: UniffiByteArray): SyllabusGradingItem;
2973
+ lower(value: SyllabusGradingItem): UniffiByteArray;
2974
+ };
2975
+ FfiConverterTypeSyllabusWeeklyPlan: {
2976
+ read(from: RustBuffer): SyllabusWeeklyPlan;
2977
+ write(value: SyllabusWeeklyPlan, into: RustBuffer): void;
2978
+ allocationSize(value: SyllabusWeeklyPlan): number;
2979
+ lift(value: UniffiByteArray): SyllabusWeeklyPlan;
2980
+ lower(value: SyllabusWeeklyPlan): UniffiByteArray;
2981
+ };
2306
2982
  FfiConverterTypeU32Pair: {
2307
2983
  read(from: RustBuffer): UnsignedIntPair;
2308
2984
  write(value: UnsignedIntPair, into: RustBuffer): void;