@rusaint/react-native 0.13.6 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/src/main/jniLibs/arm64-v8a/librusaint_ffi.so +0 -0
- package/android/src/main/jniLibs/armeabi-v7a/librusaint_ffi.so +0 -0
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeResources +6 -6
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeSignature +0 -0
- package/build/RusaintReactNative.xcframework/ios-arm64/librusaint_ffi.a +0 -0
- package/build/RusaintReactNative.xcframework/ios-arm64-simulator/librusaint_ffi.a +0 -0
- package/cpp/generated/rusaint_ffi.cpp +373 -0
- package/cpp/generated/rusaint_ffi.hpp +20 -0
- package/lib/commonjs/generated/rusaint.js +78 -1
- package/lib/commonjs/generated/rusaint.js.map +1 -1
- package/lib/commonjs/generated/rusaint_ffi-ffi.js.map +1 -1
- package/lib/commonjs/generated/rusaint_ffi.js +274 -1
- package/lib/commonjs/generated/rusaint_ffi.js.map +1 -1
- package/lib/module/generated/rusaint.js +77 -0
- package/lib/module/generated/rusaint.js.map +1 -1
- package/lib/module/generated/rusaint_ffi-ffi.js.map +1 -1
- package/lib/module/generated/rusaint_ffi.js +271 -0
- package/lib/module/generated/rusaint_ffi.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/rusaint.d.ts +95 -0
- package/lib/typescript/commonjs/src/generated/rusaint.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/generated/rusaint_ffi-ffi.d.ts +20 -0
- package/lib/typescript/commonjs/src/generated/rusaint_ffi-ffi.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts +118 -1
- package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/rusaint.d.ts +95 -0
- package/lib/typescript/module/src/generated/rusaint.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/rusaint_ffi-ffi.d.ts +20 -0
- package/lib/typescript/module/src/generated/rusaint_ffi-ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/rusaint_ffi.d.ts +118 -1
- package/lib/typescript/module/src/generated/rusaint_ffi.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/generated/rusaint.ts +166 -0
- package/src/generated/rusaint_ffi-ffi.ts +55 -0
- package/src/generated/rusaint_ffi.ts +621 -0
|
@@ -786,6 +786,82 @@ const FfiConverterTypePersonalCourseSchedule = (() => {
|
|
|
786
786
|
return new FFIConverter();
|
|
787
787
|
})();
|
|
788
788
|
|
|
789
|
+
/**
|
|
790
|
+
* 수강신청한 과목 정보
|
|
791
|
+
*/
|
|
792
|
+
|
|
793
|
+
/**
|
|
794
|
+
* Generated factory for {@link RegisteredLecture} record objects.
|
|
795
|
+
*/
|
|
796
|
+
export const RegisteredLecture = (() => {
|
|
797
|
+
const defaults = () => ({});
|
|
798
|
+
const create = (() => {
|
|
799
|
+
return uniffiCreateRecord(defaults);
|
|
800
|
+
})();
|
|
801
|
+
return Object.freeze({
|
|
802
|
+
/**
|
|
803
|
+
* Create a frozen instance of {@link RegisteredLecture}, with defaults specified
|
|
804
|
+
* in Rust, in the {@link rusaint} crate.
|
|
805
|
+
*/
|
|
806
|
+
create,
|
|
807
|
+
/**
|
|
808
|
+
* Create a frozen instance of {@link RegisteredLecture}, with defaults specified
|
|
809
|
+
* in Rust, in the {@link rusaint} crate.
|
|
810
|
+
*/
|
|
811
|
+
new: create,
|
|
812
|
+
/**
|
|
813
|
+
* Defaults specified in the {@link rusaint} crate.
|
|
814
|
+
*/
|
|
815
|
+
defaults: () => Object.freeze(defaults())
|
|
816
|
+
});
|
|
817
|
+
})();
|
|
818
|
+
const FfiConverterTypeRegisteredLecture = (() => {
|
|
819
|
+
class FFIConverter extends AbstractFfiConverterByteArray {
|
|
820
|
+
read(from) {
|
|
821
|
+
return {
|
|
822
|
+
syllabus: FfiConverterOptionalString.read(from),
|
|
823
|
+
category: FfiConverterString.read(from),
|
|
824
|
+
subCategory: FfiConverterOptionalString.read(from),
|
|
825
|
+
abeekInfo: FfiConverterOptionalString.read(from),
|
|
826
|
+
field: FfiConverterOptionalString.read(from),
|
|
827
|
+
code: FfiConverterString.read(from),
|
|
828
|
+
name: FfiConverterString.read(from),
|
|
829
|
+
division: FfiConverterOptionalString.read(from),
|
|
830
|
+
professor: FfiConverterString.read(from),
|
|
831
|
+
department: FfiConverterString.read(from),
|
|
832
|
+
timePoints: FfiConverterString.read(from),
|
|
833
|
+
personeel: FfiConverterString.read(from),
|
|
834
|
+
remainingSeats: FfiConverterString.read(from),
|
|
835
|
+
scheduleRoom: FfiConverterString.read(from),
|
|
836
|
+
target: FfiConverterString.read(from),
|
|
837
|
+
remarks: FfiConverterString.read(from)
|
|
838
|
+
};
|
|
839
|
+
}
|
|
840
|
+
write(value, into) {
|
|
841
|
+
FfiConverterOptionalString.write(value.syllabus, into);
|
|
842
|
+
FfiConverterString.write(value.category, into);
|
|
843
|
+
FfiConverterOptionalString.write(value.subCategory, into);
|
|
844
|
+
FfiConverterOptionalString.write(value.abeekInfo, into);
|
|
845
|
+
FfiConverterOptionalString.write(value.field, into);
|
|
846
|
+
FfiConverterString.write(value.code, into);
|
|
847
|
+
FfiConverterString.write(value.name, into);
|
|
848
|
+
FfiConverterOptionalString.write(value.division, into);
|
|
849
|
+
FfiConverterString.write(value.professor, into);
|
|
850
|
+
FfiConverterString.write(value.department, into);
|
|
851
|
+
FfiConverterString.write(value.timePoints, into);
|
|
852
|
+
FfiConverterString.write(value.personeel, into);
|
|
853
|
+
FfiConverterString.write(value.remainingSeats, into);
|
|
854
|
+
FfiConverterString.write(value.scheduleRoom, into);
|
|
855
|
+
FfiConverterString.write(value.target, into);
|
|
856
|
+
FfiConverterString.write(value.remarks, into);
|
|
857
|
+
}
|
|
858
|
+
allocationSize(value) {
|
|
859
|
+
return FfiConverterOptionalString.allocationSize(value.syllabus) + FfiConverterString.allocationSize(value.category) + FfiConverterOptionalString.allocationSize(value.subCategory) + FfiConverterOptionalString.allocationSize(value.abeekInfo) + FfiConverterOptionalString.allocationSize(value.field) + FfiConverterString.allocationSize(value.code) + FfiConverterString.allocationSize(value.name) + FfiConverterOptionalString.allocationSize(value.division) + FfiConverterString.allocationSize(value.professor) + FfiConverterString.allocationSize(value.department) + FfiConverterString.allocationSize(value.timePoints) + FfiConverterString.allocationSize(value.personeel) + FfiConverterString.allocationSize(value.remainingSeats) + FfiConverterString.allocationSize(value.scheduleRoom) + FfiConverterString.allocationSize(value.target) + FfiConverterString.allocationSize(value.remarks);
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
return new FFIConverter();
|
|
863
|
+
})();
|
|
864
|
+
|
|
789
865
|
/**
|
|
790
866
|
* 수혜받은 장학금 정보
|
|
791
867
|
*/
|
|
@@ -3202,6 +3278,7 @@ export default Object.freeze({
|
|
|
3202
3278
|
FfiConverterTypeLectureCategory,
|
|
3203
3279
|
FfiConverterTypeLectureCategoryBuilder,
|
|
3204
3280
|
FfiConverterTypePersonalCourseSchedule,
|
|
3281
|
+
FfiConverterTypeRegisteredLecture,
|
|
3205
3282
|
FfiConverterTypeScholarship,
|
|
3206
3283
|
FfiConverterTypeSemesterGrade,
|
|
3207
3284
|
FfiConverterTypeSemesterType,
|