@leavittsoftware/lg-core-typescript 5.813.0 → 5.815.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.ts +18 -18
- package/lg.net.ams360.datalake.warehouse.ts +19 -50
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -4929,18 +4929,25 @@ export interface CompanyEmployeeDto {
|
|
|
4929
4929
|
ProfilePictureCdnFileName?: string | null ;
|
|
4930
4930
|
}
|
|
4931
4931
|
|
|
4932
|
-
export interface
|
|
4933
|
-
JobRoleTypes: Array<Partial<
|
|
4932
|
+
export interface CompanyJobRoleCategoryDtoV2 {
|
|
4933
|
+
JobRoleTypes: Array<Partial<CompanyJobRoleTypeDtoV2>>;
|
|
4934
4934
|
Name?: string | null ;
|
|
4935
4935
|
Sequence?: number | null ;
|
|
4936
4936
|
}
|
|
4937
4937
|
|
|
4938
|
-
export interface
|
|
4939
|
-
|
|
4938
|
+
export interface CompanyJobRoleTypeDtoV2 {
|
|
4939
|
+
Departments: Array<Partial<CompanyJobRoleDepartment>>;
|
|
4940
|
+
EnableDepartmentAssignment?: boolean;
|
|
4940
4941
|
IsFullTimeEquivalenceType?: boolean;
|
|
4941
4942
|
Name?: string | null ;
|
|
4942
4943
|
}
|
|
4943
4944
|
|
|
4945
|
+
export interface CompanyJobRoleDepartment {
|
|
4946
|
+
DepartmentId?: number | null ;
|
|
4947
|
+
DepartmentName?: string | null ;
|
|
4948
|
+
Employees: Array<Partial<CompanyEmployeeDto>>;
|
|
4949
|
+
}
|
|
4950
|
+
|
|
4944
4951
|
export interface CompanyPdfDataDto {
|
|
4945
4952
|
AgencyName?: string | null ;
|
|
4946
4953
|
BuildingName?: string | null ;
|
|
@@ -4960,11 +4967,11 @@ export interface CompanyRemoteDetails {
|
|
|
4960
4967
|
Name?: string | null ;
|
|
4961
4968
|
}
|
|
4962
4969
|
|
|
4963
|
-
export interface
|
|
4970
|
+
export interface DepartmentDetailsDtoV2 {
|
|
4964
4971
|
CompanyId: number;
|
|
4965
4972
|
CompanyMarkUrl?: string | null ;
|
|
4966
4973
|
CompanyName?: string | null ;
|
|
4967
|
-
|
|
4974
|
+
DepartmentEmployeesCount: number;
|
|
4968
4975
|
Id: number;
|
|
4969
4976
|
Name?: string | null ;
|
|
4970
4977
|
}
|
|
@@ -4980,24 +4987,17 @@ export interface DepartmentEmployeeDto {
|
|
|
4980
4987
|
|
|
4981
4988
|
export interface DirectoryAgencySearchInfo {
|
|
4982
4989
|
CanEditOwnership?: boolean;
|
|
4983
|
-
Company?: Partial<
|
|
4984
|
-
CompanyId: number;
|
|
4985
|
-
JobRoles?: Array<Partial<CompanyJobRoleDto>> | null ;
|
|
4986
|
-
RemoteEmployeeCount: number;
|
|
4987
|
-
}
|
|
4988
|
-
|
|
4989
|
-
export interface DirectoryAgencySearchInfoV2 {
|
|
4990
|
-
CanEditOwnership?: boolean;
|
|
4991
|
-
Company?: Partial<AgencyDetailsDto> | null ;
|
|
4990
|
+
Company?: Partial<AgencyDetailsDtoV2> | null ;
|
|
4992
4991
|
CompanyId: number;
|
|
4993
|
-
|
|
4992
|
+
EmployeesWithoutJobRoles: Array<Partial<CompanyEmployeeDto>>;
|
|
4993
|
+
JobRoleCategories: Array<Partial<CompanyJobRoleCategoryDtoV2>>;
|
|
4994
4994
|
RemoteEmployeeCount: number;
|
|
4995
4995
|
}
|
|
4996
4996
|
|
|
4997
|
-
export interface
|
|
4997
|
+
export interface AgencyDetailsDtoV2 {
|
|
4998
4998
|
addresses: Array<Partial<CompanyAddressDto>>;
|
|
4999
4999
|
CompanyRoleId?: number | null ;
|
|
5000
|
-
Departments: Array<Partial<
|
|
5000
|
+
Departments: Array<Partial<DepartmentDetailsDtoV2>>;
|
|
5001
5001
|
FiscalYearEnd: FiscalYearEndString;
|
|
5002
5002
|
Id: number;
|
|
5003
5003
|
LegalName?: string | null ;
|
|
@@ -182,6 +182,7 @@ export interface AFW_126SPCOQuestion {
|
|
|
182
182
|
export interface AFW_127Coverage1 {
|
|
183
183
|
___datasource: string;
|
|
184
184
|
___sequencenumber: number;
|
|
185
|
+
BasicPolInfo: Partial<AFW_BasicPolInfo>;
|
|
185
186
|
CasId: string;
|
|
186
187
|
ChangedBy?: string | null ;
|
|
187
188
|
ChangedDate?: string | null ;
|
|
@@ -263,6 +264,7 @@ export interface AFW_127Driver {
|
|
|
263
264
|
___datasource: string;
|
|
264
265
|
___sequencenumber: number;
|
|
265
266
|
Address?: string | null ;
|
|
267
|
+
BasicPolInfo: Partial<AFW_BasicPolInfo>;
|
|
266
268
|
ChangedBy?: string | null ;
|
|
267
269
|
ChangedDate?: string | null ;
|
|
268
270
|
City?: string | null ;
|
|
@@ -324,6 +326,7 @@ export interface AFW_127UnderWriting {
|
|
|
324
326
|
export interface AFW_127Vehicle {
|
|
325
327
|
___datasource: string;
|
|
326
328
|
___sequencenumber: number;
|
|
329
|
+
BasicPolInfo: Partial<AFW_BasicPolInfo>;
|
|
327
330
|
BodyType?: string | null ;
|
|
328
331
|
ChangedBy?: string | null ;
|
|
329
332
|
ChangedDate?: string | null ;
|
|
@@ -1317,6 +1320,7 @@ export interface AFW_140PremiseInfo {
|
|
|
1317
1320
|
CertNo?: string | null ;
|
|
1318
1321
|
ChangedBy?: string | null ;
|
|
1319
1322
|
ChangedDate?: string | null ;
|
|
1323
|
+
CLocation?: Partial<AFW_CLocation> | null ;
|
|
1320
1324
|
CLocId?: string | null ;
|
|
1321
1325
|
ConstType?: string | null ;
|
|
1322
1326
|
Description?: string | null ;
|
|
@@ -1368,6 +1372,7 @@ export interface AFW_140PremiseInfo {
|
|
|
1368
1372
|
RoofType?: string | null ;
|
|
1369
1373
|
SprinkPct?: string | null ;
|
|
1370
1374
|
Status?: string | null ;
|
|
1375
|
+
SubOfIns: Array<Partial<AFW_140SubOfIns>>;
|
|
1371
1376
|
TaxCode?: string | null ;
|
|
1372
1377
|
TotalAmount?: string | null ;
|
|
1373
1378
|
TotalArea?: string | null ;
|
|
@@ -1380,34 +1385,6 @@ export interface AFW_140PremiseInfo {
|
|
|
1380
1385
|
YearBlt?: string | null ;
|
|
1381
1386
|
}
|
|
1382
1387
|
|
|
1383
|
-
export interface AFW_140SubOfIn {
|
|
1384
|
-
___datasource: string;
|
|
1385
|
-
___sequencenumber: number;
|
|
1386
|
-
_100PercentVal?: number | null ;
|
|
1387
|
-
BlanketNumber?: number | null ;
|
|
1388
|
-
BlanketType?: string | null ;
|
|
1389
|
-
ChangedBy?: string | null ;
|
|
1390
|
-
ChangedDate?: string | null ;
|
|
1391
|
-
CSPCode?: string | null ;
|
|
1392
|
-
EffDate: string;
|
|
1393
|
-
EnteredDate?: string | null ;
|
|
1394
|
-
InsertSeqNo?: number | null ;
|
|
1395
|
-
IsInclude139?: string | null ;
|
|
1396
|
-
IsInclude159?: string | null ;
|
|
1397
|
-
IsotelNo?: string | null ;
|
|
1398
|
-
iSubAmt?: number | null ;
|
|
1399
|
-
LOBId: string;
|
|
1400
|
-
PerRestDay?: string | null ;
|
|
1401
|
-
PIId: string;
|
|
1402
|
-
PolId: string;
|
|
1403
|
-
RatingType?: string | null ;
|
|
1404
|
-
SOIId: string;
|
|
1405
|
-
Status?: string | null ;
|
|
1406
|
-
SubOfIns?: string | null ;
|
|
1407
|
-
Valuation?: string | null ;
|
|
1408
|
-
vSubAmt?: string | null ;
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
1388
|
export interface AFW_140SubOfIns {
|
|
1412
1389
|
___datasource: string;
|
|
1413
1390
|
___sequencenumber: number;
|
|
@@ -1428,6 +1405,7 @@ export interface AFW_140SubOfIns {
|
|
|
1428
1405
|
PerRestDay?: string | null ;
|
|
1429
1406
|
PIId: string;
|
|
1430
1407
|
PolId: string;
|
|
1408
|
+
PremiseInfo?: Partial<AFW_140PremiseInfo> | null ;
|
|
1431
1409
|
RatingType?: string | null ;
|
|
1432
1410
|
SOIId: string;
|
|
1433
1411
|
Status?: string | null ;
|
|
@@ -2264,28 +2242,6 @@ export interface AFW_146EquipSummary {
|
|
|
2264
2242
|
TotalItems?: string | null ;
|
|
2265
2243
|
}
|
|
2266
2244
|
|
|
2267
|
-
export interface AFW_146Location {
|
|
2268
|
-
___datasource: string;
|
|
2269
|
-
___sequencenumber: number;
|
|
2270
|
-
Addr1?: string | null ;
|
|
2271
|
-
Addr2?: string | null ;
|
|
2272
|
-
BldgNo?: string | null ;
|
|
2273
|
-
CBldgId?: string | null ;
|
|
2274
|
-
ChangedBy?: string | null ;
|
|
2275
|
-
ChangedDate?: string | null ;
|
|
2276
|
-
City?: string | null ;
|
|
2277
|
-
CLocId?: string | null ;
|
|
2278
|
-
EffDate: string;
|
|
2279
|
-
EnteredDate?: string | null ;
|
|
2280
|
-
IMLocId: string;
|
|
2281
|
-
LOBId: string;
|
|
2282
|
-
LocNo?: string | null ;
|
|
2283
|
-
PolId: string;
|
|
2284
|
-
State?: string | null ;
|
|
2285
|
-
Status?: string | null ;
|
|
2286
|
-
Zip?: string | null ;
|
|
2287
|
-
}
|
|
2288
|
-
|
|
2289
2245
|
export interface AFW_146Locations {
|
|
2290
2246
|
___datasource: string;
|
|
2291
2247
|
___sequencenumber: number;
|
|
@@ -3000,6 +2956,9 @@ export interface AFW_BankRecStatement {
|
|
|
3000
2956
|
export interface AFW_BasicPolInfo {
|
|
3001
2957
|
___datasource: string;
|
|
3002
2958
|
___sequencenumber: number;
|
|
2959
|
+
_127Coverage1s: Array<Partial<AFW_127Coverage1>>;
|
|
2960
|
+
_127Drivers: Array<Partial<AFW_127Driver>>;
|
|
2961
|
+
_127Vehicles: Array<Partial<AFW_127Vehicle>>;
|
|
3003
2962
|
AgcyBusClass?: string | null ;
|
|
3004
2963
|
ANotId?: string | null ;
|
|
3005
2964
|
AuditFlag?: string | null ;
|
|
@@ -3012,15 +2971,18 @@ export interface AFW_BasicPolInfo {
|
|
|
3012
2971
|
CarrierStatus?: string | null ;
|
|
3013
2972
|
ChangedBy?: string | null ;
|
|
3014
2973
|
ChangedDate?: string | null ;
|
|
2974
|
+
CLocation: Array<Partial<AFW_CLocation>>;
|
|
3015
2975
|
CoCode?: string | null ;
|
|
3016
2976
|
Company?: Partial<AFW_Company> | null ;
|
|
3017
2977
|
CompCustNo?: string | null ;
|
|
3018
2978
|
CoType?: string | null ;
|
|
2979
|
+
Coverages: Array<Partial<AFW_Coverage>>;
|
|
3019
2980
|
CsrCode?: string | null ;
|
|
3020
2981
|
CustId?: string | null ;
|
|
3021
2982
|
Customer?: Partial<AFW_Customer> | null ;
|
|
3022
2983
|
Department?: Partial<AFW_GeneralLedgerDepartment> | null ;
|
|
3023
2984
|
DescriptionBPol?: string | null ;
|
|
2985
|
+
Drivers: Array<Partial<AFW_Driver>>;
|
|
3024
2986
|
EnteredDate?: string | null ;
|
|
3025
2987
|
ExcludeFrmDownload?: string | null ;
|
|
3026
2988
|
Exec?: Partial<AFW_Employee> | null ;
|
|
@@ -3689,6 +3651,7 @@ export interface AFW_CBuilding {
|
|
|
3689
3651
|
ChangedDate?: string | null ;
|
|
3690
3652
|
City?: string | null ;
|
|
3691
3653
|
CityLimits?: string | null ;
|
|
3654
|
+
CLocation?: Partial<AFW_CLocation> | null ;
|
|
3692
3655
|
CLocId: string;
|
|
3693
3656
|
County?: string | null ;
|
|
3694
3657
|
Description?: string | null ;
|
|
@@ -4066,6 +4029,8 @@ export interface AFW_CLocation {
|
|
|
4066
4029
|
Addr1?: string | null ;
|
|
4067
4030
|
Addr2?: string | null ;
|
|
4068
4031
|
AnnRevenues?: number | null ;
|
|
4032
|
+
BasicPolInfo?: Partial<AFW_BasicPolInfo> | null ;
|
|
4033
|
+
CBuilding?: Partial<AFW_CBuilding> | null ;
|
|
4069
4034
|
ChangedBy?: string | null ;
|
|
4070
4035
|
ChangedDate?: string | null ;
|
|
4071
4036
|
City?: string | null ;
|
|
@@ -4077,6 +4042,7 @@ export interface AFW_CLocation {
|
|
|
4077
4042
|
IsForeign?: string | null ;
|
|
4078
4043
|
LocNo?: string | null ;
|
|
4079
4044
|
PolId: string;
|
|
4045
|
+
PremiseInfo?: Partial<AFW_140PremiseInfo> | null ;
|
|
4080
4046
|
State?: string | null ;
|
|
4081
4047
|
Status?: string | null ;
|
|
4082
4048
|
Zip?: string | null ;
|
|
@@ -4492,6 +4458,7 @@ export interface AFW_Coverage {
|
|
|
4492
4458
|
AppliesTo?: string | null ;
|
|
4493
4459
|
AttachId?: string | null ;
|
|
4494
4460
|
AttachType?: number | null ;
|
|
4461
|
+
BasicPolInfo?: Partial<AFW_BasicPolInfo> | null ;
|
|
4495
4462
|
ChangedBy?: string | null ;
|
|
4496
4463
|
ChangedDate?: string | null ;
|
|
4497
4464
|
CoinPercent?: number | null ;
|
|
@@ -5436,6 +5403,7 @@ export interface AFW_Driver {
|
|
|
5436
5403
|
___sequencenumber: number;
|
|
5437
5404
|
Addr1?: string | null ;
|
|
5438
5405
|
Addr2?: string | null ;
|
|
5406
|
+
BasicPolInfo: Partial<AFW_BasicPolInfo>;
|
|
5439
5407
|
ChangedBy?: string | null ;
|
|
5440
5408
|
ChangedDate?: string | null ;
|
|
5441
5409
|
City?: string | null ;
|
|
@@ -9965,6 +9933,7 @@ export interface AFW_Vehicle {
|
|
|
9965
9933
|
AntiLockType?: string | null ;
|
|
9966
9934
|
AntiTheftCredit?: string | null ;
|
|
9967
9935
|
AntiTheftType?: string | null ;
|
|
9936
|
+
BasicPolInfo?: Partial<AFW_BasicPolInfo> | null ;
|
|
9968
9937
|
BodyType?: string | null ;
|
|
9969
9938
|
CC?: number | null ;
|
|
9970
9939
|
ChangedBy?: string | null ;
|