@parra/parra-js-sdk 0.3.495 → 0.3.497
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/ParraAPI.d.ts +3 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1459,6 +1459,7 @@ export interface CourseStub {
|
|
1459
1459
|
tenant_id: string;
|
1460
1460
|
title: string;
|
1461
1461
|
description?: string | null;
|
1462
|
+
is_enrolled?: boolean | null;
|
1462
1463
|
}
|
1463
1464
|
export interface Course {
|
1464
1465
|
id: string;
|
@@ -1469,6 +1470,7 @@ export interface Course {
|
|
1469
1470
|
tenant_id: string;
|
1470
1471
|
title: string;
|
1471
1472
|
description?: string | null;
|
1473
|
+
is_enrolled?: boolean | null;
|
1472
1474
|
header_image?: ImageAssetStub | null;
|
1473
1475
|
modules?: Array<CourseModule>;
|
1474
1476
|
}
|
@@ -1532,6 +1534,7 @@ export interface AppCourse {
|
|
1532
1534
|
description?: string | null;
|
1533
1535
|
modules: Array<AppCourseModule>;
|
1534
1536
|
instructors: Array<CourseInstructor>;
|
1537
|
+
is_enrolled?: boolean | null;
|
1535
1538
|
}
|
1536
1539
|
export interface UpdateCourseModuleRequestBody {
|
1537
1540
|
title?: string;
|