@leavittsoftware/lg-core-typescript 2.172.0 → 2.173.0
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/api3.leavitt.com.ts +2 -2
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -1662,10 +1662,10 @@ export interface MyCoursesDto {
|
|
|
1662
1662
|
Description: string | null;
|
|
1663
1663
|
Id: number;
|
|
1664
1664
|
Image: Partial<EducationCourseImage> | null;
|
|
1665
|
-
IsCompleted: boolean;
|
|
1665
|
+
IsCompleted: boolean | null;
|
|
1666
1666
|
Lessons: Array<Partial<EducationLessonDto>> | null;
|
|
1667
1667
|
Name: string | null;
|
|
1668
|
-
Required: boolean;
|
|
1668
|
+
Required: boolean | null;
|
|
1669
1669
|
}
|
|
1670
1670
|
|
|
1671
1671
|
export interface GetAgencyAccessUsersDto {
|