@rusaint/react-native 0.10.0-dev.1 → 0.10.0-dev.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.
Files changed (29) hide show
  1. package/android/generated/java/{dev/eatsteak/rusaint/reactnative → com/facebook/fbreact/specs}/NativeReactNativeSpec.java +1 -1
  2. package/build/RusaintReactNativeFramework.xcframework/Info.plist +4 -4
  3. package/build/RusaintReactNativeFramework.xcframework/_CodeSignature/CodeDirectory +0 -0
  4. package/build/RusaintReactNativeFramework.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
  5. package/build/RusaintReactNativeFramework.xcframework/_CodeSignature/CodeSignature +0 -0
  6. package/ios/generated/RCTAppDependencyProvider.h +25 -0
  7. package/ios/generated/RCTAppDependencyProvider.mm +35 -0
  8. package/ios/generated/RCTModuleProviders.h +16 -0
  9. package/ios/generated/RCTModuleProviders.mm +51 -0
  10. package/ios/generated/RCTModulesConformingToProtocolsProvider.h +18 -0
  11. package/ios/generated/RCTModulesConformingToProtocolsProvider.mm +54 -0
  12. package/ios/generated/RCTThirdPartyComponentsProvider.h +16 -0
  13. package/ios/generated/RCTThirdPartyComponentsProvider.mm +30 -0
  14. package/ios/generated/ReactAppDependencyProvider.podspec +34 -0
  15. package/lib/typescript/commonjs/package.json +1 -0
  16. package/lib/typescript/module/package.json +1 -0
  17. package/lib/typescript/module/src/NativeReactNative.d.ts +8 -0
  18. package/lib/typescript/module/src/NativeReactNative.d.ts.map +1 -0
  19. package/lib/typescript/module/src/generated/rusaint-ffi.d.ts +109 -0
  20. package/lib/typescript/module/src/generated/rusaint-ffi.d.ts.map +1 -0
  21. package/lib/typescript/module/src/generated/rusaint.d.ts +2330 -0
  22. package/lib/typescript/module/src/generated/rusaint.d.ts.map +1 -0
  23. package/lib/typescript/module/src/generated/rusaint_ffi-ffi.d.ts +300 -0
  24. package/lib/typescript/module/src/generated/rusaint_ffi-ffi.d.ts.map +1 -0
  25. package/lib/typescript/module/src/generated/rusaint_ffi.d.ts +1111 -0
  26. package/lib/typescript/module/src/generated/rusaint_ffi.d.ts.map +1 -0
  27. package/lib/typescript/module/src/index.d.ts +10 -0
  28. package/lib/typescript/module/src/index.d.ts.map +1 -0
  29. package/package.json +7 -7
@@ -0,0 +1,1111 @@
1
+ import { type ChapelInformation, type ClassGrade, type GradeSummary, type GraduationRequirements, type GraduationStudent, type Lecture, type LectureAssessmentResult, type PersonalCourseSchedule, type Scholarship, type SemesterGrade, type StudentAcademicRecords, type StudentBankAccount, type StudentFamily, type StudentGraduation, type StudentInformation, type StudentQualification, type StudentReligion, type StudentResearchBankAccount, type StudentTransferRecords, type StudentWorkInformation, CourseType, LectureCategory, SemesterType } from './rusaint';
2
+ import { type UniffiByteArray, type UniffiRustArcPtr, type UnsafeMutableRawPointer, FfiConverterObject, RustBuffer, UniffiAbstractObject, destructorGuardSymbol, pointerLiteralSymbol, uniffiTypeNameSymbol, variantOrdinalSymbol } from 'uniffi-bindgen-react-native';
3
+ export type YearSemester = {
4
+ year: number;
5
+ semester: SemesterType;
6
+ };
7
+ /**
8
+ * Generated factory for {@link YearSemester} record objects.
9
+ */
10
+ export declare const YearSemester: Readonly<{
11
+ /**
12
+ * Create a frozen instance of {@link YearSemester}, with defaults specified
13
+ * in Rust, in the {@link rusaint_ffi} crate.
14
+ */
15
+ create: (partial: Partial<YearSemester> & Required<Omit<YearSemester, never>>) => YearSemester;
16
+ /**
17
+ * Create a frozen instance of {@link YearSemester}, with defaults specified
18
+ * in Rust, in the {@link rusaint_ffi} crate.
19
+ */
20
+ new: (partial: Partial<YearSemester> & Required<Omit<YearSemester, never>>) => YearSemester;
21
+ /**
22
+ * Defaults specified in the {@link rusaint_ffi} crate.
23
+ */
24
+ defaults: () => Partial<YearSemester>;
25
+ }>;
26
+ export declare enum RusaintError_Tags {
27
+ General = "General"
28
+ }
29
+ /**
30
+ * Rusaint에서 반환하는 기본 오류
31
+ */
32
+ export declare const RusaintError: {
33
+ General: {
34
+ new (message: string): {
35
+ readonly tag: RusaintError_Tags.General;
36
+ /**
37
+ * @private
38
+ * This field is private and should not be used.
39
+ */
40
+ readonly [uniffiTypeNameSymbol]: string;
41
+ /**
42
+ * @private
43
+ * This field is private and should not be used.
44
+ */
45
+ readonly [variantOrdinalSymbol]: 1;
46
+ name: string;
47
+ message: string;
48
+ stack?: string;
49
+ cause?: unknown;
50
+ };
51
+ instanceOf(e: any): e is {
52
+ readonly tag: RusaintError_Tags.General;
53
+ /**
54
+ * @private
55
+ * This field is private and should not be used.
56
+ */
57
+ readonly [uniffiTypeNameSymbol]: string;
58
+ /**
59
+ * @private
60
+ * This field is private and should not be used.
61
+ */
62
+ readonly [variantOrdinalSymbol]: 1;
63
+ name: string;
64
+ message: string;
65
+ stack?: string;
66
+ cause?: unknown;
67
+ };
68
+ captureStackTrace(targetObject: object, constructorOpt?: Function): void;
69
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
70
+ stackTraceLimit: number;
71
+ };
72
+ instanceOf: (e: any) => e is RusaintError;
73
+ };
74
+ /**
75
+ * Rusaint에서 반환하는 기본 오류
76
+ */
77
+ export type RusaintError = InstanceType<(typeof RusaintError)[keyof Omit<typeof RusaintError, 'instanceOf'>]>;
78
+ /**
79
+ * [채플정보조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW3681)
80
+ */
81
+ export interface ChapelApplicationInterface {
82
+ /**
83
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
84
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
85
+ */
86
+ getSelectedSemester(asyncOpts_?: {
87
+ signal: AbortSignal;
88
+ }): Promise<YearSemester>;
89
+ /**
90
+ * 해당 학기의 채플 정보를 가져옵니다.
91
+ */
92
+ information(year: number, semester: SemesterType, asyncOpts_?: {
93
+ signal: AbortSignal;
94
+ }): Promise<ChapelInformation>;
95
+ }
96
+ /**
97
+ * [채플정보조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW3681)
98
+ */
99
+ export declare class ChapelApplication extends UniffiAbstractObject implements ChapelApplicationInterface {
100
+ readonly [uniffiTypeNameSymbol] = "ChapelApplication";
101
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
102
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
103
+ private constructor();
104
+ /**
105
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
106
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
107
+ */
108
+ getSelectedSemester(asyncOpts_?: {
109
+ signal: AbortSignal;
110
+ }): Promise<YearSemester>;
111
+ /**
112
+ * 해당 학기의 채플 정보를 가져옵니다.
113
+ */
114
+ information(year: number, semester: SemesterType, asyncOpts_?: {
115
+ signal: AbortSignal;
116
+ }): Promise<ChapelInformation>;
117
+ /**
118
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
119
+ */
120
+ uniffiDestroy(): void;
121
+ static instanceOf(obj: any): obj is ChapelApplication;
122
+ }
123
+ /**
124
+ * [`ChapelApplication`] 생성을 위한 빌더
125
+ */
126
+ export interface ChapelApplicationBuilderInterface {
127
+ /**
128
+ * 세션과 함께 [`ChapelApplication`]을 만듭니다.
129
+ */
130
+ build(session: USaintSessionInterface, asyncOpts_?: {
131
+ signal: AbortSignal;
132
+ }): Promise<ChapelApplicationInterface>;
133
+ }
134
+ /**
135
+ * [`ChapelApplication`] 생성을 위한 빌더
136
+ */
137
+ export declare class ChapelApplicationBuilder extends UniffiAbstractObject implements ChapelApplicationBuilderInterface {
138
+ readonly [uniffiTypeNameSymbol] = "ChapelApplicationBuilder";
139
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
140
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
141
+ /**
142
+ * 새로운 [`ChapelApplicationBuilder`]를 만듭니다.
143
+ */
144
+ constructor();
145
+ /**
146
+ * 세션과 함께 [`ChapelApplication`]을 만듭니다.
147
+ */
148
+ build(session: USaintSessionInterface, asyncOpts_?: {
149
+ signal: AbortSignal;
150
+ }): Promise<ChapelApplicationInterface>;
151
+ /**
152
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
153
+ */
154
+ uniffiDestroy(): void;
155
+ static instanceOf(obj: any): obj is ChapelApplicationBuilder;
156
+ }
157
+ /**
158
+ * [학생 성적 조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMB3W0017)
159
+ */
160
+ export interface CourseGradesApplicationInterface {
161
+ /**
162
+ * 전체 학기의 증명 평점 정보를 가져옵니다.
163
+ */
164
+ certificatedSummary(courseType: CourseType, asyncOpts_?: {
165
+ signal: AbortSignal;
166
+ }): Promise<GradeSummary>;
167
+ /**
168
+ * 주어진 수업의 상세 성적 정보를 가져옵니다.
169
+ */
170
+ classDetail(courseType: CourseType, year: number, semester: SemesterType, code: string, asyncOpts_?: {
171
+ signal: AbortSignal;
172
+ }): Promise<Map<string, /*f32*/ number>>;
173
+ /**
174
+ * 주어진 학기의 수업별 성적을 가져옵니다. `include_details`가 `true`인 경우 수업의 상세 성적도 가져옵니다.
175
+ * 수업의 상세 성적까지 가져올 경우 상세 성적이 있는 수업의 수 만큼 서버에 요청을 보내므로 반드시 상세 성적도 한번에 가져와야 할 때에만 사용하십시오.
176
+ *
177
+ * 수업 성적을 가져온 이후 상세 성적 또한 가져오려면 `[class_detail()]`함수를 이용하십시오.
178
+ */
179
+ classes(courseType: CourseType, year: number, semester: SemesterType, includeDetails: boolean, asyncOpts_?: {
180
+ signal: AbortSignal;
181
+ }): Promise<Array<ClassGrade>>;
182
+ /**
183
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
184
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
185
+ */
186
+ getSelectedSemester(asyncOpts_?: {
187
+ signal: AbortSignal;
188
+ }): Promise<YearSemester>;
189
+ /**
190
+ * 전체 학기의 학적부 평점 정보를 가져옵니다.
191
+ */
192
+ recordedSummary(courseType: CourseType, asyncOpts_?: {
193
+ signal: AbortSignal;
194
+ }): Promise<GradeSummary>;
195
+ /**
196
+ * 학기별 평점 정보를 가져옵니다.
197
+ */
198
+ semesters(courseType: CourseType, asyncOpts_?: {
199
+ signal: AbortSignal;
200
+ }): Promise<Array<SemesterGrade>>;
201
+ }
202
+ /**
203
+ * [학생 성적 조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMB3W0017)
204
+ */
205
+ export declare class CourseGradesApplication extends UniffiAbstractObject implements CourseGradesApplicationInterface {
206
+ readonly [uniffiTypeNameSymbol] = "CourseGradesApplication";
207
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
208
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
209
+ private constructor();
210
+ /**
211
+ * 전체 학기의 증명 평점 정보를 가져옵니다.
212
+ */
213
+ certificatedSummary(courseType: CourseType, asyncOpts_?: {
214
+ signal: AbortSignal;
215
+ }): Promise<GradeSummary>;
216
+ /**
217
+ * 주어진 수업의 상세 성적 정보를 가져옵니다.
218
+ */
219
+ classDetail(courseType: CourseType, year: number, semester: SemesterType, code: string, asyncOpts_?: {
220
+ signal: AbortSignal;
221
+ }): Promise<Map<string, /*f32*/ number>>;
222
+ /**
223
+ * 주어진 학기의 수업별 성적을 가져옵니다. `include_details`가 `true`인 경우 수업의 상세 성적도 가져옵니다.
224
+ * 수업의 상세 성적까지 가져올 경우 상세 성적이 있는 수업의 수 만큼 서버에 요청을 보내므로 반드시 상세 성적도 한번에 가져와야 할 때에만 사용하십시오.
225
+ *
226
+ * 수업 성적을 가져온 이후 상세 성적 또한 가져오려면 `[class_detail()]`함수를 이용하십시오.
227
+ */
228
+ classes(courseType: CourseType, year: number, semester: SemesterType, includeDetails: boolean, asyncOpts_?: {
229
+ signal: AbortSignal;
230
+ }): Promise<Array<ClassGrade>>;
231
+ /**
232
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
233
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
234
+ */
235
+ getSelectedSemester(asyncOpts_?: {
236
+ signal: AbortSignal;
237
+ }): Promise<YearSemester>;
238
+ /**
239
+ * 전체 학기의 학적부 평점 정보를 가져옵니다.
240
+ */
241
+ recordedSummary(courseType: CourseType, asyncOpts_?: {
242
+ signal: AbortSignal;
243
+ }): Promise<GradeSummary>;
244
+ /**
245
+ * 학기별 평점 정보를 가져옵니다.
246
+ */
247
+ semesters(courseType: CourseType, asyncOpts_?: {
248
+ signal: AbortSignal;
249
+ }): Promise<Array<SemesterGrade>>;
250
+ /**
251
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
252
+ */
253
+ uniffiDestroy(): void;
254
+ static instanceOf(obj: any): obj is CourseGradesApplication;
255
+ }
256
+ /**
257
+ * [`CourseGradesApplication`] 생성을 위한 빌더
258
+ */
259
+ export interface CourseGradesApplicationBuilderInterface {
260
+ /**
261
+ * 세션과 함께 [`CourseGradesApplication`]을 만듭니다.
262
+ */
263
+ build(session: USaintSessionInterface, asyncOpts_?: {
264
+ signal: AbortSignal;
265
+ }): Promise<CourseGradesApplicationInterface>;
266
+ }
267
+ /**
268
+ * [`CourseGradesApplication`] 생성을 위한 빌더
269
+ */
270
+ export declare class CourseGradesApplicationBuilder extends UniffiAbstractObject implements CourseGradesApplicationBuilderInterface {
271
+ readonly [uniffiTypeNameSymbol] = "CourseGradesApplicationBuilder";
272
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
273
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
274
+ /**
275
+ * 새로운 [`CourseGradesApplicationBuilder`]를 만듭니다.
276
+ */
277
+ constructor();
278
+ /**
279
+ * 세션과 함께 [`CourseGradesApplication`]을 만듭니다.
280
+ */
281
+ build(session: USaintSessionInterface, asyncOpts_?: {
282
+ signal: AbortSignal;
283
+ }): Promise<CourseGradesApplicationInterface>;
284
+ /**
285
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
286
+ */
287
+ uniffiDestroy(): void;
288
+ static instanceOf(obj: any): obj is CourseGradesApplicationBuilder;
289
+ }
290
+ /**
291
+ * [강의시간표](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW2100)
292
+ */
293
+ export interface CourseScheduleApplicationInterface {
294
+ /**
295
+ * 선택한 학기의 채플 과목 분류 목록을 가져옵니다.
296
+ */
297
+ chapelCategories(year: number, semester: SemesterType, asyncOpts_?: {
298
+ signal: AbortSignal;
299
+ }): Promise<Array<string>>;
300
+ /**
301
+ * 선택한 학기 기준 단과대 목록을 가져옵니다.
302
+ */
303
+ collages(year: number, semester: SemesterType, asyncOpts_?: {
304
+ signal: AbortSignal;
305
+ }): Promise<Array<string>>;
306
+ /**
307
+ * 선택한 학기의 연계전공 목록을 가져옵니다.
308
+ */
309
+ connectedMajors(year: number, semester: SemesterType, asyncOpts_?: {
310
+ signal: AbortSignal;
311
+ }): Promise<Array<string>>;
312
+ /**
313
+ * 선택한 학기 기준 주어진 단과대의 학과(부) 목록을 가져옵니다.
314
+ */
315
+ departments(year: number, semester: SemesterType, collage: string, asyncOpts_?: {
316
+ signal: AbortSignal;
317
+ }): Promise<Array<string>>;
318
+ /**
319
+ * 학기, 학년도, 강의 분류를 통해 강의를 찾습니다.
320
+ */
321
+ findLectures(year: number, semester: SemesterType, lectureCategory: LectureCategory, asyncOpts_?: {
322
+ signal: AbortSignal;
323
+ }): Promise<Array<Lecture>>;
324
+ /**
325
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
326
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
327
+ */
328
+ getSelectedSemester(asyncOpts_?: {
329
+ signal: AbortSignal;
330
+ }): Promise<YearSemester>;
331
+ /**
332
+ * 선택한 학기의 대학원 단과대학 목록을 가져옵니다.
333
+ */
334
+ graduatedCollages(year: number, semester: SemesterType, asyncOpts_?: {
335
+ signal: AbortSignal;
336
+ }): Promise<Array<string>>;
337
+ /**
338
+ * 선택한 학기의 주어진 대학원 단과대의 학과 목록을 가져옵니다.
339
+ */
340
+ graduatedDepartments(year: number, semester: SemesterType, collage: string, asyncOpts_?: {
341
+ signal: AbortSignal;
342
+ }): Promise<Array<string>>;
343
+ /**
344
+ * 선택한 학과(부)의 전공 목록을 가져옵니다.
345
+ */
346
+ majors(year: number, semester: SemesterType, collage: string, department: string, asyncOpts_?: {
347
+ signal: AbortSignal;
348
+ }): Promise<Array<string>>;
349
+ /**
350
+ * 선택한 학기의 교양선택 분야 목록을 가져옵니다.
351
+ */
352
+ optionalElectiveCategories(year: number, semester: SemesterType, asyncOpts_?: {
353
+ signal: AbortSignal;
354
+ }): Promise<Array<string>>;
355
+ /**
356
+ * 선택한 학기의 교양필수 과목명 목록을 가져옵니다.
357
+ */
358
+ requiredElectives(year: number, semester: SemesterType, asyncOpts_?: {
359
+ signal: AbortSignal;
360
+ }): Promise<Array<string>>;
361
+ /**
362
+ * 선택한 학기의 융합전공 목록을 가져옵니다.
363
+ */
364
+ unitedMajors(year: number, semester: SemesterType, asyncOpts_?: {
365
+ signal: AbortSignal;
366
+ }): Promise<Array<string>>;
367
+ }
368
+ /**
369
+ * [강의시간표](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW2100)
370
+ */
371
+ export declare class CourseScheduleApplication extends UniffiAbstractObject implements CourseScheduleApplicationInterface {
372
+ readonly [uniffiTypeNameSymbol] = "CourseScheduleApplication";
373
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
374
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
375
+ private constructor();
376
+ /**
377
+ * 선택한 학기의 채플 과목 분류 목록을 가져옵니다.
378
+ */
379
+ chapelCategories(year: number, semester: SemesterType, asyncOpts_?: {
380
+ signal: AbortSignal;
381
+ }): Promise<Array<string>>;
382
+ /**
383
+ * 선택한 학기 기준 단과대 목록을 가져옵니다.
384
+ */
385
+ collages(year: number, semester: SemesterType, asyncOpts_?: {
386
+ signal: AbortSignal;
387
+ }): Promise<Array<string>>;
388
+ /**
389
+ * 선택한 학기의 연계전공 목록을 가져옵니다.
390
+ */
391
+ connectedMajors(year: number, semester: SemesterType, asyncOpts_?: {
392
+ signal: AbortSignal;
393
+ }): Promise<Array<string>>;
394
+ /**
395
+ * 선택한 학기 기준 주어진 단과대의 학과(부) 목록을 가져옵니다.
396
+ */
397
+ departments(year: number, semester: SemesterType, collage: string, asyncOpts_?: {
398
+ signal: AbortSignal;
399
+ }): Promise<Array<string>>;
400
+ /**
401
+ * 학기, 학년도, 강의 분류를 통해 강의를 찾습니다.
402
+ */
403
+ findLectures(year: number, semester: SemesterType, lectureCategory: LectureCategory, asyncOpts_?: {
404
+ signal: AbortSignal;
405
+ }): Promise<Array<Lecture>>;
406
+ /**
407
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
408
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
409
+ */
410
+ getSelectedSemester(asyncOpts_?: {
411
+ signal: AbortSignal;
412
+ }): Promise<YearSemester>;
413
+ /**
414
+ * 선택한 학기의 대학원 단과대학 목록을 가져옵니다.
415
+ */
416
+ graduatedCollages(year: number, semester: SemesterType, asyncOpts_?: {
417
+ signal: AbortSignal;
418
+ }): Promise<Array<string>>;
419
+ /**
420
+ * 선택한 학기의 주어진 대학원 단과대의 학과 목록을 가져옵니다.
421
+ */
422
+ graduatedDepartments(year: number, semester: SemesterType, collage: string, asyncOpts_?: {
423
+ signal: AbortSignal;
424
+ }): Promise<Array<string>>;
425
+ /**
426
+ * 선택한 학과(부)의 전공 목록을 가져옵니다.
427
+ */
428
+ majors(year: number, semester: SemesterType, collage: string, department: string, asyncOpts_?: {
429
+ signal: AbortSignal;
430
+ }): Promise<Array<string>>;
431
+ /**
432
+ * 선택한 학기의 교양선택 분야 목록을 가져옵니다.
433
+ */
434
+ optionalElectiveCategories(year: number, semester: SemesterType, asyncOpts_?: {
435
+ signal: AbortSignal;
436
+ }): Promise<Array<string>>;
437
+ /**
438
+ * 선택한 학기의 교양필수 과목명 목록을 가져옵니다.
439
+ */
440
+ requiredElectives(year: number, semester: SemesterType, asyncOpts_?: {
441
+ signal: AbortSignal;
442
+ }): Promise<Array<string>>;
443
+ /**
444
+ * 선택한 학기의 융합전공 목록을 가져옵니다.
445
+ */
446
+ unitedMajors(year: number, semester: SemesterType, asyncOpts_?: {
447
+ signal: AbortSignal;
448
+ }): Promise<Array<string>>;
449
+ /**
450
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
451
+ */
452
+ uniffiDestroy(): void;
453
+ static instanceOf(obj: any): obj is CourseScheduleApplication;
454
+ }
455
+ /**
456
+ * [`CourseScheduleApplication`] 생성을 위한 빌더
457
+ */
458
+ export interface CourseScheduleApplicationBuilderInterface {
459
+ /**
460
+ * 세션과 함께 [`CourseScheduleApplication`]을 만듭니다.
461
+ */
462
+ build(session: USaintSessionInterface, asyncOpts_?: {
463
+ signal: AbortSignal;
464
+ }): Promise<CourseScheduleApplicationInterface>;
465
+ }
466
+ /**
467
+ * [`CourseScheduleApplication`] 생성을 위한 빌더
468
+ */
469
+ export declare class CourseScheduleApplicationBuilder extends UniffiAbstractObject implements CourseScheduleApplicationBuilderInterface {
470
+ readonly [uniffiTypeNameSymbol] = "CourseScheduleApplicationBuilder";
471
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
472
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
473
+ /**
474
+ * 새로운 [`CourseScheduleApplicationBuilder`]를 만듭니다.
475
+ */
476
+ constructor();
477
+ /**
478
+ * 세션과 함께 [`CourseScheduleApplication`]을 만듭니다.
479
+ */
480
+ build(session: USaintSessionInterface, asyncOpts_?: {
481
+ signal: AbortSignal;
482
+ }): Promise<CourseScheduleApplicationInterface>;
483
+ /**
484
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
485
+ */
486
+ uniffiDestroy(): void;
487
+ static instanceOf(obj: any): obj is CourseScheduleApplicationBuilder;
488
+ }
489
+ /**
490
+ * [졸업사정표](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW8015)
491
+ */
492
+ export interface GraduationRequirementsApplicationInterface {
493
+ /**
494
+ * 졸업사정 결과와 졸업 필요 요건별 충족 여부와 세부 정보를 반환합니다.
495
+ */
496
+ requirements(asyncOpts_?: {
497
+ signal: AbortSignal;
498
+ }): Promise<GraduationRequirements>;
499
+ /**
500
+ * 학생 정보를 반환합니다.
501
+ */
502
+ studentInfo(asyncOpts_?: {
503
+ signal: AbortSignal;
504
+ }): Promise<GraduationStudent>;
505
+ }
506
+ /**
507
+ * [졸업사정표](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW8015)
508
+ */
509
+ export declare class GraduationRequirementsApplication extends UniffiAbstractObject implements GraduationRequirementsApplicationInterface {
510
+ readonly [uniffiTypeNameSymbol] = "GraduationRequirementsApplication";
511
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
512
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
513
+ private constructor();
514
+ /**
515
+ * 졸업사정 결과와 졸업 필요 요건별 충족 여부와 세부 정보를 반환합니다.
516
+ */
517
+ requirements(asyncOpts_?: {
518
+ signal: AbortSignal;
519
+ }): Promise<GraduationRequirements>;
520
+ /**
521
+ * 학생 정보를 반환합니다.
522
+ */
523
+ studentInfo(asyncOpts_?: {
524
+ signal: AbortSignal;
525
+ }): Promise<GraduationStudent>;
526
+ /**
527
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
528
+ */
529
+ uniffiDestroy(): void;
530
+ static instanceOf(obj: any): obj is GraduationRequirementsApplication;
531
+ }
532
+ /**
533
+ * [`GraduationRequirementsApplication`] 생성을 위한 빌더
534
+ */
535
+ export interface GraduationRequirementsApplicationBuilderInterface {
536
+ /**
537
+ * 세션과 함께 [`GraduationRequirementsApplication`]을 만듭니다.
538
+ */
539
+ build(session: USaintSessionInterface, asyncOpts_?: {
540
+ signal: AbortSignal;
541
+ }): Promise<GraduationRequirementsApplicationInterface>;
542
+ }
543
+ /**
544
+ * [`GraduationRequirementsApplication`] 생성을 위한 빌더
545
+ */
546
+ export declare class GraduationRequirementsApplicationBuilder extends UniffiAbstractObject implements GraduationRequirementsApplicationBuilderInterface {
547
+ readonly [uniffiTypeNameSymbol] = "GraduationRequirementsApplicationBuilder";
548
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
549
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
550
+ /**
551
+ * 새로운 [`GraduationRequirementsApplicationBuilder`]를 만듭니다.
552
+ */
553
+ constructor();
554
+ /**
555
+ * 세션과 함께 [`GraduationRequirementsApplication`]을 만듭니다.
556
+ */
557
+ build(session: USaintSessionInterface, asyncOpts_?: {
558
+ signal: AbortSignal;
559
+ }): Promise<GraduationRequirementsApplicationInterface>;
560
+ /**
561
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
562
+ */
563
+ uniffiDestroy(): void;
564
+ static instanceOf(obj: any): obj is GraduationRequirementsApplicationBuilder;
565
+ }
566
+ /**
567
+ * [강의평가조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMB2W1010)
568
+ */
569
+ export interface LectureAssessmentApplicationInterface {
570
+ /**
571
+ * 검색 조건에 맞는 강의평가 정보를 가져옵니다.
572
+ */
573
+ findAssessments(year: number, semester: SemesterType, lectureName: string | undefined, lectureCode: /*u32*/ number | undefined, professorName: string | undefined, asyncOpts_?: {
574
+ signal: AbortSignal;
575
+ }): Promise<Array<LectureAssessmentResult>>;
576
+ /**
577
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
578
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
579
+ */
580
+ getSelectedSemester(asyncOpts_?: {
581
+ signal: AbortSignal;
582
+ }): Promise<YearSemester>;
583
+ }
584
+ /**
585
+ * [강의평가조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMB2W1010)
586
+ */
587
+ export declare class LectureAssessmentApplication extends UniffiAbstractObject implements LectureAssessmentApplicationInterface {
588
+ readonly [uniffiTypeNameSymbol] = "LectureAssessmentApplication";
589
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
590
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
591
+ private constructor();
592
+ /**
593
+ * 검색 조건에 맞는 강의평가 정보를 가져옵니다.
594
+ */
595
+ findAssessments(year: number, semester: SemesterType, lectureName?: string | undefined, lectureCode?: /*u32*/ number | undefined, professorName?: string | undefined, asyncOpts_?: {
596
+ signal: AbortSignal;
597
+ }): Promise<Array<LectureAssessmentResult>>;
598
+ /**
599
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
600
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
601
+ */
602
+ getSelectedSemester(asyncOpts_?: {
603
+ signal: AbortSignal;
604
+ }): Promise<YearSemester>;
605
+ /**
606
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
607
+ */
608
+ uniffiDestroy(): void;
609
+ static instanceOf(obj: any): obj is LectureAssessmentApplication;
610
+ }
611
+ /**
612
+ * [`LectureAssessmentApplication`] 생성을 위한 빌더
613
+ */
614
+ export interface LectureAssessmentApplicationBuilderInterface {
615
+ /**
616
+ * 세션과 함께 [`LectureAssessmentApplication`]을 만듭니다.
617
+ */
618
+ build(session: USaintSessionInterface, asyncOpts_?: {
619
+ signal: AbortSignal;
620
+ }): Promise<LectureAssessmentApplicationInterface>;
621
+ }
622
+ /**
623
+ * [`LectureAssessmentApplication`] 생성을 위한 빌더
624
+ */
625
+ export declare class LectureAssessmentApplicationBuilder extends UniffiAbstractObject implements LectureAssessmentApplicationBuilderInterface {
626
+ readonly [uniffiTypeNameSymbol] = "LectureAssessmentApplicationBuilder";
627
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
628
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
629
+ /**
630
+ * 새로운 [`LectureAssessmentApplicationBuilder`]를 만듭니다.
631
+ */
632
+ constructor();
633
+ /**
634
+ * 세션과 함께 [`LectureAssessmentApplication`]을 만듭니다.
635
+ */
636
+ build(session: USaintSessionInterface, asyncOpts_?: {
637
+ signal: AbortSignal;
638
+ }): Promise<LectureAssessmentApplicationInterface>;
639
+ /**
640
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
641
+ */
642
+ uniffiDestroy(): void;
643
+ static instanceOf(obj: any): obj is LectureAssessmentApplicationBuilder;
644
+ }
645
+ /**
646
+ * [개인수업시간표](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW2102)
647
+ */
648
+ export interface PersonalCourseScheduleApplicationInterface {
649
+ /**
650
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
651
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
652
+ */
653
+ getSelectedSemester(asyncOpts_?: {
654
+ signal: AbortSignal;
655
+ }): Promise<YearSemester>;
656
+ /**
657
+ * 해당 학기의 시간표 정보를 가져옵니다.
658
+ */
659
+ schedule(year: number, semester: SemesterType, asyncOpts_?: {
660
+ signal: AbortSignal;
661
+ }): Promise<PersonalCourseSchedule>;
662
+ }
663
+ /**
664
+ * [개인수업시간표](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW2102)
665
+ */
666
+ export declare class PersonalCourseScheduleApplication extends UniffiAbstractObject implements PersonalCourseScheduleApplicationInterface {
667
+ readonly [uniffiTypeNameSymbol] = "PersonalCourseScheduleApplication";
668
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
669
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
670
+ private constructor();
671
+ /**
672
+ * 현재 페이지에 선택된 년도와 학기를 가져옵니다. 최초 로드 시 현재 학기를 가져올 가능성이 있습니다.
673
+ * 하지만 이 애플리케이션의 다른 함수를 호출하여 한번 정보를 가져왔다면 마지막으로 가져온 정보의 학기가 반환되므로 주의하여야 하며, 신뢰할 수 있는 현재 학기의 원천으로 사용되어서는 안됩니다.
674
+ */
675
+ getSelectedSemester(asyncOpts_?: {
676
+ signal: AbortSignal;
677
+ }): Promise<YearSemester>;
678
+ /**
679
+ * 해당 학기의 시간표 정보를 가져옵니다.
680
+ */
681
+ schedule(year: number, semester: SemesterType, asyncOpts_?: {
682
+ signal: AbortSignal;
683
+ }): Promise<PersonalCourseSchedule>;
684
+ /**
685
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
686
+ */
687
+ uniffiDestroy(): void;
688
+ static instanceOf(obj: any): obj is PersonalCourseScheduleApplication;
689
+ }
690
+ /**
691
+ * [`PersonalCourseScheduleApplication`] 생성을 위한 빌더
692
+ */
693
+ export interface PersonalCourseScheduleApplicationBuilderInterface {
694
+ /**
695
+ * 세션과 함께 [`PersonalCourseScheduleApplication`]을 만듭니다.
696
+ */
697
+ build(session: USaintSessionInterface, asyncOpts_?: {
698
+ signal: AbortSignal;
699
+ }): Promise<PersonalCourseScheduleApplicationInterface>;
700
+ }
701
+ /**
702
+ * [`PersonalCourseScheduleApplication`] 생성을 위한 빌더
703
+ */
704
+ export declare class PersonalCourseScheduleApplicationBuilder extends UniffiAbstractObject implements PersonalCourseScheduleApplicationBuilderInterface {
705
+ readonly [uniffiTypeNameSymbol] = "PersonalCourseScheduleApplicationBuilder";
706
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
707
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
708
+ /**
709
+ * 새로운 [`PersonalCourseScheduleApplicationBuilder`]를 만듭니다.
710
+ */
711
+ constructor();
712
+ /**
713
+ * 세션과 함께 [`PersonalCourseScheduleApplication`]을 만듭니다.
714
+ */
715
+ build(session: USaintSessionInterface, asyncOpts_?: {
716
+ signal: AbortSignal;
717
+ }): Promise<PersonalCourseScheduleApplicationInterface>;
718
+ /**
719
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
720
+ */
721
+ uniffiDestroy(): void;
722
+ static instanceOf(obj: any): obj is PersonalCourseScheduleApplicationBuilder;
723
+ }
724
+ /**
725
+ * [장학금수혜내역조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW7530n)
726
+ */
727
+ export interface ScholarshipsApplicationInterface {
728
+ /**
729
+ * 장학금 수혜 내역을 가져옵니다.
730
+ */
731
+ scholarships(asyncOpts_?: {
732
+ signal: AbortSignal;
733
+ }): Promise<Array<Scholarship>>;
734
+ }
735
+ /**
736
+ * [장학금수혜내역조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW7530n)
737
+ */
738
+ export declare class ScholarshipsApplication extends UniffiAbstractObject implements ScholarshipsApplicationInterface {
739
+ readonly [uniffiTypeNameSymbol] = "ScholarshipsApplication";
740
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
741
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
742
+ private constructor();
743
+ /**
744
+ * 장학금 수혜 내역을 가져옵니다.
745
+ */
746
+ scholarships(asyncOpts_?: {
747
+ signal: AbortSignal;
748
+ }): Promise<Array<Scholarship>>;
749
+ /**
750
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
751
+ */
752
+ uniffiDestroy(): void;
753
+ static instanceOf(obj: any): obj is ScholarshipsApplication;
754
+ }
755
+ /**
756
+ * [`ScholarshipsApplication`] 생성을 위한 빌더
757
+ */
758
+ export interface ScholarshipsApplicationBuilderInterface {
759
+ /**
760
+ * 세션과 함께 [`ScholarshipsApplication`]을 만듭니다.
761
+ */
762
+ build(session: USaintSessionInterface, asyncOpts_?: {
763
+ signal: AbortSignal;
764
+ }): Promise<ScholarshipsApplicationInterface>;
765
+ }
766
+ /**
767
+ * [`ScholarshipsApplication`] 생성을 위한 빌더
768
+ */
769
+ export declare class ScholarshipsApplicationBuilder extends UniffiAbstractObject implements ScholarshipsApplicationBuilderInterface {
770
+ readonly [uniffiTypeNameSymbol] = "ScholarshipsApplicationBuilder";
771
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
772
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
773
+ /**
774
+ * 새로운 [`ScholarshipsApplicationBuilder`]를 만듭니다.
775
+ */
776
+ constructor();
777
+ /**
778
+ * 세션과 함께 [`ScholarshipsApplication`]을 만듭니다.
779
+ */
780
+ build(session: USaintSessionInterface, asyncOpts_?: {
781
+ signal: AbortSignal;
782
+ }): Promise<ScholarshipsApplicationInterface>;
783
+ /**
784
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
785
+ */
786
+ uniffiDestroy(): void;
787
+ static instanceOf(obj: any): obj is ScholarshipsApplicationBuilder;
788
+ }
789
+ /**
790
+ * [학생 정보 수정 및 조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW1001n)
791
+ */
792
+ export interface StudentInformationApplicationInterface {
793
+ /**
794
+ * 학생의 학적상태 정보를 반환합니다.
795
+ */
796
+ academicRecord(asyncOpts_?: {
797
+ signal: AbortSignal;
798
+ }): Promise<StudentAcademicRecords>;
799
+ /**
800
+ * 학생의 은행계좌 정보를 반환합니다.
801
+ */
802
+ bankAccount(asyncOpts_?: {
803
+ signal: AbortSignal;
804
+ }): Promise<StudentBankAccount>;
805
+ /**
806
+ * 학생의 가족관계 정보를 반환합니다.
807
+ */
808
+ family(asyncOpts_?: {
809
+ signal: AbortSignal;
810
+ }): Promise<StudentFamily>;
811
+ /**
812
+ * 일반 학생 정보를 반환합니다.
813
+ */
814
+ general(asyncOpts_?: {
815
+ signal: AbortSignal;
816
+ }): Promise<StudentInformation>;
817
+ /**
818
+ * 학생의 졸업과 관련된 정보를 반환합니다.
819
+ */
820
+ graduation(asyncOpts_?: {
821
+ signal: AbortSignal;
822
+ }): Promise<StudentGraduation>;
823
+ /**
824
+ * 학생의 교직, 평생교육사, 7+1 프로그램 등 자격 관련 정보를 반환합니다.
825
+ */
826
+ qualifications(asyncOpts_?: {
827
+ signal: AbortSignal;
828
+ }): Promise<StudentQualification>;
829
+ /**
830
+ * 학생의 종교 정보를 반환합니다.
831
+ */
832
+ religion(asyncOpts_?: {
833
+ signal: AbortSignal;
834
+ }): Promise<StudentReligion>;
835
+ /**
836
+ * 학생의 연구비 입금 계좌를 반환합니다.
837
+ */
838
+ researchBankAccount(asyncOpts_?: {
839
+ signal: AbortSignal;
840
+ }): Promise<StudentResearchBankAccount>;
841
+ /**
842
+ * 학생의 편입정보를 반환합니다.
843
+ */
844
+ transfer(asyncOpts_?: {
845
+ signal: AbortSignal;
846
+ }): Promise<StudentTransferRecords>;
847
+ /**
848
+ * 학생의 직장 정보를 반환합니다.
849
+ */
850
+ work(asyncOpts_?: {
851
+ signal: AbortSignal;
852
+ }): Promise<StudentWorkInformation>;
853
+ }
854
+ /**
855
+ * [학생 정보 수정 및 조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW1001n)
856
+ */
857
+ export declare class StudentInformationApplication extends UniffiAbstractObject implements StudentInformationApplicationInterface {
858
+ readonly [uniffiTypeNameSymbol] = "StudentInformationApplication";
859
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
860
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
861
+ private constructor();
862
+ /**
863
+ * 학생의 학적상태 정보를 반환합니다.
864
+ */
865
+ academicRecord(asyncOpts_?: {
866
+ signal: AbortSignal;
867
+ }): Promise<StudentAcademicRecords>;
868
+ /**
869
+ * 학생의 은행계좌 정보를 반환합니다.
870
+ */
871
+ bankAccount(asyncOpts_?: {
872
+ signal: AbortSignal;
873
+ }): Promise<StudentBankAccount>;
874
+ /**
875
+ * 학생의 가족관계 정보를 반환합니다.
876
+ */
877
+ family(asyncOpts_?: {
878
+ signal: AbortSignal;
879
+ }): Promise<StudentFamily>;
880
+ /**
881
+ * 일반 학생 정보를 반환합니다.
882
+ */
883
+ general(asyncOpts_?: {
884
+ signal: AbortSignal;
885
+ }): Promise<StudentInformation>;
886
+ /**
887
+ * 학생의 졸업과 관련된 정보를 반환합니다.
888
+ */
889
+ graduation(asyncOpts_?: {
890
+ signal: AbortSignal;
891
+ }): Promise<StudentGraduation>;
892
+ /**
893
+ * 학생의 교직, 평생교육사, 7+1 프로그램 등 자격 관련 정보를 반환합니다.
894
+ */
895
+ qualifications(asyncOpts_?: {
896
+ signal: AbortSignal;
897
+ }): Promise<StudentQualification>;
898
+ /**
899
+ * 학생의 종교 정보를 반환합니다.
900
+ */
901
+ religion(asyncOpts_?: {
902
+ signal: AbortSignal;
903
+ }): Promise<StudentReligion>;
904
+ /**
905
+ * 학생의 연구비 입금 계좌를 반환합니다.
906
+ */
907
+ researchBankAccount(asyncOpts_?: {
908
+ signal: AbortSignal;
909
+ }): Promise<StudentResearchBankAccount>;
910
+ /**
911
+ * 학생의 편입정보를 반환합니다.
912
+ */
913
+ transfer(asyncOpts_?: {
914
+ signal: AbortSignal;
915
+ }): Promise<StudentTransferRecords>;
916
+ /**
917
+ * 학생의 직장 정보를 반환합니다.
918
+ */
919
+ work(asyncOpts_?: {
920
+ signal: AbortSignal;
921
+ }): Promise<StudentWorkInformation>;
922
+ /**
923
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
924
+ */
925
+ uniffiDestroy(): void;
926
+ static instanceOf(obj: any): obj is StudentInformationApplication;
927
+ }
928
+ /**
929
+ * [`StudentInformationApplication`] 생성을 위한 빌더
930
+ */
931
+ export interface StudentInformationApplicationBuilderInterface {
932
+ /**
933
+ * 세션과 함께 [`StudentInformationApplication`]을 만듭니다.
934
+ */
935
+ build(session: USaintSessionInterface, asyncOpts_?: {
936
+ signal: AbortSignal;
937
+ }): Promise<StudentInformationApplicationInterface>;
938
+ }
939
+ /**
940
+ * [`StudentInformationApplication`] 생성을 위한 빌더
941
+ */
942
+ export declare class StudentInformationApplicationBuilder extends UniffiAbstractObject implements StudentInformationApplicationBuilderInterface {
943
+ readonly [uniffiTypeNameSymbol] = "StudentInformationApplicationBuilder";
944
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
945
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
946
+ /**
947
+ * 새로운 [`StudentInformationApplicationBuilder`]를 만듭니다.
948
+ */
949
+ constructor();
950
+ /**
951
+ * 세션과 함께 [`StudentInformationApplication`]을 만듭니다.
952
+ */
953
+ build(session: USaintSessionInterface, asyncOpts_?: {
954
+ signal: AbortSignal;
955
+ }): Promise<StudentInformationApplicationInterface>;
956
+ /**
957
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
958
+ */
959
+ uniffiDestroy(): void;
960
+ static instanceOf(obj: any): obj is StudentInformationApplicationBuilder;
961
+ }
962
+ /**
963
+ * u-saint에서 사용할 세션
964
+ * [`USaintSessionBuilder`]를 이용해 생성합니다.
965
+ */
966
+ export interface USaintSessionInterface {
967
+ }
968
+ /**
969
+ * u-saint에서 사용할 세션
970
+ * [`USaintSessionBuilder`]를 이용해 생성합니다.
971
+ */
972
+ export declare class USaintSession extends UniffiAbstractObject implements USaintSessionInterface {
973
+ readonly [uniffiTypeNameSymbol] = "USaintSession";
974
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
975
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
976
+ private constructor();
977
+ /**
978
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
979
+ */
980
+ uniffiDestroy(): void;
981
+ static instanceOf(obj: any): obj is USaintSession;
982
+ }
983
+ /**
984
+ * [`USaintSession`]을 생성하기 위한 빌더
985
+ */
986
+ export interface USaintSessionBuilderInterface {
987
+ /**
988
+ * 익명 세션(비로그인)을 만듭니다.
989
+ * ## Kotlin
990
+ * ```kotlin
991
+ * fun createAnonymousSession() {
992
+ * val anonymous = USaintSessionBuilder().anonymous()
993
+ * }
994
+ * ```
995
+ */
996
+ anonymous(): USaintSessionInterface;
997
+ /**
998
+ * ID, 비밀번호로 세션을 만듭니다.
999
+ * ## Kotlin
1000
+ * ```kotlin
1001
+ * suspend fun createSessionWithPassword() {
1002
+ * val withPassword = USaintSessionBuilder().withPassword("20211561", "password") // suspend
1003
+ * }
1004
+ */
1005
+ withPassword(id: string, password: string, asyncOpts_?: {
1006
+ signal: AbortSignal;
1007
+ }): Promise<USaintSessionInterface>;
1008
+ /**
1009
+ * SSO 토큰으로 세션을 만듭니다.
1010
+ * ## Kotlin
1011
+ * ```kotlin
1012
+ * suspend fun createSessionWithSsoToken() {
1013
+ * val withToken = USaintSessionBuilder().withToken("<example sso token>") // suspend
1014
+ * }
1015
+ */
1016
+ withToken(id: string, token: string, asyncOpts_?: {
1017
+ signal: AbortSignal;
1018
+ }): Promise<USaintSessionInterface>;
1019
+ }
1020
+ /**
1021
+ * [`USaintSession`]을 생성하기 위한 빌더
1022
+ */
1023
+ export declare class USaintSessionBuilder extends UniffiAbstractObject implements USaintSessionBuilderInterface {
1024
+ readonly [uniffiTypeNameSymbol] = "USaintSessionBuilder";
1025
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
1026
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
1027
+ /**
1028
+ * 새로운 [`USaintSessionBuilder`]를 만듭니다.
1029
+ */
1030
+ constructor();
1031
+ /**
1032
+ * 익명 세션(비로그인)을 만듭니다.
1033
+ * ## Kotlin
1034
+ * ```kotlin
1035
+ * fun createAnonymousSession() {
1036
+ * val anonymous = USaintSessionBuilder().anonymous()
1037
+ * }
1038
+ * ```
1039
+ */
1040
+ anonymous(): USaintSessionInterface;
1041
+ /**
1042
+ * ID, 비밀번호로 세션을 만듭니다.
1043
+ * ## Kotlin
1044
+ * ```kotlin
1045
+ * suspend fun createSessionWithPassword() {
1046
+ * val withPassword = USaintSessionBuilder().withPassword("20211561", "password") // suspend
1047
+ * }
1048
+ */
1049
+ withPassword(id: string, password: string, asyncOpts_?: {
1050
+ signal: AbortSignal;
1051
+ }): Promise<USaintSessionInterface>;
1052
+ /**
1053
+ * SSO 토큰으로 세션을 만듭니다.
1054
+ * ## Kotlin
1055
+ * ```kotlin
1056
+ * suspend fun createSessionWithSsoToken() {
1057
+ * val withToken = USaintSessionBuilder().withToken("<example sso token>") // suspend
1058
+ * }
1059
+ */
1060
+ withToken(id: string, token: string, asyncOpts_?: {
1061
+ signal: AbortSignal;
1062
+ }): Promise<USaintSessionInterface>;
1063
+ /**
1064
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
1065
+ */
1066
+ uniffiDestroy(): void;
1067
+ static instanceOf(obj: any): obj is USaintSessionBuilder;
1068
+ }
1069
+ /**
1070
+ * This should be called before anything else.
1071
+ *
1072
+ * It is likely that this is being done for you by the library's `index.ts`.
1073
+ *
1074
+ * It checks versions of uniffi between when the Rust scaffolding was generated
1075
+ * and when the bindings were generated.
1076
+ *
1077
+ * It also initializes the machinery to enable Rust to talk back to Javascript.
1078
+ */
1079
+ declare function uniffiEnsureInitialized(): void;
1080
+ declare const _default: Readonly<{
1081
+ initialize: typeof uniffiEnsureInitialized;
1082
+ converters: {
1083
+ FfiConverterTypeChapelApplication: FfiConverterObject<ChapelApplicationInterface>;
1084
+ FfiConverterTypeChapelApplicationBuilder: FfiConverterObject<ChapelApplicationBuilderInterface>;
1085
+ FfiConverterTypeCourseGradesApplication: FfiConverterObject<CourseGradesApplicationInterface>;
1086
+ FfiConverterTypeCourseGradesApplicationBuilder: FfiConverterObject<CourseGradesApplicationBuilderInterface>;
1087
+ FfiConverterTypeCourseScheduleApplication: FfiConverterObject<CourseScheduleApplicationInterface>;
1088
+ FfiConverterTypeCourseScheduleApplicationBuilder: FfiConverterObject<CourseScheduleApplicationBuilderInterface>;
1089
+ FfiConverterTypeGraduationRequirementsApplication: FfiConverterObject<GraduationRequirementsApplicationInterface>;
1090
+ FfiConverterTypeGraduationRequirementsApplicationBuilder: FfiConverterObject<GraduationRequirementsApplicationBuilderInterface>;
1091
+ FfiConverterTypeLectureAssessmentApplication: FfiConverterObject<LectureAssessmentApplicationInterface>;
1092
+ FfiConverterTypeLectureAssessmentApplicationBuilder: FfiConverterObject<LectureAssessmentApplicationBuilderInterface>;
1093
+ FfiConverterTypePersonalCourseScheduleApplication: FfiConverterObject<PersonalCourseScheduleApplicationInterface>;
1094
+ FfiConverterTypePersonalCourseScheduleApplicationBuilder: FfiConverterObject<PersonalCourseScheduleApplicationBuilderInterface>;
1095
+ FfiConverterTypeScholarshipsApplication: FfiConverterObject<ScholarshipsApplicationInterface>;
1096
+ FfiConverterTypeScholarshipsApplicationBuilder: FfiConverterObject<ScholarshipsApplicationBuilderInterface>;
1097
+ FfiConverterTypeStudentInformationApplication: FfiConverterObject<StudentInformationApplicationInterface>;
1098
+ FfiConverterTypeStudentInformationApplicationBuilder: FfiConverterObject<StudentInformationApplicationBuilderInterface>;
1099
+ FfiConverterTypeUSaintSession: FfiConverterObject<USaintSessionInterface>;
1100
+ FfiConverterTypeUSaintSessionBuilder: FfiConverterObject<USaintSessionBuilderInterface>;
1101
+ FfiConverterTypeYearSemester: {
1102
+ read(from: RustBuffer): YearSemester;
1103
+ write(value: YearSemester, into: RustBuffer): void;
1104
+ allocationSize(value: YearSemester): number;
1105
+ lift(value: UniffiByteArray): YearSemester;
1106
+ lower(value: YearSemester): UniffiByteArray;
1107
+ };
1108
+ };
1109
+ }>;
1110
+ export default _default;
1111
+ //# sourceMappingURL=rusaint_ffi.d.ts.map