@parra/parra-js-sdk 0.3.524 → 0.3.525
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 +6 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1641,6 +1641,9 @@ export interface UpdateCourseLessonRequestBody {
|
|
1641
1641
|
sort_order?: number;
|
1642
1642
|
youtube_video_id?: string | null;
|
1643
1643
|
youtube_video_url?: string | null;
|
1644
|
+
import_chapters?: boolean;
|
1645
|
+
import_title?: boolean;
|
1646
|
+
import_description?: boolean;
|
1644
1647
|
}
|
1645
1648
|
export interface CreateCourseLessonRequestBody {
|
1646
1649
|
type?: LessonType;
|
@@ -1650,6 +1653,9 @@ export interface CreateCourseLessonRequestBody {
|
|
1650
1653
|
sort_order?: number;
|
1651
1654
|
youtube_video_id?: string | null;
|
1652
1655
|
youtube_video_url?: string | null;
|
1656
|
+
import_chapters?: boolean;
|
1657
|
+
import_title?: boolean;
|
1658
|
+
import_description?: boolean;
|
1653
1659
|
}
|
1654
1660
|
export interface UpdateCourseLessonSectionRequestBody {
|
1655
1661
|
title?: string;
|