@iblai/iblai-api 3.45.9-core → 3.45.10-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 +8 -8
- package/dist/index.esm.js +8 -8
- package/dist/index.umd.js +8 -8
- package/dist/types/index.d.ts +0 -4
- package/dist/types/models/PlatformSkillPointResponse.d.ts +2 -2
- package/dist/types/services/CatalogService.d.ts +13 -17
- package/package.json +1 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/index.ts +0 -4
- package/src/models/PlatformSkillPointResponse.ts +2 -2
- package/src/services/CatalogService.ts +13 -17
- package/dist/types/models/BlockSkillPointInfoResponse.d.ts +0 -10
- package/dist/types/models/CourseCompletionCatalogResponse.d.ts +0 -11
- package/dist/types/models/CourseSkillPointInfoResponse.d.ts +0 -10
- package/dist/types/models/UserSkillPointInfoResponse.d.ts +0 -10
- package/src/models/BlockSkillPointInfoResponse.ts +0 -15
- package/src/models/CourseCompletionCatalogResponse.ts +0 -16
- package/src/models/CourseSkillPointInfoResponse.ts +0 -15
- package/src/models/UserSkillPointInfoResponse.ts +0 -15
package/dist/index.cjs.js
CHANGED
|
@@ -110,7 +110,7 @@ class CancelablePromise {
|
|
|
110
110
|
|
|
111
111
|
const OpenAPI = {
|
|
112
112
|
BASE: 'https://base.manager.iblai.app',
|
|
113
|
-
VERSION: '3.45.
|
|
113
|
+
VERSION: '3.45.10-core',
|
|
114
114
|
WITH_CREDENTIALS: false,
|
|
115
115
|
CREDENTIALS: 'include',
|
|
116
116
|
TOKEN: undefined,
|
|
@@ -5027,10 +5027,10 @@ class CatalogService {
|
|
|
5027
5027
|
});
|
|
5028
5028
|
}
|
|
5029
5029
|
/**
|
|
5030
|
-
* Retrieve catalog-compatible completion
|
|
5030
|
+
* Retrieve catalog-compatible completion info for user
|
|
5031
5031
|
* @param userId The user identifier
|
|
5032
5032
|
* @param fieldKey Specific field to include in the response
|
|
5033
|
-
* @returns
|
|
5033
|
+
* @returns any
|
|
5034
5034
|
* @throws ApiError
|
|
5035
5035
|
*/
|
|
5036
5036
|
static catalogMilestonesCompletionsCourseCatalogRetrieve(userId, fieldKey) {
|
|
@@ -5053,7 +5053,7 @@ class CatalogService {
|
|
|
5053
5053
|
* Retrieve completion information for a specific user and course
|
|
5054
5054
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
5055
5055
|
* @param userId The user identifier
|
|
5056
|
-
* @returns
|
|
5056
|
+
* @returns any
|
|
5057
5057
|
* @throws ApiError
|
|
5058
5058
|
*/
|
|
5059
5059
|
static catalogMilestonesCompletionsCourseManageRetrieve(courseId, userId) {
|
|
@@ -5077,7 +5077,7 @@ class CatalogService {
|
|
|
5077
5077
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
5078
5078
|
* @param userId The user identifier
|
|
5079
5079
|
* @param requestBody
|
|
5080
|
-
* @returns
|
|
5080
|
+
* @returns any
|
|
5081
5081
|
* @throws ApiError
|
|
5082
5082
|
*/
|
|
5083
5083
|
static catalogMilestonesCompletionsCourseManageCreate(courseId, userId, requestBody) {
|
|
@@ -5203,7 +5203,7 @@ class CatalogService {
|
|
|
5203
5203
|
* Retrieve skill point information for a specific block
|
|
5204
5204
|
* @param blockId ID of the block to retrieve skill point information for
|
|
5205
5205
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
5206
|
-
* @returns
|
|
5206
|
+
* @returns any
|
|
5207
5207
|
* @throws ApiError
|
|
5208
5208
|
*/
|
|
5209
5209
|
static catalogMilestonesSkillPointsBlockRetrieve(blockId, getObj = false) {
|
|
@@ -5252,7 +5252,7 @@ class CatalogService {
|
|
|
5252
5252
|
* Retrieve skill point information for a specific course
|
|
5253
5253
|
* @param courseId ID of the course to retrieve skill point information for
|
|
5254
5254
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
5255
|
-
* @returns
|
|
5255
|
+
* @returns any
|
|
5256
5256
|
* @throws ApiError
|
|
5257
5257
|
*/
|
|
5258
5258
|
static catalogMilestonesSkillPointsCourseRetrieve(courseId, getObj = false) {
|
|
@@ -5429,7 +5429,7 @@ class CatalogService {
|
|
|
5429
5429
|
* Retrieve skill point information for a specific user
|
|
5430
5430
|
* @param userId ID of the user to retrieve skill point information for
|
|
5431
5431
|
* @param username Username to retrieve skill point information for
|
|
5432
|
-
* @returns
|
|
5432
|
+
* @returns any
|
|
5433
5433
|
* @throws ApiError
|
|
5434
5434
|
*/
|
|
5435
5435
|
static catalogMilestonesSkillPointsUserRetrieve(userId, username) {
|
package/dist/index.esm.js
CHANGED
|
@@ -108,7 +108,7 @@ class CancelablePromise {
|
|
|
108
108
|
|
|
109
109
|
const OpenAPI = {
|
|
110
110
|
BASE: 'https://base.manager.iblai.app',
|
|
111
|
-
VERSION: '3.45.
|
|
111
|
+
VERSION: '3.45.10-core',
|
|
112
112
|
WITH_CREDENTIALS: false,
|
|
113
113
|
CREDENTIALS: 'include',
|
|
114
114
|
TOKEN: undefined,
|
|
@@ -5025,10 +5025,10 @@ class CatalogService {
|
|
|
5025
5025
|
});
|
|
5026
5026
|
}
|
|
5027
5027
|
/**
|
|
5028
|
-
* Retrieve catalog-compatible completion
|
|
5028
|
+
* Retrieve catalog-compatible completion info for user
|
|
5029
5029
|
* @param userId The user identifier
|
|
5030
5030
|
* @param fieldKey Specific field to include in the response
|
|
5031
|
-
* @returns
|
|
5031
|
+
* @returns any
|
|
5032
5032
|
* @throws ApiError
|
|
5033
5033
|
*/
|
|
5034
5034
|
static catalogMilestonesCompletionsCourseCatalogRetrieve(userId, fieldKey) {
|
|
@@ -5051,7 +5051,7 @@ class CatalogService {
|
|
|
5051
5051
|
* Retrieve completion information for a specific user and course
|
|
5052
5052
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
5053
5053
|
* @param userId The user identifier
|
|
5054
|
-
* @returns
|
|
5054
|
+
* @returns any
|
|
5055
5055
|
* @throws ApiError
|
|
5056
5056
|
*/
|
|
5057
5057
|
static catalogMilestonesCompletionsCourseManageRetrieve(courseId, userId) {
|
|
@@ -5075,7 +5075,7 @@ class CatalogService {
|
|
|
5075
5075
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
5076
5076
|
* @param userId The user identifier
|
|
5077
5077
|
* @param requestBody
|
|
5078
|
-
* @returns
|
|
5078
|
+
* @returns any
|
|
5079
5079
|
* @throws ApiError
|
|
5080
5080
|
*/
|
|
5081
5081
|
static catalogMilestonesCompletionsCourseManageCreate(courseId, userId, requestBody) {
|
|
@@ -5201,7 +5201,7 @@ class CatalogService {
|
|
|
5201
5201
|
* Retrieve skill point information for a specific block
|
|
5202
5202
|
* @param blockId ID of the block to retrieve skill point information for
|
|
5203
5203
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
5204
|
-
* @returns
|
|
5204
|
+
* @returns any
|
|
5205
5205
|
* @throws ApiError
|
|
5206
5206
|
*/
|
|
5207
5207
|
static catalogMilestonesSkillPointsBlockRetrieve(blockId, getObj = false) {
|
|
@@ -5250,7 +5250,7 @@ class CatalogService {
|
|
|
5250
5250
|
* Retrieve skill point information for a specific course
|
|
5251
5251
|
* @param courseId ID of the course to retrieve skill point information for
|
|
5252
5252
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
5253
|
-
* @returns
|
|
5253
|
+
* @returns any
|
|
5254
5254
|
* @throws ApiError
|
|
5255
5255
|
*/
|
|
5256
5256
|
static catalogMilestonesSkillPointsCourseRetrieve(courseId, getObj = false) {
|
|
@@ -5427,7 +5427,7 @@ class CatalogService {
|
|
|
5427
5427
|
* Retrieve skill point information for a specific user
|
|
5428
5428
|
* @param userId ID of the user to retrieve skill point information for
|
|
5429
5429
|
* @param username Username to retrieve skill point information for
|
|
5430
|
-
* @returns
|
|
5430
|
+
* @returns any
|
|
5431
5431
|
* @throws ApiError
|
|
5432
5432
|
*/
|
|
5433
5433
|
static catalogMilestonesSkillPointsUserRetrieve(userId, username) {
|
package/dist/index.umd.js
CHANGED
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
|
|
115
115
|
const OpenAPI = {
|
|
116
116
|
BASE: 'https://base.manager.iblai.app',
|
|
117
|
-
VERSION: '3.45.
|
|
117
|
+
VERSION: '3.45.10-core',
|
|
118
118
|
WITH_CREDENTIALS: false,
|
|
119
119
|
CREDENTIALS: 'include',
|
|
120
120
|
TOKEN: undefined,
|
|
@@ -5031,10 +5031,10 @@
|
|
|
5031
5031
|
});
|
|
5032
5032
|
}
|
|
5033
5033
|
/**
|
|
5034
|
-
* Retrieve catalog-compatible completion
|
|
5034
|
+
* Retrieve catalog-compatible completion info for user
|
|
5035
5035
|
* @param userId The user identifier
|
|
5036
5036
|
* @param fieldKey Specific field to include in the response
|
|
5037
|
-
* @returns
|
|
5037
|
+
* @returns any
|
|
5038
5038
|
* @throws ApiError
|
|
5039
5039
|
*/
|
|
5040
5040
|
static catalogMilestonesCompletionsCourseCatalogRetrieve(userId, fieldKey) {
|
|
@@ -5057,7 +5057,7 @@
|
|
|
5057
5057
|
* Retrieve completion information for a specific user and course
|
|
5058
5058
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
5059
5059
|
* @param userId The user identifier
|
|
5060
|
-
* @returns
|
|
5060
|
+
* @returns any
|
|
5061
5061
|
* @throws ApiError
|
|
5062
5062
|
*/
|
|
5063
5063
|
static catalogMilestonesCompletionsCourseManageRetrieve(courseId, userId) {
|
|
@@ -5081,7 +5081,7 @@
|
|
|
5081
5081
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
5082
5082
|
* @param userId The user identifier
|
|
5083
5083
|
* @param requestBody
|
|
5084
|
-
* @returns
|
|
5084
|
+
* @returns any
|
|
5085
5085
|
* @throws ApiError
|
|
5086
5086
|
*/
|
|
5087
5087
|
static catalogMilestonesCompletionsCourseManageCreate(courseId, userId, requestBody) {
|
|
@@ -5207,7 +5207,7 @@
|
|
|
5207
5207
|
* Retrieve skill point information for a specific block
|
|
5208
5208
|
* @param blockId ID of the block to retrieve skill point information for
|
|
5209
5209
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
5210
|
-
* @returns
|
|
5210
|
+
* @returns any
|
|
5211
5211
|
* @throws ApiError
|
|
5212
5212
|
*/
|
|
5213
5213
|
static catalogMilestonesSkillPointsBlockRetrieve(blockId, getObj = false) {
|
|
@@ -5256,7 +5256,7 @@
|
|
|
5256
5256
|
* Retrieve skill point information for a specific course
|
|
5257
5257
|
* @param courseId ID of the course to retrieve skill point information for
|
|
5258
5258
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
5259
|
-
* @returns
|
|
5259
|
+
* @returns any
|
|
5260
5260
|
* @throws ApiError
|
|
5261
5261
|
*/
|
|
5262
5262
|
static catalogMilestonesSkillPointsCourseRetrieve(courseId, getObj = false) {
|
|
@@ -5433,7 +5433,7 @@
|
|
|
5433
5433
|
* Retrieve skill point information for a specific user
|
|
5434
5434
|
* @param userId ID of the user to retrieve skill point information for
|
|
5435
5435
|
* @param username Username to retrieve skill point information for
|
|
5436
|
-
* @returns
|
|
5436
|
+
* @returns any
|
|
5437
5437
|
* @throws ApiError
|
|
5438
5438
|
*/
|
|
5439
5439
|
static catalogMilestonesSkillPointsUserRetrieve(userId, username) {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -31,7 +31,6 @@ export { BlankEnum } from './models/BlankEnum';
|
|
|
31
31
|
export type { BlankPlatformInvitationCreate } from './models/BlankPlatformInvitationCreate';
|
|
32
32
|
export type { BlankProgramInvitationCreate } from './models/BlankProgramInvitationCreate';
|
|
33
33
|
export type { BlockSkillPointInfoRequest } from './models/BlockSkillPointInfoRequest';
|
|
34
|
-
export type { BlockSkillPointInfoResponse } from './models/BlockSkillPointInfoResponse';
|
|
35
34
|
export type { BulkCourseInvitationCreate } from './models/BulkCourseInvitationCreate';
|
|
36
35
|
export type { BulkCourseInvitationResponse } from './models/BulkCourseInvitationResponse';
|
|
37
36
|
export type { BulkCreateAssertion } from './models/BulkCreateAssertion';
|
|
@@ -58,7 +57,6 @@ export type { CourseAccessRequestDetail } from './models/CourseAccessRequestDeta
|
|
|
58
57
|
export type { CourseAccessRequestStatusResponse } from './models/CourseAccessRequestStatusResponse';
|
|
59
58
|
export type { CourseAccessRequestUpdate } from './models/CourseAccessRequestUpdate';
|
|
60
59
|
export type { CourseCompletion } from './models/CourseCompletion';
|
|
61
|
-
export type { CourseCompletionCatalogResponse } from './models/CourseCompletionCatalogResponse';
|
|
62
60
|
export type { CourseCompletionPerCourse } from './models/CourseCompletionPerCourse';
|
|
63
61
|
export type { CourseCompletionPerCourseData } from './models/CourseCompletionPerCourseData';
|
|
64
62
|
export type { CourseCompletionSummaryDataOvertime } from './models/CourseCompletionSummaryDataOvertime';
|
|
@@ -93,7 +91,6 @@ export type { CourseReviewRequest } from './models/CourseReviewRequest';
|
|
|
93
91
|
export type { CourseReviewResponse } from './models/CourseReviewResponse';
|
|
94
92
|
export type { CourseSkill } from './models/CourseSkill';
|
|
95
93
|
export type { CourseSkillPointInfoRequest } from './models/CourseSkillPointInfoRequest';
|
|
96
|
-
export type { CourseSkillPointInfoResponse } from './models/CourseSkillPointInfoResponse';
|
|
97
94
|
export type { CourseSuggestionBulkCreate } from './models/CourseSuggestionBulkCreate';
|
|
98
95
|
export type { CourseSuggestionCreate } from './models/CourseSuggestionCreate';
|
|
99
96
|
export type { CourseSuggestionDetail } from './models/CourseSuggestionDetail';
|
|
@@ -352,7 +349,6 @@ export type { UserProxyPostResponse } from './models/UserProxyPostResponse';
|
|
|
352
349
|
export type { UserSearchResponse } from './models/UserSearchResponse';
|
|
353
350
|
export type { UserSearchViewGetResponse } from './models/UserSearchViewGetResponse';
|
|
354
351
|
export type { UserSkill } from './models/UserSkill';
|
|
355
|
-
export type { UserSkillPointInfoResponse } from './models/UserSkillPointInfoResponse';
|
|
356
352
|
export type { UserSkillPointsPercentile } from './models/UserSkillPointsPercentile';
|
|
357
353
|
export type { ValidateSourceResponse } from './models/ValidateSourceResponse';
|
|
358
354
|
export type { Value } from './models/Value';
|
|
@@ -13,9 +13,9 @@ export type PlatformSkillPointResponse = {
|
|
|
13
13
|
/**
|
|
14
14
|
* URL for next page of results
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
next_page: string | null;
|
|
17
17
|
/**
|
|
18
18
|
* URL for previous page of results
|
|
19
19
|
*/
|
|
20
|
-
|
|
20
|
+
previous_page: string | null;
|
|
21
21
|
};
|
|
@@ -2,7 +2,6 @@ import type { BlankCourseInvitationCreate } from '../models/BlankCourseInvitatio
|
|
|
2
2
|
import type { BlankPlatformInvitationCreate } from '../models/BlankPlatformInvitationCreate';
|
|
3
3
|
import type { BlankProgramInvitationCreate } from '../models/BlankProgramInvitationCreate';
|
|
4
4
|
import type { BlockSkillPointInfoRequest } from '../models/BlockSkillPointInfoRequest';
|
|
5
|
-
import type { BlockSkillPointInfoResponse } from '../models/BlockSkillPointInfoResponse';
|
|
6
5
|
import type { BulkCourseInvitationCreate } from '../models/BulkCourseInvitationCreate';
|
|
7
6
|
import type { BulkCourseInvitationResponse } from '../models/BulkCourseInvitationResponse';
|
|
8
7
|
import type { BulkPlatformInvitationCreate } from '../models/BulkPlatformInvitationCreate';
|
|
@@ -18,7 +17,6 @@ import type { CourseAccessRequestDetail } from '../models/CourseAccessRequestDet
|
|
|
18
17
|
import type { CourseAccessRequestStatusResponse } from '../models/CourseAccessRequestStatusResponse';
|
|
19
18
|
import type { CourseAccessRequestUpdate } from '../models/CourseAccessRequestUpdate';
|
|
20
19
|
import type { CourseCompletion } from '../models/CourseCompletion';
|
|
21
|
-
import type { CourseCompletionCatalogResponse } from '../models/CourseCompletionCatalogResponse';
|
|
22
20
|
import type { CourseCreateUpdate } from '../models/CourseCreateUpdate';
|
|
23
21
|
import type { CourseDeleteResponse } from '../models/CourseDeleteResponse';
|
|
24
22
|
import type { CourseEnrollmentSearchResponse } from '../models/CourseEnrollmentSearchResponse';
|
|
@@ -41,7 +39,6 @@ import type { CourseReviewPaginatedResponse } from '../models/CourseReviewPagina
|
|
|
41
39
|
import type { CourseReviewRequest } from '../models/CourseReviewRequest';
|
|
42
40
|
import type { CourseReviewResponse } from '../models/CourseReviewResponse';
|
|
43
41
|
import type { CourseSkillPointInfoRequest } from '../models/CourseSkillPointInfoRequest';
|
|
44
|
-
import type { CourseSkillPointInfoResponse } from '../models/CourseSkillPointInfoResponse';
|
|
45
42
|
import type { CourseSuggestionBulkCreate } from '../models/CourseSuggestionBulkCreate';
|
|
46
43
|
import type { CourseSuggestionCreate } from '../models/CourseSuggestionCreate';
|
|
47
44
|
import type { CourseSuggestionDetail } from '../models/CourseSuggestionDetail';
|
|
@@ -142,7 +139,6 @@ import type { UserLicenseDetail } from '../models/UserLicenseDetail';
|
|
|
142
139
|
import type { UserLicenseGroupAssignmentCreate } from '../models/UserLicenseGroupAssignmentCreate';
|
|
143
140
|
import type { UserLicenseGroupAssignmentDetail } from '../models/UserLicenseGroupAssignmentDetail';
|
|
144
141
|
import type { UserLicenseUpdate } from '../models/UserLicenseUpdate';
|
|
145
|
-
import type { UserSkillPointInfoResponse } from '../models/UserSkillPointInfoResponse';
|
|
146
142
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
147
143
|
export declare class CatalogService {
|
|
148
144
|
/**
|
|
@@ -1882,30 +1878,30 @@ export declare class CatalogService {
|
|
|
1882
1878
|
*/
|
|
1883
1879
|
static catalogMetadataProgramCreate2(field: string, programId: string, requestBody: ProgramMetadataRequest, org?: string, platformKey?: string, programKey?: string): CancelablePromise<ProgramMetadataResponse>;
|
|
1884
1880
|
/**
|
|
1885
|
-
* Retrieve catalog-compatible completion
|
|
1881
|
+
* Retrieve catalog-compatible completion info for user
|
|
1886
1882
|
* @param userId The user identifier
|
|
1887
1883
|
* @param fieldKey Specific field to include in the response
|
|
1888
|
-
* @returns
|
|
1884
|
+
* @returns any
|
|
1889
1885
|
* @throws ApiError
|
|
1890
1886
|
*/
|
|
1891
|
-
static catalogMilestonesCompletionsCourseCatalogRetrieve(userId: number, fieldKey?: string): CancelablePromise<
|
|
1887
|
+
static catalogMilestonesCompletionsCourseCatalogRetrieve(userId: number, fieldKey?: string): CancelablePromise<Record<string, any>>;
|
|
1892
1888
|
/**
|
|
1893
1889
|
* Retrieve completion information for a specific user and course
|
|
1894
1890
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
1895
1891
|
* @param userId The user identifier
|
|
1896
|
-
* @returns
|
|
1892
|
+
* @returns any
|
|
1897
1893
|
* @throws ApiError
|
|
1898
1894
|
*/
|
|
1899
|
-
static catalogMilestonesCompletionsCourseManageRetrieve(courseId: string, userId: number): CancelablePromise<
|
|
1895
|
+
static catalogMilestonesCompletionsCourseManageRetrieve(courseId: string, userId: number): CancelablePromise<Record<string, any>>;
|
|
1900
1896
|
/**
|
|
1901
1897
|
* Create or update completion information for a specific user and course
|
|
1902
1898
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
1903
1899
|
* @param userId The user identifier
|
|
1904
1900
|
* @param requestBody
|
|
1905
|
-
* @returns
|
|
1901
|
+
* @returns any
|
|
1906
1902
|
* @throws ApiError
|
|
1907
1903
|
*/
|
|
1908
|
-
static catalogMilestonesCompletionsCourseManageCreate(courseId: string, userId: number, requestBody: CourseCompletion): CancelablePromise<
|
|
1904
|
+
static catalogMilestonesCompletionsCourseManageCreate(courseId: string, userId: number, requestBody: CourseCompletion): CancelablePromise<Record<string, any>>;
|
|
1909
1905
|
/**
|
|
1910
1906
|
* Retrieve pathway completion information
|
|
1911
1907
|
* @param pathwayUuid The unique identifier for the pathway
|
|
@@ -1945,10 +1941,10 @@ export declare class CatalogService {
|
|
|
1945
1941
|
* Retrieve skill point information for a specific block
|
|
1946
1942
|
* @param blockId ID of the block to retrieve skill point information for
|
|
1947
1943
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
1948
|
-
* @returns
|
|
1944
|
+
* @returns any
|
|
1949
1945
|
* @throws ApiError
|
|
1950
1946
|
*/
|
|
1951
|
-
static catalogMilestonesSkillPointsBlockRetrieve(blockId: string, getObj?: boolean): CancelablePromise<
|
|
1947
|
+
static catalogMilestonesSkillPointsBlockRetrieve(blockId: string, getObj?: boolean): CancelablePromise<Record<string, any>>;
|
|
1952
1948
|
/**
|
|
1953
1949
|
* Update skill point information for a specific block
|
|
1954
1950
|
* @param blockId ID of the block to retrieve skill point information for
|
|
@@ -1962,10 +1958,10 @@ export declare class CatalogService {
|
|
|
1962
1958
|
* Retrieve skill point information for a specific course
|
|
1963
1959
|
* @param courseId ID of the course to retrieve skill point information for
|
|
1964
1960
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
1965
|
-
* @returns
|
|
1961
|
+
* @returns any
|
|
1966
1962
|
* @throws ApiError
|
|
1967
1963
|
*/
|
|
1968
|
-
static catalogMilestonesSkillPointsCourseRetrieve(courseId: string, getObj?: boolean): CancelablePromise<
|
|
1964
|
+
static catalogMilestonesSkillPointsCourseRetrieve(courseId: string, getObj?: boolean): CancelablePromise<Record<string, any>>;
|
|
1969
1965
|
/**
|
|
1970
1966
|
* Update skill point information for a specific course
|
|
1971
1967
|
* @param courseId ID of the course to retrieve skill point information for
|
|
@@ -2028,10 +2024,10 @@ export declare class CatalogService {
|
|
|
2028
2024
|
* Retrieve skill point information for a specific user
|
|
2029
2025
|
* @param userId ID of the user to retrieve skill point information for
|
|
2030
2026
|
* @param username Username to retrieve skill point information for
|
|
2031
|
-
* @returns
|
|
2027
|
+
* @returns any
|
|
2032
2028
|
* @throws ApiError
|
|
2033
2029
|
*/
|
|
2034
|
-
static catalogMilestonesSkillPointsUserRetrieve(userId?: number, username?: string): CancelablePromise<
|
|
2030
|
+
static catalogMilestonesSkillPointsUserRetrieve(userId?: number, username?: string): CancelablePromise<Record<string, any>>;
|
|
2035
2031
|
/**
|
|
2036
2032
|
* Retrieve pathways matching query. Limited parameters.
|
|
2037
2033
|
* @param itemId Item ID associated with the pathway
|
package/package.json
CHANGED
package/src/core/OpenAPI.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -36,7 +36,6 @@ export { BlankEnum } from './models/BlankEnum';
|
|
|
36
36
|
export type { BlankPlatformInvitationCreate } from './models/BlankPlatformInvitationCreate';
|
|
37
37
|
export type { BlankProgramInvitationCreate } from './models/BlankProgramInvitationCreate';
|
|
38
38
|
export type { BlockSkillPointInfoRequest } from './models/BlockSkillPointInfoRequest';
|
|
39
|
-
export type { BlockSkillPointInfoResponse } from './models/BlockSkillPointInfoResponse';
|
|
40
39
|
export type { BulkCourseInvitationCreate } from './models/BulkCourseInvitationCreate';
|
|
41
40
|
export type { BulkCourseInvitationResponse } from './models/BulkCourseInvitationResponse';
|
|
42
41
|
export type { BulkCreateAssertion } from './models/BulkCreateAssertion';
|
|
@@ -63,7 +62,6 @@ export type { CourseAccessRequestDetail } from './models/CourseAccessRequestDeta
|
|
|
63
62
|
export type { CourseAccessRequestStatusResponse } from './models/CourseAccessRequestStatusResponse';
|
|
64
63
|
export type { CourseAccessRequestUpdate } from './models/CourseAccessRequestUpdate';
|
|
65
64
|
export type { CourseCompletion } from './models/CourseCompletion';
|
|
66
|
-
export type { CourseCompletionCatalogResponse } from './models/CourseCompletionCatalogResponse';
|
|
67
65
|
export type { CourseCompletionPerCourse } from './models/CourseCompletionPerCourse';
|
|
68
66
|
export type { CourseCompletionPerCourseData } from './models/CourseCompletionPerCourseData';
|
|
69
67
|
export type { CourseCompletionSummaryDataOvertime } from './models/CourseCompletionSummaryDataOvertime';
|
|
@@ -98,7 +96,6 @@ export type { CourseReviewRequest } from './models/CourseReviewRequest';
|
|
|
98
96
|
export type { CourseReviewResponse } from './models/CourseReviewResponse';
|
|
99
97
|
export type { CourseSkill } from './models/CourseSkill';
|
|
100
98
|
export type { CourseSkillPointInfoRequest } from './models/CourseSkillPointInfoRequest';
|
|
101
|
-
export type { CourseSkillPointInfoResponse } from './models/CourseSkillPointInfoResponse';
|
|
102
99
|
export type { CourseSuggestionBulkCreate } from './models/CourseSuggestionBulkCreate';
|
|
103
100
|
export type { CourseSuggestionCreate } from './models/CourseSuggestionCreate';
|
|
104
101
|
export type { CourseSuggestionDetail } from './models/CourseSuggestionDetail';
|
|
@@ -357,7 +354,6 @@ export type { UserProxyPostResponse } from './models/UserProxyPostResponse';
|
|
|
357
354
|
export type { UserSearchResponse } from './models/UserSearchResponse';
|
|
358
355
|
export type { UserSearchViewGetResponse } from './models/UserSearchViewGetResponse';
|
|
359
356
|
export type { UserSkill } from './models/UserSkill';
|
|
360
|
-
export type { UserSkillPointInfoResponse } from './models/UserSkillPointInfoResponse';
|
|
361
357
|
export type { UserSkillPointsPercentile } from './models/UserSkillPointsPercentile';
|
|
362
358
|
export type { ValidateSourceResponse } from './models/ValidateSourceResponse';
|
|
363
359
|
export type { Value } from './models/Value';
|
|
@@ -17,10 +17,10 @@ export type PlatformSkillPointResponse = {
|
|
|
17
17
|
/**
|
|
18
18
|
* URL for next page of results
|
|
19
19
|
*/
|
|
20
|
-
|
|
20
|
+
next_page: string | null;
|
|
21
21
|
/**
|
|
22
22
|
* URL for previous page of results
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
previous_page: string | null;
|
|
25
25
|
};
|
|
26
26
|
|
|
@@ -6,7 +6,6 @@ import type { BlankCourseInvitationCreate } from '../models/BlankCourseInvitatio
|
|
|
6
6
|
import type { BlankPlatformInvitationCreate } from '../models/BlankPlatformInvitationCreate';
|
|
7
7
|
import type { BlankProgramInvitationCreate } from '../models/BlankProgramInvitationCreate';
|
|
8
8
|
import type { BlockSkillPointInfoRequest } from '../models/BlockSkillPointInfoRequest';
|
|
9
|
-
import type { BlockSkillPointInfoResponse } from '../models/BlockSkillPointInfoResponse';
|
|
10
9
|
import type { BulkCourseInvitationCreate } from '../models/BulkCourseInvitationCreate';
|
|
11
10
|
import type { BulkCourseInvitationResponse } from '../models/BulkCourseInvitationResponse';
|
|
12
11
|
import type { BulkPlatformInvitationCreate } from '../models/BulkPlatformInvitationCreate';
|
|
@@ -22,7 +21,6 @@ import type { CourseAccessRequestDetail } from '../models/CourseAccessRequestDet
|
|
|
22
21
|
import type { CourseAccessRequestStatusResponse } from '../models/CourseAccessRequestStatusResponse';
|
|
23
22
|
import type { CourseAccessRequestUpdate } from '../models/CourseAccessRequestUpdate';
|
|
24
23
|
import type { CourseCompletion } from '../models/CourseCompletion';
|
|
25
|
-
import type { CourseCompletionCatalogResponse } from '../models/CourseCompletionCatalogResponse';
|
|
26
24
|
import type { CourseCreateUpdate } from '../models/CourseCreateUpdate';
|
|
27
25
|
import type { CourseDeleteResponse } from '../models/CourseDeleteResponse';
|
|
28
26
|
import type { CourseEnrollmentSearchResponse } from '../models/CourseEnrollmentSearchResponse';
|
|
@@ -45,7 +43,6 @@ import type { CourseReviewPaginatedResponse } from '../models/CourseReviewPagina
|
|
|
45
43
|
import type { CourseReviewRequest } from '../models/CourseReviewRequest';
|
|
46
44
|
import type { CourseReviewResponse } from '../models/CourseReviewResponse';
|
|
47
45
|
import type { CourseSkillPointInfoRequest } from '../models/CourseSkillPointInfoRequest';
|
|
48
|
-
import type { CourseSkillPointInfoResponse } from '../models/CourseSkillPointInfoResponse';
|
|
49
46
|
import type { CourseSuggestionBulkCreate } from '../models/CourseSuggestionBulkCreate';
|
|
50
47
|
import type { CourseSuggestionCreate } from '../models/CourseSuggestionCreate';
|
|
51
48
|
import type { CourseSuggestionDetail } from '../models/CourseSuggestionDetail';
|
|
@@ -146,7 +143,6 @@ import type { UserLicenseDetail } from '../models/UserLicenseDetail';
|
|
|
146
143
|
import type { UserLicenseGroupAssignmentCreate } from '../models/UserLicenseGroupAssignmentCreate';
|
|
147
144
|
import type { UserLicenseGroupAssignmentDetail } from '../models/UserLicenseGroupAssignmentDetail';
|
|
148
145
|
import type { UserLicenseUpdate } from '../models/UserLicenseUpdate';
|
|
149
|
-
import type { UserSkillPointInfoResponse } from '../models/UserSkillPointInfoResponse';
|
|
150
146
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
151
147
|
import { OpenAPI } from '../core/OpenAPI';
|
|
152
148
|
import { request as __request } from '../core/request';
|
|
@@ -4126,16 +4122,16 @@ export class CatalogService {
|
|
|
4126
4122
|
});
|
|
4127
4123
|
}
|
|
4128
4124
|
/**
|
|
4129
|
-
* Retrieve catalog-compatible completion
|
|
4125
|
+
* Retrieve catalog-compatible completion info for user
|
|
4130
4126
|
* @param userId The user identifier
|
|
4131
4127
|
* @param fieldKey Specific field to include in the response
|
|
4132
|
-
* @returns
|
|
4128
|
+
* @returns any
|
|
4133
4129
|
* @throws ApiError
|
|
4134
4130
|
*/
|
|
4135
4131
|
public static catalogMilestonesCompletionsCourseCatalogRetrieve(
|
|
4136
4132
|
userId: number,
|
|
4137
4133
|
fieldKey?: string,
|
|
4138
|
-
): CancelablePromise<
|
|
4134
|
+
): CancelablePromise<Record<string, any>> {
|
|
4139
4135
|
return __request(OpenAPI, {
|
|
4140
4136
|
method: 'GET',
|
|
4141
4137
|
url: '/api/catalog/milestones/completions/course/catalog/',
|
|
@@ -4155,13 +4151,13 @@ export class CatalogService {
|
|
|
4155
4151
|
* Retrieve completion information for a specific user and course
|
|
4156
4152
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
4157
4153
|
* @param userId The user identifier
|
|
4158
|
-
* @returns
|
|
4154
|
+
* @returns any
|
|
4159
4155
|
* @throws ApiError
|
|
4160
4156
|
*/
|
|
4161
4157
|
public static catalogMilestonesCompletionsCourseManageRetrieve(
|
|
4162
4158
|
courseId: string,
|
|
4163
4159
|
userId: number,
|
|
4164
|
-
): CancelablePromise<
|
|
4160
|
+
): CancelablePromise<Record<string, any>> {
|
|
4165
4161
|
return __request(OpenAPI, {
|
|
4166
4162
|
method: 'GET',
|
|
4167
4163
|
url: '/api/catalog/milestones/completions/course/manage/',
|
|
@@ -4182,14 +4178,14 @@ export class CatalogService {
|
|
|
4182
4178
|
* @param courseId The course identifier (e.g., 'course-v1:org+code+run')
|
|
4183
4179
|
* @param userId The user identifier
|
|
4184
4180
|
* @param requestBody
|
|
4185
|
-
* @returns
|
|
4181
|
+
* @returns any
|
|
4186
4182
|
* @throws ApiError
|
|
4187
4183
|
*/
|
|
4188
4184
|
public static catalogMilestonesCompletionsCourseManageCreate(
|
|
4189
4185
|
courseId: string,
|
|
4190
4186
|
userId: number,
|
|
4191
4187
|
requestBody: CourseCompletion,
|
|
4192
|
-
): CancelablePromise<
|
|
4188
|
+
): CancelablePromise<Record<string, any>> {
|
|
4193
4189
|
return __request(OpenAPI, {
|
|
4194
4190
|
method: 'POST',
|
|
4195
4191
|
url: '/api/catalog/milestones/completions/course/manage/',
|
|
@@ -4327,13 +4323,13 @@ export class CatalogService {
|
|
|
4327
4323
|
* Retrieve skill point information for a specific block
|
|
4328
4324
|
* @param blockId ID of the block to retrieve skill point information for
|
|
4329
4325
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
4330
|
-
* @returns
|
|
4326
|
+
* @returns any
|
|
4331
4327
|
* @throws ApiError
|
|
4332
4328
|
*/
|
|
4333
4329
|
public static catalogMilestonesSkillPointsBlockRetrieve(
|
|
4334
4330
|
blockId: string,
|
|
4335
4331
|
getObj: boolean = false,
|
|
4336
|
-
): CancelablePromise<
|
|
4332
|
+
): CancelablePromise<Record<string, any>> {
|
|
4337
4333
|
return __request(OpenAPI, {
|
|
4338
4334
|
method: 'GET',
|
|
4339
4335
|
url: '/api/catalog/milestones/skill_points/block/',
|
|
@@ -4383,13 +4379,13 @@ export class CatalogService {
|
|
|
4383
4379
|
* Retrieve skill point information for a specific course
|
|
4384
4380
|
* @param courseId ID of the course to retrieve skill point information for
|
|
4385
4381
|
* @param getObj If True, returns skill objects instead of skill names as keys
|
|
4386
|
-
* @returns
|
|
4382
|
+
* @returns any
|
|
4387
4383
|
* @throws ApiError
|
|
4388
4384
|
*/
|
|
4389
4385
|
public static catalogMilestonesSkillPointsCourseRetrieve(
|
|
4390
4386
|
courseId: string,
|
|
4391
4387
|
getObj: boolean = false,
|
|
4392
|
-
): CancelablePromise<
|
|
4388
|
+
): CancelablePromise<Record<string, any>> {
|
|
4393
4389
|
return __request(OpenAPI, {
|
|
4394
4390
|
method: 'GET',
|
|
4395
4391
|
url: '/api/catalog/milestones/skill_points/course/',
|
|
@@ -4591,13 +4587,13 @@ export class CatalogService {
|
|
|
4591
4587
|
* Retrieve skill point information for a specific user
|
|
4592
4588
|
* @param userId ID of the user to retrieve skill point information for
|
|
4593
4589
|
* @param username Username to retrieve skill point information for
|
|
4594
|
-
* @returns
|
|
4590
|
+
* @returns any
|
|
4595
4591
|
* @throws ApiError
|
|
4596
4592
|
*/
|
|
4597
4593
|
public static catalogMilestonesSkillPointsUserRetrieve(
|
|
4598
4594
|
userId?: number,
|
|
4599
4595
|
username?: string,
|
|
4600
|
-
): CancelablePromise<
|
|
4596
|
+
): CancelablePromise<Record<string, any>> {
|
|
4601
4597
|
return __request(OpenAPI, {
|
|
4602
4598
|
method: 'GET',
|
|
4603
4599
|
url: '/api/catalog/milestones/skill_points/user/',
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Response serializer for BlockSkillPointInfoView GET endpoint.
|
|
3
|
-
* Returns a mapping of skill names/objects to their point values.
|
|
4
|
-
*/
|
|
5
|
-
export type BlockSkillPointInfoResponse = {
|
|
6
|
-
/**
|
|
7
|
-
* Dictionary mapping skill names/objects to point values. Keys are skill names (or skill objects if get_obj=True)
|
|
8
|
-
*/
|
|
9
|
-
skill_points: Record<string, number>;
|
|
10
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { CourseCompletion } from './CourseCompletion';
|
|
2
|
-
/**
|
|
3
|
-
* Response serializer for CourseCompletionCatalogView GET endpoint.
|
|
4
|
-
* Maps course IDs to their completion information.
|
|
5
|
-
*/
|
|
6
|
-
export type CourseCompletionCatalogResponse = {
|
|
7
|
-
/**
|
|
8
|
-
* Completion information for each course. Keys are course IDs.
|
|
9
|
-
*/
|
|
10
|
-
'{course_id}'?: CourseCompletion;
|
|
11
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Response serializer for CourseSkillPointInfoView GET endpoint.
|
|
3
|
-
* Returns a mapping of skill names/objects to their point values.
|
|
4
|
-
*/
|
|
5
|
-
export type CourseSkillPointInfoResponse = {
|
|
6
|
-
/**
|
|
7
|
-
* Dictionary mapping skill names/objects to point values. Keys are skill names (or skill objects if get_obj=True)
|
|
8
|
-
*/
|
|
9
|
-
skill_points: Record<string, number>;
|
|
10
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Response serializer for UserSkillPointInfoView GET endpoint.
|
|
3
|
-
* Returns a mapping of skill names to point breakdowns.
|
|
4
|
-
*/
|
|
5
|
-
export type UserSkillPointInfoResponse = {
|
|
6
|
-
/**
|
|
7
|
-
* Dictionary mapping skill names to their point breakdowns. Example: {'skill_name': {'course_points': 10, 'block_points': 5, 'platform_points': 3, 'total_points': 18}}
|
|
8
|
-
*/
|
|
9
|
-
skill_points: Record<string, Record<string, number>>;
|
|
10
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
/**
|
|
6
|
-
* Response serializer for BlockSkillPointInfoView GET endpoint.
|
|
7
|
-
* Returns a mapping of skill names/objects to their point values.
|
|
8
|
-
*/
|
|
9
|
-
export type BlockSkillPointInfoResponse = {
|
|
10
|
-
/**
|
|
11
|
-
* Dictionary mapping skill names/objects to point values. Keys are skill names (or skill objects if get_obj=True)
|
|
12
|
-
*/
|
|
13
|
-
skill_points: Record<string, number>;
|
|
14
|
-
};
|
|
15
|
-
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
import type { CourseCompletion } from './CourseCompletion';
|
|
6
|
-
/**
|
|
7
|
-
* Response serializer for CourseCompletionCatalogView GET endpoint.
|
|
8
|
-
* Maps course IDs to their completion information.
|
|
9
|
-
*/
|
|
10
|
-
export type CourseCompletionCatalogResponse = {
|
|
11
|
-
/**
|
|
12
|
-
* Completion information for each course. Keys are course IDs.
|
|
13
|
-
*/
|
|
14
|
-
'{course_id}'?: CourseCompletion;
|
|
15
|
-
};
|
|
16
|
-
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
/**
|
|
6
|
-
* Response serializer for CourseSkillPointInfoView GET endpoint.
|
|
7
|
-
* Returns a mapping of skill names/objects to their point values.
|
|
8
|
-
*/
|
|
9
|
-
export type CourseSkillPointInfoResponse = {
|
|
10
|
-
/**
|
|
11
|
-
* Dictionary mapping skill names/objects to point values. Keys are skill names (or skill objects if get_obj=True)
|
|
12
|
-
*/
|
|
13
|
-
skill_points: Record<string, number>;
|
|
14
|
-
};
|
|
15
|
-
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
/**
|
|
6
|
-
* Response serializer for UserSkillPointInfoView GET endpoint.
|
|
7
|
-
* Returns a mapping of skill names to point breakdowns.
|
|
8
|
-
*/
|
|
9
|
-
export type UserSkillPointInfoResponse = {
|
|
10
|
-
/**
|
|
11
|
-
* Dictionary mapping skill names to their point breakdowns. Example: {'skill_name': {'course_points': 10, 'block_points': 5, 'platform_points': 3, 'total_points': 18}}
|
|
12
|
-
*/
|
|
13
|
-
skill_points: Record<string, Record<string, number>>;
|
|
14
|
-
};
|
|
15
|
-
|