@parra/parra-js-sdk 0.3.489 → 0.3.490
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 +7 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1398,10 +1398,14 @@ export interface Reaction {
|
|
1398
1398
|
export interface UpdateCourseRequestBody {
|
1399
1399
|
title?: string;
|
1400
1400
|
description?: string | null;
|
1401
|
+
icon_asset_id?: string | null;
|
1402
|
+
header_image_asset_id?: string | null;
|
1401
1403
|
}
|
1402
1404
|
export interface CreateCourseRequestBody {
|
1403
1405
|
title?: string;
|
1404
1406
|
description?: string | null;
|
1407
|
+
icon_asset_id?: string | null;
|
1408
|
+
header_image_asset_id?: string | null;
|
1405
1409
|
}
|
1406
1410
|
export declare enum LessonType {
|
1407
1411
|
youtubeVideo = "youtube_video"
|
@@ -1451,6 +1455,7 @@ export interface CourseStub {
|
|
1451
1455
|
created_at: string;
|
1452
1456
|
updated_at: string;
|
1453
1457
|
deleted_at?: string | null;
|
1458
|
+
icon?: ImageAssetStub | null;
|
1454
1459
|
tenant_id: string;
|
1455
1460
|
title: string;
|
1456
1461
|
description?: string | null;
|
@@ -1460,9 +1465,11 @@ export interface Course {
|
|
1460
1465
|
created_at: string;
|
1461
1466
|
updated_at: string;
|
1462
1467
|
deleted_at?: string | null;
|
1468
|
+
icon?: ImageAssetStub | null;
|
1463
1469
|
tenant_id: string;
|
1464
1470
|
title: string;
|
1465
1471
|
description?: string | null;
|
1472
|
+
header_image?: ImageAssetStub | null;
|
1466
1473
|
modules?: Array<CourseModule>;
|
1467
1474
|
}
|
1468
1475
|
export interface AppLessonProgress {
|