@iblai/iblai-api 4.274.2-ai → 4.275.0-ai
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
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -24,6 +24,10 @@ export type CourseCreationTask = {
|
|
|
24
24
|
provider?: string;
|
|
25
25
|
model?: string;
|
|
26
26
|
desired_number_of_sections?: number;
|
|
27
|
+
/**
|
|
28
|
+
* Optional. If set, mentor-graded assessment xblocks in the created course point at this mentor instead of provisioning a new one per unit.
|
|
29
|
+
*/
|
|
30
|
+
assessment_mentor?: number | null;
|
|
27
31
|
readonly logs: string;
|
|
28
32
|
readonly files: Array<CourseCreationTaskFile>;
|
|
29
33
|
readonly date_created: string;
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ibl-data-manager
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.275.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/access-check/{item_type}/{item_id}/:
|
|
@@ -90377,6 +90377,11 @@ components:
|
|
|
90377
90377
|
maxLength: 150
|
|
90378
90378
|
desired_number_of_sections:
|
|
90379
90379
|
type: integer
|
|
90380
|
+
assessment_mentor:
|
|
90381
|
+
type: integer
|
|
90382
|
+
nullable: true
|
|
90383
|
+
description: Optional. If set, mentor-graded assessment xblocks in the created
|
|
90384
|
+
course point at this mentor instead of provisioning a new one per unit.
|
|
90380
90385
|
logs:
|
|
90381
90386
|
type: string
|
|
90382
90387
|
readOnly: true
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -28,6 +28,10 @@ export type CourseCreationTask = {
|
|
|
28
28
|
provider?: string;
|
|
29
29
|
model?: string;
|
|
30
30
|
desired_number_of_sections?: number;
|
|
31
|
+
/**
|
|
32
|
+
* Optional. If set, mentor-graded assessment xblocks in the created course point at this mentor instead of provisioning a new one per unit.
|
|
33
|
+
*/
|
|
34
|
+
assessment_mentor?: number | null;
|
|
31
35
|
readonly logs: string;
|
|
32
36
|
readonly files: Array<CourseCreationTaskFile>;
|
|
33
37
|
readonly date_created: string;
|