@leavittsoftware/lg-core-typescript 2.49.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 +104 -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":"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
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
7
|
-
import {
|
|
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,CLGamePoint,CLGameSegment,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.net.core'
|
|
8
9
|
|
|
9
10
|
export interface FruitHolderDto {
|
|
10
11
|
FirstName: string | null;
|
|
@@ -13,6 +14,14 @@ export interface FruitHolderDto {
|
|
|
13
14
|
PersonId: number;
|
|
14
15
|
}
|
|
15
16
|
|
|
17
|
+
export interface SurgeCarouselSlideAttachmentReorderDto {
|
|
18
|
+
SurgeCarouselSlideAttachments: Array<Partial<SequenceDto>> | null;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface SurgeScoreboardReorderDto {
|
|
22
|
+
SurgeScoreboards: Array<Partial<SequenceDto>> | null;
|
|
23
|
+
}
|
|
24
|
+
|
|
16
25
|
export interface CrmCarrierDto {
|
|
17
26
|
CarrierId: number;
|
|
18
27
|
CarrierName: string | null;
|
|
@@ -379,7 +388,6 @@ export interface LifeGettingStartedStepOneDto {
|
|
|
379
388
|
LifeQuoteRequestId: number | null;
|
|
380
389
|
RaterUniqueId: string | null;
|
|
381
390
|
RecaptchaUserResponse: string | null;
|
|
382
|
-
ReferringUrl: string | null;
|
|
383
391
|
}
|
|
384
392
|
|
|
385
393
|
export interface LifeGettingStartedStepTwoDto {
|
|
@@ -391,6 +399,46 @@ export interface LifeGettingStartedStepTwoDto {
|
|
|
391
399
|
ZipCode: string | null;
|
|
392
400
|
}
|
|
393
401
|
|
|
402
|
+
export interface LifeLastPageVisitedDto {
|
|
403
|
+
LastPageVisited: LifeQuoteRequestStatusString;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
export interface LifePreferredInsuranceDto {
|
|
407
|
+
CoverageAmount: Partial<number>;
|
|
408
|
+
ProductType: ProductTypeString;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
export interface LifeSelectQuoteDto {
|
|
412
|
+
QuoteId: number;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
export interface LifeWidgetFulfillDto {
|
|
416
|
+
City: string | null;
|
|
417
|
+
CoverageAmount: Partial<number>;
|
|
418
|
+
DateOfBirth: string;
|
|
419
|
+
EmailAddress: string | null;
|
|
420
|
+
FirstName: string | null;
|
|
421
|
+
Gender: GenderTypeString | null;
|
|
422
|
+
HealthRating: HealthRatingTypeString;
|
|
423
|
+
LastName: string | null;
|
|
424
|
+
LifeQuoteRequestId: number | null;
|
|
425
|
+
MacuWealthManager: string | null;
|
|
426
|
+
MacuWealthManagerEmail: string | null;
|
|
427
|
+
PhoneNumber: string | null;
|
|
428
|
+
ProductType: ProductTypeString;
|
|
429
|
+
RaterUniqueId: string | null;
|
|
430
|
+
State: string | null;
|
|
431
|
+
Street1: string | null;
|
|
432
|
+
Tobacco: TobaccoTypeString;
|
|
433
|
+
ZipCode: string | null;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
export interface LifeYourHealthDto {
|
|
437
|
+
Gender: GenderTypeString;
|
|
438
|
+
HealthRating: HealthRatingTypeString;
|
|
439
|
+
Tobacco: TobaccoTypeString;
|
|
440
|
+
}
|
|
441
|
+
|
|
394
442
|
export interface CampaignSummaryDto {
|
|
395
443
|
Attempted: number;
|
|
396
444
|
Completed: number;
|
|
@@ -945,10 +993,59 @@ export interface UpsertCompanyOwnershipDto {
|
|
|
945
993
|
CompanyOwnerships: Array<Partial<CompanyOwnership>> | null;
|
|
946
994
|
}
|
|
947
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
|
+
|
|
948
1035
|
export interface CLGameDivisionReorderDto {
|
|
949
1036
|
Divisions: Array<Partial<SequenceDto>> | null;
|
|
950
1037
|
}
|
|
951
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
|
+
|
|
952
1049
|
export interface CLGameVideoReorderDto {
|
|
953
1050
|
Videos: Array<Partial<SequenceDto>> | null;
|
|
954
1051
|
}
|
|
@@ -957,6 +1054,10 @@ export interface ReorderCLGameCarouselSlideAttachmentDto {
|
|
|
957
1054
|
CLGameCarouselSlideAttachments: Array<Partial<SequenceDto>> | null;
|
|
958
1055
|
}
|
|
959
1056
|
|
|
1057
|
+
export interface ReorderCLGameScoreboardDto {
|
|
1058
|
+
CLGameScoreboards: Array<Partial<SequenceDto>> | null;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
960
1061
|
export interface CLGameBreakdownDto {
|
|
961
1062
|
Divisions: Array<Partial<CLGameDivisionBreakdownDto>> | null;
|
|
962
1063
|
}
|
|
@@ -969,6 +1070,7 @@ export interface CLGameDivisionBreakdownDto {
|
|
|
969
1070
|
}
|
|
970
1071
|
|
|
971
1072
|
export interface CLGamePlayerBreakdownDto {
|
|
1073
|
+
EmailAddress: string | null;
|
|
972
1074
|
FirstName: string | null;
|
|
973
1075
|
GrandPrizeName: string | null;
|
|
974
1076
|
IsTeamCaptain: boolean;
|