@leavittsoftware/lg-core-typescript 2.67.0 → 2.70.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 +125 -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":"AAu4CA,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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
7
|
-
import { PersonalPropertyLastPageVisitedString,PersonalPropertyLineOfBusinessString,PersonalPropertySiteSeedString,LifeQuoteRequestStatusString,GenderTypeString,ProductTypeString,TobaccoTypeString,HealthRatingTypeString } from './lg.net.leavittlink'
|
|
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
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 {
|
|
@@ -147,6 +147,38 @@ export interface PLGamePlayerBreakdownDto {
|
|
|
147
147
|
TotalPoints: Partial<number>;
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
+
export interface PLGamePlayerCsvItemDTO {
|
|
151
|
+
CompanyName: string | null;
|
|
152
|
+
FirstName: string | null;
|
|
153
|
+
LastName: string | null;
|
|
154
|
+
Points: string | null;
|
|
155
|
+
TeamName: string | null;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export interface PLGamePlayerDto {
|
|
159
|
+
CompanyName: string | null;
|
|
160
|
+
FirstName: string | null;
|
|
161
|
+
IsCaptain: boolean;
|
|
162
|
+
LastName: string | null;
|
|
163
|
+
PersonId: number;
|
|
164
|
+
PlayerId: number;
|
|
165
|
+
PlayerPersonRoleId: number | null;
|
|
166
|
+
TeamId: number | null;
|
|
167
|
+
TeamName: string | null;
|
|
168
|
+
TeamPersonRoleId: number | null;
|
|
169
|
+
TotalPoints: Partial<number>;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export interface PLGamePointCsvItemDto {
|
|
173
|
+
Amount: string | null;
|
|
174
|
+
ClientName: string | null;
|
|
175
|
+
Date: string | null;
|
|
176
|
+
ProducerFirstName: string | null;
|
|
177
|
+
ProducerLastName: string | null;
|
|
178
|
+
Sponsor: string | null;
|
|
179
|
+
Type: string | null;
|
|
180
|
+
}
|
|
181
|
+
|
|
150
182
|
export interface PLGameTeamBreakdownDto {
|
|
151
183
|
GrandPrizeName: string | null;
|
|
152
184
|
Players: Array<Partial<PLGamePlayerBreakdownDto>> | null;
|
|
@@ -337,6 +369,11 @@ export interface CarrierLoginDto {
|
|
|
337
369
|
Username: string | null;
|
|
338
370
|
}
|
|
339
371
|
|
|
372
|
+
export interface ProvisionedCompanyUnitDto {
|
|
373
|
+
Id: string | null;
|
|
374
|
+
Name: string | null;
|
|
375
|
+
}
|
|
376
|
+
|
|
340
377
|
export interface HartfordEmailQuoteDto {
|
|
341
378
|
CallUsPhoneNumber: string | null;
|
|
342
379
|
EmailAddress: string | null;
|
|
@@ -370,6 +407,93 @@ export interface VertaforeLimitsDto {
|
|
|
370
407
|
Values: Array<string> | null;
|
|
371
408
|
}
|
|
372
409
|
|
|
410
|
+
export interface AutoNewPolicyDto {
|
|
411
|
+
AutoEffectiveDate: string | null;
|
|
412
|
+
AutoInjuryCoverageLimit: number | null;
|
|
413
|
+
AutoLiabilityCoverageLimit: number | null;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
export interface AutoPreviousPolicyDto {
|
|
417
|
+
AutoExpirationDate: string | null;
|
|
418
|
+
AutoMonthsInsured: number | null;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
export interface AutoUpsertDriversDto {
|
|
422
|
+
Drivers: Array<Partial<AutoDriver>> | null;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
export interface AutoUpsertVehiclesDto {
|
|
426
|
+
Vehicles: Array<Partial<AutoVehicle>> | null;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
export interface DiscountsOneDto {
|
|
430
|
+
HouseholdDoesNotConsumeAlcohol: boolean | null;
|
|
431
|
+
IsEnrolledInDrivingProgram: boolean | null;
|
|
432
|
+
IsPaperless: boolean | null;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
export interface DiscountsTwoDto {
|
|
436
|
+
EducationLevel: EducationTypeString | null;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
export interface HomeOwnersRenovationsDto {
|
|
440
|
+
ElectricalRenovationYear: number | null;
|
|
441
|
+
HeatingRenovationYear: number | null;
|
|
442
|
+
PlumbingRenovationYear: number | null;
|
|
443
|
+
RoofRenovationYear: number | null;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
export interface HomeOwnersStepFiveDto {
|
|
447
|
+
ClaimsLast5Years: number | null;
|
|
448
|
+
HomeEstimatedValue: number | null;
|
|
449
|
+
OccupantType: OccupantTypeString | null;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
export interface HomeOwnersStepFourDto {
|
|
453
|
+
HasAutomaticSprinklers: boolean | null;
|
|
454
|
+
HasBurglarAlarm: boolean | null;
|
|
455
|
+
HasDeadBolts: boolean | null;
|
|
456
|
+
HasFireAlarm: boolean | null;
|
|
457
|
+
HasFireExtinguisher: boolean | null;
|
|
458
|
+
HasSmokeDetector: boolean | null;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
export interface HomeOwnersStepOneDto {
|
|
462
|
+
AcquisitionDate: string;
|
|
463
|
+
HomeStyle: HomeStyleString;
|
|
464
|
+
ResidenceType: ResidenceTypeString;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
export interface HomeOwnersStepSevenDto {
|
|
468
|
+
CoApplicantDateOfBirth: string | null;
|
|
469
|
+
CoApplicantFirstName: string | null;
|
|
470
|
+
CoApplicantLastName: string | null;
|
|
471
|
+
CoApplicantRelationshipToInsured: CoApplicantRelationshipToInsuredString | null;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
export interface HomeOwnersStepSixDto {
|
|
475
|
+
HasCats: boolean | null;
|
|
476
|
+
HasDogs: boolean | null;
|
|
477
|
+
HasSwimmingPool: boolean | null;
|
|
478
|
+
HasTrampoline: boolean | null;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
export interface HomeOwnersStepThreeDto {
|
|
482
|
+
Baths: Partial<number> | null;
|
|
483
|
+
ConstructionType: ConstructionTypeString | null;
|
|
484
|
+
FoundationType: FoundationTypeString | null;
|
|
485
|
+
NumberOfBedrooms: number | null;
|
|
486
|
+
NumberOfStories: NumberOfStoriesString | null;
|
|
487
|
+
PrimaryHeatType: HeatTypeString | null;
|
|
488
|
+
RoofType: RoofTypeString | null;
|
|
489
|
+
SquareFootage: number | null;
|
|
490
|
+
YearBuilt: number | null;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
export interface HomeOwnersStepTwoDto {
|
|
494
|
+
OverallQuality: OverallQualityString | null;
|
|
495
|
+
}
|
|
496
|
+
|
|
373
497
|
export interface IsBundledDto {
|
|
374
498
|
IsBundled: boolean;
|
|
375
499
|
}
|