@leavittsoftware/lg-core-typescript 2.147.0 → 2.149.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.
@@ -1 +1 @@
1
- {"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AA0gEA,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,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"}
1
+ {"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AAkhEA,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,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"}
@@ -331,6 +331,10 @@ export interface CustomerQuoteDto {
331
331
  LineOfCoverage: CustomerLineOfCoverageString;
332
332
  }
333
333
 
334
+ export interface PLGameCustomQuestionReorderDto {
335
+ Questions: Array<Partial<SequenceDto>> | null;
336
+ }
337
+
334
338
  export interface PLGameDivisionReorderDto {
335
339
  Divisions: Array<Partial<SequenceDto>> | null;
336
340
  }
@@ -1452,6 +1456,10 @@ export interface ReorderEducationSequenceDto {
1452
1456
  NewOrder: Array<Partial<SequenceDto>> | null;
1453
1457
  }
1454
1458
 
1459
+ export interface CopyEducationCourseDto {
1460
+ CourseName: string | null;
1461
+ }
1462
+
1455
1463
  export interface CourseMemberDto {
1456
1464
  Category: string | null;
1457
1465
  CategoryId: number | null;
package/lg.net.core.ts CHANGED
@@ -2854,7 +2854,6 @@ export interface EducationCourse {
2854
2854
  CompletionCertificateId: number | null;
2855
2855
  CourseAdminPeopleGroups: Array<Partial<CourseAdminPeopleGroup>> | null;
2856
2856
  CourseAdmins: Array<Partial<CourseAdmin>> | null;
2857
- CourseEmailRecipients: Array<Partial<CourseEmailRecipient>> | null;
2858
2857
  CourseMemberPeopleGroups: Array<Partial<CourseMemberPeopleGroup>> | null;
2859
2858
  CourseMembers: Array<Partial<CourseMember>> | null;
2860
2859
  CourseParticipantStatuses: Array<Partial<CourseParticipantStatus>> | null;
@@ -2864,6 +2863,7 @@ export interface EducationCourse {
2864
2863
  CreatorPerson: Partial<Person> | null;
2865
2864
  CreatorPersonId: number;
2866
2865
  Description: string | null;
2866
+ EmailRecipients: Array<Partial<CourseEmailRecipient>> | null;
2867
2867
  FeaturedImageId: number | null;
2868
2868
  Id: number;
2869
2869
  Image: Partial<EducationCourseImage> | null;
@@ -2910,10 +2910,10 @@ export interface EducationLessonFile extends IDatabaseAttachment {
2910
2910
  }
2911
2911
 
2912
2912
  export interface EducationQuestion {
2913
+ Answers: Array<Partial<EducationAnswer>> | null;
2913
2914
  CreatedDate: string;
2914
2915
  CreatorPerson: Partial<Person> | null;
2915
2916
  CreatorPersonId: number;
2916
- EducationAnswers: Array<Partial<EducationAnswer>> | null;
2917
2917
  Id: number;
2918
2918
  LastModifiedByPerson: Partial<Person> | null;
2919
2919
  LastModifiedByPersonId: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leavittsoftware/lg-core-typescript",
3
- "version": "2.147.0",
3
+ "version": "2.149.0",
4
4
  "description": "Typescript of lg core",
5
5
  "main": "lg.core.js",
6
6
  "files": [