@iblai/iblai-api 4.320.1-core → 4.322.0-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
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -14,6 +14,10 @@ export type CourseDetail = {
|
|
|
14
14
|
* Total time spent on this course in seconds
|
|
15
15
|
*/
|
|
16
16
|
time_spent_secs?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Timestamp of the user's most recent recorded activity on this course; null if the user has no tracked time on it.
|
|
19
|
+
*/
|
|
20
|
+
last_activity?: string | null;
|
|
17
21
|
/**
|
|
18
22
|
* Full edX Progress-page payload (completion summary, grade, grade summary) for this learner in this course. Only present when the request scopes a single `course_id` with `include_edx_progress` enabled; null if the edX call fails.
|
|
19
23
|
*/
|
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.322.0-core
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/analytics/content/:
|
|
@@ -44623,6 +44623,12 @@ components:
|
|
|
44623
44623
|
time_spent_secs:
|
|
44624
44624
|
type: integer
|
|
44625
44625
|
description: Total time spent on this course in seconds
|
|
44626
|
+
last_activity:
|
|
44627
|
+
type: string
|
|
44628
|
+
format: date-time
|
|
44629
|
+
nullable: true
|
|
44630
|
+
description: Timestamp of the user's most recent recorded activity on this
|
|
44631
|
+
course; null if the user has no tracked time on it.
|
|
44626
44632
|
edx_progress:
|
|
44627
44633
|
description: Full edX Progress-page payload (completion summary, grade,
|
|
44628
44634
|
grade summary) for this learner in this course. Only present when the
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -18,6 +18,10 @@ export type CourseDetail = {
|
|
|
18
18
|
* Total time spent on this course in seconds
|
|
19
19
|
*/
|
|
20
20
|
time_spent_secs?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Timestamp of the user's most recent recorded activity on this course; null if the user has no tracked time on it.
|
|
23
|
+
*/
|
|
24
|
+
last_activity?: string | null;
|
|
21
25
|
/**
|
|
22
26
|
* Full edX Progress-page payload (completion summary, grade, grade summary) for this learner in this course. Only present when the request scopes a single `course_id` with `include_edx_progress` enabled; null if the edX call fails.
|
|
23
27
|
*/
|