@leavittsoftware/lg-core-typescript 2.156.0 → 2.158.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.js +3 -3
- package/api3.leavitt.com.js.map +1 -1
- package/api3.leavitt.com.ts +21 -3
- package/package.json +1 -1
package/api3.leavitt.com.js
CHANGED
|
@@ -15,9 +15,9 @@ export var AccountStatus;
|
|
|
15
15
|
})(AccountStatus || (AccountStatus = {}));
|
|
16
16
|
export var CourseMemberStatus;
|
|
17
17
|
(function (CourseMemberStatus) {
|
|
18
|
-
CourseMemberStatus[CourseMemberStatus["
|
|
19
|
-
CourseMemberStatus[CourseMemberStatus["
|
|
20
|
-
CourseMemberStatus[CourseMemberStatus["
|
|
18
|
+
CourseMemberStatus[CourseMemberStatus["Enrolled"] = 1] = "Enrolled";
|
|
19
|
+
CourseMemberStatus[CourseMemberStatus["Unenrolled"] = 2] = "Unenrolled";
|
|
20
|
+
CourseMemberStatus[CourseMemberStatus["GroupEnrolled"] = 3] = "GroupEnrolled";
|
|
21
21
|
})(CourseMemberStatus || (CourseMemberStatus = {}));
|
|
22
22
|
export var SearchSource;
|
|
23
23
|
(function (SearchSource) {
|
package/api3.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AAyjEA,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,uDAAc,CAAA;IACd,mEAAoB,CAAA;IACpB,mDAAY,CAAA;AAChB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AAID,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC1B,mEAAY,CAAA;IACZ,uEAAc,CAAA;IACd,6EAAiB,CAAA;AACrB,CAAC,EAJW,kBAAkB,KAAlB,kBAAkB,QAI7B;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -1456,6 +1456,13 @@ export interface BulkEnrollDto {
|
|
|
1456
1456
|
IsRequired: boolean;
|
|
1457
1457
|
}
|
|
1458
1458
|
|
|
1459
|
+
export interface GetMembersDto {
|
|
1460
|
+
FirstName: string | null;
|
|
1461
|
+
IsRequired: boolean;
|
|
1462
|
+
LastName: string | null;
|
|
1463
|
+
PersonId: number;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1459
1466
|
export interface ReorderEducationSequenceDto {
|
|
1460
1467
|
NewOrder: Array<Partial<SequenceDto>> | null;
|
|
1461
1468
|
}
|
|
@@ -1473,6 +1480,17 @@ export interface UpsertCourseDto {
|
|
|
1473
1480
|
UpdateImage: boolean;
|
|
1474
1481
|
}
|
|
1475
1482
|
|
|
1483
|
+
export interface UpsertLessonDto {
|
|
1484
|
+
CourseId: number;
|
|
1485
|
+
DeleteFileIds: Array<number> | null;
|
|
1486
|
+
Files: Array<File> | null;
|
|
1487
|
+
Id: number | null;
|
|
1488
|
+
Name: string | null;
|
|
1489
|
+
PassingPercentage: number;
|
|
1490
|
+
VideoLength: string | null;
|
|
1491
|
+
YoutubeVideoKey: string | null;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1476
1494
|
export interface UpsertQuestionsDto {
|
|
1477
1495
|
Questions: Array<Partial<EducationQuestion>> | null;
|
|
1478
1496
|
}
|
|
@@ -2105,9 +2123,9 @@ export enum AccountStatus {
|
|
|
2105
2123
|
export type AccountStatusString = keyof typeof AccountStatus;
|
|
2106
2124
|
|
|
2107
2125
|
export enum CourseMemberStatus {
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2126
|
+
Enrolled = 1,
|
|
2127
|
+
Unenrolled = 2,
|
|
2128
|
+
GroupEnrolled = 3
|
|
2111
2129
|
}
|
|
2112
2130
|
|
|
2113
2131
|
export type CourseMemberStatusString = keyof typeof CourseMemberStatus;
|