@parra/parra-js-sdk 0.3.503 → 0.3.504
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 -3
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1563,9 +1563,9 @@ export interface AppCourse {
|
|
1563
1563
|
tenant_id: string;
|
1564
1564
|
title: string;
|
1565
1565
|
description?: string | null;
|
1566
|
-
marketing_content?: MarketingContent
|
1567
|
-
modules
|
1568
|
-
instructors
|
1566
|
+
marketing_content?: MarketingContent;
|
1567
|
+
modules?: Array<AppCourseModule>;
|
1568
|
+
instructors?: Array<CourseInstructor>;
|
1569
1569
|
is_enrolled?: boolean | null;
|
1570
1570
|
}
|
1571
1571
|
export interface UpdateCourseModuleRequestBody {
|