@leavittsoftware/lg-core-typescript 4.141.0 → 4.141.1
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/api2.leavitt.com.js +0 -6
- package/api2.leavitt.com.ts +1 -93
- package/package.json +1 -1
package/api2.leavitt.com.js
CHANGED
|
@@ -131,12 +131,6 @@ export var AgencyInvestmentType;
|
|
|
131
131
|
AgencyInvestmentType[AgencyInvestmentType["Minimum"] = 0] = "Minimum";
|
|
132
132
|
AgencyInvestmentType[AgencyInvestmentType["Goal"] = 1] = "Goal";
|
|
133
133
|
})(AgencyInvestmentType || (AgencyInvestmentType = {}));
|
|
134
|
-
export var LessonAttemptStatus;
|
|
135
|
-
(function (LessonAttemptStatus) {
|
|
136
|
-
LessonAttemptStatus[LessonAttemptStatus["Pass"] = 0] = "Pass";
|
|
137
|
-
LessonAttemptStatus[LessonAttemptStatus["Fail"] = 1] = "Fail";
|
|
138
|
-
LessonAttemptStatus[LessonAttemptStatus["InProgress"] = 2] = "InProgress";
|
|
139
|
-
})(LessonAttemptStatus || (LessonAttemptStatus = {}));
|
|
140
134
|
export var AddressTypes;
|
|
141
135
|
(function (AddressTypes) {
|
|
142
136
|
AddressTypes[AddressTypes["Business"] = 0] = "Business";
|
package/api2.leavitt.com.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { BenefitPointCustomer,Ams360Customer } from './elasticsearch'
|
|
7
|
-
import { Ams360PersonRole,Ams360SupplementalCode,Ams360EmpCode,EmploymentTypeString,Person,CrmAccount,Tv,PreferredContactMethodTypeString,CompanyOwnership,TemplateContact,TimelineContact,GlobalTask,TemplateTask,TemplateServiceTask,TimelineDocumentPage,TimelineServiceTask,TimelineEnabledPage,TimelineTaskToTimelineContactAssignee,TaskReminder,TaskStatusTypeString,TimelineTaskToTimelineContactWatcher,TemplateTaskToTemplateContactAssignee,TemplateTaskToTemplateContactWatcher,TimelineTemplateToCompany,ApplicationToApplicationTag,PermissionToApplication,ProducerCommissionRate,DifferedCompensation,Expectation,FailReason,
|
|
7
|
+
import { Ams360PersonRole,Ams360SupplementalCode,Ams360EmpCode,EmploymentTypeString,Person,CrmAccount,Tv,PreferredContactMethodTypeString,CompanyOwnership,TemplateContact,TimelineContact,GlobalTask,TemplateTask,TemplateServiceTask,TimelineDocumentPage,TimelineServiceTask,TimelineEnabledPage,TimelineTaskToTimelineContactAssignee,TaskReminder,TaskStatusTypeString,TimelineTaskToTimelineContactWatcher,TemplateTaskToTemplateContactAssignee,TemplateTaskToTemplateContactWatcher,TimelineTemplateToCompany,ApplicationToApplicationTag,PermissionToApplication,ProducerCommissionRate,DifferedCompensation,Expectation,FailReason,PhoneNumberTypesString } from './lg.core'
|
|
8
8
|
|
|
9
9
|
export interface EventEmailDto {
|
|
10
10
|
Body: string | null;
|
|
@@ -981,90 +981,6 @@ export interface AgencyInvestmentReportDto {
|
|
|
981
981
|
Type: AgencyInvestmentTypeString;
|
|
982
982
|
}
|
|
983
983
|
|
|
984
|
-
export interface ReorderGuidingPrinciplesDto {
|
|
985
|
-
Principles: Array<Partial<GuidingPrinciple>> | null;
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
export interface ParticipantBreakDownDto {
|
|
989
|
-
AgencyName: string | null;
|
|
990
|
-
CompletionDate: string | null;
|
|
991
|
-
CoursesAssignedByMember: number;
|
|
992
|
-
CoursesAssignedByPeopleGroup: number;
|
|
993
|
-
CoursesPassed: number;
|
|
994
|
-
FirstName: string | null;
|
|
995
|
-
LastName: string | null;
|
|
996
|
-
PersonId: number | null;
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
export interface CourseStatsItemDto {
|
|
1000
|
-
CourseCategoryId: number | null;
|
|
1001
|
-
CourseCategoryName: string | null;
|
|
1002
|
-
CourseId: number;
|
|
1003
|
-
CourseTitle: string | null;
|
|
1004
|
-
ParticipantsAttempted: number;
|
|
1005
|
-
ParticipantsCompleted: number;
|
|
1006
|
-
StartDate: string;
|
|
1007
|
-
}
|
|
1008
|
-
|
|
1009
|
-
export interface CourseStatsDto {
|
|
1010
|
-
CourseStatsLessons: Array<Partial<CourseStatsLessonDto>> | null;
|
|
1011
|
-
Participants: number;
|
|
1012
|
-
ParticipantsAttempted: number;
|
|
1013
|
-
ParticipantsCompleted: number;
|
|
1014
|
-
}
|
|
1015
|
-
|
|
1016
|
-
export interface CourseStatsLessonDto {
|
|
1017
|
-
AverageAttemptsToPass: Partial<number>;
|
|
1018
|
-
AverageTimeWatchedPercentage: Partial<number> | null;
|
|
1019
|
-
AverageTotalTimeSpent: string;
|
|
1020
|
-
LessonId: number;
|
|
1021
|
-
Name: string | null;
|
|
1022
|
-
ParticipantsAttempted: number;
|
|
1023
|
-
ParticipantsCompleted: number;
|
|
1024
|
-
PassRate: Partial<number> | null;
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
|
-
export interface ParticipantDashboardDto {
|
|
1028
|
-
LessonsAvailable: number;
|
|
1029
|
-
LessonsCompleted: number;
|
|
1030
|
-
ParticipantDashboardLessons: Array<Partial<ParticipantDashboardLessonDto>> | null;
|
|
1031
|
-
TotalTimeSpent: string;
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
export interface ParticipantDashboardLessonDto {
|
|
1035
|
-
Attempts: number;
|
|
1036
|
-
AttemptStatus: LessonAttemptStatusString | null;
|
|
1037
|
-
GradePercentage: number | null;
|
|
1038
|
-
LessonId: number;
|
|
1039
|
-
Name: string | null;
|
|
1040
|
-
TimeWatchedPercentage: Partial<number> | null;
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1043
|
-
export interface BulkCourseMemberOperationsDto {
|
|
1044
|
-
Failures: Array<number> | null;
|
|
1045
|
-
Successes: number;
|
|
1046
|
-
}
|
|
1047
|
-
|
|
1048
|
-
export interface CourseMemberDto {
|
|
1049
|
-
Category: string | null;
|
|
1050
|
-
CategoryId: number | null;
|
|
1051
|
-
CourseId: number;
|
|
1052
|
-
CourseName: string | null;
|
|
1053
|
-
Description: string | null;
|
|
1054
|
-
IsRequired: boolean;
|
|
1055
|
-
PersonId: number;
|
|
1056
|
-
Status: string | null;
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
export interface EducationSequenceDto {
|
|
1060
|
-
Id: number;
|
|
1061
|
-
Sequence: number;
|
|
1062
|
-
}
|
|
1063
|
-
|
|
1064
|
-
export interface ReorderEducationSequenceDto {
|
|
1065
|
-
NewOrder: Array<Partial<EducationSequenceDto>> | null;
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
984
|
export interface CompanyLeaseAttachmentSearchDto {
|
|
1069
985
|
CdnFileName: string | null;
|
|
1070
986
|
CompanyId: number;
|
|
@@ -1297,14 +1213,6 @@ export enum AgencyInvestmentType {
|
|
|
1297
1213
|
|
|
1298
1214
|
export type AgencyInvestmentTypeString = keyof typeof AgencyInvestmentType;
|
|
1299
1215
|
|
|
1300
|
-
export enum LessonAttemptStatus {
|
|
1301
|
-
Pass = 0,
|
|
1302
|
-
Fail = 1,
|
|
1303
|
-
InProgress = 2
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
export type LessonAttemptStatusString = keyof typeof LessonAttemptStatus;
|
|
1307
|
-
|
|
1308
1216
|
export enum AddressTypes {
|
|
1309
1217
|
Business = 0,
|
|
1310
1218
|
Home = 1
|