@parra/parra-js-sdk 0.3.518 → 0.3.520
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
@@ -1527,6 +1527,7 @@ export interface CourseStub {
|
|
1527
1527
|
updated_at: string;
|
1528
1528
|
deleted_at?: string | null;
|
1529
1529
|
icon?: ImageAssetStub | null;
|
1530
|
+
slug?: string | null;
|
1530
1531
|
tenant_id: string;
|
1531
1532
|
title: string;
|
1532
1533
|
description?: string | null;
|
@@ -1539,6 +1540,7 @@ export interface Course {
|
|
1539
1540
|
updated_at: string;
|
1540
1541
|
deleted_at?: string | null;
|
1541
1542
|
icon?: ImageAssetStub | null;
|
1543
|
+
slug?: string | null;
|
1542
1544
|
tenant_id: string;
|
1543
1545
|
title: string;
|
1544
1546
|
description?: string | null;
|