@leavittsoftware/lg-core-typescript 2.51.0 → 2.52.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.map +1 -1
- package/api3.leavitt.com.ts +55 -1
- package/package.json +1 -1
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":"AAgnCA,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"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
7
7
|
import { LifeQuoteRequestStatusString,ProductTypeString,GenderTypeString,HealthRatingTypeString,TobaccoTypeString } from './lg.net.leavittlink'
|
|
8
|
-
import { ApplicationToApplicationTag,Person,PermissionToApplication,EmploymentTypeString,CompanyAddress,JobRole,SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.net.core'
|
|
8
|
+
import { ApplicationToApplicationTag,Person,PermissionToApplication,EmploymentTypeString,CompanyAddress,JobRole,SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership,CLGamePoint,CLGameSegment,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.net.core'
|
|
9
9
|
|
|
10
10
|
export interface FruitHolderDto {
|
|
11
11
|
FirstName: string | null;
|
|
@@ -993,10 +993,59 @@ export interface UpsertCompanyOwnershipDto {
|
|
|
993
993
|
CompanyOwnerships: Array<Partial<CompanyOwnership>> | null;
|
|
994
994
|
}
|
|
995
995
|
|
|
996
|
+
export interface CLGameAuditBreakdownCommissionDto {
|
|
997
|
+
Amount: Partial<number>;
|
|
998
|
+
Date: string | null;
|
|
999
|
+
Id: number;
|
|
1000
|
+
LastModifiedDate: string | null;
|
|
1001
|
+
LineOfCoverage: string | null;
|
|
1002
|
+
Name: string | null;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
export interface CLGameAuditBreakdownDto {
|
|
1006
|
+
AmountsMatch: boolean;
|
|
1007
|
+
CLGamePoint: Partial<CLGamePoint> | null;
|
|
1008
|
+
CrmCommission: Partial<CLGameAuditBreakdownCommissionDto> | null;
|
|
1009
|
+
DatesMatch: boolean;
|
|
1010
|
+
IsCrmCommissionDeleted: boolean;
|
|
1011
|
+
IsPointCreatedByAdmin: boolean;
|
|
1012
|
+
SortDate: string | null;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
export interface CLGameAuditBreakdownsBySegmentDto {
|
|
1016
|
+
Breakdowns: Array<Partial<CLGameAuditBreakdownDto>> | null;
|
|
1017
|
+
CrmTotal: Partial<number>;
|
|
1018
|
+
GameTotal: Partial<number>;
|
|
1019
|
+
IsAfterGame: boolean;
|
|
1020
|
+
IsBeforeGame: boolean;
|
|
1021
|
+
Segment: Partial<CLGameSegment> | null;
|
|
1022
|
+
SegmentId: number | null;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
export interface CLGameAuditSummaryDto {
|
|
1026
|
+
Difference: Partial<number>;
|
|
1027
|
+
FirstName: string | null;
|
|
1028
|
+
IsEditedByAdmin: boolean;
|
|
1029
|
+
LastName: string | null;
|
|
1030
|
+
PersonId: number;
|
|
1031
|
+
TotalCLPoints: Partial<number>;
|
|
1032
|
+
TotalCRMPoints: Partial<number>;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
996
1035
|
export interface CLGameDivisionReorderDto {
|
|
997
1036
|
Divisions: Array<Partial<SequenceDto>> | null;
|
|
998
1037
|
}
|
|
999
1038
|
|
|
1039
|
+
export interface CLGamePrizePayoutDto {
|
|
1040
|
+
EmailAddress: string | null;
|
|
1041
|
+
FirstName: string | null;
|
|
1042
|
+
GrandPrizeName: string | null;
|
|
1043
|
+
LastName: string | null;
|
|
1044
|
+
PersonId: number;
|
|
1045
|
+
PrizeAmount: Partial<number> | null;
|
|
1046
|
+
Rank: number;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1000
1049
|
export interface CLGameVideoReorderDto {
|
|
1001
1050
|
Videos: Array<Partial<SequenceDto>> | null;
|
|
1002
1051
|
}
|
|
@@ -1005,6 +1054,10 @@ export interface ReorderCLGameCarouselSlideAttachmentDto {
|
|
|
1005
1054
|
CLGameCarouselSlideAttachments: Array<Partial<SequenceDto>> | null;
|
|
1006
1055
|
}
|
|
1007
1056
|
|
|
1057
|
+
export interface ReorderCLGameScoreboardDto {
|
|
1058
|
+
CLGameScoreboards: Array<Partial<SequenceDto>> | null;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1008
1061
|
export interface CLGameBreakdownDto {
|
|
1009
1062
|
Divisions: Array<Partial<CLGameDivisionBreakdownDto>> | null;
|
|
1010
1063
|
}
|
|
@@ -1017,6 +1070,7 @@ export interface CLGameDivisionBreakdownDto {
|
|
|
1017
1070
|
}
|
|
1018
1071
|
|
|
1019
1072
|
export interface CLGamePlayerBreakdownDto {
|
|
1073
|
+
EmailAddress: string | null;
|
|
1020
1074
|
FirstName: string | null;
|
|
1021
1075
|
GrandPrizeName: string | null;
|
|
1022
1076
|
IsTeamCaptain: boolean;
|