@parra/parra-js-sdk 0.3.489 → 0.3.491

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.
@@ -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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.489",
3
+ "version": "0.3.491",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",