@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.
Files changed (36) hide show
  1. package/dist/index.cjs.js +355 -467
  2. package/dist/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +355 -467
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/index.umd.js +355 -467
  6. package/dist/index.umd.js.map +1 -1
  7. package/dist/types/index.d.ts +10 -1
  8. package/dist/types/models/CatalogAutoIncrementResponse.d.ts +11 -11
  9. package/dist/types/models/CourseReviewPaginatedResponse.d.ts +18 -0
  10. package/dist/types/models/CourseReviewRequest.d.ts +37 -0
  11. package/dist/types/models/CourseReviewResponse.d.ts +40 -0
  12. package/dist/types/models/PaginatedSkill.d.ts +7 -0
  13. package/dist/types/models/ProgramEnrollmentSearchResponse.d.ts +22 -0
  14. package/dist/types/models/ProgramMetadataRequest.d.ts +29 -0
  15. package/dist/types/models/ProgramMetadataResponse.d.ts +29 -0
  16. package/dist/types/models/ProgramReview.d.ts +41 -0
  17. package/dist/types/models/ProgramReviewPaginatedResponse.d.ts +22 -0
  18. package/dist/types/models/ProgramReviewRequest.d.ts +37 -0
  19. package/dist/types/services/CatalogService.d.ts +168 -458
  20. package/package.json +1 -1
  21. package/src/core/OpenAPI.ts +1 -1
  22. package/src/index.ts +10 -1
  23. package/src/models/CatalogAutoIncrementResponse.ts +11 -11
  24. package/src/models/CourseReviewPaginatedResponse.ts +23 -0
  25. package/src/models/CourseReviewRequest.ts +42 -0
  26. package/src/models/CourseReviewResponse.ts +45 -0
  27. package/src/models/PaginatedSkill.ts +12 -0
  28. package/src/models/ProgramEnrollmentSearchResponse.ts +27 -0
  29. package/src/models/ProgramMetadataRequest.ts +34 -0
  30. package/src/models/ProgramMetadataResponse.ts +34 -0
  31. package/src/models/ProgramReview.ts +46 -0
  32. package/src/models/ProgramReviewPaginatedResponse.ts +27 -0
  33. package/src/models/ProgramReviewRequest.ts +42 -0
  34. package/src/services/CatalogService.ts +3415 -3417
  35. package/dist/types/models/CourseEligibilityCheckResponse.d.ts +0 -25
  36. 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
-