@leavittsoftware/lg-core-typescript 2.0.331 → 2.0.332

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.
@@ -56,12 +56,6 @@ export var AgencyInvestmentType;
56
56
  AgencyInvestmentType[AgencyInvestmentType["Minimum"] = 0] = "Minimum";
57
57
  AgencyInvestmentType[AgencyInvestmentType["Goal"] = 1] = "Goal";
58
58
  })(AgencyInvestmentType || (AgencyInvestmentType = {}));
59
- export var LessonAttemptStatus;
60
- (function (LessonAttemptStatus) {
61
- LessonAttemptStatus[LessonAttemptStatus["Pass"] = 0] = "Pass";
62
- LessonAttemptStatus[LessonAttemptStatus["Fail"] = 1] = "Fail";
63
- LessonAttemptStatus[LessonAttemptStatus["InProgress"] = 2] = "InProgress";
64
- })(LessonAttemptStatus || (LessonAttemptStatus = {}));
65
59
  export var ConferenceRegistrationStatus;
66
60
  (function (ConferenceRegistrationStatus) {
67
61
  ConferenceRegistrationStatus[ConferenceRegistrationStatus["Open"] = 0] = "Open";
@@ -148,4 +142,10 @@ export var AddressTypes;
148
142
  AddressTypes[AddressTypes["Business"] = 0] = "Business";
149
143
  AddressTypes[AddressTypes["Home"] = 1] = "Home";
150
144
  })(AddressTypes || (AddressTypes = {}));
145
+ export var LessonAttemptStatus;
146
+ (function (LessonAttemptStatus) {
147
+ LessonAttemptStatus[LessonAttemptStatus["Pass"] = 0] = "Pass";
148
+ LessonAttemptStatus[LessonAttemptStatus["Fail"] = 1] = "Fail";
149
+ LessonAttemptStatus[LessonAttemptStatus["InProgress"] = 2] = "InProgress";
150
+ })(LessonAttemptStatus || (LessonAttemptStatus = {}));
151
151
  //# sourceMappingURL=api2.leavitt.com.js.map
@@ -854,50 +854,6 @@ export interface LeaderDto {
854
854
  Rank: number;
855
855
  }
856
856
 
857
- export interface CourseStatsItemDto {
858
- CourseCategoryId: number | null;
859
- CourseCategoryName: string | null;
860
- CourseId: number;
861
- CourseTitle: string | null;
862
- ParticipantsAttempted: number;
863
- ParticipantsCompleted: number;
864
- StartDate: string;
865
- }
866
-
867
- export interface CourseStatsDto {
868
- CourseStatsLessons: Array<Partial<CourseStatsLessonDto>> | null;
869
- Participants: number;
870
- ParticipantsAttempted: number;
871
- ParticipantsCompleted: number;
872
- }
873
-
874
- export interface CourseStatsLessonDto {
875
- AverageAttemptsToPass: Partial<number>;
876
- AverageTimeWatchedPercentage: Partial<number> | null;
877
- AverageTotalTimeSpent: string;
878
- LessonId: number;
879
- Name: string | null;
880
- ParticipantsAttempted: number;
881
- ParticipantsCompleted: number;
882
- PassRate: Partial<number> | null;
883
- }
884
-
885
- export interface ParticipantDashboardDto {
886
- LessonsAvailable: number;
887
- LessonsCompleted: number;
888
- ParticipantDashboardLessons: Array<Partial<ParticipantDashboardLessonDto>> | null;
889
- TotalTimeSpent: string;
890
- }
891
-
892
- export interface ParticipantDashboardLessonDto {
893
- Attempts: number;
894
- AttemptStatus: LessonAttemptStatusString | null;
895
- GradePercentage: number | null;
896
- LessonId: number;
897
- Name: string | null;
898
- TimeWatchedPercentage: Partial<number> | null;
899
- }
900
-
901
857
  export interface ConferenceEventsDto {
902
858
  Events: Array<Partial<ConferenceScheduleDto>> | null;
903
859
  TimeZone: string | null;
@@ -1389,6 +1345,59 @@ export interface FileExplorerFolderDto {
1389
1345
  Name: string | null;
1390
1346
  }
1391
1347
 
1348
+ export interface ParticipantBreakDownDto {
1349
+ AgencyName: string | null;
1350
+ CoursesAssigned: number;
1351
+ CoursesPassed: number;
1352
+ FirstName: string | null;
1353
+ LastName: string | null;
1354
+ PersonId: number | null;
1355
+ }
1356
+
1357
+ export interface CourseStatsItemDto {
1358
+ CourseCategoryId: number | null;
1359
+ CourseCategoryName: string | null;
1360
+ CourseId: number;
1361
+ CourseTitle: string | null;
1362
+ ParticipantsAttempted: number;
1363
+ ParticipantsCompleted: number;
1364
+ StartDate: string;
1365
+ }
1366
+
1367
+ export interface CourseStatsDto {
1368
+ CourseStatsLessons: Array<Partial<CourseStatsLessonDto>> | null;
1369
+ Participants: number;
1370
+ ParticipantsAttempted: number;
1371
+ ParticipantsCompleted: number;
1372
+ }
1373
+
1374
+ export interface CourseStatsLessonDto {
1375
+ AverageAttemptsToPass: Partial<number>;
1376
+ AverageTimeWatchedPercentage: Partial<number> | null;
1377
+ AverageTotalTimeSpent: string;
1378
+ LessonId: number;
1379
+ Name: string | null;
1380
+ ParticipantsAttempted: number;
1381
+ ParticipantsCompleted: number;
1382
+ PassRate: Partial<number> | null;
1383
+ }
1384
+
1385
+ export interface ParticipantDashboardDto {
1386
+ LessonsAvailable: number;
1387
+ LessonsCompleted: number;
1388
+ ParticipantDashboardLessons: Array<Partial<ParticipantDashboardLessonDto>> | null;
1389
+ TotalTimeSpent: string;
1390
+ }
1391
+
1392
+ export interface ParticipantDashboardLessonDto {
1393
+ Attempts: number;
1394
+ AttemptStatus: LessonAttemptStatusString | null;
1395
+ GradePercentage: number | null;
1396
+ LessonId: number;
1397
+ Name: string | null;
1398
+ TimeWatchedPercentage: Partial<number> | null;
1399
+ }
1400
+
1392
1401
  export interface BulkCourseMemberOperationsDto {
1393
1402
  Failures: Array<number> | null;
1394
1403
  Successes: number;
@@ -1480,14 +1489,6 @@ export enum AgencyInvestmentType {
1480
1489
 
1481
1490
  export type AgencyInvestmentTypeString = keyof typeof AgencyInvestmentType;
1482
1491
 
1483
- export enum LessonAttemptStatus {
1484
- Pass = 0,
1485
- Fail = 1,
1486
- InProgress = 2
1487
- }
1488
-
1489
- export type LessonAttemptStatusString = keyof typeof LessonAttemptStatus;
1490
-
1491
1492
  export enum ConferenceRegistrationStatus {
1492
1493
  Open = 0,
1493
1494
  NotStarted = 1,
@@ -1584,3 +1585,11 @@ export enum AddressTypes {
1584
1585
 
1585
1586
  export type AddressTypesString = keyof typeof AddressTypes;
1586
1587
 
1588
+ export enum LessonAttemptStatus {
1589
+ Pass = 0,
1590
+ Fail = 1,
1591
+ InProgress = 2
1592
+ }
1593
+
1594
+ export type LessonAttemptStatusString = keyof typeof LessonAttemptStatus;
1595
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leavittsoftware/lg-core-typescript",
3
- "version": "2.0.331",
3
+ "version": "2.0.332",
4
4
  "description": "Typescript of lg core",
5
5
  "main": "lg.core.js",
6
6
  "files": [