@parra/parra-js-sdk 0.3.520 → 0.3.522
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 +8 -4
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1639,6 +1639,8 @@ export interface UpdateCourseLessonRequestBody {
|
|
1639
1639
|
description?: string | null;
|
1640
1640
|
is_preview?: boolean;
|
1641
1641
|
sort_order?: number;
|
1642
|
+
youtube_video_id?: string | null;
|
1643
|
+
youtube_video_url?: string | null;
|
1642
1644
|
}
|
1643
1645
|
export interface CreateCourseLessonRequestBody {
|
1644
1646
|
type?: LessonType;
|
@@ -1646,18 +1648,20 @@ export interface CreateCourseLessonRequestBody {
|
|
1646
1648
|
description?: string | null;
|
1647
1649
|
is_preview?: boolean;
|
1648
1650
|
sort_order?: number;
|
1651
|
+
youtube_video_id?: string | null;
|
1652
|
+
youtube_video_url?: string | null;
|
1649
1653
|
}
|
1650
1654
|
export interface UpdateCourseLessonSectionRequestBody {
|
1651
1655
|
title?: string;
|
1652
1656
|
description?: string | null;
|
1653
|
-
start_time?:
|
1654
|
-
end_time?:
|
1657
|
+
start_time?: number;
|
1658
|
+
end_time?: number;
|
1655
1659
|
}
|
1656
1660
|
export interface CreateCourseLessonSectionRequestBody {
|
1657
1661
|
title?: string;
|
1658
1662
|
description?: string | null;
|
1659
|
-
start_time?:
|
1660
|
-
end_time?:
|
1663
|
+
start_time?: number;
|
1664
|
+
end_time?: number;
|
1661
1665
|
}
|
1662
1666
|
export interface ReportLessonProgressRequestBody {
|
1663
1667
|
complete?: boolean;
|