@parra/parra-js-sdk 0.3.514 → 0.3.515
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 +2 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1408,12 +1408,14 @@ export interface Reaction {
|
|
1408
1408
|
export interface UpdateCourseRequestBody {
|
1409
1409
|
title?: string;
|
1410
1410
|
description?: string | null;
|
1411
|
+
slug?: string | null;
|
1411
1412
|
icon_asset_id?: string | null;
|
1412
1413
|
header_image_asset_id?: string | null;
|
1413
1414
|
}
|
1414
1415
|
export interface CreateCourseRequestBody {
|
1415
1416
|
title?: string;
|
1416
1417
|
description?: string | null;
|
1418
|
+
slug?: string | null;
|
1417
1419
|
icon_asset_id?: string | null;
|
1418
1420
|
header_image_asset_id?: string | null;
|
1419
1421
|
}
|