@leavittsoftware/lg-core-typescript 2.73.0 → 2.76.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 +50 -1
- package/lg.net.core.ts +2 -2
- 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":"AA48CA,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"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
7
7
|
import { AutoDriver,AutoVehicle,EducationTypeString,OccupantTypeString,HomeStyleString,ResidenceTypeString,CoApplicantRelationshipToInsuredString,ConstructionTypeString,FoundationTypeString,NumberOfStoriesString,HeatTypeString,RoofTypeString,OverallQualityString,PersonalPropertyLastPageVisitedString,PersonalPropertyLineOfBusinessString,PersonalPropertySiteSeedString,LifeQuoteRequestStatusString,GenderTypeString,ProductTypeString,TobaccoTypeString,HealthRatingTypeString } from './lg.net.leavittlink'
|
|
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'
|
|
8
|
+
import { PLGameScoreboardToPlayerGroup,PrizeDistributionOptionString,PLGamePrize,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;
|
|
@@ -121,6 +121,31 @@ export interface PLGameDivisionReorderDto {
|
|
|
121
121
|
Divisions: Array<Partial<SequenceDto>> | null;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
export interface PLGamePrizePayoutDto {
|
|
125
|
+
EmailAddress: string | null;
|
|
126
|
+
FirstName: string | null;
|
|
127
|
+
GrandPrizeName: string | null;
|
|
128
|
+
LastName: string | null;
|
|
129
|
+
PersonId: number;
|
|
130
|
+
PrizeAmount: Partial<number> | null;
|
|
131
|
+
Rank: number;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export interface PLGameScoreboardDto {
|
|
135
|
+
Id: number | null;
|
|
136
|
+
IsEnabled: boolean;
|
|
137
|
+
Name: string | null;
|
|
138
|
+
PlayerGroups: Array<Partial<PLGameScoreboardToPlayerGroup>> | null;
|
|
139
|
+
PLGameId: number;
|
|
140
|
+
PrizeDistributionOption: PrizeDistributionOptionString;
|
|
141
|
+
Prizes: Array<Partial<PLGamePrize>> | null;
|
|
142
|
+
SegmentTypeId: number | null;
|
|
143
|
+
Sequence: number;
|
|
144
|
+
SponsorId: number | null;
|
|
145
|
+
Take: number | null;
|
|
146
|
+
WebComponentHTMLTag: string | null;
|
|
147
|
+
}
|
|
148
|
+
|
|
124
149
|
export interface PLGameVideoReorderDto {
|
|
125
150
|
Videos: Array<Partial<SequenceDto>> | null;
|
|
126
151
|
}
|
|
@@ -129,6 +154,10 @@ export interface ReorderPLGameCarouselSlideAttachmentDto {
|
|
|
129
154
|
PLGameCarouselSlideAttachments: Array<Partial<SequenceDto>> | null;
|
|
130
155
|
}
|
|
131
156
|
|
|
157
|
+
export interface ReorderPLGameScoreboardDto {
|
|
158
|
+
PLGameScoreboards: Array<Partial<SequenceDto>> | null;
|
|
159
|
+
}
|
|
160
|
+
|
|
132
161
|
export interface PLGameBreakdownDto {
|
|
133
162
|
Divisions: Array<Partial<PLGameDivisionBreakdownDto>> | null;
|
|
134
163
|
}
|
|
@@ -141,6 +170,7 @@ export interface PLGameDivisionBreakdownDto {
|
|
|
141
170
|
}
|
|
142
171
|
|
|
143
172
|
export interface PLGamePlayerBreakdownDto {
|
|
173
|
+
EmailAddress: string | null;
|
|
144
174
|
FirstName: string | null;
|
|
145
175
|
GrandPrizeName: string | null;
|
|
146
176
|
IsTeamCaptain: boolean;
|
|
@@ -203,8 +233,12 @@ export interface PLGameTeamBreakdownDto {
|
|
|
203
233
|
}
|
|
204
234
|
|
|
205
235
|
export interface PLGameTopPlayerDto {
|
|
236
|
+
AgencyId: number | null;
|
|
237
|
+
AgencyName: string | null;
|
|
238
|
+
EmailAddress: string | null;
|
|
206
239
|
FirstName: string | null;
|
|
207
240
|
GrandPrizeName: string | null;
|
|
241
|
+
IsSubsidized: boolean;
|
|
208
242
|
LastName: string | null;
|
|
209
243
|
PersonId: number;
|
|
210
244
|
PrizeAmount: Partial<number> | null;
|
|
@@ -571,6 +605,21 @@ export interface SelectedQuoteDto {
|
|
|
571
605
|
QuoteId: number | null;
|
|
572
606
|
}
|
|
573
607
|
|
|
608
|
+
export interface VehicleDataDto {
|
|
609
|
+
ABS: string | null;
|
|
610
|
+
BodyType: string | null;
|
|
611
|
+
Carburetor: string | null;
|
|
612
|
+
FourWheelDrive: boolean;
|
|
613
|
+
FuelType: string | null;
|
|
614
|
+
Key: string | null;
|
|
615
|
+
Maker: string | null;
|
|
616
|
+
Model: string | null;
|
|
617
|
+
MSRP: number;
|
|
618
|
+
NumCylinders: number;
|
|
619
|
+
VIN: string | null;
|
|
620
|
+
Year: string | null;
|
|
621
|
+
}
|
|
622
|
+
|
|
574
623
|
export interface LifeGettingStartedStepOneDto {
|
|
575
624
|
DateOfBirth: string;
|
|
576
625
|
FirstName: string | null;
|
package/lg.net.core.ts
CHANGED
|
@@ -1138,10 +1138,10 @@ export interface PLGameDivision {
|
|
|
1138
1138
|
Id: number;
|
|
1139
1139
|
Name: string | null;
|
|
1140
1140
|
PLGame: Partial<PLGame> | null;
|
|
1141
|
+
PLGameDivisionToTeams: Array<Partial<PLGameDivisionToTeam>> | null;
|
|
1141
1142
|
PLGameId: number;
|
|
1142
1143
|
Prizes: Array<Partial<PLGameTeamReportPrize>> | null;
|
|
1143
1144
|
Sequence: number;
|
|
1144
|
-
Teams: Array<Partial<PLGameDivisionToTeam>> | null;
|
|
1145
1145
|
}
|
|
1146
1146
|
|
|
1147
1147
|
export interface PLGameDivisionToTeam {
|
|
@@ -1203,7 +1203,7 @@ export interface PLGamePoint {
|
|
|
1203
1203
|
SponsorId: number | null;
|
|
1204
1204
|
TeamPersonRole: Partial<PLGameTeamPersonRole> | null;
|
|
1205
1205
|
TeamPersonRoleId: number;
|
|
1206
|
-
Type:
|
|
1206
|
+
Type: PLGamePointTypeString;
|
|
1207
1207
|
}
|
|
1208
1208
|
|
|
1209
1209
|
export interface PLGamePrize {
|