@iblai/iblai-api 3.45.8-core → 3.45.9-core
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/dist/index.cjs.js +355 -467
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +355 -467
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +355 -467
- package/dist/index.umd.js.map +1 -1
- package/dist/types/index.d.ts +10 -1
- package/dist/types/models/CatalogAutoIncrementResponse.d.ts +11 -11
- package/dist/types/models/CourseReviewPaginatedResponse.d.ts +18 -0
- package/dist/types/models/CourseReviewRequest.d.ts +37 -0
- package/dist/types/models/CourseReviewResponse.d.ts +40 -0
- package/dist/types/models/PaginatedSkill.d.ts +7 -0
- package/dist/types/models/ProgramEnrollmentSearchResponse.d.ts +22 -0
- package/dist/types/models/ProgramMetadataRequest.d.ts +29 -0
- package/dist/types/models/ProgramMetadataResponse.d.ts +29 -0
- package/dist/types/models/ProgramReview.d.ts +41 -0
- package/dist/types/models/ProgramReviewPaginatedResponse.d.ts +22 -0
- package/dist/types/models/ProgramReviewRequest.d.ts +37 -0
- package/dist/types/services/CatalogService.d.ts +168 -458
- package/package.json +1 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/index.ts +10 -1
- package/src/models/CatalogAutoIncrementResponse.ts +11 -11
- package/src/models/CourseReviewPaginatedResponse.ts +23 -0
- package/src/models/CourseReviewRequest.ts +42 -0
- package/src/models/CourseReviewResponse.ts +45 -0
- package/src/models/PaginatedSkill.ts +12 -0
- package/src/models/ProgramEnrollmentSearchResponse.ts +27 -0
- package/src/models/ProgramMetadataRequest.ts +34 -0
- package/src/models/ProgramMetadataResponse.ts +34 -0
- package/src/models/ProgramReview.ts +46 -0
- package/src/models/ProgramReviewPaginatedResponse.ts +27 -0
- package/src/models/ProgramReviewRequest.ts +42 -0
- package/src/services/CatalogService.ts +3415 -3417
- package/dist/types/models/CourseEligibilityCheckResponse.d.ts +0 -25
- package/src/models/CourseEligibilityCheckResponse.ts +0 -30
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Serializer for course eligibility check response.
|
|
3
|
-
*/
|
|
4
|
-
export type CourseEligibilityCheckResponse = {
|
|
5
|
-
/**
|
|
6
|
-
* Whether the user is eligible for the course
|
|
7
|
-
*/
|
|
8
|
-
eligible: boolean;
|
|
9
|
-
/**
|
|
10
|
-
* Reasons for eligibility or ineligibility
|
|
11
|
-
*/
|
|
12
|
-
reasons: Array<string>;
|
|
13
|
-
/**
|
|
14
|
-
* User ID checked
|
|
15
|
-
*/
|
|
16
|
-
user_id: number;
|
|
17
|
-
/**
|
|
18
|
-
* Course ID checked
|
|
19
|
-
*/
|
|
20
|
-
course_id: string;
|
|
21
|
-
/**
|
|
22
|
-
* Organization of the course
|
|
23
|
-
*/
|
|
24
|
-
org: string;
|
|
25
|
-
};
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
/**
|
|
6
|
-
* Serializer for course eligibility check response.
|
|
7
|
-
*/
|
|
8
|
-
export type CourseEligibilityCheckResponse = {
|
|
9
|
-
/**
|
|
10
|
-
* Whether the user is eligible for the course
|
|
11
|
-
*/
|
|
12
|
-
eligible: boolean;
|
|
13
|
-
/**
|
|
14
|
-
* Reasons for eligibility or ineligibility
|
|
15
|
-
*/
|
|
16
|
-
reasons: Array<string>;
|
|
17
|
-
/**
|
|
18
|
-
* User ID checked
|
|
19
|
-
*/
|
|
20
|
-
user_id: number;
|
|
21
|
-
/**
|
|
22
|
-
* Course ID checked
|
|
23
|
-
*/
|
|
24
|
-
course_id: string;
|
|
25
|
-
/**
|
|
26
|
-
* Organization of the course
|
|
27
|
-
*/
|
|
28
|
-
org: string;
|
|
29
|
-
};
|
|
30
|
-
|